blob: c3993ac20542db00bdc2e5e6a8c54a244d3a3e4a [file] [log] [blame]
Ian Moltoncbdfb422008-07-15 15:12:52 +01001/*
2 * Toshiba TC6387XB support
3 * Copyright (c) 2005 Ian Molton
4 *
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.
8 *
9 * This file contains TC6387XB base support.
10 *
11 */
12
13#include <linux/module.h>
14#include <linux/platform_device.h>
Ian Molton7acb7062008-10-09 20:06:09 +020015#include <linux/clk.h>
Ian Moltoncbdfb422008-07-15 15:12:52 +010016#include <linux/err.h>
17#include <linux/mfd/core.h>
18#include <linux/mfd/tmio.h>
19#include <linux/mfd/tc6387xb.h>
20
Ian Moltond2432a62008-08-04 18:58:18 +020021enum {
22 TC6387XB_CELL_MMC,
23};
24
Ian Moltoncbdfb422008-07-15 15:12:52 +010025#ifdef CONFIG_PM
26static int tc6387xb_suspend(struct platform_device *dev, pm_message_t state)
27{
Ian Molton7acb7062008-10-09 20:06:09 +020028 struct clk *clk32k = platform_get_drvdata(dev);
29 struct tc6387xb_platform_data *pdata = dev->dev.platform_data;
Ian Moltoncbdfb422008-07-15 15:12:52 +010030
31 if (pdata && pdata->suspend)
32 pdata->suspend(dev);
Ian Molton7acb7062008-10-09 20:06:09 +020033 clk_disable(clk32k);
Ian Moltoncbdfb422008-07-15 15:12:52 +010034
35 return 0;
36}
37
38static int tc6387xb_resume(struct platform_device *dev)
39{
Ian Molton7acb7062008-10-09 20:06:09 +020040 struct clk *clk32k = platform_get_drvdata(dev);
41 struct tc6387xb_platform_data *pdata = dev->dev.platform_data;
Ian Moltoncbdfb422008-07-15 15:12:52 +010042
Ian Molton7acb7062008-10-09 20:06:09 +020043 clk_enable(clk32k);
Ian Moltoncbdfb422008-07-15 15:12:52 +010044 if (pdata && pdata->resume)
45 pdata->resume(dev);
46
47 return 0;
48}
49#else
50#define tc6387xb_suspend NULL
51#define tc6387xb_resume NULL
52#endif
53
54/*--------------------------------------------------------------------------*/
55
56static int tc6387xb_mmc_enable(struct platform_device *mmc)
57{
58 struct platform_device *dev = to_platform_device(mmc->dev.parent);
Ian Molton7acb7062008-10-09 20:06:09 +020059 struct clk *clk32k = platform_get_drvdata(dev);
Ian Moltoncbdfb422008-07-15 15:12:52 +010060
Ian Molton7acb7062008-10-09 20:06:09 +020061 clk_enable(clk32k);
Ian Moltoncbdfb422008-07-15 15:12:52 +010062
63 return 0;
64}
65
66static int tc6387xb_mmc_disable(struct platform_device *mmc)
67{
68 struct platform_device *dev = to_platform_device(mmc->dev.parent);
Ian Molton7acb7062008-10-09 20:06:09 +020069 struct clk *clk32k = platform_get_drvdata(dev);
Ian Moltoncbdfb422008-07-15 15:12:52 +010070
Ian Molton7acb7062008-10-09 20:06:09 +020071 clk_disable(clk32k);
Ian Moltoncbdfb422008-07-15 15:12:52 +010072
73 return 0;
74}
75
76/*--------------------------------------------------------------------------*/
77
Philipp Zabelf0e46cc2009-06-04 20:12:31 +020078const static struct tmio_mmc_data tc6387xb_mmc_data = {
79 .hclk = 24000000,
80};
81
Ian Moltoncbdfb422008-07-15 15:12:52 +010082static struct resource tc6387xb_mmc_resources[] = {
83 {
84 .start = 0x800,
85 .end = 0x9ff,
86 .flags = IORESOURCE_MEM,
87 },
88 {
89 .start = 0x200,
90 .end = 0x2ff,
91 .flags = IORESOURCE_MEM,
92 },
93 {
94 .start = 0,
95 .end = 0,
96 .flags = IORESOURCE_IRQ,
97 },
98};
99
100static struct mfd_cell tc6387xb_cells[] = {
Ian Moltond2432a62008-08-04 18:58:18 +0200101 [TC6387XB_CELL_MMC] = {
Ian Moltoncbdfb422008-07-15 15:12:52 +0100102 .name = "tmio-mmc",
103 .enable = tc6387xb_mmc_enable,
104 .disable = tc6387xb_mmc_disable,
Philipp Zabelf0e46cc2009-06-04 20:12:31 +0200105 .driver_data = &tc6387xb_mmc_data,
Ian Moltoncbdfb422008-07-15 15:12:52 +0100106 .num_resources = ARRAY_SIZE(tc6387xb_mmc_resources),
107 .resources = tc6387xb_mmc_resources,
108 },
109};
110
111static int tc6387xb_probe(struct platform_device *dev)
112{
Ian Molton7acb7062008-10-09 20:06:09 +0200113 struct tc6387xb_platform_data *pdata = dev->dev.platform_data;
Ian Moltoncbdfb422008-07-15 15:12:52 +0100114 struct resource *iomem;
Ian Molton7acb7062008-10-09 20:06:09 +0200115 struct clk *clk32k;
Ian Moltoncbdfb422008-07-15 15:12:52 +0100116 int irq, ret;
117
118 iomem = platform_get_resource(dev, IORESOURCE_MEM, 0);
119 if (!iomem) {
Ian Molton7acb7062008-10-09 20:06:09 +0200120 return -EINVAL;
Ian Moltoncbdfb422008-07-15 15:12:52 +0100121 }
122
123 ret = platform_get_irq(dev, 0);
124 if (ret >= 0)
125 irq = ret;
126 else
127 goto err_resource;
128
Ian Molton7acb7062008-10-09 20:06:09 +0200129 clk32k = clk_get(&dev->dev, "CLK_CK32K");
130 if (IS_ERR(clk32k)) {
131 ret = PTR_ERR(clk32k);
132 goto err_resource;
133 }
134 platform_set_drvdata(dev, clk32k);
135
136 if (pdata && pdata->enable)
137 pdata->enable(dev);
Ian Moltoncbdfb422008-07-15 15:12:52 +0100138
139 printk(KERN_INFO "Toshiba tc6387xb initialised\n");
140
Ian Moltond2432a62008-08-04 18:58:18 +0200141 tc6387xb_cells[TC6387XB_CELL_MMC].platform_data =
142 &tc6387xb_cells[TC6387XB_CELL_MMC];
143 tc6387xb_cells[TC6387XB_CELL_MMC].data_size =
144 sizeof(tc6387xb_cells[TC6387XB_CELL_MMC]);
145
Samuel Ortiz56bf2bd2008-08-01 00:16:13 +0200146 ret = mfd_add_devices(&dev->dev, dev->id, tc6387xb_cells,
147 ARRAY_SIZE(tc6387xb_cells), iomem, irq);
Ian Moltoncbdfb422008-07-15 15:12:52 +0100148
149 if (!ret)
150 return 0;
151
Ian Molton7acb7062008-10-09 20:06:09 +0200152 clk_put(clk32k);
Ian Moltoncbdfb422008-07-15 15:12:52 +0100153err_resource:
154 return ret;
155}
156
157static int tc6387xb_remove(struct platform_device *dev)
158{
Ian Molton7acb7062008-10-09 20:06:09 +0200159 struct clk *clk32k = platform_get_drvdata(dev);
Ian Moltoncbdfb422008-07-15 15:12:52 +0100160
Ian Molton7acb7062008-10-09 20:06:09 +0200161 mfd_remove_devices(&dev->dev);
162 clk_disable(clk32k);
163 clk_put(clk32k);
164 platform_set_drvdata(dev, NULL);
Ian Moltoncbdfb422008-07-15 15:12:52 +0100165
166 return 0;
167}
168
169
170static struct platform_driver tc6387xb_platform_driver = {
171 .driver = {
172 .name = "tc6387xb",
173 },
174 .probe = tc6387xb_probe,
175 .remove = tc6387xb_remove,
176 .suspend = tc6387xb_suspend,
177 .resume = tc6387xb_resume,
178};
179
180
181static int __init tc6387xb_init(void)
182{
183 return platform_driver_register(&tc6387xb_platform_driver);
184}
185
186static void __exit tc6387xb_exit(void)
187{
188 platform_driver_unregister(&tc6387xb_platform_driver);
189}
190
191module_init(tc6387xb_init);
192module_exit(tc6387xb_exit);
193
194MODULE_DESCRIPTION("Toshiba TC6387XB core driver");
195MODULE_LICENSE("GPL v2");
196MODULE_AUTHOR("Ian Molton");
197MODULE_ALIAS("platform:tc6387xb");