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/config.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 <asm/hardware.h>
31 #include <asm/system.h>
32 #include <asm/arch/pxa-regs.h>
34 #include <pcmcia/cs_types.h>
35 #include <pcmcia/ss.h>
36 #include <pcmcia/bulkmem.h>
37 #include <pcmcia/cistpl.h>
39 #include "cs_internal.h"
40 #include "soc_common.h"
41 #include "pxa2xx_base.h"
44 #define MCXX_SETUP_MASK (0x7f)
45 #define MCXX_ASST_MASK (0x1f)
46 #define MCXX_HOLD_MASK (0x3f)
47 #define MCXX_SETUP_SHIFT (0)
48 #define MCXX_ASST_SHIFT (7)
49 #define MCXX_HOLD_SHIFT (14)
51 static inline u_int
pxa2xx_mcxx_hold(u_int pcmcia_cycle_ns
,
54 u_int code
= pcmcia_cycle_ns
* mem_clk_10khz
;
55 return (code
/ 300000) + ((code
% 300000) ? 1 : 0) - 1;
58 static inline u_int
pxa2xx_mcxx_asst(u_int pcmcia_cycle_ns
,
61 u_int code
= pcmcia_cycle_ns
* mem_clk_10khz
;
62 return (code
/ 300000) + ((code
% 300000) ? 1 : 0) - 1;
65 static inline u_int
pxa2xx_mcxx_setup(u_int pcmcia_cycle_ns
,
68 u_int code
= pcmcia_cycle_ns
* mem_clk_10khz
;
69 return (code
/ 100000) + ((code
% 100000) ? 1 : 0) - 1;
72 /* This function returns the (approximate) command assertion period, in
73 * nanoseconds, for a given CPU clock frequency and MCXX_ASST value:
75 static inline u_int
pxa2xx_pcmcia_cmd_time(u_int mem_clk_10khz
,
76 u_int pcmcia_mcxx_asst
)
78 return (300000 * (pcmcia_mcxx_asst
+ 1) / mem_clk_10khz
);
81 static int pxa2xx_pcmcia_set_mcmem( int sock
, int speed
, int clock
)
83 MCMEM(sock
) = ((pxa2xx_mcxx_setup(speed
, clock
)
84 & MCXX_SETUP_MASK
) << MCXX_SETUP_SHIFT
)
85 | ((pxa2xx_mcxx_asst(speed
, clock
)
86 & MCXX_ASST_MASK
) << MCXX_ASST_SHIFT
)
87 | ((pxa2xx_mcxx_hold(speed
, clock
)
88 & MCXX_HOLD_MASK
) << MCXX_HOLD_SHIFT
);
93 static int pxa2xx_pcmcia_set_mcio( int sock
, int speed
, int clock
)
95 MCIO(sock
) = ((pxa2xx_mcxx_setup(speed
, clock
)
96 & MCXX_SETUP_MASK
) << MCXX_SETUP_SHIFT
)
97 | ((pxa2xx_mcxx_asst(speed
, clock
)
98 & MCXX_ASST_MASK
) << MCXX_ASST_SHIFT
)
99 | ((pxa2xx_mcxx_hold(speed
, clock
)
100 & MCXX_HOLD_MASK
) << MCXX_HOLD_SHIFT
);
105 static int pxa2xx_pcmcia_set_mcatt( int sock
, int speed
, int clock
)
107 MCATT(sock
) = ((pxa2xx_mcxx_setup(speed
, clock
)
108 & MCXX_SETUP_MASK
) << MCXX_SETUP_SHIFT
)
109 | ((pxa2xx_mcxx_asst(speed
, clock
)
110 & MCXX_ASST_MASK
) << MCXX_ASST_SHIFT
)
111 | ((pxa2xx_mcxx_hold(speed
, clock
)
112 & MCXX_HOLD_MASK
) << MCXX_HOLD_SHIFT
);
117 static int pxa2xx_pcmcia_set_mcxx(struct soc_pcmcia_socket
*skt
, unsigned int clk
)
119 struct soc_pcmcia_timing timing
;
122 soc_common_pcmcia_get_timing(skt
, &timing
);
124 pxa2xx_pcmcia_set_mcmem(sock
, timing
.mem
, clk
);
125 pxa2xx_pcmcia_set_mcatt(sock
, timing
.attr
, clk
);
126 pxa2xx_pcmcia_set_mcio(sock
, timing
.io
, clk
);
131 static int pxa2xx_pcmcia_set_timing(struct soc_pcmcia_socket
*skt
)
133 unsigned int clk
= get_memclk_frequency_10khz();
134 return pxa2xx_pcmcia_set_mcxx(skt
, clk
);
137 #ifdef CONFIG_CPU_FREQ
140 pxa2xx_pcmcia_frequency_change(struct soc_pcmcia_socket
*skt
,
142 struct cpufreq_freqs
*freqs
)
144 #warning "it's not clear if this is right since the core CPU (N) clock has no effect on the memory (L) clock"
146 case CPUFREQ_PRECHANGE
:
147 if (freqs
->new > freqs
->old
) {
148 debug(skt
, 2, "new frequency %u.%uMHz > %u.%uMHz, "
150 freqs
->new / 1000, (freqs
->new / 100) % 10,
151 freqs
->old
/ 1000, (freqs
->old
/ 100) % 10);
152 pxa2xx_pcmcia_set_mcxx(skt
, freqs
->new);
156 case CPUFREQ_POSTCHANGE
:
157 if (freqs
->new < freqs
->old
) {
158 debug(skt
, 2, "new frequency %u.%uMHz < %u.%uMHz, "
160 freqs
->new / 1000, (freqs
->new / 100) % 10,
161 freqs
->old
/ 1000, (freqs
->old
/ 100) % 10);
162 pxa2xx_pcmcia_set_mcxx(skt
, freqs
->new);
170 int pxa2xx_drv_pcmcia_probe(struct device
*dev
)
173 struct pcmcia_low_level
*ops
;
176 if (!dev
|| !dev
->platform_data
)
179 ops
= (struct pcmcia_low_level
*)dev
->platform_data
;
183 /* Provide our PXA2xx specific timing routines. */
184 ops
->set_timing
= pxa2xx_pcmcia_set_timing
;
185 #ifdef CONFIG_CPU_FREQ
186 ops
->frequency_change
= pxa2xx_pcmcia_frequency_change
;
189 ret
= soc_common_drv_pcmcia_probe(dev
, ops
, first
, nr
);
193 * We have at least one socket, so set MECR:CIT
198 /* Set MECR:NOS (Number Of Sockets) */
207 EXPORT_SYMBOL(pxa2xx_drv_pcmcia_probe
);
209 static int pxa2xx_drv_pcmcia_resume(struct device
*dev
)
211 struct pcmcia_low_level
*ops
= dev
->platform_data
;
212 int nr
= ops
? ops
->nr
: 0;
214 MECR
= nr
> 1 ? MECR_CIT
| MECR_NOS
: (nr
> 0 ? MECR_CIT
: 0);
216 return pcmcia_socket_dev_resume(dev
);
219 static struct device_driver pxa2xx_pcmcia_driver
= {
220 .probe
= pxa2xx_drv_pcmcia_probe
,
221 .remove
= soc_common_drv_pcmcia_remove
,
222 .suspend
= pcmcia_socket_dev_suspend
,
223 .resume
= pxa2xx_drv_pcmcia_resume
,
224 .name
= "pxa2xx-pcmcia",
225 .bus
= &platform_bus_type
,
228 static int __init
pxa2xx_pcmcia_init(void)
230 return driver_register(&pxa2xx_pcmcia_driver
);
233 static void __exit
pxa2xx_pcmcia_exit(void)
235 driver_unregister(&pxa2xx_pcmcia_driver
);
238 fs_initcall(pxa2xx_pcmcia_init
);
239 module_exit(pxa2xx_pcmcia_exit
);
241 MODULE_AUTHOR("Stefan Eletzhofer <stefan.eletzhofer@inquant.de> and Ian Molton <spyro@f2s.com>");
242 MODULE_DESCRIPTION("Linux PCMCIA Card Services: PXA2xx core socket driver");
243 MODULE_LICENSE("GPL");