plat-nomadik: support secondary GPIO interrupts
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / plat-nomadik / gpio.c
blob971e5d3798e47838ba9a928f3fb2babb9de0e5d2
1 /*
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>
17 #include <linux/io.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 only used in the Nomadik.
35 * Symbols in this file are called "nmk_gpio" for "nomadik gpio"
38 struct nmk_gpio_chip {
39 struct gpio_chip chip;
40 void __iomem *addr;
41 struct clk *clk;
42 unsigned int bank;
43 unsigned int parent_irq;
44 unsigned int secondary_parent_irq;
45 u32 (*get_secondary_status)(unsigned int bank);
46 spinlock_t lock;
47 /* Keep track of configured edges */
48 u32 edge_rising;
49 u32 edge_falling;
50 u32 backup[10];
53 static void __nmk_gpio_set_mode(struct nmk_gpio_chip *nmk_chip,
54 unsigned offset, int gpio_mode)
56 u32 bit = 1 << offset;
57 u32 afunc, bfunc;
59 afunc = readl(nmk_chip->addr + NMK_GPIO_AFSLA) & ~bit;
60 bfunc = readl(nmk_chip->addr + NMK_GPIO_AFSLB) & ~bit;
61 if (gpio_mode & NMK_GPIO_ALT_A)
62 afunc |= bit;
63 if (gpio_mode & NMK_GPIO_ALT_B)
64 bfunc |= bit;
65 writel(afunc, nmk_chip->addr + NMK_GPIO_AFSLA);
66 writel(bfunc, nmk_chip->addr + NMK_GPIO_AFSLB);
69 static void __nmk_gpio_set_slpm(struct nmk_gpio_chip *nmk_chip,
70 unsigned offset, enum nmk_gpio_slpm mode)
72 u32 bit = 1 << offset;
73 u32 slpm;
75 slpm = readl(nmk_chip->addr + NMK_GPIO_SLPC);
76 if (mode == NMK_GPIO_SLPM_NOCHANGE)
77 slpm |= bit;
78 else
79 slpm &= ~bit;
80 writel(slpm, nmk_chip->addr + NMK_GPIO_SLPC);
83 static void __nmk_gpio_set_pull(struct nmk_gpio_chip *nmk_chip,
84 unsigned offset, enum nmk_gpio_pull pull)
86 u32 bit = 1 << offset;
87 u32 pdis;
89 pdis = readl(nmk_chip->addr + NMK_GPIO_PDIS);
90 if (pull == NMK_GPIO_PULL_NONE)
91 pdis |= bit;
92 else
93 pdis &= ~bit;
94 writel(pdis, nmk_chip->addr + NMK_GPIO_PDIS);
96 if (pull == NMK_GPIO_PULL_UP)
97 writel(bit, nmk_chip->addr + NMK_GPIO_DATS);
98 else if (pull == NMK_GPIO_PULL_DOWN)
99 writel(bit, nmk_chip->addr + NMK_GPIO_DATC);
102 static void __nmk_gpio_make_input(struct nmk_gpio_chip *nmk_chip,
103 unsigned offset)
105 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRC);
108 static void __nmk_gpio_set_output(struct nmk_gpio_chip *nmk_chip,
109 unsigned offset, int val)
111 if (val)
112 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DATS);
113 else
114 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DATC);
117 static void __nmk_gpio_make_output(struct nmk_gpio_chip *nmk_chip,
118 unsigned offset, int val)
120 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRS);
121 __nmk_gpio_set_output(nmk_chip, offset, val);
124 static void __nmk_config_pin(struct nmk_gpio_chip *nmk_chip, unsigned offset,
125 pin_cfg_t cfg, bool sleep)
127 static const char *afnames[] = {
128 [NMK_GPIO_ALT_GPIO] = "GPIO",
129 [NMK_GPIO_ALT_A] = "A",
130 [NMK_GPIO_ALT_B] = "B",
131 [NMK_GPIO_ALT_C] = "C"
133 static const char *pullnames[] = {
134 [NMK_GPIO_PULL_NONE] = "none",
135 [NMK_GPIO_PULL_UP] = "up",
136 [NMK_GPIO_PULL_DOWN] = "down",
137 [3] /* illegal */ = "??"
139 static const char *slpmnames[] = {
140 [NMK_GPIO_SLPM_INPUT] = "input/wakeup",
141 [NMK_GPIO_SLPM_NOCHANGE] = "no-change/no-wakeup",
144 int pin = PIN_NUM(cfg);
145 int pull = PIN_PULL(cfg);
146 int af = PIN_ALT(cfg);
147 int slpm = PIN_SLPM(cfg);
148 int output = PIN_DIR(cfg);
149 int val = PIN_VAL(cfg);
151 dev_dbg(nmk_chip->chip.dev, "pin %d [%#lx]: af %s, pull %s, slpm %s (%s%s)\n",
152 pin, cfg, afnames[af], pullnames[pull], slpmnames[slpm],
153 output ? "output " : "input",
154 output ? (val ? "high" : "low") : "");
156 if (sleep) {
157 int slpm_pull = PIN_SLPM_PULL(cfg);
158 int slpm_output = PIN_SLPM_DIR(cfg);
159 int slpm_val = PIN_SLPM_VAL(cfg);
162 * The SLPM_* values are normal values + 1 to allow zero to
163 * mean "same as normal".
165 if (slpm_pull)
166 pull = slpm_pull - 1;
167 if (slpm_output)
168 output = slpm_output - 1;
169 if (slpm_val)
170 val = slpm_val - 1;
172 dev_dbg(nmk_chip->chip.dev, "pin %d: sleep pull %s, dir %s, val %s\n",
173 pin,
174 slpm_pull ? pullnames[pull] : "same",
175 slpm_output ? (output ? "output" : "input") : "same",
176 slpm_val ? (val ? "high" : "low") : "same");
179 if (output)
180 __nmk_gpio_make_output(nmk_chip, offset, val);
181 else {
182 __nmk_gpio_make_input(nmk_chip, offset);
183 __nmk_gpio_set_pull(nmk_chip, offset, pull);
186 __nmk_gpio_set_slpm(nmk_chip, offset, slpm);
187 __nmk_gpio_set_mode(nmk_chip, offset, af);
191 * nmk_config_pin - configure a pin's mux attributes
192 * @cfg: pin confguration
194 * Configures a pin's mode (alternate function or GPIO), its pull up status,
195 * and its sleep mode based on the specified configuration. The @cfg is
196 * usually one of the SoC specific macros defined in mach/<soc>-pins.h. These
197 * are constructed using, and can be further enhanced with, the macros in
198 * plat/pincfg.h.
200 * If a pin's mode is set to GPIO, it is configured as an input to avoid
201 * side-effects. The gpio can be manipulated later using standard GPIO API
202 * calls.
204 int nmk_config_pin(pin_cfg_t cfg, bool sleep)
206 struct nmk_gpio_chip *nmk_chip;
207 int gpio = PIN_NUM(cfg);
208 unsigned long flags;
210 nmk_chip = get_irq_chip_data(NOMADIK_GPIO_TO_IRQ(gpio));
211 if (!nmk_chip)
212 return -EINVAL;
214 spin_lock_irqsave(&nmk_chip->lock, flags);
215 __nmk_config_pin(nmk_chip, gpio - nmk_chip->chip.base, cfg, sleep);
216 spin_unlock_irqrestore(&nmk_chip->lock, flags);
218 return 0;
220 EXPORT_SYMBOL(nmk_config_pin);
223 * nmk_config_pins - configure several pins at once
224 * @cfgs: array of pin configurations
225 * @num: number of elments in the array
227 * Configures several pins using nmk_config_pin(). Refer to that function for
228 * further information.
230 int nmk_config_pins(pin_cfg_t *cfgs, int num)
232 int ret = 0;
233 int i;
235 for (i = 0; i < num; i++) {
236 ret = nmk_config_pin(cfgs[i], false);
237 if (ret)
238 break;
241 return ret;
243 EXPORT_SYMBOL(nmk_config_pins);
245 int nmk_config_pins_sleep(pin_cfg_t *cfgs, int num)
247 int ret = 0;
248 int i;
250 for (i = 0; i < num; i++) {
251 ret = nmk_config_pin(cfgs[i], true);
252 if (ret)
253 break;
256 return ret;
258 EXPORT_SYMBOL(nmk_config_pins_sleep);
261 * nmk_gpio_set_slpm() - configure the sleep mode of a pin
262 * @gpio: pin number
263 * @mode: NMK_GPIO_SLPM_INPUT or NMK_GPIO_SLPM_NOCHANGE,
265 * Sets the sleep mode of a pin. If @mode is NMK_GPIO_SLPM_INPUT, the pin is
266 * changed to an input (with pullup/down enabled) in sleep and deep sleep. If
267 * @mode is NMK_GPIO_SLPM_NOCHANGE, the pin remains in the state it was
268 * configured even when in sleep and deep sleep.
270 * On DB8500v2 onwards, this setting loses the previous meaning and instead
271 * indicates if wakeup detection is enabled on the pin. Note that
272 * enable_irq_wake() will automatically enable wakeup detection.
274 int nmk_gpio_set_slpm(int gpio, enum nmk_gpio_slpm mode)
276 struct nmk_gpio_chip *nmk_chip;
277 unsigned long flags;
279 nmk_chip = get_irq_chip_data(NOMADIK_GPIO_TO_IRQ(gpio));
280 if (!nmk_chip)
281 return -EINVAL;
283 spin_lock_irqsave(&nmk_chip->lock, flags);
284 __nmk_gpio_set_slpm(nmk_chip, gpio - nmk_chip->chip.base, mode);
285 spin_unlock_irqrestore(&nmk_chip->lock, flags);
287 return 0;
291 * nmk_gpio_set_pull() - enable/disable pull up/down on a gpio
292 * @gpio: pin number
293 * @pull: one of NMK_GPIO_PULL_DOWN, NMK_GPIO_PULL_UP, and NMK_GPIO_PULL_NONE
295 * Enables/disables pull up/down on a specified pin. This only takes effect if
296 * the pin is configured as an input (either explicitly or by the alternate
297 * function).
299 * NOTE: If enabling the pull up/down, the caller must ensure that the GPIO is
300 * configured as an input. Otherwise, due to the way the controller registers
301 * work, this function will change the value output on the pin.
303 int nmk_gpio_set_pull(int gpio, enum nmk_gpio_pull pull)
305 struct nmk_gpio_chip *nmk_chip;
306 unsigned long flags;
308 nmk_chip = get_irq_chip_data(NOMADIK_GPIO_TO_IRQ(gpio));
309 if (!nmk_chip)
310 return -EINVAL;
312 spin_lock_irqsave(&nmk_chip->lock, flags);
313 __nmk_gpio_set_pull(nmk_chip, gpio - nmk_chip->chip.base, pull);
314 spin_unlock_irqrestore(&nmk_chip->lock, flags);
316 return 0;
319 /* Mode functions */
320 int nmk_gpio_set_mode(int gpio, int gpio_mode)
322 struct nmk_gpio_chip *nmk_chip;
323 unsigned long flags;
325 nmk_chip = get_irq_chip_data(NOMADIK_GPIO_TO_IRQ(gpio));
326 if (!nmk_chip)
327 return -EINVAL;
329 spin_lock_irqsave(&nmk_chip->lock, flags);
330 __nmk_gpio_set_mode(nmk_chip, gpio - nmk_chip->chip.base, gpio_mode);
331 spin_unlock_irqrestore(&nmk_chip->lock, flags);
333 return 0;
335 EXPORT_SYMBOL(nmk_gpio_set_mode);
337 int nmk_gpio_get_mode(int gpio)
339 struct nmk_gpio_chip *nmk_chip;
340 u32 afunc, bfunc, bit;
342 nmk_chip = get_irq_chip_data(NOMADIK_GPIO_TO_IRQ(gpio));
343 if (!nmk_chip)
344 return -EINVAL;
346 bit = 1 << (gpio - nmk_chip->chip.base);
348 afunc = readl(nmk_chip->addr + NMK_GPIO_AFSLA) & bit;
349 bfunc = readl(nmk_chip->addr + NMK_GPIO_AFSLB) & bit;
351 return (afunc ? NMK_GPIO_ALT_A : 0) | (bfunc ? NMK_GPIO_ALT_B : 0);
353 EXPORT_SYMBOL(nmk_gpio_get_mode);
356 /* IRQ functions */
357 static inline int nmk_gpio_get_bitmask(int gpio)
359 return 1 << (gpio % 32);
362 static void nmk_gpio_irq_ack(struct irq_data *d)
364 int gpio;
365 struct nmk_gpio_chip *nmk_chip;
367 gpio = NOMADIK_IRQ_TO_GPIO(d->irq);
368 nmk_chip = irq_data_get_irq_chip_data(d);
369 if (!nmk_chip)
370 return;
371 writel(nmk_gpio_get_bitmask(gpio), nmk_chip->addr + NMK_GPIO_IC);
374 enum nmk_gpio_irq_type {
375 NORMAL,
376 WAKE,
379 static void __nmk_gpio_irq_modify(struct nmk_gpio_chip *nmk_chip,
380 int gpio, enum nmk_gpio_irq_type which,
381 bool enable)
383 u32 rimsc = which == WAKE ? NMK_GPIO_RWIMSC : NMK_GPIO_RIMSC;
384 u32 fimsc = which == WAKE ? NMK_GPIO_FWIMSC : NMK_GPIO_FIMSC;
385 u32 bitmask = nmk_gpio_get_bitmask(gpio);
386 u32 reg;
388 /* we must individually set/clear the two edges */
389 if (nmk_chip->edge_rising & bitmask) {
390 reg = readl(nmk_chip->addr + rimsc);
391 if (enable)
392 reg |= bitmask;
393 else
394 reg &= ~bitmask;
395 writel(reg, nmk_chip->addr + rimsc);
397 if (nmk_chip->edge_falling & bitmask) {
398 reg = readl(nmk_chip->addr + fimsc);
399 if (enable)
400 reg |= bitmask;
401 else
402 reg &= ~bitmask;
403 writel(reg, nmk_chip->addr + fimsc);
407 static int nmk_gpio_irq_modify(struct irq_data *d, enum nmk_gpio_irq_type which,
408 bool enable)
410 int gpio;
411 struct nmk_gpio_chip *nmk_chip;
412 unsigned long flags;
413 u32 bitmask;
415 gpio = NOMADIK_IRQ_TO_GPIO(d->irq);
416 nmk_chip = irq_data_get_irq_chip_data(d);
417 bitmask = nmk_gpio_get_bitmask(gpio);
418 if (!nmk_chip)
419 return -EINVAL;
421 spin_lock_irqsave(&nmk_chip->lock, flags);
422 __nmk_gpio_irq_modify(nmk_chip, gpio, which, enable);
423 spin_unlock_irqrestore(&nmk_chip->lock, flags);
425 return 0;
428 static void nmk_gpio_irq_mask(struct irq_data *d)
430 nmk_gpio_irq_modify(d, NORMAL, false);
433 static void nmk_gpio_irq_unmask(struct irq_data *d)
435 nmk_gpio_irq_modify(d, NORMAL, true);
438 static int nmk_gpio_irq_set_wake(struct irq_data *d, unsigned int on)
440 struct nmk_gpio_chip *nmk_chip;
441 unsigned long flags;
442 int gpio;
444 gpio = NOMADIK_IRQ_TO_GPIO(d->irq);
445 nmk_chip = irq_data_get_irq_chip_data(d);
446 if (!nmk_chip)
447 return -EINVAL;
449 spin_lock_irqsave(&nmk_chip->lock, flags);
450 #ifdef CONFIG_ARCH_U8500
451 if (cpu_is_u8500v2()) {
452 __nmk_gpio_set_slpm(nmk_chip, gpio,
453 on ? NMK_GPIO_SLPM_WAKEUP_ENABLE
454 : NMK_GPIO_SLPM_WAKEUP_DISABLE);
456 #endif
457 __nmk_gpio_irq_modify(nmk_chip, gpio, WAKE, on);
458 spin_unlock_irqrestore(&nmk_chip->lock, flags);
460 return 0;
463 static int nmk_gpio_irq_set_type(struct irq_data *d, unsigned int type)
465 struct irq_desc *desc = irq_to_desc(d->irq);
466 bool enabled = !(desc->status & IRQ_DISABLED);
467 bool wake = desc->wake_depth;
468 int gpio;
469 struct nmk_gpio_chip *nmk_chip;
470 unsigned long flags;
471 u32 bitmask;
473 gpio = NOMADIK_IRQ_TO_GPIO(d->irq);
474 nmk_chip = irq_data_get_irq_chip_data(d);
475 bitmask = nmk_gpio_get_bitmask(gpio);
476 if (!nmk_chip)
477 return -EINVAL;
479 if (type & IRQ_TYPE_LEVEL_HIGH)
480 return -EINVAL;
481 if (type & IRQ_TYPE_LEVEL_LOW)
482 return -EINVAL;
484 spin_lock_irqsave(&nmk_chip->lock, flags);
486 if (enabled)
487 __nmk_gpio_irq_modify(nmk_chip, gpio, NORMAL, false);
489 if (wake)
490 __nmk_gpio_irq_modify(nmk_chip, gpio, WAKE, false);
492 nmk_chip->edge_rising &= ~bitmask;
493 if (type & IRQ_TYPE_EDGE_RISING)
494 nmk_chip->edge_rising |= bitmask;
496 nmk_chip->edge_falling &= ~bitmask;
497 if (type & IRQ_TYPE_EDGE_FALLING)
498 nmk_chip->edge_falling |= bitmask;
500 if (enabled)
501 __nmk_gpio_irq_modify(nmk_chip, gpio, NORMAL, true);
503 if (wake)
504 __nmk_gpio_irq_modify(nmk_chip, gpio, WAKE, true);
506 spin_unlock_irqrestore(&nmk_chip->lock, flags);
508 return 0;
511 static struct irq_chip nmk_gpio_irq_chip = {
512 .name = "Nomadik-GPIO",
513 .irq_ack = nmk_gpio_irq_ack,
514 .irq_mask = nmk_gpio_irq_mask,
515 .irq_unmask = nmk_gpio_irq_unmask,
516 .irq_set_type = nmk_gpio_irq_set_type,
517 .irq_set_wake = nmk_gpio_irq_set_wake,
520 static void __nmk_gpio_irq_handler(unsigned int irq, struct irq_desc *desc,
521 u32 status)
523 struct nmk_gpio_chip *nmk_chip;
524 struct irq_chip *host_chip = get_irq_chip(irq);
525 unsigned int first_irq;
527 if (host_chip->irq_mask_ack)
528 host_chip->irq_mask_ack(&desc->irq_data);
529 else {
530 host_chip->irq_mask(&desc->irq_data);
531 if (host_chip->irq_ack)
532 host_chip->irq_ack(&desc->irq_data);
535 nmk_chip = get_irq_data(irq);
536 first_irq = NOMADIK_GPIO_TO_IRQ(nmk_chip->chip.base);
537 while (status) {
538 int bit = __ffs(status);
540 generic_handle_irq(first_irq + bit);
541 status &= ~BIT(bit);
544 host_chip->irq_unmask(&desc->irq_data);
547 static void nmk_gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
549 struct nmk_gpio_chip *nmk_chip = get_irq_data(irq);
550 u32 status = readl(nmk_chip->addr + NMK_GPIO_IS);
552 __nmk_gpio_irq_handler(irq, desc, status);
555 static void nmk_gpio_secondary_irq_handler(unsigned int irq,
556 struct irq_desc *desc)
558 struct nmk_gpio_chip *nmk_chip = get_irq_data(irq);
559 u32 status = nmk_chip->get_secondary_status(nmk_chip->bank);
561 __nmk_gpio_irq_handler(irq, desc, status);
564 static int nmk_gpio_init_irq(struct nmk_gpio_chip *nmk_chip)
566 unsigned int first_irq;
567 int i;
569 first_irq = NOMADIK_GPIO_TO_IRQ(nmk_chip->chip.base);
570 for (i = first_irq; i < first_irq + nmk_chip->chip.ngpio; i++) {
571 set_irq_chip(i, &nmk_gpio_irq_chip);
572 set_irq_handler(i, handle_edge_irq);
573 set_irq_flags(i, IRQF_VALID);
574 set_irq_chip_data(i, nmk_chip);
575 set_irq_type(i, IRQ_TYPE_EDGE_FALLING);
578 set_irq_chained_handler(nmk_chip->parent_irq, nmk_gpio_irq_handler);
579 set_irq_data(nmk_chip->parent_irq, nmk_chip);
581 if (nmk_chip->secondary_parent_irq >= 0) {
582 set_irq_chained_handler(nmk_chip->secondary_parent_irq,
583 nmk_gpio_secondary_irq_handler);
584 set_irq_data(nmk_chip->secondary_parent_irq, nmk_chip);
587 return 0;
590 /* I/O Functions */
591 static int nmk_gpio_make_input(struct gpio_chip *chip, unsigned offset)
593 struct nmk_gpio_chip *nmk_chip =
594 container_of(chip, struct nmk_gpio_chip, chip);
596 writel(1 << offset, nmk_chip->addr + NMK_GPIO_DIRC);
597 return 0;
600 static int nmk_gpio_get_input(struct gpio_chip *chip, unsigned offset)
602 struct nmk_gpio_chip *nmk_chip =
603 container_of(chip, struct nmk_gpio_chip, chip);
604 u32 bit = 1 << offset;
606 return (readl(nmk_chip->addr + NMK_GPIO_DAT) & bit) != 0;
609 static void nmk_gpio_set_output(struct gpio_chip *chip, unsigned offset,
610 int val)
612 struct nmk_gpio_chip *nmk_chip =
613 container_of(chip, struct nmk_gpio_chip, chip);
615 __nmk_gpio_set_output(nmk_chip, offset, val);
618 static int nmk_gpio_make_output(struct gpio_chip *chip, unsigned offset,
619 int val)
621 struct nmk_gpio_chip *nmk_chip =
622 container_of(chip, struct nmk_gpio_chip, chip);
624 __nmk_gpio_make_output(nmk_chip, offset, val);
626 return 0;
629 static int nmk_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
631 struct nmk_gpio_chip *nmk_chip =
632 container_of(chip, struct nmk_gpio_chip, chip);
634 return NOMADIK_GPIO_TO_IRQ(nmk_chip->chip.base) + offset;
637 #ifdef CONFIG_DEBUG_FS
639 #include <linux/seq_file.h>
641 static void nmk_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
643 int mode;
644 unsigned i;
645 unsigned gpio = chip->base;
646 int is_out;
647 struct nmk_gpio_chip *nmk_chip =
648 container_of(chip, struct nmk_gpio_chip, chip);
649 const char *modes[] = {
650 [NMK_GPIO_ALT_GPIO] = "gpio",
651 [NMK_GPIO_ALT_A] = "altA",
652 [NMK_GPIO_ALT_B] = "altB",
653 [NMK_GPIO_ALT_C] = "altC",
656 for (i = 0; i < chip->ngpio; i++, gpio++) {
657 const char *label = gpiochip_is_requested(chip, i);
658 bool pull;
659 u32 bit = 1 << i;
661 if (!label)
662 continue;
664 is_out = readl(nmk_chip->addr + NMK_GPIO_DIR) & bit;
665 pull = !(readl(nmk_chip->addr + NMK_GPIO_PDIS) & bit);
666 mode = nmk_gpio_get_mode(gpio);
667 seq_printf(s, " gpio-%-3d (%-20.20s) %s %s %s %s",
668 gpio, label,
669 is_out ? "out" : "in ",
670 chip->get
671 ? (chip->get(chip, i) ? "hi" : "lo")
672 : "? ",
673 (mode < 0) ? "unknown" : modes[mode],
674 pull ? "pull" : "none");
676 if (!is_out) {
677 int irq = gpio_to_irq(gpio);
678 struct irq_desc *desc = irq_to_desc(irq);
680 /* This races with request_irq(), set_irq_type(),
681 * and set_irq_wake() ... but those are "rare".
683 * More significantly, trigger type flags aren't
684 * currently maintained by genirq.
686 if (irq >= 0 && desc->action) {
687 char *trigger;
689 switch (desc->status & IRQ_TYPE_SENSE_MASK) {
690 case IRQ_TYPE_NONE:
691 trigger = "(default)";
692 break;
693 case IRQ_TYPE_EDGE_FALLING:
694 trigger = "edge-falling";
695 break;
696 case IRQ_TYPE_EDGE_RISING:
697 trigger = "edge-rising";
698 break;
699 case IRQ_TYPE_EDGE_BOTH:
700 trigger = "edge-both";
701 break;
702 case IRQ_TYPE_LEVEL_HIGH:
703 trigger = "level-high";
704 break;
705 case IRQ_TYPE_LEVEL_LOW:
706 trigger = "level-low";
707 break;
708 default:
709 trigger = "?trigger?";
710 break;
713 seq_printf(s, " irq-%d %s%s",
714 irq, trigger,
715 (desc->status & IRQ_WAKEUP)
716 ? " wakeup" : "");
720 seq_printf(s, "\n");
724 #else
725 #define nmk_gpio_dbg_show NULL
726 #endif
728 /* This structure is replicated for each GPIO block allocated at probe time */
729 static struct gpio_chip nmk_gpio_template = {
730 .direction_input = nmk_gpio_make_input,
731 .get = nmk_gpio_get_input,
732 .direction_output = nmk_gpio_make_output,
733 .set = nmk_gpio_set_output,
734 .to_irq = nmk_gpio_to_irq,
735 .dbg_show = nmk_gpio_dbg_show,
736 .can_sleep = 0,
739 static int __devinit nmk_gpio_probe(struct platform_device *dev)
741 struct nmk_gpio_platform_data *pdata = dev->dev.platform_data;
742 struct nmk_gpio_chip *nmk_chip;
743 struct gpio_chip *chip;
744 struct resource *res;
745 struct clk *clk;
746 int secondary_irq;
747 int irq;
748 int ret;
750 if (!pdata)
751 return -ENODEV;
753 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
754 if (!res) {
755 ret = -ENOENT;
756 goto out;
759 irq = platform_get_irq(dev, 0);
760 if (irq < 0) {
761 ret = irq;
762 goto out;
765 secondary_irq = platform_get_irq(dev, 1);
766 if (secondary_irq >= 0 && !pdata->get_secondary_status) {
767 ret = -EINVAL;
768 goto out;
771 if (request_mem_region(res->start, resource_size(res),
772 dev_name(&dev->dev)) == NULL) {
773 ret = -EBUSY;
774 goto out;
777 clk = clk_get(&dev->dev, NULL);
778 if (IS_ERR(clk)) {
779 ret = PTR_ERR(clk);
780 goto out_release;
783 clk_enable(clk);
785 nmk_chip = kzalloc(sizeof(*nmk_chip), GFP_KERNEL);
786 if (!nmk_chip) {
787 ret = -ENOMEM;
788 goto out_clk;
791 * The virt address in nmk_chip->addr is in the nomadik register space,
792 * so we can simply convert the resource address, without remapping
794 nmk_chip->bank = dev->id;
795 nmk_chip->clk = clk;
796 nmk_chip->addr = io_p2v(res->start);
797 nmk_chip->chip = nmk_gpio_template;
798 nmk_chip->parent_irq = irq;
799 nmk_chip->secondary_parent_irq = secondary_irq;
800 nmk_chip->get_secondary_status = pdata->get_secondary_status;
801 spin_lock_init(&nmk_chip->lock);
803 chip = &nmk_chip->chip;
804 chip->base = pdata->first_gpio;
805 chip->ngpio = pdata->num_gpio;
806 chip->label = pdata->name ?: dev_name(&dev->dev);
807 chip->dev = &dev->dev;
808 chip->owner = THIS_MODULE;
810 ret = gpiochip_add(&nmk_chip->chip);
811 if (ret)
812 goto out_free;
814 platform_set_drvdata(dev, nmk_chip);
816 nmk_gpio_init_irq(nmk_chip);
818 dev_info(&dev->dev, "Bits %i-%i at address %p\n",
819 nmk_chip->chip.base, nmk_chip->chip.base+31, nmk_chip->addr);
820 return 0;
822 out_free:
823 kfree(nmk_chip);
824 out_clk:
825 clk_disable(clk);
826 clk_put(clk);
827 out_release:
828 release_mem_region(res->start, resource_size(res));
829 out:
830 dev_err(&dev->dev, "Failure %i for GPIO %i-%i\n", ret,
831 pdata->first_gpio, pdata->first_gpio+31);
832 return ret;
835 #ifdef CONFIG_PM
836 static int nmk_gpio_pm(struct platform_device *dev, bool suspend)
838 struct nmk_gpio_chip *nmk_chip = platform_get_drvdata(dev);
839 int i;
840 static const unsigned int regs[] = {
841 NMK_GPIO_DAT,
842 NMK_GPIO_PDIS,
843 NMK_GPIO_DIR,
844 NMK_GPIO_AFSLA,
845 NMK_GPIO_AFSLB,
846 NMK_GPIO_SLPC,
847 NMK_GPIO_RIMSC,
848 NMK_GPIO_FIMSC,
849 NMK_GPIO_RWIMSC,
850 NMK_GPIO_FWIMSC,
853 BUILD_BUG_ON(ARRAY_SIZE(nmk_chip->backup) != ARRAY_SIZE(regs));
855 /* XXX: is this sufficient? what about pull-up/down configuration? */
857 for (i = 0; i < ARRAY_SIZE(regs); i++) {
858 if (suspend)
859 nmk_chip->backup[i] = readl(nmk_chip->addr + regs[i]);
860 else
861 writel(nmk_chip->backup[i], nmk_chip->addr + regs[i]);
864 return 0;
867 static int nmk_gpio_suspend(struct platform_device *dev, pm_message_t state)
869 return nmk_gpio_pm(dev, true);
872 static int nmk_gpio_resume(struct platform_device *dev)
874 return nmk_gpio_pm(dev, false);
876 #else
877 #define nmk_gpio_suspend NULL
878 #define nmk_gpio_resume NULL
879 #endif
881 static struct platform_driver nmk_gpio_driver = {
882 .driver = {
883 .owner = THIS_MODULE,
884 .name = "gpio",
886 .probe = nmk_gpio_probe,
887 .suspend = nmk_gpio_suspend,
888 .resume = nmk_gpio_resume,
891 static int __init nmk_gpio_init(void)
893 return platform_driver_register(&nmk_gpio_driver);
896 core_initcall(nmk_gpio_init);
898 MODULE_AUTHOR("Prafulla WADASKAR and Alessandro Rubini");
899 MODULE_DESCRIPTION("Nomadik GPIO Driver");
900 MODULE_LICENSE("GPL");