blob: 28d10679e22503f3ea5e88391a2f091508d0cab9 [file] [log] [blame]
eric miao7facc2f92008-03-05 17:16:29 +08001/*
2 * linux/arch/arm/mach-pxa/mfp-pxa2xx.c
3 *
4 * PXA2xx pin mux configuration support
5 *
6 * The GPIOs on PXA2xx can be configured as one of many alternate
7 * functions, this is by concept samilar to the MFP configuration
8 * on PXA3xx, what's more important, the low power pin state and
9 * wakeup detection are also supported by the same framework.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
16#include <linux/module.h>
17#include <linux/kernel.h>
18#include <linux/init.h>
19#include <linux/sysdev.h>
20
Russell Kinga09e64f2008-08-05 16:14:15 +010021#include <mach/hardware.h>
22#include <mach/pxa-regs.h>
23#include <mach/pxa2xx-regs.h>
24#include <mach/mfp-pxa2xx.h>
eric miao7facc2f92008-03-05 17:16:29 +080025
26#include "generic.h"
27
Eric Miao5a3d9652008-09-03 18:06:34 +080028#define gpio_to_bank(gpio) ((gpio) >> 5)
29
30#define PGSR(x) __REG2(0x40F00020, (x) << 2)
31#define __GAFR(u, x) __REG2((u) ? 0x40E00058 : 0x40E00054, (x) << 3)
32#define GAFR_L(x) __GAFR(0, x)
33#define GAFR_U(x) __GAFR(1, x)
eric miao7facc2f92008-03-05 17:16:29 +080034
35#define PWER_WE35 (1 << 24)
36
eric miaoc0a596d2008-03-11 09:46:28 +080037struct gpio_desc {
eric miao7facc2f92008-03-05 17:16:29 +080038 unsigned valid : 1;
39 unsigned can_wakeup : 1;
40 unsigned keypad_gpio : 1;
41 unsigned int mask; /* bit mask in PWER or PKWR */
Robert Jarzmik99687112008-11-13 23:30:00 +010042 unsigned int mux_mask; /* bit mask of muxed gpio bits, 0 if no mux */
eric miao7facc2f92008-03-05 17:16:29 +080043 unsigned long config;
eric miaoc0a596d2008-03-11 09:46:28 +080044};
eric miao7facc2f92008-03-05 17:16:29 +080045
eric miaoc0a596d2008-03-11 09:46:28 +080046static struct gpio_desc gpio_desc[MFP_PIN_GPIO127 + 1];
Eric Miao5a3d9652008-09-03 18:06:34 +080047static int gpio_nr;
eric miaoc0a596d2008-03-11 09:46:28 +080048
Eric Miao5a3d9652008-09-03 18:06:34 +080049static unsigned long gpdr_lpm[4];
Eric Miao566b4502008-06-16 09:47:47 +080050
eric miaoc0a596d2008-03-11 09:46:28 +080051static int __mfp_config_gpio(unsigned gpio, unsigned long c)
eric miao7facc2f92008-03-05 17:16:29 +080052{
53 unsigned long gafr, mask = GPIO_bit(gpio);
Eric Miao5a3d9652008-09-03 18:06:34 +080054 int bank = gpio_to_bank(gpio);
55 int uorl = !!(gpio & 0x10); /* GAFRx_U or GAFRx_L ? */
56 int shft = (gpio & 0xf) << 1;
57 int fn = MFP_AF(c);
58 int dir = c & MFP_DIR_OUT;
eric miao7facc2f92008-03-05 17:16:29 +080059
eric miao7facc2f92008-03-05 17:16:29 +080060 if (fn > 3)
61 return -EINVAL;
62
Eric Miao5a3d9652008-09-03 18:06:34 +080063 /* alternate function and direction at run-time */
64 gafr = (uorl == 0) ? GAFR_L(bank) : GAFR_U(bank);
65 gafr = (gafr & ~(0x3 << shft)) | (fn << shft);
eric miao7facc2f92008-03-05 17:16:29 +080066
Eric Miao5a3d9652008-09-03 18:06:34 +080067 if (uorl == 0)
68 GAFR_L(bank) = gafr;
69 else
70 GAFR_U(bank) = gafr;
71
72 if (dir == MFP_DIR_OUT)
eric miao7facc2f92008-03-05 17:16:29 +080073 GPDR(gpio) |= mask;
74 else
75 GPDR(gpio) &= ~mask;
76
Eric Miao5a3d9652008-09-03 18:06:34 +080077 /* alternate function and direction at low power mode */
78 switch (c & MFP_LPM_STATE_MASK) {
79 case MFP_LPM_DRIVE_HIGH:
80 PGSR(bank) |= mask;
81 dir = MFP_DIR_OUT;
82 break;
83 case MFP_LPM_DRIVE_LOW:
84 PGSR(bank) &= ~mask;
85 dir = MFP_DIR_OUT;
86 break;
87 case MFP_LPM_DEFAULT:
88 break;
89 default:
90 /* warning and fall through, treat as MFP_LPM_DEFAULT */
91 pr_warning("%s: GPIO%d: unsupported low power mode\n",
92 __func__, gpio);
93 break;
94 }
95
96 if (dir == MFP_DIR_OUT)
97 gpdr_lpm[bank] |= mask;
98 else
99 gpdr_lpm[bank] &= ~mask;
eric miao7facc2f92008-03-05 17:16:29 +0800100
eric miaoc0a596d2008-03-11 09:46:28 +0800101 /* give early warning if MFP_LPM_CAN_WAKEUP is set on the
102 * configurations of those pins not able to wakeup
103 */
104 if ((c & MFP_LPM_CAN_WAKEUP) && !gpio_desc[gpio].can_wakeup) {
eric miao7facc2f92008-03-05 17:16:29 +0800105 pr_warning("%s: GPIO%d unable to wakeup\n",
106 __func__, gpio);
107 return -EINVAL;
108 }
109
Eric Miao5a3d9652008-09-03 18:06:34 +0800110 if ((c & MFP_LPM_CAN_WAKEUP) && (dir == MFP_DIR_OUT)) {
eric miaoc0a596d2008-03-11 09:46:28 +0800111 pr_warning("%s: output GPIO%d unable to wakeup\n",
112 __func__, gpio);
113 return -EINVAL;
eric miao7facc2f92008-03-05 17:16:29 +0800114 }
115
116 return 0;
117}
118
Eric Miao0fedb0ca2008-06-16 09:38:27 +0800119static inline int __mfp_validate(int mfp)
120{
121 int gpio = mfp_to_gpio(mfp);
122
123 if ((mfp > MFP_PIN_GPIO127) || !gpio_desc[gpio].valid) {
124 pr_warning("%s: GPIO%d is invalid pin\n", __func__, gpio);
125 return -1;
126 }
127
128 return gpio;
129}
130
eric miao7facc2f92008-03-05 17:16:29 +0800131void pxa2xx_mfp_config(unsigned long *mfp_cfgs, int num)
132{
133 unsigned long flags;
134 unsigned long *c;
135 int i, gpio;
136
137 for (i = 0, c = mfp_cfgs; i < num; i++, c++) {
138
Eric Miao0fedb0ca2008-06-16 09:38:27 +0800139 gpio = __mfp_validate(MFP_PIN(*c));
140 if (gpio < 0)
eric miao7facc2f92008-03-05 17:16:29 +0800141 continue;
eric miao7facc2f92008-03-05 17:16:29 +0800142
143 local_irq_save(flags);
144
145 gpio_desc[gpio].config = *c;
146 __mfp_config_gpio(gpio, *c);
147
148 local_irq_restore(flags);
149 }
150}
151
Eric Miao566b4502008-06-16 09:47:47 +0800152void pxa2xx_mfp_set_lpm(int mfp, unsigned long lpm)
153{
Eric Miao5a3d9652008-09-03 18:06:34 +0800154 unsigned long flags, c;
Eric Miao566b4502008-06-16 09:47:47 +0800155 int gpio;
156
157 gpio = __mfp_validate(mfp);
158 if (gpio < 0)
159 return;
160
161 local_irq_save(flags);
Eric Miao5a3d9652008-09-03 18:06:34 +0800162
163 c = gpio_desc[gpio].config;
164 c = (c & ~MFP_LPM_STATE_MASK) | lpm;
165 __mfp_config_gpio(gpio, c);
166
Eric Miao566b4502008-06-16 09:47:47 +0800167 local_irq_restore(flags);
168}
169
eric miaoc0a596d2008-03-11 09:46:28 +0800170int gpio_set_wake(unsigned int gpio, unsigned int on)
171{
172 struct gpio_desc *d;
Robert Jarzmik99687112008-11-13 23:30:00 +0100173 unsigned long c, mux_taken;
eric miaoc0a596d2008-03-11 09:46:28 +0800174
175 if (gpio > mfp_to_gpio(MFP_PIN_GPIO127))
176 return -EINVAL;
177
178 d = &gpio_desc[gpio];
179 c = d->config;
180
181 if (!d->valid)
182 return -EINVAL;
183
184 if (d->keypad_gpio)
185 return -EINVAL;
186
Robert Jarzmik99687112008-11-13 23:30:00 +0100187 mux_taken = (PWER & d->mux_mask) & (~d->mask);
188 if (on && mux_taken)
189 return -EBUSY;
190
eric miaoc0a596d2008-03-11 09:46:28 +0800191 if (d->can_wakeup && (c & MFP_LPM_CAN_WAKEUP)) {
192 if (on) {
Robert Jarzmik99687112008-11-13 23:30:00 +0100193 PWER = (PWER & ~d->mux_mask) | d->mask;
eric miaoc0a596d2008-03-11 09:46:28 +0800194
195 if (c & MFP_LPM_EDGE_RISE)
196 PRER |= d->mask;
197 else
198 PRER &= ~d->mask;
199
200 if (c & MFP_LPM_EDGE_FALL)
201 PFER |= d->mask;
202 else
203 PFER &= ~d->mask;
204 } else {
205 PWER &= ~d->mask;
206 PRER &= ~d->mask;
207 PFER &= ~d->mask;
208 }
209 }
210 return 0;
211}
212
eric miao7facc2f92008-03-05 17:16:29 +0800213#ifdef CONFIG_PXA25x
Eric Miao5a3d9652008-09-03 18:06:34 +0800214static void __init pxa25x_mfp_init(void)
eric miao7facc2f92008-03-05 17:16:29 +0800215{
216 int i;
217
Eric Miao5a3d9652008-09-03 18:06:34 +0800218 for (i = 0; i <= 84; i++)
219 gpio_desc[i].valid = 1;
eric miao7facc2f92008-03-05 17:16:29 +0800220
Eric Miao5a3d9652008-09-03 18:06:34 +0800221 for (i = 0; i <= 15; i++) {
222 gpio_desc[i].can_wakeup = 1;
223 gpio_desc[i].mask = GPIO_bit(i);
eric miao7facc2f92008-03-05 17:16:29 +0800224 }
225
Eric Miao5a3d9652008-09-03 18:06:34 +0800226 gpio_nr = 85;
eric miao7facc2f92008-03-05 17:16:29 +0800227}
Eric Miao5a3d9652008-09-03 18:06:34 +0800228#else
229static inline void pxa25x_mfp_init(void) {}
eric miao7facc2f92008-03-05 17:16:29 +0800230#endif /* CONFIG_PXA25x */
231
232#ifdef CONFIG_PXA27x
eric miaoc0a596d2008-03-11 09:46:28 +0800233static int pxa27x_pkwr_gpio[] = {
eric miao7facc2f92008-03-05 17:16:29 +0800234 13, 16, 17, 34, 36, 37, 38, 39, 90, 91, 93, 94,
235 95, 96, 97, 98, 99, 100, 101, 102
236};
237
eric miaoc0a596d2008-03-11 09:46:28 +0800238int keypad_set_wake(unsigned int on)
239{
240 unsigned int i, gpio, mask = 0;
241
242 if (!on) {
243 PKWR = 0;
244 return 0;
245 }
246
247 for (i = 0; i < ARRAY_SIZE(pxa27x_pkwr_gpio); i++) {
248
249 gpio = pxa27x_pkwr_gpio[i];
250
251 if (gpio_desc[gpio].config & MFP_LPM_CAN_WAKEUP)
252 mask |= gpio_desc[gpio].mask;
253 }
254
255 PKWR = mask;
256 return 0;
257}
258
Robert Jarzmik99687112008-11-13 23:30:00 +0100259#define PWER_WEMUX2_GPIO38 (1 << 16)
260#define PWER_WEMUX2_GPIO53 (2 << 16)
261#define PWER_WEMUX2_GPIO40 (3 << 16)
262#define PWER_WEMUX2_GPIO36 (4 << 16)
263#define PWER_WEMUX2_MASK (7 << 16)
264#define PWER_WEMUX3_GPIO31 (1 << 19)
265#define PWER_WEMUX3_GPIO113 (2 << 19)
266#define PWER_WEMUX3_MASK (3 << 19)
267
268#define INIT_GPIO_DESC_MUXED(mux, gpio) \
269do { \
270 gpio_desc[(gpio)].can_wakeup = 1; \
271 gpio_desc[(gpio)].mask = PWER_ ## mux ## _GPIO ##gpio; \
272 gpio_desc[(gpio)].mux_mask = PWER_ ## mux ## _MASK; \
273} while (0)
274
Eric Miao5a3d9652008-09-03 18:06:34 +0800275static void __init pxa27x_mfp_init(void)
eric miao7facc2f92008-03-05 17:16:29 +0800276{
277 int i, gpio;
278
Eric Miao5a3d9652008-09-03 18:06:34 +0800279 for (i = 0; i <= 120; i++) {
280 /* skip GPIO2, 5, 6, 7, 8, they are not
281 * valid pins allow configuration
282 */
283 if (i == 2 || i == 5 || i == 6 || i == 7 || i == 8)
284 continue;
eric miao7facc2f92008-03-05 17:16:29 +0800285
Eric Miao5a3d9652008-09-03 18:06:34 +0800286 gpio_desc[i].valid = 1;
eric miao7facc2f92008-03-05 17:16:29 +0800287 }
288
Eric Miao5a3d9652008-09-03 18:06:34 +0800289 /* Keypad GPIOs */
290 for (i = 0; i < ARRAY_SIZE(pxa27x_pkwr_gpio); i++) {
291 gpio = pxa27x_pkwr_gpio[i];
292 gpio_desc[gpio].can_wakeup = 1;
293 gpio_desc[gpio].keypad_gpio = 1;
294 gpio_desc[gpio].mask = 1 << i;
295 }
296
297 /* Overwrite GPIO13 as a PWER wakeup source */
298 for (i = 0; i <= 15; i++) {
299 /* skip GPIO2, 5, 6, 7, 8 */
300 if (GPIO_bit(i) & 0x1e4)
301 continue;
302
303 gpio_desc[i].can_wakeup = 1;
304 gpio_desc[i].mask = GPIO_bit(i);
305 }
306
307 gpio_desc[35].can_wakeup = 1;
308 gpio_desc[35].mask = PWER_WE35;
309
Robert Jarzmik99687112008-11-13 23:30:00 +0100310 INIT_GPIO_DESC_MUXED(WEMUX3, 31);
311 INIT_GPIO_DESC_MUXED(WEMUX3, 113);
312 INIT_GPIO_DESC_MUXED(WEMUX2, 38);
313 INIT_GPIO_DESC_MUXED(WEMUX2, 53);
314 INIT_GPIO_DESC_MUXED(WEMUX2, 40);
315 INIT_GPIO_DESC_MUXED(WEMUX2, 36);
Eric Miao5a3d9652008-09-03 18:06:34 +0800316 gpio_nr = 121;
317}
318#else
319static inline void pxa27x_mfp_init(void) {}
320#endif /* CONFIG_PXA27x */
321
322#ifdef CONFIG_PM
323static unsigned long saved_gafr[2][4];
324static unsigned long saved_gpdr[4];
325
326static int pxa2xx_mfp_suspend(struct sys_device *d, pm_message_t state)
327{
328 int i;
329
330 for (i = 0; i <= gpio_to_bank(gpio_nr); i++) {
331
332 saved_gafr[0][i] = GAFR_L(i);
333 saved_gafr[1][i] = GAFR_U(i);
334 saved_gpdr[i] = GPDR(i * 32);
335
336 GPDR(i * 32) = gpdr_lpm[i];
337 }
eric miao7facc2f92008-03-05 17:16:29 +0800338 return 0;
339}
Eric Miao5a3d9652008-09-03 18:06:34 +0800340
341static int pxa2xx_mfp_resume(struct sys_device *d)
342{
343 int i;
344
345 for (i = 0; i <= gpio_to_bank(gpio_nr); i++) {
346 GAFR_L(i) = saved_gafr[0][i];
347 GAFR_U(i) = saved_gafr[1][i];
348 GPDR(i * 32) = saved_gpdr[i];
349 }
350 PSSR = PSSR_RDH | PSSR_PH;
351 return 0;
352}
353#else
354#define pxa2xx_mfp_suspend NULL
355#define pxa2xx_mfp_resume NULL
356#endif
357
358struct sysdev_class pxa2xx_mfp_sysclass = {
359 .name = "mfp",
360 .suspend = pxa2xx_mfp_suspend,
361 .resume = pxa2xx_mfp_resume,
362};
363
364static int __init pxa2xx_mfp_init(void)
365{
366 int i;
367
Eric Miaoe7f3c602008-09-27 18:07:48 +0800368 if (!cpu_is_pxa2xx())
369 return 0;
370
Eric Miao5a3d9652008-09-03 18:06:34 +0800371 if (cpu_is_pxa25x())
372 pxa25x_mfp_init();
373
374 if (cpu_is_pxa27x())
375 pxa27x_mfp_init();
376
377 /* initialize gafr_run[], pgsr_lpm[] from existing values */
378 for (i = 0; i <= gpio_to_bank(gpio_nr); i++)
379 gpdr_lpm[i] = GPDR(i * 32);
380
381 return sysdev_class_register(&pxa2xx_mfp_sysclass);
382}
383postcore_initcall(pxa2xx_mfp_init);