2 * Generic GPIO driver for logic cells found in the Nomadik SoC
4 * Copyright (C) 2008,2009 STMicroelectronics
5 * Copyright (C) 2009 Alessandro Rubini <rubini@unipv.it>
6 * Rewritten based on work by Prafulla WADASKAR <prafulla.wadaskar@st.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/init.h>
15 #include <linux/device.h>
16 #include <linux/platform_device.h>
18 #include <linux/clk.h>
19 #include <linux/err.h>
20 #include <linux/gpio.h>
21 #include <linux/spinlock.h>
22 #include <linux/interrupt.h>
23 #include <linux/irq.h>
24 #include <linux/slab.h>
26 #include <plat/pincfg.h>
27 #include <mach/hardware.h>
28 #include <mach/gpio.h>
31 * The GPIO module in the Nomadik family of Systems-on-Chip is an
32 * AMBA device, managing 32 pins and alternate functions. The logic block
33 * is currently used in the Nomadik and ux500.
35 * Symbols in this file are called "nmk_gpio" for "nomadik gpio"
38 #define NMK_GPIO_PER_CHIP 32
40 struct nmk_gpio_chip
{
41 struct gpio_chip chip
;
45 unsigned int parent_irq
;
46 int secondary_parent_irq
;
47 u32 (*get_secondary_status
)(unsigned int bank
);
48 void (*set_ioforce
)(bool enable
);
50 /* Keep track of configured edges */
59 static struct nmk_gpio_chip
*
60 nmk_gpio_chips
[DIV_ROUND_UP(ARCH_NR_GPIOS
, NMK_GPIO_PER_CHIP
)];
62 static DEFINE_SPINLOCK(nmk_gpio_slpm_lock
);
64 #define NUM_BANKS ARRAY_SIZE(nmk_gpio_chips)
66 static void __nmk_gpio_set_mode(struct nmk_gpio_chip
*nmk_chip
,
67 unsigned offset
, int gpio_mode
)
69 u32 bit
= 1 << offset
;
72 afunc
= readl(nmk_chip
->addr
+ NMK_GPIO_AFSLA
) & ~bit
;
73 bfunc
= readl(nmk_chip
->addr
+ NMK_GPIO_AFSLB
) & ~bit
;
74 if (gpio_mode
& NMK_GPIO_ALT_A
)
76 if (gpio_mode
& NMK_GPIO_ALT_B
)
78 writel(afunc
, nmk_chip
->addr
+ NMK_GPIO_AFSLA
);
79 writel(bfunc
, nmk_chip
->addr
+ NMK_GPIO_AFSLB
);
82 static void __nmk_gpio_set_slpm(struct nmk_gpio_chip
*nmk_chip
,
83 unsigned offset
, enum nmk_gpio_slpm mode
)
85 u32 bit
= 1 << offset
;
88 slpm
= readl(nmk_chip
->addr
+ NMK_GPIO_SLPC
);
89 if (mode
== NMK_GPIO_SLPM_NOCHANGE
)
93 writel(slpm
, nmk_chip
->addr
+ NMK_GPIO_SLPC
);
96 static void __nmk_gpio_set_pull(struct nmk_gpio_chip
*nmk_chip
,
97 unsigned offset
, enum nmk_gpio_pull pull
)
99 u32 bit
= 1 << offset
;
102 pdis
= readl(nmk_chip
->addr
+ NMK_GPIO_PDIS
);
103 if (pull
== NMK_GPIO_PULL_NONE
)
107 writel(pdis
, nmk_chip
->addr
+ NMK_GPIO_PDIS
);
109 if (pull
== NMK_GPIO_PULL_UP
)
110 writel(bit
, nmk_chip
->addr
+ NMK_GPIO_DATS
);
111 else if (pull
== NMK_GPIO_PULL_DOWN
)
112 writel(bit
, nmk_chip
->addr
+ NMK_GPIO_DATC
);
115 static void __nmk_gpio_make_input(struct nmk_gpio_chip
*nmk_chip
,
118 writel(1 << offset
, nmk_chip
->addr
+ NMK_GPIO_DIRC
);
121 static void __nmk_gpio_set_output(struct nmk_gpio_chip
*nmk_chip
,
122 unsigned offset
, int val
)
125 writel(1 << offset
, nmk_chip
->addr
+ NMK_GPIO_DATS
);
127 writel(1 << offset
, nmk_chip
->addr
+ NMK_GPIO_DATC
);
130 static void __nmk_gpio_make_output(struct nmk_gpio_chip
*nmk_chip
,
131 unsigned offset
, int val
)
133 writel(1 << offset
, nmk_chip
->addr
+ NMK_GPIO_DIRS
);
134 __nmk_gpio_set_output(nmk_chip
, offset
, val
);
137 static void __nmk_gpio_set_mode_safe(struct nmk_gpio_chip
*nmk_chip
,
138 unsigned offset
, int gpio_mode
,
141 u32 rwimsc
= readl(nmk_chip
->addr
+ NMK_GPIO_RWIMSC
);
142 u32 fwimsc
= readl(nmk_chip
->addr
+ NMK_GPIO_FWIMSC
);
144 if (glitch
&& nmk_chip
->set_ioforce
) {
145 u32 bit
= BIT(offset
);
147 /* Prevent spurious wakeups */
148 writel(rwimsc
& ~bit
, nmk_chip
->addr
+ NMK_GPIO_RWIMSC
);
149 writel(fwimsc
& ~bit
, nmk_chip
->addr
+ NMK_GPIO_FWIMSC
);
151 nmk_chip
->set_ioforce(true);
154 __nmk_gpio_set_mode(nmk_chip
, offset
, gpio_mode
);
156 if (glitch
&& nmk_chip
->set_ioforce
) {
157 nmk_chip
->set_ioforce(false);
159 writel(rwimsc
, nmk_chip
->addr
+ NMK_GPIO_RWIMSC
);
160 writel(fwimsc
, nmk_chip
->addr
+ NMK_GPIO_FWIMSC
);
164 static void __nmk_config_pin(struct nmk_gpio_chip
*nmk_chip
, unsigned offset
,
165 pin_cfg_t cfg
, bool sleep
, unsigned int *slpmregs
)
167 static const char *afnames
[] = {
168 [NMK_GPIO_ALT_GPIO
] = "GPIO",
169 [NMK_GPIO_ALT_A
] = "A",
170 [NMK_GPIO_ALT_B
] = "B",
171 [NMK_GPIO_ALT_C
] = "C"
173 static const char *pullnames
[] = {
174 [NMK_GPIO_PULL_NONE
] = "none",
175 [NMK_GPIO_PULL_UP
] = "up",
176 [NMK_GPIO_PULL_DOWN
] = "down",
177 [3] /* illegal */ = "??"
179 static const char *slpmnames
[] = {
180 [NMK_GPIO_SLPM_INPUT
] = "input/wakeup",
181 [NMK_GPIO_SLPM_NOCHANGE
] = "no-change/no-wakeup",
184 int pin
= PIN_NUM(cfg
);
185 int pull
= PIN_PULL(cfg
);
186 int af
= PIN_ALT(cfg
);
187 int slpm
= PIN_SLPM(cfg
);
188 int output
= PIN_DIR(cfg
);
189 int val
= PIN_VAL(cfg
);
190 bool glitch
= af
== NMK_GPIO_ALT_C
;
192 dev_dbg(nmk_chip
->chip
.dev
, "pin %d [%#lx]: af %s, pull %s, slpm %s (%s%s)\n",
193 pin
, cfg
, afnames
[af
], pullnames
[pull
], slpmnames
[slpm
],
194 output
? "output " : "input",
195 output
? (val
? "high" : "low") : "");
198 int slpm_pull
= PIN_SLPM_PULL(cfg
);
199 int slpm_output
= PIN_SLPM_DIR(cfg
);
200 int slpm_val
= PIN_SLPM_VAL(cfg
);
202 af
= NMK_GPIO_ALT_GPIO
;
205 * The SLPM_* values are normal values + 1 to allow zero to
206 * mean "same as normal".
209 pull
= slpm_pull
- 1;
211 output
= slpm_output
- 1;
215 dev_dbg(nmk_chip
->chip
.dev
, "pin %d: sleep pull %s, dir %s, val %s\n",
217 slpm_pull
? pullnames
[pull
] : "same",
218 slpm_output
? (output
? "output" : "input") : "same",
219 slpm_val
? (val
? "high" : "low") : "same");
223 __nmk_gpio_make_output(nmk_chip
, offset
, val
);
225 __nmk_gpio_make_input(nmk_chip
, offset
);
226 __nmk_gpio_set_pull(nmk_chip
, offset
, pull
);
230 * If we've backed up the SLPM registers (glitch workaround), modify
231 * the backups since they will be restored.
234 if (slpm
== NMK_GPIO_SLPM_NOCHANGE
)
235 slpmregs
[nmk_chip
->bank
] |= BIT(offset
);
237 slpmregs
[nmk_chip
->bank
] &= ~BIT(offset
);
239 __nmk_gpio_set_slpm(nmk_chip
, offset
, slpm
);
241 __nmk_gpio_set_mode_safe(nmk_chip
, offset
, af
, glitch
);
245 * Safe sequence used to switch IOs between GPIO and Alternate-C mode:
246 * - Save SLPM registers
247 * - Set SLPM=0 for the IOs you want to switch and others to 1
248 * - Configure the GPIO registers for the IOs that are being switched
250 * - Modify the AFLSA/B registers for the IOs that are being switched
252 * - Restore SLPM registers
253 * - Any spurious wake up event during switch sequence to be ignored and
256 static void nmk_gpio_glitch_slpm_init(unsigned int *slpm
)
260 for (i
= 0; i
< NUM_BANKS
; i
++) {
261 struct nmk_gpio_chip
*chip
= nmk_gpio_chips
[i
];
262 unsigned int temp
= slpm
[i
];
267 slpm
[i
] = readl(chip
->addr
+ NMK_GPIO_SLPC
);
268 writel(temp
, chip
->addr
+ NMK_GPIO_SLPC
);
272 static void nmk_gpio_glitch_slpm_restore(unsigned int *slpm
)
276 for (i
= 0; i
< NUM_BANKS
; i
++) {
277 struct nmk_gpio_chip
*chip
= nmk_gpio_chips
[i
];
282 writel(slpm
[i
], chip
->addr
+ NMK_GPIO_SLPC
);
286 static int __nmk_config_pins(pin_cfg_t
*cfgs
, int num
, bool sleep
)
288 static unsigned int slpm
[NUM_BANKS
];
294 for (i
= 0; i
< num
; i
++) {
295 if (PIN_ALT(cfgs
[i
]) == NMK_GPIO_ALT_C
) {
301 spin_lock_irqsave(&nmk_gpio_slpm_lock
, flags
);
304 memset(slpm
, 0xff, sizeof(slpm
));
306 for (i
= 0; i
< num
; i
++) {
307 int pin
= PIN_NUM(cfgs
[i
]);
308 int offset
= pin
% NMK_GPIO_PER_CHIP
;
310 if (PIN_ALT(cfgs
[i
]) == NMK_GPIO_ALT_C
)
311 slpm
[pin
/ NMK_GPIO_PER_CHIP
] &= ~BIT(offset
);
314 nmk_gpio_glitch_slpm_init(slpm
);
317 for (i
= 0; i
< num
; i
++) {
318 struct nmk_gpio_chip
*nmk_chip
;
319 int pin
= PIN_NUM(cfgs
[i
]);
321 nmk_chip
= get_irq_chip_data(NOMADIK_GPIO_TO_IRQ(pin
));
327 spin_lock(&nmk_chip
->lock
);
328 __nmk_config_pin(nmk_chip
, pin
- nmk_chip
->chip
.base
,
329 cfgs
[i
], sleep
, glitch
? slpm
: NULL
);
330 spin_unlock(&nmk_chip
->lock
);
334 nmk_gpio_glitch_slpm_restore(slpm
);
336 spin_unlock_irqrestore(&nmk_gpio_slpm_lock
, flags
);
342 * nmk_config_pin - configure a pin's mux attributes
343 * @cfg: pin confguration
345 * Configures a pin's mode (alternate function or GPIO), its pull up status,
346 * and its sleep mode based on the specified configuration. The @cfg is
347 * usually one of the SoC specific macros defined in mach/<soc>-pins.h. These
348 * are constructed using, and can be further enhanced with, the macros in
351 * If a pin's mode is set to GPIO, it is configured as an input to avoid
352 * side-effects. The gpio can be manipulated later using standard GPIO API
355 int nmk_config_pin(pin_cfg_t cfg
, bool sleep
)
357 return __nmk_config_pins(&cfg
, 1, sleep
);
359 EXPORT_SYMBOL(nmk_config_pin
);
362 * nmk_config_pins - configure several pins at once
363 * @cfgs: array of pin configurations
364 * @num: number of elments in the array
366 * Configures several pins using nmk_config_pin(). Refer to that function for
367 * further information.
369 int nmk_config_pins(pin_cfg_t
*cfgs
, int num
)
371 return __nmk_config_pins(cfgs
, num
, false);
373 EXPORT_SYMBOL(nmk_config_pins
);
375 int nmk_config_pins_sleep(pin_cfg_t
*cfgs
, int num
)
377 return __nmk_config_pins(cfgs
, num
, true);
379 EXPORT_SYMBOL(nmk_config_pins_sleep
);
382 * nmk_gpio_set_slpm() - configure the sleep mode of a pin
384 * @mode: NMK_GPIO_SLPM_INPUT or NMK_GPIO_SLPM_NOCHANGE,
386 * Sets the sleep mode of a pin. If @mode is NMK_GPIO_SLPM_INPUT, the pin is
387 * changed to an input (with pullup/down enabled) in sleep and deep sleep. If
388 * @mode is NMK_GPIO_SLPM_NOCHANGE, the pin remains in the state it was
389 * configured even when in sleep and deep sleep.
391 * On DB8500v2 onwards, this setting loses the previous meaning and instead
392 * indicates if wakeup detection is enabled on the pin. Note that
393 * enable_irq_wake() will automatically enable wakeup detection.
395 int nmk_gpio_set_slpm(int gpio
, enum nmk_gpio_slpm mode
)
397 struct nmk_gpio_chip
*nmk_chip
;
400 nmk_chip
= get_irq_chip_data(NOMADIK_GPIO_TO_IRQ(gpio
));
404 spin_lock_irqsave(&nmk_gpio_slpm_lock
, flags
);
405 spin_lock(&nmk_chip
->lock
);
407 __nmk_gpio_set_slpm(nmk_chip
, gpio
- nmk_chip
->chip
.base
, mode
);
409 spin_unlock(&nmk_chip
->lock
);
410 spin_unlock_irqrestore(&nmk_gpio_slpm_lock
, flags
);
416 * nmk_gpio_set_pull() - enable/disable pull up/down on a gpio
418 * @pull: one of NMK_GPIO_PULL_DOWN, NMK_GPIO_PULL_UP, and NMK_GPIO_PULL_NONE
420 * Enables/disables pull up/down on a specified pin. This only takes effect if
421 * the pin is configured as an input (either explicitly or by the alternate
424 * NOTE: If enabling the pull up/down, the caller must ensure that the GPIO is
425 * configured as an input. Otherwise, due to the way the controller registers
426 * work, this function will change the value output on the pin.
428 int nmk_gpio_set_pull(int gpio
, enum nmk_gpio_pull pull
)
430 struct nmk_gpio_chip
*nmk_chip
;
433 nmk_chip
= get_irq_chip_data(NOMADIK_GPIO_TO_IRQ(gpio
));
437 spin_lock_irqsave(&nmk_chip
->lock
, flags
);
438 __nmk_gpio_set_pull(nmk_chip
, gpio
- nmk_chip
->chip
.base
, pull
);
439 spin_unlock_irqrestore(&nmk_chip
->lock
, flags
);
446 * nmk_gpio_set_mode() - set the mux mode of a gpio pin
448 * @gpio_mode: one of NMK_GPIO_ALT_GPIO, NMK_GPIO_ALT_A,
449 * NMK_GPIO_ALT_B, and NMK_GPIO_ALT_C
451 * Sets the mode of the specified pin to one of the alternate functions or
454 int nmk_gpio_set_mode(int gpio
, int gpio_mode
)
456 struct nmk_gpio_chip
*nmk_chip
;
459 nmk_chip
= get_irq_chip_data(NOMADIK_GPIO_TO_IRQ(gpio
));
463 spin_lock_irqsave(&nmk_chip
->lock
, flags
);
464 __nmk_gpio_set_mode(nmk_chip
, gpio
- nmk_chip
->chip
.base
, gpio_mode
);
465 spin_unlock_irqrestore(&nmk_chip
->lock
, flags
);
469 EXPORT_SYMBOL(nmk_gpio_set_mode
);
471 int nmk_gpio_get_mode(int gpio
)
473 struct nmk_gpio_chip
*nmk_chip
;
474 u32 afunc
, bfunc
, bit
;
476 nmk_chip
= get_irq_chip_data(NOMADIK_GPIO_TO_IRQ(gpio
));
480 bit
= 1 << (gpio
- nmk_chip
->chip
.base
);
482 afunc
= readl(nmk_chip
->addr
+ NMK_GPIO_AFSLA
) & bit
;
483 bfunc
= readl(nmk_chip
->addr
+ NMK_GPIO_AFSLB
) & bit
;
485 return (afunc
? NMK_GPIO_ALT_A
: 0) | (bfunc
? NMK_GPIO_ALT_B
: 0);
487 EXPORT_SYMBOL(nmk_gpio_get_mode
);
491 static inline int nmk_gpio_get_bitmask(int gpio
)
493 return 1 << (gpio
% 32);
496 static void nmk_gpio_irq_ack(struct irq_data
*d
)
499 struct nmk_gpio_chip
*nmk_chip
;
501 gpio
= NOMADIK_IRQ_TO_GPIO(d
->irq
);
502 nmk_chip
= irq_data_get_irq_chip_data(d
);
505 writel(nmk_gpio_get_bitmask(gpio
), nmk_chip
->addr
+ NMK_GPIO_IC
);
508 enum nmk_gpio_irq_type
{
513 static void __nmk_gpio_irq_modify(struct nmk_gpio_chip
*nmk_chip
,
514 int gpio
, enum nmk_gpio_irq_type which
,
517 u32 rimsc
= which
== WAKE
? NMK_GPIO_RWIMSC
: NMK_GPIO_RIMSC
;
518 u32 fimsc
= which
== WAKE
? NMK_GPIO_FWIMSC
: NMK_GPIO_FIMSC
;
519 u32 bitmask
= nmk_gpio_get_bitmask(gpio
);
522 /* we must individually set/clear the two edges */
523 if (nmk_chip
->edge_rising
& bitmask
) {
524 reg
= readl(nmk_chip
->addr
+ rimsc
);
529 writel(reg
, nmk_chip
->addr
+ rimsc
);
531 if (nmk_chip
->edge_falling
& bitmask
) {
532 reg
= readl(nmk_chip
->addr
+ fimsc
);
537 writel(reg
, nmk_chip
->addr
+ fimsc
);
541 static void __nmk_gpio_set_wake(struct nmk_gpio_chip
*nmk_chip
,
544 #ifdef CONFIG_ARCH_U8500
545 if (cpu_is_u8500v2()) {
546 __nmk_gpio_set_slpm(nmk_chip
, gpio
- nmk_chip
->chip
.base
,
547 on
? NMK_GPIO_SLPM_WAKEUP_ENABLE
548 : NMK_GPIO_SLPM_WAKEUP_DISABLE
);
551 __nmk_gpio_irq_modify(nmk_chip
, gpio
, WAKE
, on
);
554 static int nmk_gpio_irq_maskunmask(struct irq_data
*d
, bool enable
)
557 struct nmk_gpio_chip
*nmk_chip
;
561 gpio
= NOMADIK_IRQ_TO_GPIO(d
->irq
);
562 nmk_chip
= irq_data_get_irq_chip_data(d
);
563 bitmask
= nmk_gpio_get_bitmask(gpio
);
567 spin_lock_irqsave(&nmk_gpio_slpm_lock
, flags
);
568 spin_lock(&nmk_chip
->lock
);
570 __nmk_gpio_irq_modify(nmk_chip
, gpio
, NORMAL
, enable
);
572 if (!(nmk_chip
->real_wake
& bitmask
))
573 __nmk_gpio_set_wake(nmk_chip
, gpio
, enable
);
575 spin_unlock(&nmk_chip
->lock
);
576 spin_unlock_irqrestore(&nmk_gpio_slpm_lock
, flags
);
581 static void nmk_gpio_irq_mask(struct irq_data
*d
)
583 nmk_gpio_irq_maskunmask(d
, false);
586 static void nmk_gpio_irq_unmask(struct irq_data
*d
)
588 nmk_gpio_irq_maskunmask(d
, true);
591 static int nmk_gpio_irq_set_wake(struct irq_data
*d
, unsigned int on
)
593 struct irq_desc
*desc
= irq_to_desc(d
->irq
);
594 bool enabled
= !(desc
->status
& IRQ_DISABLED
);
595 struct nmk_gpio_chip
*nmk_chip
;
600 gpio
= NOMADIK_IRQ_TO_GPIO(d
->irq
);
601 nmk_chip
= irq_data_get_irq_chip_data(d
);
604 bitmask
= nmk_gpio_get_bitmask(gpio
);
606 spin_lock_irqsave(&nmk_gpio_slpm_lock
, flags
);
607 spin_lock(&nmk_chip
->lock
);
610 __nmk_gpio_set_wake(nmk_chip
, gpio
, on
);
613 nmk_chip
->real_wake
|= bitmask
;
615 nmk_chip
->real_wake
&= ~bitmask
;
617 spin_unlock(&nmk_chip
->lock
);
618 spin_unlock_irqrestore(&nmk_gpio_slpm_lock
, flags
);
623 static int nmk_gpio_irq_set_type(struct irq_data
*d
, unsigned int type
)
625 struct irq_desc
*desc
= irq_to_desc(d
->irq
);
626 bool enabled
= !(desc
->status
& IRQ_DISABLED
);
627 bool wake
= desc
->wake_depth
;
629 struct nmk_gpio_chip
*nmk_chip
;
633 gpio
= NOMADIK_IRQ_TO_GPIO(d
->irq
);
634 nmk_chip
= irq_data_get_irq_chip_data(d
);
635 bitmask
= nmk_gpio_get_bitmask(gpio
);
639 if (type
& IRQ_TYPE_LEVEL_HIGH
)
641 if (type
& IRQ_TYPE_LEVEL_LOW
)
644 spin_lock_irqsave(&nmk_chip
->lock
, flags
);
647 __nmk_gpio_irq_modify(nmk_chip
, gpio
, NORMAL
, false);
650 __nmk_gpio_irq_modify(nmk_chip
, gpio
, WAKE
, false);
652 nmk_chip
->edge_rising
&= ~bitmask
;
653 if (type
& IRQ_TYPE_EDGE_RISING
)
654 nmk_chip
->edge_rising
|= bitmask
;
656 nmk_chip
->edge_falling
&= ~bitmask
;
657 if (type
& IRQ_TYPE_EDGE_FALLING
)
658 nmk_chip
->edge_falling
|= bitmask
;
661 __nmk_gpio_irq_modify(nmk_chip
, gpio
, NORMAL
, true);
664 __nmk_gpio_irq_modify(nmk_chip
, gpio
, WAKE
, true);
666 spin_unlock_irqrestore(&nmk_chip
->lock
, flags
);
671 static struct irq_chip nmk_gpio_irq_chip
= {
672 .name
= "Nomadik-GPIO",
673 .irq_ack
= nmk_gpio_irq_ack
,
674 .irq_mask
= nmk_gpio_irq_mask
,
675 .irq_unmask
= nmk_gpio_irq_unmask
,
676 .irq_set_type
= nmk_gpio_irq_set_type
,
677 .irq_set_wake
= nmk_gpio_irq_set_wake
,
680 static void __nmk_gpio_irq_handler(unsigned int irq
, struct irq_desc
*desc
,
683 struct nmk_gpio_chip
*nmk_chip
;
684 struct irq_chip
*host_chip
= get_irq_chip(irq
);
685 unsigned int first_irq
;
687 if (host_chip
->irq_mask_ack
)
688 host_chip
->irq_mask_ack(&desc
->irq_data
);
690 host_chip
->irq_mask(&desc
->irq_data
);
691 if (host_chip
->irq_ack
)
692 host_chip
->irq_ack(&desc
->irq_data
);
695 nmk_chip
= get_irq_data(irq
);
696 first_irq
= NOMADIK_GPIO_TO_IRQ(nmk_chip
->chip
.base
);
698 int bit
= __ffs(status
);
700 generic_handle_irq(first_irq
+ bit
);
704 host_chip
->irq_unmask(&desc
->irq_data
);
707 static void nmk_gpio_irq_handler(unsigned int irq
, struct irq_desc
*desc
)
709 struct nmk_gpio_chip
*nmk_chip
= get_irq_data(irq
);
710 u32 status
= readl(nmk_chip
->addr
+ NMK_GPIO_IS
);
712 __nmk_gpio_irq_handler(irq
, desc
, status
);
715 static void nmk_gpio_secondary_irq_handler(unsigned int irq
,
716 struct irq_desc
*desc
)
718 struct nmk_gpio_chip
*nmk_chip
= get_irq_data(irq
);
719 u32 status
= nmk_chip
->get_secondary_status(nmk_chip
->bank
);
721 __nmk_gpio_irq_handler(irq
, desc
, status
);
724 static int nmk_gpio_init_irq(struct nmk_gpio_chip
*nmk_chip
)
726 unsigned int first_irq
;
729 first_irq
= NOMADIK_GPIO_TO_IRQ(nmk_chip
->chip
.base
);
730 for (i
= first_irq
; i
< first_irq
+ nmk_chip
->chip
.ngpio
; i
++) {
731 set_irq_chip(i
, &nmk_gpio_irq_chip
);
732 set_irq_handler(i
, handle_edge_irq
);
733 set_irq_flags(i
, IRQF_VALID
);
734 set_irq_chip_data(i
, nmk_chip
);
735 set_irq_type(i
, IRQ_TYPE_EDGE_FALLING
);
738 set_irq_chained_handler(nmk_chip
->parent_irq
, nmk_gpio_irq_handler
);
739 set_irq_data(nmk_chip
->parent_irq
, nmk_chip
);
741 if (nmk_chip
->secondary_parent_irq
>= 0) {
742 set_irq_chained_handler(nmk_chip
->secondary_parent_irq
,
743 nmk_gpio_secondary_irq_handler
);
744 set_irq_data(nmk_chip
->secondary_parent_irq
, nmk_chip
);
751 static int nmk_gpio_make_input(struct gpio_chip
*chip
, unsigned offset
)
753 struct nmk_gpio_chip
*nmk_chip
=
754 container_of(chip
, struct nmk_gpio_chip
, chip
);
756 writel(1 << offset
, nmk_chip
->addr
+ NMK_GPIO_DIRC
);
760 static int nmk_gpio_get_input(struct gpio_chip
*chip
, unsigned offset
)
762 struct nmk_gpio_chip
*nmk_chip
=
763 container_of(chip
, struct nmk_gpio_chip
, chip
);
764 u32 bit
= 1 << offset
;
766 return (readl(nmk_chip
->addr
+ NMK_GPIO_DAT
) & bit
) != 0;
769 static void nmk_gpio_set_output(struct gpio_chip
*chip
, unsigned offset
,
772 struct nmk_gpio_chip
*nmk_chip
=
773 container_of(chip
, struct nmk_gpio_chip
, chip
);
775 __nmk_gpio_set_output(nmk_chip
, offset
, val
);
778 static int nmk_gpio_make_output(struct gpio_chip
*chip
, unsigned offset
,
781 struct nmk_gpio_chip
*nmk_chip
=
782 container_of(chip
, struct nmk_gpio_chip
, chip
);
784 __nmk_gpio_make_output(nmk_chip
, offset
, val
);
789 static int nmk_gpio_to_irq(struct gpio_chip
*chip
, unsigned offset
)
791 struct nmk_gpio_chip
*nmk_chip
=
792 container_of(chip
, struct nmk_gpio_chip
, chip
);
794 return NOMADIK_GPIO_TO_IRQ(nmk_chip
->chip
.base
) + offset
;
797 #ifdef CONFIG_DEBUG_FS
799 #include <linux/seq_file.h>
801 static void nmk_gpio_dbg_show(struct seq_file
*s
, struct gpio_chip
*chip
)
805 unsigned gpio
= chip
->base
;
807 struct nmk_gpio_chip
*nmk_chip
=
808 container_of(chip
, struct nmk_gpio_chip
, chip
);
809 const char *modes
[] = {
810 [NMK_GPIO_ALT_GPIO
] = "gpio",
811 [NMK_GPIO_ALT_A
] = "altA",
812 [NMK_GPIO_ALT_B
] = "altB",
813 [NMK_GPIO_ALT_C
] = "altC",
816 for (i
= 0; i
< chip
->ngpio
; i
++, gpio
++) {
817 const char *label
= gpiochip_is_requested(chip
, i
);
824 is_out
= readl(nmk_chip
->addr
+ NMK_GPIO_DIR
) & bit
;
825 pull
= !(readl(nmk_chip
->addr
+ NMK_GPIO_PDIS
) & bit
);
826 mode
= nmk_gpio_get_mode(gpio
);
827 seq_printf(s
, " gpio-%-3d (%-20.20s) %s %s %s %s",
829 is_out
? "out" : "in ",
831 ? (chip
->get(chip
, i
) ? "hi" : "lo")
833 (mode
< 0) ? "unknown" : modes
[mode
],
834 pull
? "pull" : "none");
840 #define nmk_gpio_dbg_show NULL
843 /* This structure is replicated for each GPIO block allocated at probe time */
844 static struct gpio_chip nmk_gpio_template
= {
845 .direction_input
= nmk_gpio_make_input
,
846 .get
= nmk_gpio_get_input
,
847 .direction_output
= nmk_gpio_make_output
,
848 .set
= nmk_gpio_set_output
,
849 .to_irq
= nmk_gpio_to_irq
,
850 .dbg_show
= nmk_gpio_dbg_show
,
855 * Called from the suspend/resume path to only keep the real wakeup interrupts
856 * (those that have had set_irq_wake() called on them) as wakeup interrupts,
857 * and not the rest of the interrupts which we needed to have as wakeups for
860 * PM ops are not used since this needs to be done at the end, after all the
861 * other drivers are done with their suspend callbacks.
863 void nmk_gpio_wakeups_suspend(void)
867 for (i
= 0; i
< NUM_BANKS
; i
++) {
868 struct nmk_gpio_chip
*chip
= nmk_gpio_chips
[i
];
873 chip
->rwimsc
= readl(chip
->addr
+ NMK_GPIO_RWIMSC
);
874 chip
->fwimsc
= readl(chip
->addr
+ NMK_GPIO_FWIMSC
);
876 writel(chip
->rwimsc
& chip
->real_wake
,
877 chip
->addr
+ NMK_GPIO_RWIMSC
);
878 writel(chip
->fwimsc
& chip
->real_wake
,
879 chip
->addr
+ NMK_GPIO_FWIMSC
);
881 if (cpu_is_u8500v2()) {
882 chip
->slpm
= readl(chip
->addr
+ NMK_GPIO_SLPC
);
884 /* 0 -> wakeup enable */
885 writel(~chip
->real_wake
, chip
->addr
+ NMK_GPIO_SLPC
);
890 void nmk_gpio_wakeups_resume(void)
894 for (i
= 0; i
< NUM_BANKS
; i
++) {
895 struct nmk_gpio_chip
*chip
= nmk_gpio_chips
[i
];
900 writel(chip
->rwimsc
, chip
->addr
+ NMK_GPIO_RWIMSC
);
901 writel(chip
->fwimsc
, chip
->addr
+ NMK_GPIO_FWIMSC
);
903 if (cpu_is_u8500v2())
904 writel(chip
->slpm
, chip
->addr
+ NMK_GPIO_SLPC
);
908 static int __devinit
nmk_gpio_probe(struct platform_device
*dev
)
910 struct nmk_gpio_platform_data
*pdata
= dev
->dev
.platform_data
;
911 struct nmk_gpio_chip
*nmk_chip
;
912 struct gpio_chip
*chip
;
913 struct resource
*res
;
922 res
= platform_get_resource(dev
, IORESOURCE_MEM
, 0);
928 irq
= platform_get_irq(dev
, 0);
934 secondary_irq
= platform_get_irq(dev
, 1);
935 if (secondary_irq
>= 0 && !pdata
->get_secondary_status
) {
940 if (request_mem_region(res
->start
, resource_size(res
),
941 dev_name(&dev
->dev
)) == NULL
) {
946 clk
= clk_get(&dev
->dev
, NULL
);
954 nmk_chip
= kzalloc(sizeof(*nmk_chip
), GFP_KERNEL
);
960 * The virt address in nmk_chip->addr is in the nomadik register space,
961 * so we can simply convert the resource address, without remapping
963 nmk_chip
->bank
= dev
->id
;
965 nmk_chip
->addr
= io_p2v(res
->start
);
966 nmk_chip
->chip
= nmk_gpio_template
;
967 nmk_chip
->parent_irq
= irq
;
968 nmk_chip
->secondary_parent_irq
= secondary_irq
;
969 nmk_chip
->get_secondary_status
= pdata
->get_secondary_status
;
970 nmk_chip
->set_ioforce
= pdata
->set_ioforce
;
971 spin_lock_init(&nmk_chip
->lock
);
973 chip
= &nmk_chip
->chip
;
974 chip
->base
= pdata
->first_gpio
;
975 chip
->ngpio
= pdata
->num_gpio
;
976 chip
->label
= pdata
->name
?: dev_name(&dev
->dev
);
977 chip
->dev
= &dev
->dev
;
978 chip
->owner
= THIS_MODULE
;
980 ret
= gpiochip_add(&nmk_chip
->chip
);
984 BUG_ON(nmk_chip
->bank
>= ARRAY_SIZE(nmk_gpio_chips
));
986 nmk_gpio_chips
[nmk_chip
->bank
] = nmk_chip
;
987 platform_set_drvdata(dev
, nmk_chip
);
989 nmk_gpio_init_irq(nmk_chip
);
991 dev_info(&dev
->dev
, "Bits %i-%i at address %p\n",
992 nmk_chip
->chip
.base
, nmk_chip
->chip
.base
+31, nmk_chip
->addr
);
1001 release_mem_region(res
->start
, resource_size(res
));
1003 dev_err(&dev
->dev
, "Failure %i for GPIO %i-%i\n", ret
,
1004 pdata
->first_gpio
, pdata
->first_gpio
+31);
1008 static struct platform_driver nmk_gpio_driver
= {
1010 .owner
= THIS_MODULE
,
1013 .probe
= nmk_gpio_probe
,
1016 static int __init
nmk_gpio_init(void)
1018 return platform_driver_register(&nmk_gpio_driver
);
1021 core_initcall(nmk_gpio_init
);
1023 MODULE_AUTHOR("Prafulla WADASKAR and Alessandro Rubini");
1024 MODULE_DESCRIPTION("Nomadik GPIO Driver");
1025 MODULE_LICENSE("GPL");