1 /*======================================================================
3 Device driver for the PCMCIA control functionality of PXA2xx
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/init.h>
21 #include <linux/cpufreq.h>
22 #include <linux/ioport.h>
23 #include <linux/kernel.h>
24 #include <linux/spinlock.h>
25 #include <linux/platform_device.h>
27 #include <mach/hardware.h>
30 #include <asm/system.h>
31 #include <mach/pxa-regs.h>
32 #include <mach/pxa2xx-regs.h>
33 #include <asm/mach-types.h>
35 #include <pcmcia/cs_types.h>
36 #include <pcmcia/ss.h>
37 #include <pcmcia/cistpl.h>
39 #include "soc_common.h"
40 #include "pxa2xx_base.h"
43 #define MCXX_SETUP_MASK (0x7f)
44 #define MCXX_ASST_MASK (0x1f)
45 #define MCXX_HOLD_MASK (0x3f)
46 #define MCXX_SETUP_SHIFT (0)
47 #define MCXX_ASST_SHIFT (7)
48 #define MCXX_HOLD_SHIFT (14)
50 static inline u_int
pxa2xx_mcxx_hold(u_int pcmcia_cycle_ns
,
53 u_int code
= pcmcia_cycle_ns
* mem_clk_10khz
;
54 return (code
/ 300000) + ((code
% 300000) ? 1 : 0) - 1;
57 static inline u_int
pxa2xx_mcxx_asst(u_int pcmcia_cycle_ns
,
60 u_int code
= pcmcia_cycle_ns
* mem_clk_10khz
;
61 return (code
/ 300000) + ((code
% 300000) ? 1 : 0) + 1;
64 static inline u_int
pxa2xx_mcxx_setup(u_int pcmcia_cycle_ns
,
67 u_int code
= pcmcia_cycle_ns
* mem_clk_10khz
;
68 return (code
/ 100000) + ((code
% 100000) ? 1 : 0) - 1;
71 /* This function returns the (approximate) command assertion period, in
72 * nanoseconds, for a given CPU clock frequency and MCXX_ASST value:
74 static inline u_int
pxa2xx_pcmcia_cmd_time(u_int mem_clk_10khz
,
75 u_int pcmcia_mcxx_asst
)
77 return (300000 * (pcmcia_mcxx_asst
+ 1) / mem_clk_10khz
);
80 static int pxa2xx_pcmcia_set_mcmem( int sock
, int speed
, int clock
)
82 MCMEM(sock
) = ((pxa2xx_mcxx_setup(speed
, clock
)
83 & MCXX_SETUP_MASK
) << MCXX_SETUP_SHIFT
)
84 | ((pxa2xx_mcxx_asst(speed
, clock
)
85 & MCXX_ASST_MASK
) << MCXX_ASST_SHIFT
)
86 | ((pxa2xx_mcxx_hold(speed
, clock
)
87 & MCXX_HOLD_MASK
) << MCXX_HOLD_SHIFT
);
92 static int pxa2xx_pcmcia_set_mcio( int sock
, int speed
, int clock
)
94 MCIO(sock
) = ((pxa2xx_mcxx_setup(speed
, clock
)
95 & MCXX_SETUP_MASK
) << MCXX_SETUP_SHIFT
)
96 | ((pxa2xx_mcxx_asst(speed
, clock
)
97 & MCXX_ASST_MASK
) << MCXX_ASST_SHIFT
)
98 | ((pxa2xx_mcxx_hold(speed
, clock
)
99 & MCXX_HOLD_MASK
) << MCXX_HOLD_SHIFT
);
104 static int pxa2xx_pcmcia_set_mcatt( int sock
, int speed
, int clock
)
106 MCATT(sock
) = ((pxa2xx_mcxx_setup(speed
, clock
)
107 & MCXX_SETUP_MASK
) << MCXX_SETUP_SHIFT
)
108 | ((pxa2xx_mcxx_asst(speed
, clock
)
109 & MCXX_ASST_MASK
) << MCXX_ASST_SHIFT
)
110 | ((pxa2xx_mcxx_hold(speed
, clock
)
111 & MCXX_HOLD_MASK
) << MCXX_HOLD_SHIFT
);
116 static int pxa2xx_pcmcia_set_mcxx(struct soc_pcmcia_socket
*skt
, unsigned int clk
)
118 struct soc_pcmcia_timing timing
;
121 soc_common_pcmcia_get_timing(skt
, &timing
);
123 pxa2xx_pcmcia_set_mcmem(sock
, timing
.mem
, clk
);
124 pxa2xx_pcmcia_set_mcatt(sock
, timing
.attr
, clk
);
125 pxa2xx_pcmcia_set_mcio(sock
, timing
.io
, clk
);
130 static int pxa2xx_pcmcia_set_timing(struct soc_pcmcia_socket
*skt
)
132 unsigned int clk
= get_memclk_frequency_10khz();
133 return pxa2xx_pcmcia_set_mcxx(skt
, clk
);
136 #ifdef CONFIG_CPU_FREQ
139 pxa2xx_pcmcia_frequency_change(struct soc_pcmcia_socket
*skt
,
141 struct cpufreq_freqs
*freqs
)
143 #warning "it's not clear if this is right since the core CPU (N) clock has no effect on the memory (L) clock"
145 case CPUFREQ_PRECHANGE
:
146 if (freqs
->new > freqs
->old
) {
147 debug(skt
, 2, "new frequency %u.%uMHz > %u.%uMHz, "
149 freqs
->new / 1000, (freqs
->new / 100) % 10,
150 freqs
->old
/ 1000, (freqs
->old
/ 100) % 10);
151 pxa2xx_pcmcia_set_mcxx(skt
, freqs
->new);
155 case CPUFREQ_POSTCHANGE
:
156 if (freqs
->new < freqs
->old
) {
157 debug(skt
, 2, "new frequency %u.%uMHz < %u.%uMHz, "
159 freqs
->new / 1000, (freqs
->new / 100) % 10,
160 freqs
->old
/ 1000, (freqs
->old
/ 100) % 10);
161 pxa2xx_pcmcia_set_mcxx(skt
, freqs
->new);
169 static void pxa2xx_configure_sockets(struct device
*dev
)
171 struct pcmcia_low_level
*ops
= dev
->platform_data
;
174 * We have at least one socket, so set MECR:CIT
179 /* Set MECR:NOS (Number Of Sockets) */
180 if (ops
->nr
> 1 || machine_is_viper())
186 int __pxa2xx_drv_pcmcia_probe(struct device
*dev
)
189 struct pcmcia_low_level
*ops
;
191 if (!dev
|| !dev
->platform_data
)
194 ops
= (struct pcmcia_low_level
*)dev
->platform_data
;
196 /* Provide our PXA2xx specific timing routines. */
197 ops
->set_timing
= pxa2xx_pcmcia_set_timing
;
198 #ifdef CONFIG_CPU_FREQ
199 ops
->frequency_change
= pxa2xx_pcmcia_frequency_change
;
202 ret
= soc_common_drv_pcmcia_probe(dev
, ops
, ops
->first
, ops
->nr
);
205 pxa2xx_configure_sockets(dev
);
209 EXPORT_SYMBOL(__pxa2xx_drv_pcmcia_probe
);
212 static int pxa2xx_drv_pcmcia_probe(struct platform_device
*dev
)
214 return __pxa2xx_drv_pcmcia_probe(&dev
->dev
);
217 static int pxa2xx_drv_pcmcia_remove(struct platform_device
*dev
)
219 return soc_common_drv_pcmcia_remove(&dev
->dev
);
222 static int pxa2xx_drv_pcmcia_suspend(struct platform_device
*dev
, pm_message_t state
)
224 return pcmcia_socket_dev_suspend(&dev
->dev
, state
);
227 static int pxa2xx_drv_pcmcia_resume(struct platform_device
*dev
)
229 pxa2xx_configure_sockets(&dev
->dev
);
230 return pcmcia_socket_dev_resume(&dev
->dev
);
233 static struct platform_driver pxa2xx_pcmcia_driver
= {
234 .probe
= pxa2xx_drv_pcmcia_probe
,
235 .remove
= pxa2xx_drv_pcmcia_remove
,
236 .suspend
= pxa2xx_drv_pcmcia_suspend
,
237 .resume
= pxa2xx_drv_pcmcia_resume
,
239 .name
= "pxa2xx-pcmcia",
240 .owner
= THIS_MODULE
,
244 static int __init
pxa2xx_pcmcia_init(void)
246 return platform_driver_register(&pxa2xx_pcmcia_driver
);
249 static void __exit
pxa2xx_pcmcia_exit(void)
251 platform_driver_unregister(&pxa2xx_pcmcia_driver
);
254 fs_initcall(pxa2xx_pcmcia_init
);
255 module_exit(pxa2xx_pcmcia_exit
);
257 MODULE_AUTHOR("Stefan Eletzhofer <stefan.eletzhofer@inquant.de> and Ian Molton <spyro@f2s.com>");
258 MODULE_DESCRIPTION("Linux PCMCIA Card Services: PXA2xx core socket driver");
259 MODULE_LICENSE("GPL");
260 MODULE_ALIAS("platform:pxa2xx-pcmcia");