Merge branch 'bkl/procfs' of git://git.kernel.org/pub/scm/linux/kernel/git/frederic...
[linux-2.6-block.git] / drivers / mfd / tc6387xb.c
CommitLineData
cbdfb426
IM
1/*
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>
7acb706c 15#include <linux/clk.h>
cbdfb426
IM
16#include <linux/err.h>
17#include <linux/mfd/core.h>
18#include <linux/mfd/tmio.h>
19#include <linux/mfd/tc6387xb.h>
5a0e3ad6 20#include <linux/slab.h>
cbdfb426 21
d2432a63
IM
22enum {
23 TC6387XB_CELL_MMC,
24};
25
64e8867b
IM
26struct tc6387xb {
27 void __iomem *scr;
28 struct clk *clk32k;
29 struct resource rscr;
30};
31
32static struct resource tc6387xb_mmc_resources[] = {
33 {
34 .start = 0x800,
35 .end = 0x9ff,
36 .flags = IORESOURCE_MEM,
37 },
38 {
39 .start = 0,
40 .end = 0,
41 .flags = IORESOURCE_IRQ,
42 },
43};
44
45/*--------------------------------------------------------------------------*/
46
cbdfb426
IM
47#ifdef CONFIG_PM
48static int tc6387xb_suspend(struct platform_device *dev, pm_message_t state)
49{
64e8867b 50 struct tc6387xb *tc6387xb = platform_get_drvdata(dev);
7acb706c 51 struct tc6387xb_platform_data *pdata = dev->dev.platform_data;
cbdfb426
IM
52
53 if (pdata && pdata->suspend)
54 pdata->suspend(dev);
64e8867b 55 clk_disable(tc6387xb->clk32k);
cbdfb426
IM
56
57 return 0;
58}
59
60static int tc6387xb_resume(struct platform_device *dev)
61{
64e8867b 62 struct tc6387xb *tc6387xb = platform_get_drvdata(dev);
7acb706c 63 struct tc6387xb_platform_data *pdata = dev->dev.platform_data;
cbdfb426 64
64e8867b 65 clk_enable(tc6387xb->clk32k);
cbdfb426
IM
66 if (pdata && pdata->resume)
67 pdata->resume(dev);
68
64e8867b
IM
69 tmio_core_mmc_resume(tc6387xb->scr + 0x200, 0,
70 tc6387xb_mmc_resources[0].start & 0xfffe);
71
cbdfb426
IM
72 return 0;
73}
74#else
75#define tc6387xb_suspend NULL
76#define tc6387xb_resume NULL
77#endif
78
79/*--------------------------------------------------------------------------*/
80
64e8867b
IM
81static void tc6387xb_mmc_pwr(struct platform_device *mmc, int state)
82{
83 struct platform_device *dev = to_platform_device(mmc->dev.parent);
84 struct tc6387xb *tc6387xb = platform_get_drvdata(dev);
85
86 tmio_core_mmc_pwr(tc6387xb->scr + 0x200, 0, state);
87}
88
89static void tc6387xb_mmc_clk_div(struct platform_device *mmc, int state)
90{
91 struct platform_device *dev = to_platform_device(mmc->dev.parent);
92 struct tc6387xb *tc6387xb = platform_get_drvdata(dev);
93
94 tmio_core_mmc_clk_div(tc6387xb->scr + 0x200, 0, state);
95}
96
97
cbdfb426
IM
98static int tc6387xb_mmc_enable(struct platform_device *mmc)
99{
100 struct platform_device *dev = to_platform_device(mmc->dev.parent);
64e8867b 101 struct tc6387xb *tc6387xb = platform_get_drvdata(dev);
cbdfb426 102
64e8867b
IM
103 clk_enable(tc6387xb->clk32k);
104
105 tmio_core_mmc_enable(tc6387xb->scr + 0x200, 0,
106 tc6387xb_mmc_resources[0].start & 0xfffe);
cbdfb426
IM
107
108 return 0;
109}
110
111static int tc6387xb_mmc_disable(struct platform_device *mmc)
112{
113 struct platform_device *dev = to_platform_device(mmc->dev.parent);
64e8867b 114 struct tc6387xb *tc6387xb = platform_get_drvdata(dev);
cbdfb426 115
64e8867b 116 clk_disable(tc6387xb->clk32k);
cbdfb426
IM
117
118 return 0;
119}
120
4d3792e0 121static struct tmio_mmc_data tc6387xb_mmc_data = {
f0e46cc4 122 .hclk = 24000000,
64e8867b
IM
123 .set_pwr = tc6387xb_mmc_pwr,
124 .set_clk_div = tc6387xb_mmc_clk_div,
f0e46cc4
PZ
125};
126
64e8867b 127/*--------------------------------------------------------------------------*/
cbdfb426
IM
128
129static struct mfd_cell tc6387xb_cells[] = {
d2432a63 130 [TC6387XB_CELL_MMC] = {
cbdfb426
IM
131 .name = "tmio-mmc",
132 .enable = tc6387xb_mmc_enable,
133 .disable = tc6387xb_mmc_disable,
f0e46cc4 134 .driver_data = &tc6387xb_mmc_data,
cbdfb426
IM
135 .num_resources = ARRAY_SIZE(tc6387xb_mmc_resources),
136 .resources = tc6387xb_mmc_resources,
137 },
138};
139
140static int tc6387xb_probe(struct platform_device *dev)
141{
7acb706c 142 struct tc6387xb_platform_data *pdata = dev->dev.platform_data;
64e8867b 143 struct resource *iomem, *rscr;
7acb706c 144 struct clk *clk32k;
64e8867b 145 struct tc6387xb *tc6387xb;
cbdfb426
IM
146 int irq, ret;
147
148 iomem = platform_get_resource(dev, IORESOURCE_MEM, 0);
149 if (!iomem) {
7acb706c 150 return -EINVAL;
cbdfb426
IM
151 }
152
64e8867b
IM
153 tc6387xb = kzalloc(sizeof *tc6387xb, GFP_KERNEL);
154 if (!tc6387xb)
155 return -ENOMEM;
156
cbdfb426
IM
157 ret = platform_get_irq(dev, 0);
158 if (ret >= 0)
159 irq = ret;
160 else
64e8867b 161 goto err_no_irq;
cbdfb426 162
7acb706c
IM
163 clk32k = clk_get(&dev->dev, "CLK_CK32K");
164 if (IS_ERR(clk32k)) {
165 ret = PTR_ERR(clk32k);
64e8867b
IM
166 goto err_no_clk;
167 }
168
169 rscr = &tc6387xb->rscr;
170 rscr->name = "tc6387xb-core";
171 rscr->start = iomem->start;
172 rscr->end = iomem->start + 0xff;
173 rscr->flags = IORESOURCE_MEM;
174
175 ret = request_resource(iomem, rscr);
176 if (ret)
7acb706c 177 goto err_resource;
64e8867b
IM
178
179 tc6387xb->scr = ioremap(rscr->start, rscr->end - rscr->start + 1);
180 if (!tc6387xb->scr) {
181 ret = -ENOMEM;
182 goto err_ioremap;
7acb706c 183 }
64e8867b
IM
184
185 tc6387xb->clk32k = clk32k;
186 platform_set_drvdata(dev, tc6387xb);
7acb706c
IM
187
188 if (pdata && pdata->enable)
189 pdata->enable(dev);
cbdfb426
IM
190
191 printk(KERN_INFO "Toshiba tc6387xb initialised\n");
192
d2432a63
IM
193 tc6387xb_cells[TC6387XB_CELL_MMC].platform_data =
194 &tc6387xb_cells[TC6387XB_CELL_MMC];
195 tc6387xb_cells[TC6387XB_CELL_MMC].data_size =
196 sizeof(tc6387xb_cells[TC6387XB_CELL_MMC]);
197
56bf2bda
SO
198 ret = mfd_add_devices(&dev->dev, dev->id, tc6387xb_cells,
199 ARRAY_SIZE(tc6387xb_cells), iomem, irq);
cbdfb426
IM
200
201 if (!ret)
202 return 0;
203
64e8867b
IM
204err_ioremap:
205 release_resource(&tc6387xb->rscr);
cbdfb426 206err_resource:
64e8867b
IM
207 clk_put(clk32k);
208err_no_clk:
209err_no_irq:
210 kfree(tc6387xb);
cbdfb426
IM
211 return ret;
212}
213
214static int tc6387xb_remove(struct platform_device *dev)
215{
7acb706c 216 struct clk *clk32k = platform_get_drvdata(dev);
cbdfb426 217
7acb706c
IM
218 mfd_remove_devices(&dev->dev);
219 clk_disable(clk32k);
220 clk_put(clk32k);
221 platform_set_drvdata(dev, NULL);
cbdfb426
IM
222
223 return 0;
224}
225
226
227static struct platform_driver tc6387xb_platform_driver = {
228 .driver = {
229 .name = "tc6387xb",
230 },
231 .probe = tc6387xb_probe,
232 .remove = tc6387xb_remove,
233 .suspend = tc6387xb_suspend,
234 .resume = tc6387xb_resume,
235};
236
237
238static int __init tc6387xb_init(void)
239{
240 return platform_driver_register(&tc6387xb_platform_driver);
241}
242
243static void __exit tc6387xb_exit(void)
244{
245 platform_driver_unregister(&tc6387xb_platform_driver);
246}
247
248module_init(tc6387xb_init);
249module_exit(tc6387xb_exit);
250
251MODULE_DESCRIPTION("Toshiba TC6387XB core driver");
252MODULE_LICENSE("GPL v2");
253MODULE_AUTHOR("Ian Molton");
254MODULE_ALIAS("platform:tc6387xb");
64e8867b 255