ath9k: work around gcc ICEs (again)
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / mfd / tc6387xb.c
bloba22b21ac6cf83989c0329e7fbb62c45db51b7751
1 /*
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>
20 enum {
21 TC6387XB_CELL_MMC,
24 #ifdef CONFIG_PM
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)
30 pdata->suspend(dev);
32 return 0;
35 static int tc6387xb_resume(struct platform_device *dev)
37 struct tc6387xb_platform_data *pdata = platform_get_drvdata(dev);
39 if (pdata && pdata->resume)
40 pdata->resume(dev);
42 return 0;
44 #else
45 #define tc6387xb_suspend NULL
46 #define tc6387xb_resume NULL
47 #endif
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);
59 return 0;
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);
70 return 0;
73 /*--------------------------------------------------------------------------*/
75 static struct resource tc6387xb_mmc_resources[] = {
77 .start = 0x800,
78 .end = 0x9ff,
79 .flags = IORESOURCE_MEM,
82 .start = 0x200,
83 .end = 0x2ff,
84 .flags = IORESOURCE_MEM,
87 .start = 0,
88 .end = 0,
89 .flags = IORESOURCE_IRQ,
93 static struct mfd_cell tc6387xb_cells[] = {
94 [TC6387XB_CELL_MMC] = {
95 .name = "tmio-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;
107 int irq, ret;
109 iomem = platform_get_resource(dev, IORESOURCE_MEM, 0);
110 if (!iomem) {
111 ret = -EINVAL;
112 goto err_resource;
115 ret = platform_get_irq(dev, 0);
116 if (ret >= 0)
117 irq = ret;
118 else
119 goto err_resource;
121 if (data && data->enable)
122 data->enable(dev);
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);
134 if (!ret)
135 return 0;
137 err_resource:
138 return ret;
141 static int tc6387xb_remove(struct platform_device *dev)
143 struct tc6387xb_platform_data *data = platform_get_drvdata(dev);
145 if (data && data->disable)
146 data->disable(dev);
148 /* FIXME - free the resources! */
150 return 0;
154 static struct platform_driver tc6387xb_platform_driver = {
155 .driver = {
156 .name = "tc6387xb",
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");