blob: b029562da41ebbad140a59f756279b7e1cc6bf63 [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 */
Russell King2f8163b2011-07-26 10:53:52 +010015#include <linux/gpio.h>
Haojian Zhuang157d2642011-10-17 20:37:52 +080016#include <linux/gpio-pxa.h>
eric miao7facc2f92008-03-05 17:16:29 +080017#include <linux/module.h>
18#include <linux/kernel.h>
19#include <linux/init.h>
Rob Herring23019a72012-03-20 14:33:19 -050020#include <linux/io.h>
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +020021#include <linux/syscore_ops.h>
eric miao7facc2f92008-03-05 17:16:29 +080022
Russell Kinga09e64f2008-08-05 16:14:15 +010023#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 PGSR(x) __REG2(0x40F00020, (x) << 2)
29#define __GAFR(u, x) __REG2((u) ? 0x40E00058 : 0x40E00054, (x) << 3)
30#define GAFR_L(x) __GAFR(0, x)
31#define GAFR_U(x) __GAFR(1, x)
eric miao7facc2f92008-03-05 17:16:29 +080032
Haojian Zhuang157d2642011-10-17 20:37:52 +080033#define BANK_OFF(n) (((n) < 3) ? (n) << 2 : 0x100 + (((n) - 3) << 2))
34#define GPLR(x) __REG2(0x40E00000, BANK_OFF((x) >> 5))
35#define GPDR(x) __REG2(0x40E00000, BANK_OFF((x) >> 5) + 0x0c)
36
eric miao7facc2f92008-03-05 17:16:29 +080037#define PWER_WE35 (1 << 24)
38
eric miaoc0a596d2008-03-11 09:46:28 +080039struct gpio_desc {
eric miao7facc2f92008-03-05 17:16:29 +080040 unsigned valid : 1;
41 unsigned can_wakeup : 1;
42 unsigned keypad_gpio : 1;
Eric Miao067455a2008-11-26 18:12:04 +080043 unsigned dir_inverted : 1;
eric miao7facc2f92008-03-05 17:16:29 +080044 unsigned int mask; /* bit mask in PWER or PKWR */
Robert Jarzmik99687112008-11-13 23:30:00 +010045 unsigned int mux_mask; /* bit mask of muxed gpio bits, 0 if no mux */
eric miao7facc2f92008-03-05 17:16:29 +080046 unsigned long config;
eric miaoc0a596d2008-03-11 09:46:28 +080047};
eric miao7facc2f92008-03-05 17:16:29 +080048
eric miaoc0a596d2008-03-11 09:46:28 +080049static struct gpio_desc gpio_desc[MFP_PIN_GPIO127 + 1];
50
Eric Miao5a3d9652008-09-03 18:06:34 +080051static unsigned long gpdr_lpm[4];
Eric Miao566b4502008-06-16 09:47:47 +080052
eric miaoc0a596d2008-03-11 09:46:28 +080053static int __mfp_config_gpio(unsigned gpio, unsigned long c)
eric miao7facc2f92008-03-05 17:16:29 +080054{
55 unsigned long gafr, mask = GPIO_bit(gpio);
Eric Miao5a3d9652008-09-03 18:06:34 +080056 int bank = gpio_to_bank(gpio);
57 int uorl = !!(gpio & 0x10); /* GAFRx_U or GAFRx_L ? */
58 int shft = (gpio & 0xf) << 1;
59 int fn = MFP_AF(c);
Eric Miao067455a2008-11-26 18:12:04 +080060 int is_out = (c & MFP_DIR_OUT) ? 1 : 0;
eric miao7facc2f92008-03-05 17:16:29 +080061
eric miao7facc2f92008-03-05 17:16:29 +080062 if (fn > 3)
63 return -EINVAL;
64
Eric Miao5a3d9652008-09-03 18:06:34 +080065 /* alternate function and direction at run-time */
66 gafr = (uorl == 0) ? GAFR_L(bank) : GAFR_U(bank);
67 gafr = (gafr & ~(0x3 << shft)) | (fn << shft);
eric miao7facc2f92008-03-05 17:16:29 +080068
Eric Miao5a3d9652008-09-03 18:06:34 +080069 if (uorl == 0)
70 GAFR_L(bank) = gafr;
71 else
72 GAFR_U(bank) = gafr;
73
Eric Miao067455a2008-11-26 18:12:04 +080074 if (is_out ^ gpio_desc[gpio].dir_inverted)
eric miao7facc2f92008-03-05 17:16:29 +080075 GPDR(gpio) |= mask;
76 else
77 GPDR(gpio) &= ~mask;
78
Eric Miao5a3d9652008-09-03 18:06:34 +080079 /* alternate function and direction at low power mode */
80 switch (c & MFP_LPM_STATE_MASK) {
81 case MFP_LPM_DRIVE_HIGH:
82 PGSR(bank) |= mask;
Eric Miao067455a2008-11-26 18:12:04 +080083 is_out = 1;
Eric Miao5a3d9652008-09-03 18:06:34 +080084 break;
85 case MFP_LPM_DRIVE_LOW:
86 PGSR(bank) &= ~mask;
Eric Miao067455a2008-11-26 18:12:04 +080087 is_out = 1;
Eric Miao5a3d9652008-09-03 18:06:34 +080088 break;
Eric Miao1fe8c2b2010-04-27 11:14:24 +080089 case MFP_LPM_INPUT:
Eric Miao5a3d9652008-09-03 18:06:34 +080090 case MFP_LPM_DEFAULT:
91 break;
92 default:
93 /* warning and fall through, treat as MFP_LPM_DEFAULT */
94 pr_warning("%s: GPIO%d: unsupported low power mode\n",
95 __func__, gpio);
96 break;
97 }
98
Eric Miao067455a2008-11-26 18:12:04 +080099 if (is_out ^ gpio_desc[gpio].dir_inverted)
Eric Miao5a3d9652008-09-03 18:06:34 +0800100 gpdr_lpm[bank] |= mask;
101 else
102 gpdr_lpm[bank] &= ~mask;
eric miao7facc2f92008-03-05 17:16:29 +0800103
eric miaoc0a596d2008-03-11 09:46:28 +0800104 /* give early warning if MFP_LPM_CAN_WAKEUP is set on the
105 * configurations of those pins not able to wakeup
106 */
107 if ((c & MFP_LPM_CAN_WAKEUP) && !gpio_desc[gpio].can_wakeup) {
eric miao7facc2f92008-03-05 17:16:29 +0800108 pr_warning("%s: GPIO%d unable to wakeup\n",
109 __func__, gpio);
110 return -EINVAL;
111 }
112
Eric Miao067455a2008-11-26 18:12:04 +0800113 if ((c & MFP_LPM_CAN_WAKEUP) && is_out) {
eric miaoc0a596d2008-03-11 09:46:28 +0800114 pr_warning("%s: output GPIO%d unable to wakeup\n",
115 __func__, gpio);
116 return -EINVAL;
eric miao7facc2f92008-03-05 17:16:29 +0800117 }
118
119 return 0;
120}
121
Eric Miao0fedb0ca2008-06-16 09:38:27 +0800122static inline int __mfp_validate(int mfp)
123{
124 int gpio = mfp_to_gpio(mfp);
125
126 if ((mfp > MFP_PIN_GPIO127) || !gpio_desc[gpio].valid) {
127 pr_warning("%s: GPIO%d is invalid pin\n", __func__, gpio);
128 return -1;
129 }
130
131 return gpio;
132}
133
eric miao7facc2f92008-03-05 17:16:29 +0800134void pxa2xx_mfp_config(unsigned long *mfp_cfgs, int num)
135{
136 unsigned long flags;
137 unsigned long *c;
138 int i, gpio;
139
140 for (i = 0, c = mfp_cfgs; i < num; i++, c++) {
141
Eric Miao0fedb0ca2008-06-16 09:38:27 +0800142 gpio = __mfp_validate(MFP_PIN(*c));
143 if (gpio < 0)
eric miao7facc2f92008-03-05 17:16:29 +0800144 continue;
eric miao7facc2f92008-03-05 17:16:29 +0800145
146 local_irq_save(flags);
147
148 gpio_desc[gpio].config = *c;
149 __mfp_config_gpio(gpio, *c);
150
151 local_irq_restore(flags);
152 }
153}
154
Eric Miao566b4502008-06-16 09:47:47 +0800155void pxa2xx_mfp_set_lpm(int mfp, unsigned long lpm)
156{
Eric Miao5a3d9652008-09-03 18:06:34 +0800157 unsigned long flags, c;
Eric Miao566b4502008-06-16 09:47:47 +0800158 int gpio;
159
160 gpio = __mfp_validate(mfp);
161 if (gpio < 0)
162 return;
163
164 local_irq_save(flags);
Eric Miao5a3d9652008-09-03 18:06:34 +0800165
166 c = gpio_desc[gpio].config;
167 c = (c & ~MFP_LPM_STATE_MASK) | lpm;
168 __mfp_config_gpio(gpio, c);
169
Eric Miao566b4502008-06-16 09:47:47 +0800170 local_irq_restore(flags);
171}
172
eric miaoc0a596d2008-03-11 09:46:28 +0800173int gpio_set_wake(unsigned int gpio, unsigned int on)
174{
175 struct gpio_desc *d;
Robert Jarzmik99687112008-11-13 23:30:00 +0100176 unsigned long c, mux_taken;
eric miaoc0a596d2008-03-11 09:46:28 +0800177
178 if (gpio > mfp_to_gpio(MFP_PIN_GPIO127))
179 return -EINVAL;
180
181 d = &gpio_desc[gpio];
182 c = d->config;
183
184 if (!d->valid)
185 return -EINVAL;
186
Eric Miaoc09f4312010-04-20 14:52:50 +0800187 /* Allow keypad GPIOs to wakeup system when
188 * configured as generic GPIOs.
189 */
190 if (d->keypad_gpio && (MFP_AF(d->config) == 0) &&
191 (d->config & MFP_LPM_CAN_WAKEUP)) {
192 if (on)
193 PKWR |= d->mask;
194 else
195 PKWR &= ~d->mask;
196 return 0;
197 }
eric miaoc0a596d2008-03-11 09:46:28 +0800198
Robert Jarzmik99687112008-11-13 23:30:00 +0100199 mux_taken = (PWER & d->mux_mask) & (~d->mask);
200 if (on && mux_taken)
201 return -EBUSY;
202
eric miaoc0a596d2008-03-11 09:46:28 +0800203 if (d->can_wakeup && (c & MFP_LPM_CAN_WAKEUP)) {
204 if (on) {
Robert Jarzmik99687112008-11-13 23:30:00 +0100205 PWER = (PWER & ~d->mux_mask) | d->mask;
eric miaoc0a596d2008-03-11 09:46:28 +0800206
207 if (c & MFP_LPM_EDGE_RISE)
208 PRER |= d->mask;
209 else
210 PRER &= ~d->mask;
211
212 if (c & MFP_LPM_EDGE_FALL)
213 PFER |= d->mask;
214 else
215 PFER &= ~d->mask;
216 } else {
217 PWER &= ~d->mask;
218 PRER &= ~d->mask;
219 PFER &= ~d->mask;
220 }
221 }
222 return 0;
223}
224
eric miao7facc2f92008-03-05 17:16:29 +0800225#ifdef CONFIG_PXA25x
Eric Miao5a3d9652008-09-03 18:06:34 +0800226static void __init pxa25x_mfp_init(void)
eric miao7facc2f92008-03-05 17:16:29 +0800227{
228 int i;
229
Eric Miaoddd244d2008-11-26 17:06:42 +0800230 for (i = 0; i <= pxa_last_gpio; i++)
Eric Miao5a3d9652008-09-03 18:06:34 +0800231 gpio_desc[i].valid = 1;
eric miao7facc2f92008-03-05 17:16:29 +0800232
Eric Miao5a3d9652008-09-03 18:06:34 +0800233 for (i = 0; i <= 15; i++) {
234 gpio_desc[i].can_wakeup = 1;
235 gpio_desc[i].mask = GPIO_bit(i);
eric miao7facc2f92008-03-05 17:16:29 +0800236 }
Eric Miao067455a2008-11-26 18:12:04 +0800237
238 /* PXA26x has additional 4 GPIOs (86/87/88/89) which has the
239 * direction bit inverted in GPDR2. See PXA26x DM 4.1.1.
240 */
241 for (i = 86; i <= pxa_last_gpio; i++)
242 gpio_desc[i].dir_inverted = 1;
eric miao7facc2f92008-03-05 17:16:29 +0800243}
Eric Miao5a3d9652008-09-03 18:06:34 +0800244#else
245static inline void pxa25x_mfp_init(void) {}
eric miao7facc2f92008-03-05 17:16:29 +0800246#endif /* CONFIG_PXA25x */
247
248#ifdef CONFIG_PXA27x
eric miaoc0a596d2008-03-11 09:46:28 +0800249static int pxa27x_pkwr_gpio[] = {
eric miao7facc2f92008-03-05 17:16:29 +0800250 13, 16, 17, 34, 36, 37, 38, 39, 90, 91, 93, 94,
251 95, 96, 97, 98, 99, 100, 101, 102
252};
253
eric miaoc0a596d2008-03-11 09:46:28 +0800254int keypad_set_wake(unsigned int on)
255{
256 unsigned int i, gpio, mask = 0;
Eric Miaoc09f4312010-04-20 14:52:50 +0800257 struct gpio_desc *d;
eric miaoc0a596d2008-03-11 09:46:28 +0800258
259 for (i = 0; i < ARRAY_SIZE(pxa27x_pkwr_gpio); i++) {
260
261 gpio = pxa27x_pkwr_gpio[i];
Eric Miaoc09f4312010-04-20 14:52:50 +0800262 d = &gpio_desc[gpio];
eric miaoc0a596d2008-03-11 09:46:28 +0800263
Eric Miaoc09f4312010-04-20 14:52:50 +0800264 /* skip if configured as generic GPIO */
265 if (MFP_AF(d->config) == 0)
266 continue;
267
268 if (d->config & MFP_LPM_CAN_WAKEUP)
eric miaoc0a596d2008-03-11 09:46:28 +0800269 mask |= gpio_desc[gpio].mask;
270 }
271
Eric Miaoc09f4312010-04-20 14:52:50 +0800272 if (on)
273 PKWR |= mask;
274 else
275 PKWR &= ~mask;
eric miaoc0a596d2008-03-11 09:46:28 +0800276 return 0;
277}
278
Robert Jarzmik99687112008-11-13 23:30:00 +0100279#define PWER_WEMUX2_GPIO38 (1 << 16)
280#define PWER_WEMUX2_GPIO53 (2 << 16)
281#define PWER_WEMUX2_GPIO40 (3 << 16)
282#define PWER_WEMUX2_GPIO36 (4 << 16)
283#define PWER_WEMUX2_MASK (7 << 16)
284#define PWER_WEMUX3_GPIO31 (1 << 19)
285#define PWER_WEMUX3_GPIO113 (2 << 19)
286#define PWER_WEMUX3_MASK (3 << 19)
287
288#define INIT_GPIO_DESC_MUXED(mux, gpio) \
289do { \
290 gpio_desc[(gpio)].can_wakeup = 1; \
291 gpio_desc[(gpio)].mask = PWER_ ## mux ## _GPIO ##gpio; \
292 gpio_desc[(gpio)].mux_mask = PWER_ ## mux ## _MASK; \
293} while (0)
294
Eric Miao5a3d9652008-09-03 18:06:34 +0800295static void __init pxa27x_mfp_init(void)
eric miao7facc2f92008-03-05 17:16:29 +0800296{
297 int i, gpio;
298
Eric Miaoddd244d2008-11-26 17:06:42 +0800299 for (i = 0; i <= pxa_last_gpio; i++) {
Eric Miao5a3d9652008-09-03 18:06:34 +0800300 /* skip GPIO2, 5, 6, 7, 8, they are not
301 * valid pins allow configuration
302 */
303 if (i == 2 || i == 5 || i == 6 || i == 7 || i == 8)
304 continue;
eric miao7facc2f92008-03-05 17:16:29 +0800305
Eric Miao5a3d9652008-09-03 18:06:34 +0800306 gpio_desc[i].valid = 1;
eric miao7facc2f92008-03-05 17:16:29 +0800307 }
308
Eric Miao5a3d9652008-09-03 18:06:34 +0800309 /* Keypad GPIOs */
310 for (i = 0; i < ARRAY_SIZE(pxa27x_pkwr_gpio); i++) {
311 gpio = pxa27x_pkwr_gpio[i];
312 gpio_desc[gpio].can_wakeup = 1;
313 gpio_desc[gpio].keypad_gpio = 1;
314 gpio_desc[gpio].mask = 1 << i;
315 }
316
317 /* Overwrite GPIO13 as a PWER wakeup source */
318 for (i = 0; i <= 15; i++) {
319 /* skip GPIO2, 5, 6, 7, 8 */
320 if (GPIO_bit(i) & 0x1e4)
321 continue;
322
323 gpio_desc[i].can_wakeup = 1;
324 gpio_desc[i].mask = GPIO_bit(i);
325 }
326
327 gpio_desc[35].can_wakeup = 1;
328 gpio_desc[35].mask = PWER_WE35;
329
Robert Jarzmik99687112008-11-13 23:30:00 +0100330 INIT_GPIO_DESC_MUXED(WEMUX3, 31);
331 INIT_GPIO_DESC_MUXED(WEMUX3, 113);
332 INIT_GPIO_DESC_MUXED(WEMUX2, 38);
333 INIT_GPIO_DESC_MUXED(WEMUX2, 53);
334 INIT_GPIO_DESC_MUXED(WEMUX2, 40);
335 INIT_GPIO_DESC_MUXED(WEMUX2, 36);
Eric Miao5a3d9652008-09-03 18:06:34 +0800336}
337#else
338static inline void pxa27x_mfp_init(void) {}
339#endif /* CONFIG_PXA27x */
340
341#ifdef CONFIG_PM
342static unsigned long saved_gafr[2][4];
343static unsigned long saved_gpdr[4];
Daniel Ribeiro818bc812009-05-02 15:05:59 -0300344static unsigned long saved_pgsr[4];
Eric Miao5a3d9652008-09-03 18:06:34 +0800345
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +0200346static int pxa2xx_mfp_suspend(void)
Eric Miao5a3d9652008-09-03 18:06:34 +0800347{
348 int i;
349
Eric Miao11061432010-01-11 21:25:15 +0800350 /* set corresponding PGSR bit of those marked MFP_LPM_KEEP_OUTPUT */
351 for (i = 0; i < pxa_last_gpio; i++) {
352 if ((gpio_desc[i].config & MFP_LPM_KEEP_OUTPUT) &&
353 (GPDR(i) & GPIO_bit(i))) {
354 if (GPLR(i) & GPIO_bit(i))
Paul Parsonsbeb0c9b2011-05-08 01:54:33 +0000355 PGSR(gpio_to_bank(i)) |= GPIO_bit(i);
Eric Miao11061432010-01-11 21:25:15 +0800356 else
Paul Parsonsbeb0c9b2011-05-08 01:54:33 +0000357 PGSR(gpio_to_bank(i)) &= ~GPIO_bit(i);
Eric Miao11061432010-01-11 21:25:15 +0800358 }
359 }
360
Eric Miaoddd244d2008-11-26 17:06:42 +0800361 for (i = 0; i <= gpio_to_bank(pxa_last_gpio); i++) {
Eric Miao5a3d9652008-09-03 18:06:34 +0800362
363 saved_gafr[0][i] = GAFR_L(i);
364 saved_gafr[1][i] = GAFR_U(i);
365 saved_gpdr[i] = GPDR(i * 32);
Daniel Ribeiro818bc812009-05-02 15:05:59 -0300366 saved_pgsr[i] = PGSR(i);
Eric Miao5a3d9652008-09-03 18:06:34 +0800367
368 GPDR(i * 32) = gpdr_lpm[i];
369 }
eric miao7facc2f92008-03-05 17:16:29 +0800370 return 0;
371}
Eric Miao5a3d9652008-09-03 18:06:34 +0800372
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +0200373static void pxa2xx_mfp_resume(void)
Eric Miao5a3d9652008-09-03 18:06:34 +0800374{
375 int i;
376
Eric Miaoddd244d2008-11-26 17:06:42 +0800377 for (i = 0; i <= gpio_to_bank(pxa_last_gpio); i++) {
Eric Miao5a3d9652008-09-03 18:06:34 +0800378 GAFR_L(i) = saved_gafr[0][i];
379 GAFR_U(i) = saved_gafr[1][i];
380 GPDR(i * 32) = saved_gpdr[i];
Daniel Ribeiro818bc812009-05-02 15:05:59 -0300381 PGSR(i) = saved_pgsr[i];
Eric Miao5a3d9652008-09-03 18:06:34 +0800382 }
383 PSSR = PSSR_RDH | PSSR_PH;
Eric Miao5a3d9652008-09-03 18:06:34 +0800384}
385#else
386#define pxa2xx_mfp_suspend NULL
387#define pxa2xx_mfp_resume NULL
388#endif
389
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +0200390struct syscore_ops pxa2xx_mfp_syscore_ops = {
Eric Miao5a3d9652008-09-03 18:06:34 +0800391 .suspend = pxa2xx_mfp_suspend,
392 .resume = pxa2xx_mfp_resume,
393};
394
395static int __init pxa2xx_mfp_init(void)
396{
397 int i;
398
Eric Miaoe7f3c602008-09-27 18:07:48 +0800399 if (!cpu_is_pxa2xx())
400 return 0;
401
Eric Miao5a3d9652008-09-03 18:06:34 +0800402 if (cpu_is_pxa25x())
403 pxa25x_mfp_init();
404
405 if (cpu_is_pxa27x())
406 pxa27x_mfp_init();
407
Timothy Clacy866bd432009-05-07 19:40:33 +0200408 /* clear RDH bit to enable GPIO receivers after reset/sleep exit */
409 PSSR = PSSR_RDH;
410
Eric Miao5a3d9652008-09-03 18:06:34 +0800411 /* initialize gafr_run[], pgsr_lpm[] from existing values */
Eric Miaoddd244d2008-11-26 17:06:42 +0800412 for (i = 0; i <= gpio_to_bank(pxa_last_gpio); i++)
Eric Miao5a3d9652008-09-03 18:06:34 +0800413 gpdr_lpm[i] = GPDR(i * 32);
414
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +0200415 return 0;
Eric Miao5a3d9652008-09-03 18:06:34 +0800416}
417postcore_initcall(pxa2xx_mfp_init);