2 * linux/arch/arm/mach-at91/gpio.c
4 * Copyright (C) 2005 HP Labs
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
12 #include <linux/clk.h>
13 #include <linux/errno.h>
14 #include <linux/gpio.h>
15 #include <linux/interrupt.h>
16 #include <linux/irq.h>
17 #include <linux/debugfs.h>
18 #include <linux/seq_file.h>
19 #include <linux/kernel.h>
20 #include <linux/list.h>
21 #include <linux/module.h>
24 #include <mach/hardware.h>
25 #include <mach/at91_pio.h>
29 struct at91_gpio_chip
{
30 struct gpio_chip chip
;
31 struct at91_gpio_chip
*next
; /* Bank sharing same clock */
32 struct at91_gpio_bank
*bank
; /* Bank definition */
33 void __iomem
*regbase
; /* Base of register bank */
36 #define to_at91_gpio_chip(c) container_of(c, struct at91_gpio_chip, chip)
38 static void at91_gpiolib_dbg_show(struct seq_file
*s
, struct gpio_chip
*chip
);
39 static void at91_gpiolib_set(struct gpio_chip
*chip
, unsigned offset
, int val
);
40 static int at91_gpiolib_get(struct gpio_chip
*chip
, unsigned offset
);
41 static int at91_gpiolib_direction_output(struct gpio_chip
*chip
,
42 unsigned offset
, int val
);
43 static int at91_gpiolib_direction_input(struct gpio_chip
*chip
,
46 #define AT91_GPIO_CHIP(name, base_gpio, nr_gpio) \
50 .direction_input = at91_gpiolib_direction_input, \
51 .direction_output = at91_gpiolib_direction_output, \
52 .get = at91_gpiolib_get, \
53 .set = at91_gpiolib_set, \
54 .dbg_show = at91_gpiolib_dbg_show, \
60 static struct at91_gpio_chip gpio_chip
[] = {
61 AT91_GPIO_CHIP("A", 0x00 + PIN_BASE
, 32),
62 AT91_GPIO_CHIP("B", 0x20 + PIN_BASE
, 32),
63 AT91_GPIO_CHIP("C", 0x40 + PIN_BASE
, 32),
64 AT91_GPIO_CHIP("D", 0x60 + PIN_BASE
, 32),
65 AT91_GPIO_CHIP("E", 0x80 + PIN_BASE
, 32),
68 static int gpio_banks
;
70 static inline void __iomem
*pin_to_controller(unsigned pin
)
74 if (likely(pin
< gpio_banks
))
75 return gpio_chip
[pin
].regbase
;
80 static inline unsigned pin_to_mask(unsigned pin
)
83 return 1 << (pin
% 32);
87 /*--------------------------------------------------------------------------*/
89 /* Not all hardware capabilities are exposed through these calls; they
90 * only encapsulate the most common features and modes. (So if you
91 * want to change signals in groups, do it directly.)
93 * Bootloaders will usually handle some of the pin multiplexing setup.
94 * The intent is certainly that by the time Linux is fully booted, all
95 * pins should have been fully initialized. These setup calls should
96 * only be used by board setup routines, or possibly in driver probe().
98 * For bootloaders doing all that setup, these calls could be inlined
99 * as NOPs so Linux won't duplicate any setup code
104 * mux the pin to the "GPIO" peripheral role.
106 int __init_or_module
at91_set_GPIO_periph(unsigned pin
, int use_pullup
)
108 void __iomem
*pio
= pin_to_controller(pin
);
109 unsigned mask
= pin_to_mask(pin
);
113 __raw_writel(mask
, pio
+ PIO_IDR
);
114 __raw_writel(mask
, pio
+ (use_pullup
? PIO_PUER
: PIO_PUDR
));
115 __raw_writel(mask
, pio
+ PIO_PER
);
118 EXPORT_SYMBOL(at91_set_GPIO_periph
);
122 * mux the pin to the "A" internal peripheral role.
124 int __init_or_module
at91_set_A_periph(unsigned pin
, int use_pullup
)
126 void __iomem
*pio
= pin_to_controller(pin
);
127 unsigned mask
= pin_to_mask(pin
);
132 __raw_writel(mask
, pio
+ PIO_IDR
);
133 __raw_writel(mask
, pio
+ (use_pullup
? PIO_PUER
: PIO_PUDR
));
134 __raw_writel(mask
, pio
+ PIO_ASR
);
135 __raw_writel(mask
, pio
+ PIO_PDR
);
138 EXPORT_SYMBOL(at91_set_A_periph
);
142 * mux the pin to the "B" internal peripheral role.
144 int __init_or_module
at91_set_B_periph(unsigned pin
, int use_pullup
)
146 void __iomem
*pio
= pin_to_controller(pin
);
147 unsigned mask
= pin_to_mask(pin
);
152 __raw_writel(mask
, pio
+ PIO_IDR
);
153 __raw_writel(mask
, pio
+ (use_pullup
? PIO_PUER
: PIO_PUDR
));
154 __raw_writel(mask
, pio
+ PIO_BSR
);
155 __raw_writel(mask
, pio
+ PIO_PDR
);
158 EXPORT_SYMBOL(at91_set_B_periph
);
162 * mux the pin to the gpio controller (instead of "A" or "B" peripheral), and
163 * configure it for an input.
165 int __init_or_module
at91_set_gpio_input(unsigned pin
, int use_pullup
)
167 void __iomem
*pio
= pin_to_controller(pin
);
168 unsigned mask
= pin_to_mask(pin
);
173 __raw_writel(mask
, pio
+ PIO_IDR
);
174 __raw_writel(mask
, pio
+ (use_pullup
? PIO_PUER
: PIO_PUDR
));
175 __raw_writel(mask
, pio
+ PIO_ODR
);
176 __raw_writel(mask
, pio
+ PIO_PER
);
179 EXPORT_SYMBOL(at91_set_gpio_input
);
183 * mux the pin to the gpio controller (instead of "A" or "B" peripheral),
184 * and configure it for an output.
186 int __init_or_module
at91_set_gpio_output(unsigned pin
, int value
)
188 void __iomem
*pio
= pin_to_controller(pin
);
189 unsigned mask
= pin_to_mask(pin
);
194 __raw_writel(mask
, pio
+ PIO_IDR
);
195 __raw_writel(mask
, pio
+ PIO_PUDR
);
196 __raw_writel(mask
, pio
+ (value
? PIO_SODR
: PIO_CODR
));
197 __raw_writel(mask
, pio
+ PIO_OER
);
198 __raw_writel(mask
, pio
+ PIO_PER
);
201 EXPORT_SYMBOL(at91_set_gpio_output
);
205 * enable/disable the glitch filter; mostly used with IRQ handling.
207 int __init_or_module
at91_set_deglitch(unsigned pin
, int is_on
)
209 void __iomem
*pio
= pin_to_controller(pin
);
210 unsigned mask
= pin_to_mask(pin
);
214 __raw_writel(mask
, pio
+ (is_on
? PIO_IFER
: PIO_IFDR
));
217 EXPORT_SYMBOL(at91_set_deglitch
);
220 * enable/disable the multi-driver; This is only valid for output and
221 * allows the output pin to run as an open collector output.
223 int __init_or_module
at91_set_multi_drive(unsigned pin
, int is_on
)
225 void __iomem
*pio
= pin_to_controller(pin
);
226 unsigned mask
= pin_to_mask(pin
);
231 __raw_writel(mask
, pio
+ (is_on
? PIO_MDER
: PIO_MDDR
));
234 EXPORT_SYMBOL(at91_set_multi_drive
);
237 * assuming the pin is muxed as a gpio output, set its value.
239 int at91_set_gpio_value(unsigned pin
, int value
)
241 void __iomem
*pio
= pin_to_controller(pin
);
242 unsigned mask
= pin_to_mask(pin
);
246 __raw_writel(mask
, pio
+ (value
? PIO_SODR
: PIO_CODR
));
249 EXPORT_SYMBOL(at91_set_gpio_value
);
253 * read the pin's value (works even if it's not muxed as a gpio).
255 int at91_get_gpio_value(unsigned pin
)
257 void __iomem
*pio
= pin_to_controller(pin
);
258 unsigned mask
= pin_to_mask(pin
);
263 pdsr
= __raw_readl(pio
+ PIO_PDSR
);
264 return (pdsr
& mask
) != 0;
266 EXPORT_SYMBOL(at91_get_gpio_value
);
268 /*--------------------------------------------------------------------------*/
272 static u32 wakeups
[MAX_GPIO_BANKS
];
273 static u32 backups
[MAX_GPIO_BANKS
];
275 static int gpio_irq_set_wake(struct irq_data
*d
, unsigned state
)
277 unsigned mask
= pin_to_mask(d
->irq
);
278 unsigned bank
= (d
->irq
- PIN_BASE
) / 32;
280 if (unlikely(bank
>= MAX_GPIO_BANKS
))
284 wakeups
[bank
] |= mask
;
286 wakeups
[bank
] &= ~mask
;
288 irq_set_irq_wake(gpio_chip
[bank
].bank
->id
, state
);
293 void at91_gpio_suspend(void)
297 for (i
= 0; i
< gpio_banks
; i
++) {
298 void __iomem
*pio
= gpio_chip
[i
].regbase
;
300 backups
[i
] = __raw_readl(pio
+ PIO_IMR
);
301 __raw_writel(backups
[i
], pio
+ PIO_IDR
);
302 __raw_writel(wakeups
[i
], pio
+ PIO_IER
);
305 clk_disable(gpio_chip
[i
].bank
->clock
);
307 #ifdef CONFIG_PM_DEBUG
308 printk(KERN_DEBUG
"GPIO-%c may wake for %08x\n", 'A'+i
, wakeups
[i
]);
314 void at91_gpio_resume(void)
318 for (i
= 0; i
< gpio_banks
; i
++) {
319 void __iomem
*pio
= gpio_chip
[i
].regbase
;
322 clk_enable(gpio_chip
[i
].bank
->clock
);
324 __raw_writel(wakeups
[i
], pio
+ PIO_IDR
);
325 __raw_writel(backups
[i
], pio
+ PIO_IER
);
330 #define gpio_irq_set_wake NULL
334 /* Several AIC controller irqs are dispatched through this GPIO handler.
335 * To use any AT91_PIN_* as an externally triggered IRQ, first call
336 * at91_set_gpio_input() then maybe enable its glitch filter.
337 * Then just request_irq() with the pin ID; it works like any ARM IRQ
338 * handler, though it always triggers on rising and falling edges.
340 * Alternatively, certain pins may be used directly as IRQ0..IRQ6 after
341 * configuring them with at91_set_a_periph() or at91_set_b_periph().
342 * IRQ0..IRQ6 should be configurable, e.g. level vs edge triggering.
345 static void gpio_irq_mask(struct irq_data
*d
)
347 void __iomem
*pio
= pin_to_controller(d
->irq
);
348 unsigned mask
= pin_to_mask(d
->irq
);
351 __raw_writel(mask
, pio
+ PIO_IDR
);
354 static void gpio_irq_unmask(struct irq_data
*d
)
356 void __iomem
*pio
= pin_to_controller(d
->irq
);
357 unsigned mask
= pin_to_mask(d
->irq
);
360 __raw_writel(mask
, pio
+ PIO_IER
);
363 static int gpio_irq_type(struct irq_data
*d
, unsigned type
)
367 case IRQ_TYPE_EDGE_BOTH
:
374 static struct irq_chip gpio_irqchip
= {
376 .irq_disable
= gpio_irq_mask
,
377 .irq_mask
= gpio_irq_mask
,
378 .irq_unmask
= gpio_irq_unmask
,
379 .irq_set_type
= gpio_irq_type
,
380 .irq_set_wake
= gpio_irq_set_wake
,
383 static void gpio_irq_handler(unsigned irq
, struct irq_desc
*desc
)
386 struct irq_data
*idata
= irq_desc_get_irq_data(desc
);
387 struct irq_chip
*chip
= irq_data_get_irq_chip(idata
);
388 struct at91_gpio_chip
*at91_gpio
= irq_data_get_irq_chip_data(idata
);
389 void __iomem
*pio
= at91_gpio
->regbase
;
392 /* temporarily mask (level sensitive) parent IRQ */
393 chip
->irq_ack(idata
);
395 /* Reading ISR acks pending (edge triggered) GPIO interrupts.
396 * When there none are pending, we're finished unless we need
397 * to process multiple banks (like ID_PIOCDE on sam9263).
399 isr
= __raw_readl(pio
+ PIO_ISR
) & __raw_readl(pio
+ PIO_IMR
);
401 if (!at91_gpio
->next
)
403 at91_gpio
= at91_gpio
->next
;
404 pio
= at91_gpio
->regbase
;
408 pin
= at91_gpio
->chip
.base
;
412 generic_handle_irq(pin
);
417 chip
->irq_unmask(idata
);
418 /* now it may re-trigger */
421 /*--------------------------------------------------------------------------*/
423 #ifdef CONFIG_DEBUG_FS
425 static int at91_gpio_show(struct seq_file
*s
, void *unused
)
430 seq_printf(s
, "Pin\t");
431 for (bank
= 0; bank
< gpio_banks
; bank
++) {
432 seq_printf(s
, "PIO%c\t", 'A' + bank
);
434 seq_printf(s
, "\n\n");
436 /* print pin status */
437 for (j
= 0; j
< 32; j
++) {
438 seq_printf(s
, "%i:\t", j
);
440 for (bank
= 0; bank
< gpio_banks
; bank
++) {
441 unsigned pin
= PIN_BASE
+ (32 * bank
) + j
;
442 void __iomem
*pio
= pin_to_controller(pin
);
443 unsigned mask
= pin_to_mask(pin
);
445 if (__raw_readl(pio
+ PIO_PSR
) & mask
)
446 seq_printf(s
, "GPIO:%s", __raw_readl(pio
+ PIO_PDSR
) & mask
? "1" : "0");
448 seq_printf(s
, "%s", __raw_readl(pio
+ PIO_ABSR
) & mask
? "B" : "A");
459 static int at91_gpio_open(struct inode
*inode
, struct file
*file
)
461 return single_open(file
, at91_gpio_show
, NULL
);
464 static const struct file_operations at91_gpio_operations
= {
465 .open
= at91_gpio_open
,
468 .release
= single_release
,
471 static int __init
at91_gpio_debugfs_init(void)
473 /* /sys/kernel/debug/at91_gpio */
474 (void) debugfs_create_file("at91_gpio", S_IFREG
| S_IRUGO
, NULL
, NULL
, &at91_gpio_operations
);
477 postcore_initcall(at91_gpio_debugfs_init
);
481 /*--------------------------------------------------------------------------*/
484 * This lock class tells lockdep that GPIO irqs are in a different
485 * category than their parents, so it won't report false recursion.
487 static struct lock_class_key gpio_lock_class
;
490 * Called from the processor-specific init to enable GPIO interrupt support.
492 void __init
at91_gpio_irq_setup(void)
495 struct at91_gpio_chip
*this, *prev
;
497 for (pioc
= 0, pin
= PIN_BASE
, this = gpio_chip
, prev
= NULL
;
499 prev
= this, this++) {
500 unsigned id
= this->bank
->id
;
503 __raw_writel(~0, this->regbase
+ PIO_IDR
);
505 for (i
= 0, pin
= this->chip
.base
; i
< 32; i
++, pin
++) {
506 irq_set_lockdep_class(pin
, &gpio_lock_class
);
509 * Can use the "simple" and not "edge" handler since it's
510 * shorter, and the AIC handles interrupts sanely.
512 irq_set_chip_and_handler(pin
, &gpio_irqchip
,
514 set_irq_flags(pin
, IRQF_VALID
);
517 /* The toplevel handler handles one bank of GPIOs, except
518 * AT91SAM9263_ID_PIOCDE handles three... PIOC is first in
519 * the list, so we only set up that handler.
521 if (prev
&& prev
->next
== this)
524 irq_set_chip_data(id
, this);
525 irq_set_chained_handler(id
, gpio_irq_handler
);
527 pr_info("AT91: %d gpio irqs in %d banks\n", pin
- PIN_BASE
, gpio_banks
);
530 /* gpiolib support */
531 static int at91_gpiolib_direction_input(struct gpio_chip
*chip
,
534 struct at91_gpio_chip
*at91_gpio
= to_at91_gpio_chip(chip
);
535 void __iomem
*pio
= at91_gpio
->regbase
;
536 unsigned mask
= 1 << offset
;
538 __raw_writel(mask
, pio
+ PIO_ODR
);
542 static int at91_gpiolib_direction_output(struct gpio_chip
*chip
,
543 unsigned offset
, int val
)
545 struct at91_gpio_chip
*at91_gpio
= to_at91_gpio_chip(chip
);
546 void __iomem
*pio
= at91_gpio
->regbase
;
547 unsigned mask
= 1 << offset
;
549 __raw_writel(mask
, pio
+ (val
? PIO_SODR
: PIO_CODR
));
550 __raw_writel(mask
, pio
+ PIO_OER
);
554 static int at91_gpiolib_get(struct gpio_chip
*chip
, unsigned offset
)
556 struct at91_gpio_chip
*at91_gpio
= to_at91_gpio_chip(chip
);
557 void __iomem
*pio
= at91_gpio
->regbase
;
558 unsigned mask
= 1 << offset
;
561 pdsr
= __raw_readl(pio
+ PIO_PDSR
);
562 return (pdsr
& mask
) != 0;
565 static void at91_gpiolib_set(struct gpio_chip
*chip
, unsigned offset
, int val
)
567 struct at91_gpio_chip
*at91_gpio
= to_at91_gpio_chip(chip
);
568 void __iomem
*pio
= at91_gpio
->regbase
;
569 unsigned mask
= 1 << offset
;
571 __raw_writel(mask
, pio
+ (val
? PIO_SODR
: PIO_CODR
));
574 static void at91_gpiolib_dbg_show(struct seq_file
*s
, struct gpio_chip
*chip
)
578 for (i
= 0; i
< chip
->ngpio
; i
++) {
579 unsigned pin
= chip
->base
+ i
;
580 void __iomem
*pio
= pin_to_controller(pin
);
581 unsigned mask
= pin_to_mask(pin
);
582 const char *gpio_label
;
584 gpio_label
= gpiochip_is_requested(chip
, i
);
586 seq_printf(s
, "[%s] GPIO%s%d: ",
587 gpio_label
, chip
->label
, i
);
588 if (__raw_readl(pio
+ PIO_PSR
) & mask
)
589 seq_printf(s
, "[gpio] %s\n",
590 at91_get_gpio_value(pin
) ?
593 seq_printf(s
, "[periph %s]\n",
594 __raw_readl(pio
+ PIO_ABSR
) &
601 * Called from the processor-specific init to enable GPIO pin support.
603 void __init
at91_gpio_init(struct at91_gpio_bank
*data
, int nr_banks
)
606 struct at91_gpio_chip
*at91_gpio
, *last
= NULL
;
608 BUG_ON(nr_banks
> MAX_GPIO_BANKS
);
610 gpio_banks
= nr_banks
;
612 for (i
= 0; i
< nr_banks
; i
++) {
613 at91_gpio
= &gpio_chip
[i
];
615 at91_gpio
->bank
= &data
[i
];
616 at91_gpio
->chip
.base
= PIN_BASE
+ i
* 32;
617 at91_gpio
->regbase
= at91_gpio
->bank
->offset
+
618 (void __iomem
*)AT91_VA_BASE_SYS
;
620 /* enable PIO controller's clock */
621 clk_enable(at91_gpio
->bank
->clock
);
623 /* AT91SAM9263_ID_PIOCDE groups PIOC, PIOD, PIOE */
624 if (last
&& last
->bank
->id
== at91_gpio
->bank
->id
)
625 last
->next
= at91_gpio
;
628 gpiochip_add(&at91_gpio
->chip
);