2 * Toshiba TC6387XB support
3 * Copyright (c) 2005 Ian Molton
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * This file contains TC6387XB base support.
13 #include <linux/module.h>
14 #include <linux/platform_device.h>
15 #include <linux/err.h>
16 #include <linux/mfd/core.h>
17 #include <linux/mfd/tmio.h>
18 #include <linux/mfd/tc6387xb.h>
25 static int tc6387xb_suspend(struct platform_device *dev, pm_message_t state)
27 struct tc6387xb_platform_data *pdata = platform_get_drvdata(dev);
29 if (pdata && pdata->suspend)
35 static int tc6387xb_resume(struct platform_device *dev)
37 struct tc6387xb_platform_data *pdata = platform_get_drvdata(dev);
39 if (pdata && pdata->resume)
45 #define tc6387xb_suspend NULL
46 #define tc6387xb_resume NULL
49 /*--------------------------------------------------------------------------*/
51 static int tc6387xb_mmc_enable(struct platform_device *mmc)
53 struct platform_device *dev = to_platform_device(mmc->dev.parent);
54 struct tc6387xb_platform_data *tc6387xb = dev->dev.platform_data;
56 if (tc6387xb->enable_clk32k)
57 tc6387xb->enable_clk32k(dev);
62 static int tc6387xb_mmc_disable(struct platform_device *mmc)
64 struct platform_device *dev = to_platform_device(mmc->dev.parent);
65 struct tc6387xb_platform_data *tc6387xb = dev->dev.platform_data;
67 if (tc6387xb->disable_clk32k)
68 tc6387xb->disable_clk32k(dev);
73 /*--------------------------------------------------------------------------*/
75 static struct resource tc6387xb_mmc_resources[] = {
79 .flags = IORESOURCE_MEM,
84 .flags = IORESOURCE_MEM,
89 .flags = IORESOURCE_IRQ,
93 static struct mfd_cell tc6387xb_cells[] = {
94 [TC6387XB_CELL_MMC] = {
96 .enable = tc6387xb_mmc_enable,
97 .disable = tc6387xb_mmc_disable,
98 .num_resources = ARRAY_SIZE(tc6387xb_mmc_resources),
99 .resources = tc6387xb_mmc_resources,
103 static int tc6387xb_probe(struct platform_device *dev)
105 struct tc6387xb_platform_data *data = platform_get_drvdata(dev);
106 struct resource *iomem;
109 iomem = platform_get_resource(dev, IORESOURCE_MEM, 0);
115 ret = platform_get_irq(dev, 0);
121 if (data && data->enable)
124 printk(KERN_INFO "Toshiba tc6387xb initialised\n");
126 tc6387xb_cells[TC6387XB_CELL_MMC].platform_data =
127 &tc6387xb_cells[TC6387XB_CELL_MMC];
128 tc6387xb_cells[TC6387XB_CELL_MMC].data_size =
129 sizeof(tc6387xb_cells[TC6387XB_CELL_MMC]);
131 ret = mfd_add_devices(&dev->dev, dev->id, tc6387xb_cells,
132 ARRAY_SIZE(tc6387xb_cells), iomem, irq);
141 static int tc6387xb_remove(struct platform_device *dev)
143 struct tc6387xb_platform_data *data = platform_get_drvdata(dev);
145 if (data && data->disable)
148 /* FIXME - free the resources! */
154 static struct platform_driver tc6387xb_platform_driver = {
158 .probe = tc6387xb_probe,
159 .remove = tc6387xb_remove,
160 .suspend = tc6387xb_suspend,
161 .resume = tc6387xb_resume,
165 static int __init tc6387xb_init(void)
167 return platform_driver_register(&tc6387xb_platform_driver);
170 static void __exit tc6387xb_exit(void)
172 platform_driver_unregister(&tc6387xb_platform_driver);
175 module_init(tc6387xb_init);
176 module_exit(tc6387xb_exit);
178 MODULE_DESCRIPTION("Toshiba TC6387XB core driver");
179 MODULE_LICENSE("GPL v2");
180 MODULE_AUTHOR("Ian Molton");
181 MODULE_ALIAS("platform:tc6387xb");