2 * linux/arch/arm/mach-pxa/mfp-pxa2xx.c
4 * PXA2xx pin mux configuration support
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.
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.
15 #include <linux/gpio.h>
16 #include <linux/module.h>
17 #include <linux/kernel.h>
18 #include <linux/init.h>
19 #include <linux/syscore_ops.h>
21 #include <mach/pxa2xx-regs.h>
22 #include <mach/mfp-pxa2xx.h>
26 #define PGSR(x) __REG2(0x40F00020, (x) << 2)
27 #define __GAFR(u, x) __REG2((u) ? 0x40E00058 : 0x40E00054, (x) << 3)
28 #define GAFR_L(x) __GAFR(0, x)
29 #define GAFR_U(x) __GAFR(1, x)
31 #define PWER_WE35 (1 << 24)
35 unsigned can_wakeup
: 1;
36 unsigned keypad_gpio
: 1;
37 unsigned dir_inverted
: 1;
38 unsigned int mask
; /* bit mask in PWER or PKWR */
39 unsigned int mux_mask
; /* bit mask of muxed gpio bits, 0 if no mux */
43 static struct gpio_desc gpio_desc
[MFP_PIN_GPIO127
+ 1];
45 static unsigned long gpdr_lpm
[4];
47 static int __mfp_config_gpio(unsigned gpio
, unsigned long c
)
49 unsigned long gafr
, mask
= GPIO_bit(gpio
);
50 int bank
= gpio_to_bank(gpio
);
51 int uorl
= !!(gpio
& 0x10); /* GAFRx_U or GAFRx_L ? */
52 int shft
= (gpio
& 0xf) << 1;
54 int is_out
= (c
& MFP_DIR_OUT
) ? 1 : 0;
59 /* alternate function and direction at run-time */
60 gafr
= (uorl
== 0) ? GAFR_L(bank
) : GAFR_U(bank
);
61 gafr
= (gafr
& ~(0x3 << shft
)) | (fn
<< shft
);
68 if (is_out
^ gpio_desc
[gpio
].dir_inverted
)
73 /* alternate function and direction at low power mode */
74 switch (c
& MFP_LPM_STATE_MASK
) {
75 case MFP_LPM_DRIVE_HIGH
:
79 case MFP_LPM_DRIVE_LOW
:
87 /* warning and fall through, treat as MFP_LPM_DEFAULT */
88 pr_warning("%s: GPIO%d: unsupported low power mode\n",
93 if (is_out
^ gpio_desc
[gpio
].dir_inverted
)
94 gpdr_lpm
[bank
] |= mask
;
96 gpdr_lpm
[bank
] &= ~mask
;
98 /* give early warning if MFP_LPM_CAN_WAKEUP is set on the
99 * configurations of those pins not able to wakeup
101 if ((c
& MFP_LPM_CAN_WAKEUP
) && !gpio_desc
[gpio
].can_wakeup
) {
102 pr_warning("%s: GPIO%d unable to wakeup\n",
107 if ((c
& MFP_LPM_CAN_WAKEUP
) && is_out
) {
108 pr_warning("%s: output GPIO%d unable to wakeup\n",
116 static inline int __mfp_validate(int mfp
)
118 int gpio
= mfp_to_gpio(mfp
);
120 if ((mfp
> MFP_PIN_GPIO127
) || !gpio_desc
[gpio
].valid
) {
121 pr_warning("%s: GPIO%d is invalid pin\n", __func__
, gpio
);
128 void pxa2xx_mfp_config(unsigned long *mfp_cfgs
, int num
)
134 for (i
= 0, c
= mfp_cfgs
; i
< num
; i
++, c
++) {
136 gpio
= __mfp_validate(MFP_PIN(*c
));
140 local_irq_save(flags
);
142 gpio_desc
[gpio
].config
= *c
;
143 __mfp_config_gpio(gpio
, *c
);
145 local_irq_restore(flags
);
149 void pxa2xx_mfp_set_lpm(int mfp
, unsigned long lpm
)
151 unsigned long flags
, c
;
154 gpio
= __mfp_validate(mfp
);
158 local_irq_save(flags
);
160 c
= gpio_desc
[gpio
].config
;
161 c
= (c
& ~MFP_LPM_STATE_MASK
) | lpm
;
162 __mfp_config_gpio(gpio
, c
);
164 local_irq_restore(flags
);
167 int gpio_set_wake(unsigned int gpio
, unsigned int on
)
170 unsigned long c
, mux_taken
;
172 if (gpio
> mfp_to_gpio(MFP_PIN_GPIO127
))
175 d
= &gpio_desc
[gpio
];
181 /* Allow keypad GPIOs to wakeup system when
182 * configured as generic GPIOs.
184 if (d
->keypad_gpio
&& (MFP_AF(d
->config
) == 0) &&
185 (d
->config
& MFP_LPM_CAN_WAKEUP
)) {
193 mux_taken
= (PWER
& d
->mux_mask
) & (~d
->mask
);
197 if (d
->can_wakeup
&& (c
& MFP_LPM_CAN_WAKEUP
)) {
199 PWER
= (PWER
& ~d
->mux_mask
) | d
->mask
;
201 if (c
& MFP_LPM_EDGE_RISE
)
206 if (c
& MFP_LPM_EDGE_FALL
)
220 static void __init
pxa25x_mfp_init(void)
224 for (i
= 0; i
<= pxa_last_gpio
; i
++)
225 gpio_desc
[i
].valid
= 1;
227 for (i
= 0; i
<= 15; i
++) {
228 gpio_desc
[i
].can_wakeup
= 1;
229 gpio_desc
[i
].mask
= GPIO_bit(i
);
232 /* PXA26x has additional 4 GPIOs (86/87/88/89) which has the
233 * direction bit inverted in GPDR2. See PXA26x DM 4.1.1.
235 for (i
= 86; i
<= pxa_last_gpio
; i
++)
236 gpio_desc
[i
].dir_inverted
= 1;
239 static inline void pxa25x_mfp_init(void) {}
240 #endif /* CONFIG_PXA25x */
243 static int pxa27x_pkwr_gpio
[] = {
244 13, 16, 17, 34, 36, 37, 38, 39, 90, 91, 93, 94,
245 95, 96, 97, 98, 99, 100, 101, 102
248 int keypad_set_wake(unsigned int on
)
250 unsigned int i
, gpio
, mask
= 0;
253 for (i
= 0; i
< ARRAY_SIZE(pxa27x_pkwr_gpio
); i
++) {
255 gpio
= pxa27x_pkwr_gpio
[i
];
256 d
= &gpio_desc
[gpio
];
258 /* skip if configured as generic GPIO */
259 if (MFP_AF(d
->config
) == 0)
262 if (d
->config
& MFP_LPM_CAN_WAKEUP
)
263 mask
|= gpio_desc
[gpio
].mask
;
273 #define PWER_WEMUX2_GPIO38 (1 << 16)
274 #define PWER_WEMUX2_GPIO53 (2 << 16)
275 #define PWER_WEMUX2_GPIO40 (3 << 16)
276 #define PWER_WEMUX2_GPIO36 (4 << 16)
277 #define PWER_WEMUX2_MASK (7 << 16)
278 #define PWER_WEMUX3_GPIO31 (1 << 19)
279 #define PWER_WEMUX3_GPIO113 (2 << 19)
280 #define PWER_WEMUX3_MASK (3 << 19)
282 #define INIT_GPIO_DESC_MUXED(mux, gpio) \
284 gpio_desc[(gpio)].can_wakeup = 1; \
285 gpio_desc[(gpio)].mask = PWER_ ## mux ## _GPIO ##gpio; \
286 gpio_desc[(gpio)].mux_mask = PWER_ ## mux ## _MASK; \
289 static void __init
pxa27x_mfp_init(void)
293 for (i
= 0; i
<= pxa_last_gpio
; i
++) {
294 /* skip GPIO2, 5, 6, 7, 8, they are not
295 * valid pins allow configuration
297 if (i
== 2 || i
== 5 || i
== 6 || i
== 7 || i
== 8)
300 gpio_desc
[i
].valid
= 1;
304 for (i
= 0; i
< ARRAY_SIZE(pxa27x_pkwr_gpio
); i
++) {
305 gpio
= pxa27x_pkwr_gpio
[i
];
306 gpio_desc
[gpio
].can_wakeup
= 1;
307 gpio_desc
[gpio
].keypad_gpio
= 1;
308 gpio_desc
[gpio
].mask
= 1 << i
;
311 /* Overwrite GPIO13 as a PWER wakeup source */
312 for (i
= 0; i
<= 15; i
++) {
313 /* skip GPIO2, 5, 6, 7, 8 */
314 if (GPIO_bit(i
) & 0x1e4)
317 gpio_desc
[i
].can_wakeup
= 1;
318 gpio_desc
[i
].mask
= GPIO_bit(i
);
321 gpio_desc
[35].can_wakeup
= 1;
322 gpio_desc
[35].mask
= PWER_WE35
;
324 INIT_GPIO_DESC_MUXED(WEMUX3
, 31);
325 INIT_GPIO_DESC_MUXED(WEMUX3
, 113);
326 INIT_GPIO_DESC_MUXED(WEMUX2
, 38);
327 INIT_GPIO_DESC_MUXED(WEMUX2
, 53);
328 INIT_GPIO_DESC_MUXED(WEMUX2
, 40);
329 INIT_GPIO_DESC_MUXED(WEMUX2
, 36);
332 static inline void pxa27x_mfp_init(void) {}
333 #endif /* CONFIG_PXA27x */
336 static unsigned long saved_gafr
[2][4];
337 static unsigned long saved_gpdr
[4];
338 static unsigned long saved_pgsr
[4];
340 static int pxa2xx_mfp_suspend(void)
344 /* set corresponding PGSR bit of those marked MFP_LPM_KEEP_OUTPUT */
345 for (i
= 0; i
< pxa_last_gpio
; i
++) {
346 if ((gpio_desc
[i
].config
& MFP_LPM_KEEP_OUTPUT
) &&
347 (GPDR(i
) & GPIO_bit(i
))) {
348 if (GPLR(i
) & GPIO_bit(i
))
349 PGSR(gpio_to_bank(i
)) |= GPIO_bit(i
);
351 PGSR(gpio_to_bank(i
)) &= ~GPIO_bit(i
);
355 for (i
= 0; i
<= gpio_to_bank(pxa_last_gpio
); i
++) {
357 saved_gafr
[0][i
] = GAFR_L(i
);
358 saved_gafr
[1][i
] = GAFR_U(i
);
359 saved_gpdr
[i
] = GPDR(i
* 32);
360 saved_pgsr
[i
] = PGSR(i
);
362 GPDR(i
* 32) = gpdr_lpm
[i
];
367 static void pxa2xx_mfp_resume(void)
371 for (i
= 0; i
<= gpio_to_bank(pxa_last_gpio
); i
++) {
372 GAFR_L(i
) = saved_gafr
[0][i
];
373 GAFR_U(i
) = saved_gafr
[1][i
];
374 GPDR(i
* 32) = saved_gpdr
[i
];
375 PGSR(i
) = saved_pgsr
[i
];
377 PSSR
= PSSR_RDH
| PSSR_PH
;
380 #define pxa2xx_mfp_suspend NULL
381 #define pxa2xx_mfp_resume NULL
384 struct syscore_ops pxa2xx_mfp_syscore_ops
= {
385 .suspend
= pxa2xx_mfp_suspend
,
386 .resume
= pxa2xx_mfp_resume
,
389 static int __init
pxa2xx_mfp_init(void)
393 if (!cpu_is_pxa2xx())
402 /* clear RDH bit to enable GPIO receivers after reset/sleep exit */
405 /* initialize gafr_run[], pgsr_lpm[] from existing values */
406 for (i
= 0; i
<= gpio_to_bank(pxa_last_gpio
); i
++)
407 gpdr_lpm
[i
] = GPDR(i
* 32);
411 postcore_initcall(pxa2xx_mfp_init
);