blob: 87481ce60dfb4df542b7becd0a1a763a1c70325c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*======================================================================
2
3 Device driver for the PCMCIA control functionality of PXA2xx
4 microprocessors.
5
6 The contents of this file may be used under the
7 terms of the GNU Public License version 2 (the "GPL")
8
9 (c) Ian Molton (spyro@f2s.com) 2003
10 (c) Stefan Eletzhofer (stefan.eletzhofer@inquant.de) 2003,4
11
12 derived from sa11xx_base.c
13
14 Portions created by John G. Dorsey are
15 Copyright (C) 1999 John G. Dorsey.
16
17 ======================================================================*/
18
19#include <linux/module.h>
20#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/cpufreq.h>
22#include <linux/ioport.h>
23#include <linux/kernel.h>
24#include <linux/spinlock.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010025#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Russell Kinga09e64f2008-08-05 16:14:15 +010027#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/io.h>
29#include <asm/irq.h>
30#include <asm/system.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010031#include <mach/pxa2xx-regs.h>
Marc Zyngier20f18ff2008-08-19 12:15:53 +020032#include <asm/mach-types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <pcmcia/cs_types.h>
35#include <pcmcia/ss.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <pcmcia/cistpl.h>
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "soc_common.h"
39#include "pxa2xx_base.h"
40
Eric Miaob393c692009-01-19 17:34:27 +080041/*
42 * Personal Computer Memory Card International Association (PCMCIA) sockets
43 */
44
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] */
50
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] */
55
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] */
60
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)
68
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 */
73
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 */
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
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)
86
87static inline u_int pxa2xx_mcxx_hold(u_int pcmcia_cycle_ns,
88 u_int mem_clk_10khz)
89{
90 u_int code = pcmcia_cycle_ns * mem_clk_10khz;
91 return (code / 300000) + ((code % 300000) ? 1 : 0) - 1;
92}
93
94static inline u_int pxa2xx_mcxx_asst(u_int pcmcia_cycle_ns,
95 u_int mem_clk_10khz)
96{
97 u_int code = pcmcia_cycle_ns * mem_clk_10khz;
Milan Plzik24d65722007-10-16 01:23:49 -070098 return (code / 300000) + ((code % 300000) ? 1 : 0) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
101static inline u_int pxa2xx_mcxx_setup(u_int pcmcia_cycle_ns,
102 u_int mem_clk_10khz)
103{
104 u_int code = pcmcia_cycle_ns * mem_clk_10khz;
105 return (code / 100000) + ((code % 100000) ? 1 : 0) - 1;
106}
107
108/* This function returns the (approximate) command assertion period, in
109 * nanoseconds, for a given CPU clock frequency and MCXX_ASST value:
110 */
111static inline u_int pxa2xx_pcmcia_cmd_time(u_int mem_clk_10khz,
112 u_int pcmcia_mcxx_asst)
113{
114 return (300000 * (pcmcia_mcxx_asst + 1) / mem_clk_10khz);
115}
116
117static int pxa2xx_pcmcia_set_mcmem( int sock, int speed, int clock )
118{
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);
125
126 return 0;
127}
128
129static int pxa2xx_pcmcia_set_mcio( int sock, int speed, int clock )
130{
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);
137
138 return 0;
139}
140
141static int pxa2xx_pcmcia_set_mcatt( int sock, int speed, int clock )
142{
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);
149
150 return 0;
151}
152
153static int pxa2xx_pcmcia_set_mcxx(struct soc_pcmcia_socket *skt, unsigned int clk)
154{
155 struct soc_pcmcia_timing timing;
156 int sock = skt->nr;
157
158 soc_common_pcmcia_get_timing(skt, &timing);
159
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);
163
164 return 0;
165}
166
167static int pxa2xx_pcmcia_set_timing(struct soc_pcmcia_socket *skt)
168{
169 unsigned int clk = get_memclk_frequency_10khz();
170 return pxa2xx_pcmcia_set_mcxx(skt, clk);
171}
172
173#ifdef CONFIG_CPU_FREQ
174
175static int
176pxa2xx_pcmcia_frequency_change(struct soc_pcmcia_socket *skt,
177 unsigned long val,
178 struct cpufreq_freqs *freqs)
179{
180#warning "it's not clear if this is right since the core CPU (N) clock has no effect on the memory (L) clock"
181 switch (val) {
182 case CPUFREQ_PRECHANGE:
183 if (freqs->new > freqs->old) {
184 debug(skt, 2, "new frequency %u.%uMHz > %u.%uMHz, "
185 "pre-updating\n",
186 freqs->new / 1000, (freqs->new / 100) % 10,
187 freqs->old / 1000, (freqs->old / 100) % 10);
188 pxa2xx_pcmcia_set_mcxx(skt, freqs->new);
189 }
190 break;
191
192 case CPUFREQ_POSTCHANGE:
193 if (freqs->new < freqs->old) {
194 debug(skt, 2, "new frequency %u.%uMHz < %u.%uMHz, "
195 "post-updating\n",
196 freqs->new / 1000, (freqs->new / 100) % 10,
197 freqs->old / 1000, (freqs->old / 100) % 10);
198 pxa2xx_pcmcia_set_mcxx(skt, freqs->new);
199 }
200 break;
201 }
202 return 0;
203}
204#endif
205
Marc Zyngier20f18ff2008-08-19 12:15:53 +0200206static void pxa2xx_configure_sockets(struct device *dev)
207{
208 struct pcmcia_low_level *ops = dev->platform_data;
209
210 /*
211 * We have at least one socket, so set MECR:CIT
212 * (Card Is There)
213 */
214 MECR |= MECR_CIT;
215
216 /* Set MECR:NOS (Number Of Sockets) */
Marc Zyngierc2de1c382009-11-14 13:39:13 +0100217 if ((ops->first + ops->nr) > 1 ||
218 machine_is_viper() || machine_is_arcom_zeus())
Marc Zyngier20f18ff2008-08-19 12:15:53 +0200219 MECR |= MECR_NOS;
220 else
221 MECR &= ~MECR_NOS;
222}
223
Eric Miaob393c692009-01-19 17:34:27 +0800224static const char *skt_names[] = {
225 "PCMCIA socket 0",
226 "PCMCIA socket 1",
227};
228
229#define SKT_DEV_INFO_SIZE(n) \
230 (sizeof(struct skt_dev_info) + (n)*sizeof(struct soc_pcmcia_socket))
231
Russell King - ARM Linux701a5dc2009-03-29 19:42:44 +0100232int pxa2xx_drv_pcmcia_add_one(struct soc_pcmcia_socket *skt)
Russell King - ARM Linuxda4f0072009-03-29 19:23:42 +0100233{
234 skt->res_skt.start = _PCMCIA(skt->nr);
235 skt->res_skt.end = _PCMCIA(skt->nr) + PCMCIASp - 1;
236 skt->res_skt.name = skt_names[skt->nr];
237 skt->res_skt.flags = IORESOURCE_MEM;
238
239 skt->res_io.start = _PCMCIAIO(skt->nr);
240 skt->res_io.end = _PCMCIAIO(skt->nr) + PCMCIAIOSp - 1;
241 skt->res_io.name = "io";
242 skt->res_io.flags = IORESOURCE_MEM | IORESOURCE_BUSY;
243
244 skt->res_mem.start = _PCMCIAMem(skt->nr);
245 skt->res_mem.end = _PCMCIAMem(skt->nr) + PCMCIAMemSp - 1;
246 skt->res_mem.name = "memory";
247 skt->res_mem.flags = IORESOURCE_MEM;
248
249 skt->res_attr.start = _PCMCIAAttr(skt->nr);
250 skt->res_attr.end = _PCMCIAAttr(skt->nr) + PCMCIAAttrSp - 1;
251 skt->res_attr.name = "attribute";
252 skt->res_attr.flags = IORESOURCE_MEM;
253
254 return soc_pcmcia_add_one(skt);
255}
256
Russell King - ARM Linux701a5dc2009-03-29 19:42:44 +0100257void pxa2xx_drv_pcmcia_ops(struct pcmcia_low_level *ops)
258{
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
264}
265
Russell King94686132006-10-28 22:42:56 +0100266int __pxa2xx_drv_pcmcia_probe(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Russell King - ARM Linux701a5dc2009-03-29 19:42:44 +0100268 int i, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 struct pcmcia_low_level *ops;
Eric Miaob393c692009-01-19 17:34:27 +0800270 struct skt_dev_info *sinfo;
271 struct soc_pcmcia_socket *skt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 if (!dev || !dev->platform_data)
274 return -ENODEV;
275
276 ops = (struct pcmcia_low_level *)dev->platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Russell King - ARM Linux701a5dc2009-03-29 19:42:44 +0100278 pxa2xx_drv_pcmcia_ops(ops);
Russell King - ARM Linuxda4f0072009-03-29 19:23:42 +0100279
Eric Miaob393c692009-01-19 17:34:27 +0800280 sinfo = kzalloc(SKT_DEV_INFO_SIZE(ops->nr), GFP_KERNEL);
281 if (!sinfo)
282 return -ENOMEM;
283
284 sinfo->nskt = ops->nr;
285
286 /* Initialize processor specific parameters */
287 for (i = 0; i < ops->nr; i++) {
288 skt = &sinfo->skt[i];
289
Russell King - ARM Linuxda4f0072009-03-29 19:23:42 +0100290 skt->nr = ops->first + i;
Russell King - ARM Linuxda4f0072009-03-29 19:23:42 +0100291 skt->ops = ops;
292 skt->socket.owner = ops->owner;
293 skt->socket.dev.parent = dev;
Russell King - ARM Linux66024db2009-03-29 22:45:26 +0100294 skt->socket.pci_irq = NO_IRQ;
Eric Miaob393c692009-01-19 17:34:27 +0800295
Russell King - ARM Linuxda4f0072009-03-29 19:23:42 +0100296 ret = pxa2xx_drv_pcmcia_add_one(skt);
297 if (ret)
298 break;
Eric Miaob393c692009-01-19 17:34:27 +0800299 }
300
Russell King - ARM Linuxda4f0072009-03-29 19:23:42 +0100301 if (ret) {
302 while (--i >= 0)
303 soc_pcmcia_remove_one(&sinfo->skt[i]);
304 kfree(sinfo);
305 } else {
Marc Zyngier20f18ff2008-08-19 12:15:53 +0200306 pxa2xx_configure_sockets(dev);
Russell King - ARM Linuxda4f0072009-03-29 19:23:42 +0100307 dev_set_drvdata(dev, sinfo);
308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 return ret;
311}
Russell King94686132006-10-28 22:42:56 +0100312EXPORT_SYMBOL(__pxa2xx_drv_pcmcia_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Russell King94686132006-10-28 22:42:56 +0100314
315static int pxa2xx_drv_pcmcia_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
Russell King94686132006-10-28 22:42:56 +0100317 return __pxa2xx_drv_pcmcia_probe(&dev->dev);
318}
319
320static int pxa2xx_drv_pcmcia_remove(struct platform_device *dev)
321{
Russell King - ARM Linuxbe854582009-03-26 22:21:18 +0000322 struct skt_dev_info *sinfo = platform_get_drvdata(dev);
323 int i;
324
325 platform_set_drvdata(dev, NULL);
326
327 for (i = 0; i < sinfo->nskt; i++)
328 soc_pcmcia_remove_one(&sinfo->skt[i]);
329
330 kfree(sinfo);
331 return 0;
Russell King94686132006-10-28 22:42:56 +0100332}
333
Mike Rapoport85c61022009-07-29 11:59:25 +0300334static int pxa2xx_drv_pcmcia_suspend(struct device *dev)
Russell King94686132006-10-28 22:42:56 +0100335{
Rafael J. Wysocki827b4642009-09-29 00:10:41 +0200336 return pcmcia_socket_dev_suspend(dev);
Russell King94686132006-10-28 22:42:56 +0100337}
338
Mike Rapoport85c61022009-07-29 11:59:25 +0300339static int pxa2xx_drv_pcmcia_resume(struct device *dev)
Russell King94686132006-10-28 22:42:56 +0100340{
Mike Rapoport85c61022009-07-29 11:59:25 +0300341 pxa2xx_configure_sockets(dev);
342 return pcmcia_socket_dev_resume(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
Mike Rapoport85c61022009-07-29 11:59:25 +0300345static struct dev_pm_ops pxa2xx_drv_pcmcia_pm_ops = {
346 .suspend = pxa2xx_drv_pcmcia_suspend,
347 .resume = pxa2xx_drv_pcmcia_resume,
348};
349
Russell King94686132006-10-28 22:42:56 +0100350static struct platform_driver pxa2xx_pcmcia_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 .probe = pxa2xx_drv_pcmcia_probe,
Russell King94686132006-10-28 22:42:56 +0100352 .remove = pxa2xx_drv_pcmcia_remove,
Russell King94686132006-10-28 22:42:56 +0100353 .driver = {
354 .name = "pxa2xx-pcmcia",
Kay Sievers12c2c012008-04-15 14:34:34 -0700355 .owner = THIS_MODULE,
Mike Rapoport85c61022009-07-29 11:59:25 +0300356 .pm = &pxa2xx_drv_pcmcia_pm_ops,
Russell King94686132006-10-28 22:42:56 +0100357 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358};
359
360static int __init pxa2xx_pcmcia_init(void)
361{
Russell King94686132006-10-28 22:42:56 +0100362 return platform_driver_register(&pxa2xx_pcmcia_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
365static void __exit pxa2xx_pcmcia_exit(void)
366{
Russell King94686132006-10-28 22:42:56 +0100367 platform_driver_unregister(&pxa2xx_pcmcia_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
369
Richard Purdief36598ae2005-09-03 19:39:25 +0100370fs_initcall(pxa2xx_pcmcia_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371module_exit(pxa2xx_pcmcia_exit);
372
373MODULE_AUTHOR("Stefan Eletzhofer <stefan.eletzhofer@inquant.de> and Ian Molton <spyro@f2s.com>");
374MODULE_DESCRIPTION("Linux PCMCIA Card Services: PXA2xx core socket driver");
375MODULE_LICENSE("GPL");
Kay Sievers12c2c012008-04-15 14:34:34 -0700376MODULE_ALIAS("platform:pxa2xx-pcmcia");