]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/pcmcia/pxa2xx_base.c
Merge git://git.infradead.org/users/cbou/battery-2.6.35
[net-next-2.6.git] / drivers / pcmcia / pxa2xx_base.c
CommitLineData
1da177e4
LT
1/*======================================================================
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>
5a0e3ad6 20#include <linux/slab.h>
1da177e4 21#include <linux/init.h>
1da177e4
LT
22#include <linux/cpufreq.h>
23#include <linux/ioport.h>
24#include <linux/kernel.h>
25#include <linux/spinlock.h>
d052d1be 26#include <linux/platform_device.h>
1da177e4 27
a09e64fb 28#include <mach/hardware.h>
1da177e4
LT
29#include <asm/io.h>
30#include <asm/irq.h>
31#include <asm/system.h>
a09e64fb 32#include <mach/pxa2xx-regs.h>
20f18ff3 33#include <asm/mach-types.h>
1da177e4
LT
34
35#include <pcmcia/cs_types.h>
36#include <pcmcia/ss.h>
1da177e4
LT
37#include <pcmcia/cistpl.h>
38
1da177e4
LT
39#include "soc_common.h"
40#include "pxa2xx_base.h"
41
b393c696
EM
42/*
43 * Personal Computer Memory Card International Association (PCMCIA) sockets
44 */
45
46#define PCMCIAPrtSp 0x04000000 /* PCMCIA Partition Space [byte] */
47#define PCMCIASp (4*PCMCIAPrtSp) /* PCMCIA Space [byte] */
48#define PCMCIAIOSp PCMCIAPrtSp /* PCMCIA I/O Space [byte] */
49#define PCMCIAAttrSp PCMCIAPrtSp /* PCMCIA Attribute Space [byte] */
50#define PCMCIAMemSp PCMCIAPrtSp /* PCMCIA Memory Space [byte] */
51
52#define PCMCIA0Sp PCMCIASp /* PCMCIA 0 Space [byte] */
53#define PCMCIA0IOSp PCMCIAIOSp /* PCMCIA 0 I/O Space [byte] */
54#define PCMCIA0AttrSp PCMCIAAttrSp /* PCMCIA 0 Attribute Space [byte] */
55#define PCMCIA0MemSp PCMCIAMemSp /* PCMCIA 0 Memory Space [byte] */
56
57#define PCMCIA1Sp PCMCIASp /* PCMCIA 1 Space [byte] */
58#define PCMCIA1IOSp PCMCIAIOSp /* PCMCIA 1 I/O Space [byte] */
59#define PCMCIA1AttrSp PCMCIAAttrSp /* PCMCIA 1 Attribute Space [byte] */
60#define PCMCIA1MemSp PCMCIAMemSp /* PCMCIA 1 Memory Space [byte] */
61
62#define _PCMCIA(Nb) /* PCMCIA [0..1] */ \
63 (0x20000000 + (Nb) * PCMCIASp)
64#define _PCMCIAIO(Nb) _PCMCIA(Nb) /* PCMCIA I/O [0..1] */
65#define _PCMCIAAttr(Nb) /* PCMCIA Attribute [0..1] */ \
66 (_PCMCIA(Nb) + 2 * PCMCIAPrtSp)
67#define _PCMCIAMem(Nb) /* PCMCIA Memory [0..1] */ \
68 (_PCMCIA(Nb) + 3 * PCMCIAPrtSp)
69
70#define _PCMCIA0 _PCMCIA(0) /* PCMCIA 0 */
71#define _PCMCIA0IO _PCMCIAIO(0) /* PCMCIA 0 I/O */
72#define _PCMCIA0Attr _PCMCIAAttr(0) /* PCMCIA 0 Attribute */
73#define _PCMCIA0Mem _PCMCIAMem(0) /* PCMCIA 0 Memory */
74
75#define _PCMCIA1 _PCMCIA(1) /* PCMCIA 1 */
76#define _PCMCIA1IO _PCMCIAIO(1) /* PCMCIA 1 I/O */
77#define _PCMCIA1Attr _PCMCIAAttr(1) /* PCMCIA 1 Attribute */
78#define _PCMCIA1Mem _PCMCIAMem(1) /* PCMCIA 1 Memory */
79
1da177e4
LT
80
81#define MCXX_SETUP_MASK (0x7f)
82#define MCXX_ASST_MASK (0x1f)
83#define MCXX_HOLD_MASK (0x3f)
84#define MCXX_SETUP_SHIFT (0)
85#define MCXX_ASST_SHIFT (7)
86#define MCXX_HOLD_SHIFT (14)
87
88static inline u_int pxa2xx_mcxx_hold(u_int pcmcia_cycle_ns,
89 u_int mem_clk_10khz)
90{
91 u_int code = pcmcia_cycle_ns * mem_clk_10khz;
92 return (code / 300000) + ((code % 300000) ? 1 : 0) - 1;
93}
94
95static inline u_int pxa2xx_mcxx_asst(u_int pcmcia_cycle_ns,
96 u_int mem_clk_10khz)
97{
98 u_int code = pcmcia_cycle_ns * mem_clk_10khz;
24d6572b 99 return (code / 300000) + ((code % 300000) ? 1 : 0) + 1;
1da177e4
LT
100}
101
102static inline u_int pxa2xx_mcxx_setup(u_int pcmcia_cycle_ns,
103 u_int mem_clk_10khz)
104{
105 u_int code = pcmcia_cycle_ns * mem_clk_10khz;
106 return (code / 100000) + ((code % 100000) ? 1 : 0) - 1;
107}
108
109/* This function returns the (approximate) command assertion period, in
110 * nanoseconds, for a given CPU clock frequency and MCXX_ASST value:
111 */
112static inline u_int pxa2xx_pcmcia_cmd_time(u_int mem_clk_10khz,
113 u_int pcmcia_mcxx_asst)
114{
115 return (300000 * (pcmcia_mcxx_asst + 1) / mem_clk_10khz);
116}
117
118static int pxa2xx_pcmcia_set_mcmem( int sock, int speed, int clock )
119{
120 MCMEM(sock) = ((pxa2xx_mcxx_setup(speed, clock)
121 & MCXX_SETUP_MASK) << MCXX_SETUP_SHIFT)
122 | ((pxa2xx_mcxx_asst(speed, clock)
123 & MCXX_ASST_MASK) << MCXX_ASST_SHIFT)
124 | ((pxa2xx_mcxx_hold(speed, clock)
125 & MCXX_HOLD_MASK) << MCXX_HOLD_SHIFT);
126
127 return 0;
128}
129
130static int pxa2xx_pcmcia_set_mcio( int sock, int speed, int clock )
131{
132 MCIO(sock) = ((pxa2xx_mcxx_setup(speed, clock)
133 & MCXX_SETUP_MASK) << MCXX_SETUP_SHIFT)
134 | ((pxa2xx_mcxx_asst(speed, clock)
135 & MCXX_ASST_MASK) << MCXX_ASST_SHIFT)
136 | ((pxa2xx_mcxx_hold(speed, clock)
137 & MCXX_HOLD_MASK) << MCXX_HOLD_SHIFT);
138
139 return 0;
140}
141
142static int pxa2xx_pcmcia_set_mcatt( int sock, int speed, int clock )
143{
144 MCATT(sock) = ((pxa2xx_mcxx_setup(speed, clock)
145 & MCXX_SETUP_MASK) << MCXX_SETUP_SHIFT)
146 | ((pxa2xx_mcxx_asst(speed, clock)
147 & MCXX_ASST_MASK) << MCXX_ASST_SHIFT)
148 | ((pxa2xx_mcxx_hold(speed, clock)
149 & MCXX_HOLD_MASK) << MCXX_HOLD_SHIFT);
150
151 return 0;
152}
153
154static int pxa2xx_pcmcia_set_mcxx(struct soc_pcmcia_socket *skt, unsigned int clk)
155{
156 struct soc_pcmcia_timing timing;
157 int sock = skt->nr;
158
159 soc_common_pcmcia_get_timing(skt, &timing);
160
161 pxa2xx_pcmcia_set_mcmem(sock, timing.mem, clk);
162 pxa2xx_pcmcia_set_mcatt(sock, timing.attr, clk);
163 pxa2xx_pcmcia_set_mcio(sock, timing.io, clk);
164
165 return 0;
166}
167
168static int pxa2xx_pcmcia_set_timing(struct soc_pcmcia_socket *skt)
169{
170 unsigned int clk = get_memclk_frequency_10khz();
171 return pxa2xx_pcmcia_set_mcxx(skt, clk);
172}
173
174#ifdef CONFIG_CPU_FREQ
175
176static int
177pxa2xx_pcmcia_frequency_change(struct soc_pcmcia_socket *skt,
178 unsigned long val,
179 struct cpufreq_freqs *freqs)
180{
1da177e4
LT
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);
d344a21a 188 pxa2xx_pcmcia_set_timing(skt);
1da177e4
LT
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);
d344a21a 198 pxa2xx_pcmcia_set_timing(skt);
1da177e4
LT
199 }
200 break;
201 }
202 return 0;
203}
204#endif
205
20f18ff3
MZ
206static 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) */
c2de1c38
MZ
217 if ((ops->first + ops->nr) > 1 ||
218 machine_is_viper() || machine_is_arcom_zeus())
20f18ff3
MZ
219 MECR |= MECR_NOS;
220 else
221 MECR &= ~MECR_NOS;
222}
223
b393c696
EM
224static 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
701a5dc0 232int pxa2xx_drv_pcmcia_add_one(struct soc_pcmcia_socket *skt)
da4f0073
RKAL
233{
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}
d0d26c33 256EXPORT_SYMBOL(pxa2xx_drv_pcmcia_add_one);
da4f0073 257
701a5dc0
RKAL
258void pxa2xx_drv_pcmcia_ops(struct pcmcia_low_level *ops)
259{
260 /* Provide our PXA2xx specific timing routines. */
261 ops->set_timing = pxa2xx_pcmcia_set_timing;
262#ifdef CONFIG_CPU_FREQ
263 ops->frequency_change = pxa2xx_pcmcia_frequency_change;
264#endif
265}
d0d26c33 266EXPORT_SYMBOL(pxa2xx_drv_pcmcia_ops);
701a5dc0 267
d0d26c33 268static int pxa2xx_drv_pcmcia_probe(struct platform_device *dev)
1da177e4 269{
701a5dc0 270 int i, ret = 0;
1da177e4 271 struct pcmcia_low_level *ops;
b393c696
EM
272 struct skt_dev_info *sinfo;
273 struct soc_pcmcia_socket *skt;
1da177e4 274
d0d26c33
RK
275 ops = (struct pcmcia_low_level *)dev->dev.platform_data;
276 if (!ops)
1da177e4
LT
277 return -ENODEV;
278
701a5dc0 279 pxa2xx_drv_pcmcia_ops(ops);
da4f0073 280
b393c696
EM
281 sinfo = kzalloc(SKT_DEV_INFO_SIZE(ops->nr), GFP_KERNEL);
282 if (!sinfo)
283 return -ENOMEM;
284
285 sinfo->nskt = ops->nr;
286
287 /* Initialize processor specific parameters */
288 for (i = 0; i < ops->nr; i++) {
289 skt = &sinfo->skt[i];
290
da4f0073 291 skt->nr = ops->first + i;
da4f0073
RKAL
292 skt->ops = ops;
293 skt->socket.owner = ops->owner;
a7a5ac58 294 skt->socket.dev.parent = &dev->dev;
66024db5 295 skt->socket.pci_irq = NO_IRQ;
b393c696 296
da4f0073
RKAL
297 ret = pxa2xx_drv_pcmcia_add_one(skt);
298 if (ret)
299 break;
b393c696
EM
300 }
301
da4f0073
RKAL
302 if (ret) {
303 while (--i >= 0)
304 soc_pcmcia_remove_one(&sinfo->skt[i]);
305 kfree(sinfo);
306 } else {
a7a5ac58
MZ
307 pxa2xx_configure_sockets(&dev->dev);
308 dev_set_drvdata(&dev->dev, sinfo);
da4f0073 309 }
1da177e4
LT
310
311 return ret;
312}
9468613b
RK
313
314static int pxa2xx_drv_pcmcia_remove(struct platform_device *dev)
315{
be85458e
RKAL
316 struct skt_dev_info *sinfo = platform_get_drvdata(dev);
317 int i;
318
319 platform_set_drvdata(dev, NULL);
320
321 for (i = 0; i < sinfo->nskt; i++)
322 soc_pcmcia_remove_one(&sinfo->skt[i]);
323
324 kfree(sinfo);
325 return 0;
9468613b
RK
326}
327
85c61021 328static int pxa2xx_drv_pcmcia_resume(struct device *dev)
1da177e4 329{
85c61021 330 pxa2xx_configure_sockets(dev);
d7646f76 331 return 0;
1da177e4
LT
332}
333
47145210 334static const struct dev_pm_ops pxa2xx_drv_pcmcia_pm_ops = {
85c61021
MR
335 .resume = pxa2xx_drv_pcmcia_resume,
336};
337
9468613b 338static struct platform_driver pxa2xx_pcmcia_driver = {
1da177e4 339 .probe = pxa2xx_drv_pcmcia_probe,
9468613b 340 .remove = pxa2xx_drv_pcmcia_remove,
9468613b
RK
341 .driver = {
342 .name = "pxa2xx-pcmcia",
12c2c019 343 .owner = THIS_MODULE,
85c61021 344 .pm = &pxa2xx_drv_pcmcia_pm_ops,
9468613b 345 },
1da177e4
LT
346};
347
348static int __init pxa2xx_pcmcia_init(void)
349{
9468613b 350 return platform_driver_register(&pxa2xx_pcmcia_driver);
1da177e4
LT
351}
352
353static void __exit pxa2xx_pcmcia_exit(void)
354{
9468613b 355 platform_driver_unregister(&pxa2xx_pcmcia_driver);
1da177e4
LT
356}
357
f36598ae 358fs_initcall(pxa2xx_pcmcia_init);
1da177e4
LT
359module_exit(pxa2xx_pcmcia_exit);
360
361MODULE_AUTHOR("Stefan Eletzhofer <stefan.eletzhofer@inquant.de> and Ian Molton <spyro@f2s.com>");
362MODULE_DESCRIPTION("Linux PCMCIA Card Services: PXA2xx core socket driver");
363MODULE_LICENSE("GPL");
12c2c019 364MODULE_ALIAS("platform:pxa2xx-pcmcia");