blob: 13f1e0fd3f31cf096b5c07cf10392278e0308bdc [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/pxa-regs.h>
32#include <mach/pxa2xx-regs.h>
Marc Zyngier20f18ff2008-08-19 12:15:53 +020033#include <asm/mach-types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#include <pcmcia/cs_types.h>
36#include <pcmcia/ss.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <pcmcia/cistpl.h>
38
39#include "cs_internal.h"
40#include "soc_common.h"
41#include "pxa2xx_base.h"
42
43
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)
50
51static inline u_int pxa2xx_mcxx_hold(u_int pcmcia_cycle_ns,
52 u_int mem_clk_10khz)
53{
54 u_int code = pcmcia_cycle_ns * mem_clk_10khz;
55 return (code / 300000) + ((code % 300000) ? 1 : 0) - 1;
56}
57
58static inline u_int pxa2xx_mcxx_asst(u_int pcmcia_cycle_ns,
59 u_int mem_clk_10khz)
60{
61 u_int code = pcmcia_cycle_ns * mem_clk_10khz;
Milan Plzik24d65722007-10-16 01:23:49 -070062 return (code / 300000) + ((code % 300000) ? 1 : 0) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063}
64
65static inline u_int pxa2xx_mcxx_setup(u_int pcmcia_cycle_ns,
66 u_int mem_clk_10khz)
67{
68 u_int code = pcmcia_cycle_ns * mem_clk_10khz;
69 return (code / 100000) + ((code % 100000) ? 1 : 0) - 1;
70}
71
72/* This function returns the (approximate) command assertion period, in
73 * nanoseconds, for a given CPU clock frequency and MCXX_ASST value:
74 */
75static inline u_int pxa2xx_pcmcia_cmd_time(u_int mem_clk_10khz,
76 u_int pcmcia_mcxx_asst)
77{
78 return (300000 * (pcmcia_mcxx_asst + 1) / mem_clk_10khz);
79}
80
81static int pxa2xx_pcmcia_set_mcmem( int sock, int speed, int clock )
82{
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);
89
90 return 0;
91}
92
93static int pxa2xx_pcmcia_set_mcio( int sock, int speed, int clock )
94{
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);
101
102 return 0;
103}
104
105static int pxa2xx_pcmcia_set_mcatt( int sock, int speed, int clock )
106{
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);
113
114 return 0;
115}
116
117static int pxa2xx_pcmcia_set_mcxx(struct soc_pcmcia_socket *skt, unsigned int clk)
118{
119 struct soc_pcmcia_timing timing;
120 int sock = skt->nr;
121
122 soc_common_pcmcia_get_timing(skt, &timing);
123
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);
127
128 return 0;
129}
130
131static int pxa2xx_pcmcia_set_timing(struct soc_pcmcia_socket *skt)
132{
133 unsigned int clk = get_memclk_frequency_10khz();
134 return pxa2xx_pcmcia_set_mcxx(skt, clk);
135}
136
137#ifdef CONFIG_CPU_FREQ
138
139static int
140pxa2xx_pcmcia_frequency_change(struct soc_pcmcia_socket *skt,
141 unsigned long val,
142 struct cpufreq_freqs *freqs)
143{
144#warning "it's not clear if this is right since the core CPU (N) clock has no effect on the memory (L) clock"
145 switch (val) {
146 case CPUFREQ_PRECHANGE:
147 if (freqs->new > freqs->old) {
148 debug(skt, 2, "new frequency %u.%uMHz > %u.%uMHz, "
149 "pre-updating\n",
150 freqs->new / 1000, (freqs->new / 100) % 10,
151 freqs->old / 1000, (freqs->old / 100) % 10);
152 pxa2xx_pcmcia_set_mcxx(skt, freqs->new);
153 }
154 break;
155
156 case CPUFREQ_POSTCHANGE:
157 if (freqs->new < freqs->old) {
158 debug(skt, 2, "new frequency %u.%uMHz < %u.%uMHz, "
159 "post-updating\n",
160 freqs->new / 1000, (freqs->new / 100) % 10,
161 freqs->old / 1000, (freqs->old / 100) % 10);
162 pxa2xx_pcmcia_set_mcxx(skt, freqs->new);
163 }
164 break;
165 }
166 return 0;
167}
168#endif
169
Marc Zyngier20f18ff2008-08-19 12:15:53 +0200170static void pxa2xx_configure_sockets(struct device *dev)
171{
172 struct pcmcia_low_level *ops = dev->platform_data;
173
174 /*
175 * We have at least one socket, so set MECR:CIT
176 * (Card Is There)
177 */
178 MECR |= MECR_CIT;
179
180 /* Set MECR:NOS (Number Of Sockets) */
181 if (ops->nr > 1 || machine_is_viper())
182 MECR |= MECR_NOS;
183 else
184 MECR &= ~MECR_NOS;
185}
186
Russell King94686132006-10-28 22:42:56 +0100187int __pxa2xx_drv_pcmcia_probe(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
189 int ret;
190 struct pcmcia_low_level *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 if (!dev || !dev->platform_data)
193 return -ENODEV;
194
195 ops = (struct pcmcia_low_level *)dev->platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 /* Provide our PXA2xx specific timing routines. */
198 ops->set_timing = pxa2xx_pcmcia_set_timing;
199#ifdef CONFIG_CPU_FREQ
200 ops->frequency_change = pxa2xx_pcmcia_frequency_change;
201#endif
202
Marc Zyngier20f18ff2008-08-19 12:15:53 +0200203 ret = soc_common_drv_pcmcia_probe(dev, ops, ops->first, ops->nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Marc Zyngier20f18ff2008-08-19 12:15:53 +0200205 if (!ret)
206 pxa2xx_configure_sockets(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 return ret;
209}
Russell King94686132006-10-28 22:42:56 +0100210EXPORT_SYMBOL(__pxa2xx_drv_pcmcia_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Russell King94686132006-10-28 22:42:56 +0100212
213static int pxa2xx_drv_pcmcia_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Russell King94686132006-10-28 22:42:56 +0100215 return __pxa2xx_drv_pcmcia_probe(&dev->dev);
216}
217
218static int pxa2xx_drv_pcmcia_remove(struct platform_device *dev)
219{
220 return soc_common_drv_pcmcia_remove(&dev->dev);
221}
222
223static int pxa2xx_drv_pcmcia_suspend(struct platform_device *dev, pm_message_t state)
224{
225 return pcmcia_socket_dev_suspend(&dev->dev, state);
226}
227
228static int pxa2xx_drv_pcmcia_resume(struct platform_device *dev)
229{
Marc Zyngier20f18ff2008-08-19 12:15:53 +0200230 pxa2xx_configure_sockets(&dev->dev);
Russell King94686132006-10-28 22:42:56 +0100231 return pcmcia_socket_dev_resume(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
Russell King94686132006-10-28 22:42:56 +0100234static struct platform_driver pxa2xx_pcmcia_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 .probe = pxa2xx_drv_pcmcia_probe,
Russell King94686132006-10-28 22:42:56 +0100236 .remove = pxa2xx_drv_pcmcia_remove,
237 .suspend = pxa2xx_drv_pcmcia_suspend,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 .resume = pxa2xx_drv_pcmcia_resume,
Russell King94686132006-10-28 22:42:56 +0100239 .driver = {
240 .name = "pxa2xx-pcmcia",
Kay Sievers12c2c012008-04-15 14:34:34 -0700241 .owner = THIS_MODULE,
Russell King94686132006-10-28 22:42:56 +0100242 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243};
244
245static int __init pxa2xx_pcmcia_init(void)
246{
Russell King94686132006-10-28 22:42:56 +0100247 return platform_driver_register(&pxa2xx_pcmcia_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
250static void __exit pxa2xx_pcmcia_exit(void)
251{
Russell King94686132006-10-28 22:42:56 +0100252 platform_driver_unregister(&pxa2xx_pcmcia_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
Richard Purdief36598ae2005-09-03 19:39:25 +0100255fs_initcall(pxa2xx_pcmcia_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256module_exit(pxa2xx_pcmcia_exit);
257
258MODULE_AUTHOR("Stefan Eletzhofer <stefan.eletzhofer@inquant.de> and Ian Molton <spyro@f2s.com>");
259MODULE_DESCRIPTION("Linux PCMCIA Card Services: PXA2xx core socket driver");
260MODULE_LICENSE("GPL");
Kay Sievers12c2c012008-04-15 14:34:34 -0700261MODULE_ALIAS("platform:pxa2xx-pcmcia");