GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / pcmcia / pxa2xx_base.c
blobae07b4db8a6ec00def420e5af77bbcede2b90730
1 /*======================================================================
3 Device driver for the PCMCIA control functionality of PXA2xx
4 microprocessors.
6 The contents of this file may be used under the
7 terms of the GNU Public License version 2 (the "GPL")
9 (c) Ian Molton (spyro@f2s.com) 2003
10 (c) Stefan Eletzhofer (stefan.eletzhofer@inquant.de) 2003,4
12 derived from sa11xx_base.c
14 Portions created by John G. Dorsey are
15 Copyright (C) 1999 John G. Dorsey.
17 ======================================================================*/
19 #include <linux/module.h>
20 #include <linux/slab.h>
21 #include <linux/init.h>
22 #include <linux/cpufreq.h>
23 #include <linux/ioport.h>
24 #include <linux/kernel.h>
25 #include <linux/spinlock.h>
26 #include <linux/platform_device.h>
28 #include <mach/hardware.h>
29 #include <asm/io.h>
30 #include <asm/irq.h>
31 #include <asm/system.h>
32 #include <mach/pxa2xx-regs.h>
33 #include <asm/mach-types.h>
35 #include <pcmcia/ss.h>
36 #include <pcmcia/cistpl.h>
38 #include "soc_common.h"
39 #include "pxa2xx_base.h"
42 * Personal Computer Memory Card International Association (PCMCIA) sockets
45 #define PCMCIAPrtSp 0x04000000 /* PCMCIA Partition Space [byte] */
46 #define PCMCIASp (4*PCMCIAPrtSp) /* PCMCIA Space [byte] */
47 #define PCMCIAIOSp PCMCIAPrtSp /* PCMCIA I/O Space [byte] */
48 #define PCMCIAAttrSp PCMCIAPrtSp /* PCMCIA Attribute Space [byte] */
49 #define PCMCIAMemSp PCMCIAPrtSp /* PCMCIA Memory Space [byte] */
51 #define PCMCIA0Sp PCMCIASp /* PCMCIA 0 Space [byte] */
52 #define PCMCIA0IOSp PCMCIAIOSp /* PCMCIA 0 I/O Space [byte] */
53 #define PCMCIA0AttrSp PCMCIAAttrSp /* PCMCIA 0 Attribute Space [byte] */
54 #define PCMCIA0MemSp PCMCIAMemSp /* PCMCIA 0 Memory Space [byte] */
56 #define PCMCIA1Sp PCMCIASp /* PCMCIA 1 Space [byte] */
57 #define PCMCIA1IOSp PCMCIAIOSp /* PCMCIA 1 I/O Space [byte] */
58 #define PCMCIA1AttrSp PCMCIAAttrSp /* PCMCIA 1 Attribute Space [byte] */
59 #define PCMCIA1MemSp PCMCIAMemSp /* PCMCIA 1 Memory Space [byte] */
61 #define _PCMCIA(Nb) /* PCMCIA [0..1] */ \
62 (0x20000000 + (Nb) * PCMCIASp)
63 #define _PCMCIAIO(Nb) _PCMCIA(Nb) /* PCMCIA I/O [0..1] */
64 #define _PCMCIAAttr(Nb) /* PCMCIA Attribute [0..1] */ \
65 (_PCMCIA(Nb) + 2 * PCMCIAPrtSp)
66 #define _PCMCIAMem(Nb) /* PCMCIA Memory [0..1] */ \
67 (_PCMCIA(Nb) + 3 * PCMCIAPrtSp)
69 #define _PCMCIA0 _PCMCIA(0) /* PCMCIA 0 */
70 #define _PCMCIA0IO _PCMCIAIO(0) /* PCMCIA 0 I/O */
71 #define _PCMCIA0Attr _PCMCIAAttr(0) /* PCMCIA 0 Attribute */
72 #define _PCMCIA0Mem _PCMCIAMem(0) /* PCMCIA 0 Memory */
74 #define _PCMCIA1 _PCMCIA(1) /* PCMCIA 1 */
75 #define _PCMCIA1IO _PCMCIAIO(1) /* PCMCIA 1 I/O */
76 #define _PCMCIA1Attr _PCMCIAAttr(1) /* PCMCIA 1 Attribute */
77 #define _PCMCIA1Mem _PCMCIAMem(1) /* PCMCIA 1 Memory */
80 #define MCXX_SETUP_MASK (0x7f)
81 #define MCXX_ASST_MASK (0x1f)
82 #define MCXX_HOLD_MASK (0x3f)
83 #define MCXX_SETUP_SHIFT (0)
84 #define MCXX_ASST_SHIFT (7)
85 #define MCXX_HOLD_SHIFT (14)
87 static inline u_int pxa2xx_mcxx_hold(u_int pcmcia_cycle_ns,
88 u_int mem_clk_10khz)
90 u_int code = pcmcia_cycle_ns * mem_clk_10khz;
91 return (code / 300000) + ((code % 300000) ? 1 : 0) - 1;
94 static inline u_int pxa2xx_mcxx_asst(u_int pcmcia_cycle_ns,
95 u_int mem_clk_10khz)
97 u_int code = pcmcia_cycle_ns * mem_clk_10khz;
98 return (code / 300000) + ((code % 300000) ? 1 : 0) + 1;
101 static inline u_int pxa2xx_mcxx_setup(u_int pcmcia_cycle_ns,
102 u_int mem_clk_10khz)
104 u_int code = pcmcia_cycle_ns * mem_clk_10khz;
105 return (code / 100000) + ((code % 100000) ? 1 : 0) - 1;
108 /* This function returns the (approximate) command assertion period, in
109 * nanoseconds, for a given CPU clock frequency and MCXX_ASST value:
111 static inline u_int pxa2xx_pcmcia_cmd_time(u_int mem_clk_10khz,
112 u_int pcmcia_mcxx_asst)
114 return (300000 * (pcmcia_mcxx_asst + 1) / mem_clk_10khz);
117 static int pxa2xx_pcmcia_set_mcmem( int sock, int speed, int clock )
119 MCMEM(sock) = ((pxa2xx_mcxx_setup(speed, clock)
120 & MCXX_SETUP_MASK) << MCXX_SETUP_SHIFT)
121 | ((pxa2xx_mcxx_asst(speed, clock)
122 & MCXX_ASST_MASK) << MCXX_ASST_SHIFT)
123 | ((pxa2xx_mcxx_hold(speed, clock)
124 & MCXX_HOLD_MASK) << MCXX_HOLD_SHIFT);
126 return 0;
129 static int pxa2xx_pcmcia_set_mcio( int sock, int speed, int clock )
131 MCIO(sock) = ((pxa2xx_mcxx_setup(speed, clock)
132 & MCXX_SETUP_MASK) << MCXX_SETUP_SHIFT)
133 | ((pxa2xx_mcxx_asst(speed, clock)
134 & MCXX_ASST_MASK) << MCXX_ASST_SHIFT)
135 | ((pxa2xx_mcxx_hold(speed, clock)
136 & MCXX_HOLD_MASK) << MCXX_HOLD_SHIFT);
138 return 0;
141 static int pxa2xx_pcmcia_set_mcatt( int sock, int speed, int clock )
143 MCATT(sock) = ((pxa2xx_mcxx_setup(speed, clock)
144 & MCXX_SETUP_MASK) << MCXX_SETUP_SHIFT)
145 | ((pxa2xx_mcxx_asst(speed, clock)
146 & MCXX_ASST_MASK) << MCXX_ASST_SHIFT)
147 | ((pxa2xx_mcxx_hold(speed, clock)
148 & MCXX_HOLD_MASK) << MCXX_HOLD_SHIFT);
150 return 0;
153 static int pxa2xx_pcmcia_set_mcxx(struct soc_pcmcia_socket *skt, unsigned int clk)
155 struct soc_pcmcia_timing timing;
156 int sock = skt->nr;
158 soc_common_pcmcia_get_timing(skt, &timing);
160 pxa2xx_pcmcia_set_mcmem(sock, timing.mem, clk);
161 pxa2xx_pcmcia_set_mcatt(sock, timing.attr, clk);
162 pxa2xx_pcmcia_set_mcio(sock, timing.io, clk);
164 return 0;
167 static int pxa2xx_pcmcia_set_timing(struct soc_pcmcia_socket *skt)
169 unsigned int clk = get_memclk_frequency_10khz();
170 return pxa2xx_pcmcia_set_mcxx(skt, clk);
173 #ifdef CONFIG_CPU_FREQ
175 static int
176 pxa2xx_pcmcia_frequency_change(struct soc_pcmcia_socket *skt,
177 unsigned long val,
178 struct cpufreq_freqs *freqs)
180 switch (val) {
181 case CPUFREQ_PRECHANGE:
182 if (freqs->new > freqs->old) {
183 debug(skt, 2, "new frequency %u.%uMHz > %u.%uMHz, "
184 "pre-updating\n",
185 freqs->new / 1000, (freqs->new / 100) % 10,
186 freqs->old / 1000, (freqs->old / 100) % 10);
187 pxa2xx_pcmcia_set_timing(skt);
189 break;
191 case CPUFREQ_POSTCHANGE:
192 if (freqs->new < freqs->old) {
193 debug(skt, 2, "new frequency %u.%uMHz < %u.%uMHz, "
194 "post-updating\n",
195 freqs->new / 1000, (freqs->new / 100) % 10,
196 freqs->old / 1000, (freqs->old / 100) % 10);
197 pxa2xx_pcmcia_set_timing(skt);
199 break;
201 return 0;
203 #endif
205 static void pxa2xx_configure_sockets(struct device *dev)
207 struct pcmcia_low_level *ops = dev->platform_data;
210 * We have at least one socket, so set MECR:CIT
211 * (Card Is There)
213 MECR |= MECR_CIT;
215 /* Set MECR:NOS (Number Of Sockets) */
216 if ((ops->first + ops->nr) > 1 ||
217 machine_is_viper() || machine_is_arcom_zeus())
218 MECR |= MECR_NOS;
219 else
220 MECR &= ~MECR_NOS;
223 static const char *skt_names[] = {
224 "PCMCIA socket 0",
225 "PCMCIA socket 1",
228 #define SKT_DEV_INFO_SIZE(n) \
229 (sizeof(struct skt_dev_info) + (n)*sizeof(struct soc_pcmcia_socket))
231 int pxa2xx_drv_pcmcia_add_one(struct soc_pcmcia_socket *skt)
233 skt->res_skt.start = _PCMCIA(skt->nr);
234 skt->res_skt.end = _PCMCIA(skt->nr) + PCMCIASp - 1;
235 skt->res_skt.name = skt_names[skt->nr];
236 skt->res_skt.flags = IORESOURCE_MEM;
238 skt->res_io.start = _PCMCIAIO(skt->nr);
239 skt->res_io.end = _PCMCIAIO(skt->nr) + PCMCIAIOSp - 1;
240 skt->res_io.name = "io";
241 skt->res_io.flags = IORESOURCE_MEM | IORESOURCE_BUSY;
243 skt->res_mem.start = _PCMCIAMem(skt->nr);
244 skt->res_mem.end = _PCMCIAMem(skt->nr) + PCMCIAMemSp - 1;
245 skt->res_mem.name = "memory";
246 skt->res_mem.flags = IORESOURCE_MEM;
248 skt->res_attr.start = _PCMCIAAttr(skt->nr);
249 skt->res_attr.end = _PCMCIAAttr(skt->nr) + PCMCIAAttrSp - 1;
250 skt->res_attr.name = "attribute";
251 skt->res_attr.flags = IORESOURCE_MEM;
253 return soc_pcmcia_add_one(skt);
255 EXPORT_SYMBOL(pxa2xx_drv_pcmcia_add_one);
257 void pxa2xx_drv_pcmcia_ops(struct pcmcia_low_level *ops)
259 /* Provide our PXA2xx specific timing routines. */
260 ops->set_timing = pxa2xx_pcmcia_set_timing;
261 #ifdef CONFIG_CPU_FREQ
262 ops->frequency_change = pxa2xx_pcmcia_frequency_change;
263 #endif
265 EXPORT_SYMBOL(pxa2xx_drv_pcmcia_ops);
267 static int pxa2xx_drv_pcmcia_probe(struct platform_device *dev)
269 int i, ret = 0;
270 struct pcmcia_low_level *ops;
271 struct skt_dev_info *sinfo;
272 struct soc_pcmcia_socket *skt;
274 ops = (struct pcmcia_low_level *)dev->dev.platform_data;
275 if (!ops)
276 return -ENODEV;
278 pxa2xx_drv_pcmcia_ops(ops);
280 sinfo = kzalloc(SKT_DEV_INFO_SIZE(ops->nr), GFP_KERNEL);
281 if (!sinfo)
282 return -ENOMEM;
284 sinfo->nskt = ops->nr;
286 /* Initialize processor specific parameters */
287 for (i = 0; i < ops->nr; i++) {
288 skt = &sinfo->skt[i];
290 skt->nr = ops->first + i;
291 skt->ops = ops;
292 skt->socket.owner = ops->owner;
293 skt->socket.dev.parent = &dev->dev;
294 skt->socket.pci_irq = NO_IRQ;
296 ret = pxa2xx_drv_pcmcia_add_one(skt);
297 if (ret)
298 break;
301 if (ret) {
302 while (--i >= 0)
303 soc_pcmcia_remove_one(&sinfo->skt[i]);
304 kfree(sinfo);
305 } else {
306 pxa2xx_configure_sockets(&dev->dev);
307 dev_set_drvdata(&dev->dev, sinfo);
310 return ret;
313 static int pxa2xx_drv_pcmcia_remove(struct platform_device *dev)
315 struct skt_dev_info *sinfo = platform_get_drvdata(dev);
316 int i;
318 platform_set_drvdata(dev, NULL);
320 for (i = 0; i < sinfo->nskt; i++)
321 soc_pcmcia_remove_one(&sinfo->skt[i]);
323 kfree(sinfo);
324 return 0;
327 static int pxa2xx_drv_pcmcia_resume(struct device *dev)
329 pxa2xx_configure_sockets(dev);
330 return 0;
333 static const struct dev_pm_ops pxa2xx_drv_pcmcia_pm_ops = {
334 .resume = pxa2xx_drv_pcmcia_resume,
337 static struct platform_driver pxa2xx_pcmcia_driver = {
338 .probe = pxa2xx_drv_pcmcia_probe,
339 .remove = pxa2xx_drv_pcmcia_remove,
340 .driver = {
341 .name = "pxa2xx-pcmcia",
342 .owner = THIS_MODULE,
343 .pm = &pxa2xx_drv_pcmcia_pm_ops,
347 static int __init pxa2xx_pcmcia_init(void)
349 return platform_driver_register(&pxa2xx_pcmcia_driver);
352 static void __exit pxa2xx_pcmcia_exit(void)
354 platform_driver_unregister(&pxa2xx_pcmcia_driver);
357 fs_initcall(pxa2xx_pcmcia_init);
358 module_exit(pxa2xx_pcmcia_exit);
360 MODULE_AUTHOR("Stefan Eletzhofer <stefan.eletzhofer@inquant.de> and Ian Molton <spyro@f2s.com>");
361 MODULE_DESCRIPTION("Linux PCMCIA Card Services: PXA2xx core socket driver");
362 MODULE_LICENSE("GPL");
363 MODULE_ALIAS("platform:pxa2xx-pcmcia");