blob: f2236f0e101f6ba522529e1708c219cf587fa8b3 [file] [log] [blame]
SAN People73a59c12006-01-09 17:05:41 +00001/*
Andrew Victor9d041262007-02-05 11:42:07 +01002 * linux/arch/arm/mach-at91/gpio.c
SAN People73a59c12006-01-09 17:05:41 +00003 *
4 * Copyright (C) 2005 HP Labs
5 *
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.
10 */
11
Andrew Victorf2173832006-09-27 13:23:00 +010012#include <linux/clk.h>
SAN People73a59c12006-01-09 17:05:41 +000013#include <linux/errno.h>
Thomas Gleixner07d265d2006-07-01 23:01:50 +010014#include <linux/interrupt.h>
15#include <linux/irq.h>
Andrew Victorb66545e2007-11-23 16:09:10 +010016#include <linux/debugfs.h>
17#include <linux/seq_file.h>
SAN People73a59c12006-01-09 17:05:41 +000018#include <linux/kernel.h>
19#include <linux/list.h>
20#include <linux/module.h>
Russell Kingfced80c2008-09-06 12:10:45 +010021#include <linux/io.h>
SAN People73a59c12006-01-09 17:05:41 +000022
Russell Kinga09e64f2008-08-05 16:14:15 +010023#include <mach/hardware.h>
24#include <mach/at91_pio.h>
25#include <mach/gpio.h>
SAN People73a59c12006-01-09 17:05:41 +000026
Ryan Mallonf373e8c2009-02-10 21:02:08 +010027#include <asm/gpio.h>
28
Andrew Victorf2173832006-09-27 13:23:00 +010029#include "generic.h"
30
Ryan Mallonf373e8c2009-02-10 21:02:08 +010031struct at91_gpio_chip {
32 struct gpio_chip chip;
33 struct at91_gpio_chip *next; /* Bank sharing same clock */
34 struct at91_gpio_bank *bank; /* Bank definition */
35 void __iomem *regbase; /* Base of register bank */
36};
Andrew Victorf2173832006-09-27 13:23:00 +010037
Ryan Mallonf373e8c2009-02-10 21:02:08 +010038#define to_at91_gpio_chip(c) container_of(c, struct at91_gpio_chip, chip)
39
40static void at91_gpiolib_dbg_show(struct seq_file *s, struct gpio_chip *chip);
41static void at91_gpiolib_set(struct gpio_chip *chip, unsigned offset, int val);
42static int at91_gpiolib_get(struct gpio_chip *chip, unsigned offset);
43static int at91_gpiolib_direction_output(struct gpio_chip *chip,
44 unsigned offset, int val);
45static int at91_gpiolib_direction_input(struct gpio_chip *chip,
46 unsigned offset);
47static int at91_gpiolib_request(struct gpio_chip *chip, unsigned offset);
48
49#define AT91_GPIO_CHIP(name, base_gpio, nr_gpio) \
50 { \
51 .chip = { \
52 .label = name, \
53 .request = at91_gpiolib_request, \
54 .direction_input = at91_gpiolib_direction_input, \
55 .direction_output = at91_gpiolib_direction_output, \
56 .get = at91_gpiolib_get, \
57 .set = at91_gpiolib_set, \
58 .dbg_show = at91_gpiolib_dbg_show, \
59 .base = base_gpio, \
60 .ngpio = nr_gpio, \
61 }, \
62 }
63
64static struct at91_gpio_chip gpio_chip[] = {
65 AT91_GPIO_CHIP("A", 0x00 + PIN_BASE, 32),
66 AT91_GPIO_CHIP("B", 0x20 + PIN_BASE, 32),
67 AT91_GPIO_CHIP("C", 0x40 + PIN_BASE, 32),
68 AT91_GPIO_CHIP("D", 0x60 + PIN_BASE, 32),
69 AT91_GPIO_CHIP("E", 0x80 + PIN_BASE, 32),
70};
71
Andrew Victorf2173832006-09-27 13:23:00 +010072static int gpio_banks;
73
SAN People73a59c12006-01-09 17:05:41 +000074static inline void __iomem *pin_to_controller(unsigned pin)
75{
SAN People73a59c12006-01-09 17:05:41 +000076 pin -= PIN_BASE;
77 pin /= 32;
Andrew Victorf2173832006-09-27 13:23:00 +010078 if (likely(pin < gpio_banks))
Ryan Mallonf373e8c2009-02-10 21:02:08 +010079 return gpio_chip[pin].regbase;
SAN People73a59c12006-01-09 17:05:41 +000080
81 return NULL;
82}
83
84static inline unsigned pin_to_mask(unsigned pin)
85{
86 pin -= PIN_BASE;
87 return 1 << (pin % 32);
88}
89
90
91/*--------------------------------------------------------------------------*/
92
93/* Not all hardware capabilities are exposed through these calls; they
94 * only encapsulate the most common features and modes. (So if you
95 * want to change signals in groups, do it directly.)
96 *
97 * Bootloaders will usually handle some of the pin multiplexing setup.
98 * The intent is certainly that by the time Linux is fully booted, all
99 * pins should have been fully initialized. These setup calls should
100 * only be used by board setup routines, or possibly in driver probe().
101 *
102 * For bootloaders doing all that setup, these calls could be inlined
103 * as NOPs so Linux won't duplicate any setup code
104 */
105
106
107/*
David Brownella31c4ee2007-02-12 00:53:13 -0800108 * mux the pin to the "GPIO" peripheral role.
109 */
110int __init_or_module at91_set_GPIO_periph(unsigned pin, int use_pullup)
111{
112 void __iomem *pio = pin_to_controller(pin);
113 unsigned mask = pin_to_mask(pin);
114
115 if (!pio)
116 return -EINVAL;
117 __raw_writel(mask, pio + PIO_IDR);
118 __raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR));
119 __raw_writel(mask, pio + PIO_PER);
120 return 0;
121}
122EXPORT_SYMBOL(at91_set_GPIO_periph);
123
124
125/*
SAN People73a59c12006-01-09 17:05:41 +0000126 * mux the pin to the "A" internal peripheral role.
127 */
128int __init_or_module at91_set_A_periph(unsigned pin, int use_pullup)
129{
130 void __iomem *pio = pin_to_controller(pin);
131 unsigned mask = pin_to_mask(pin);
132
133 if (!pio)
134 return -EINVAL;
135
136 __raw_writel(mask, pio + PIO_IDR);
137 __raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR));
138 __raw_writel(mask, pio + PIO_ASR);
139 __raw_writel(mask, pio + PIO_PDR);
140 return 0;
141}
142EXPORT_SYMBOL(at91_set_A_periph);
143
144
145/*
146 * mux the pin to the "B" internal peripheral role.
147 */
148int __init_or_module at91_set_B_periph(unsigned pin, int use_pullup)
149{
150 void __iomem *pio = pin_to_controller(pin);
151 unsigned mask = pin_to_mask(pin);
152
153 if (!pio)
154 return -EINVAL;
155
156 __raw_writel(mask, pio + PIO_IDR);
157 __raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR));
158 __raw_writel(mask, pio + PIO_BSR);
159 __raw_writel(mask, pio + PIO_PDR);
160 return 0;
161}
162EXPORT_SYMBOL(at91_set_B_periph);
163
164
165/*
166 * mux the pin to the gpio controller (instead of "A" or "B" peripheral), and
167 * configure it for an input.
168 */
169int __init_or_module at91_set_gpio_input(unsigned pin, int use_pullup)
170{
171 void __iomem *pio = pin_to_controller(pin);
172 unsigned mask = pin_to_mask(pin);
173
174 if (!pio)
175 return -EINVAL;
176
177 __raw_writel(mask, pio + PIO_IDR);
178 __raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR));
179 __raw_writel(mask, pio + PIO_ODR);
180 __raw_writel(mask, pio + PIO_PER);
181 return 0;
182}
183EXPORT_SYMBOL(at91_set_gpio_input);
184
185
186/*
187 * mux the pin to the gpio controller (instead of "A" or "B" peripheral),
188 * and configure it for an output.
189 */
190int __init_or_module at91_set_gpio_output(unsigned pin, int value)
191{
192 void __iomem *pio = pin_to_controller(pin);
193 unsigned mask = pin_to_mask(pin);
194
195 if (!pio)
196 return -EINVAL;
197
198 __raw_writel(mask, pio + PIO_IDR);
199 __raw_writel(mask, pio + PIO_PUDR);
200 __raw_writel(mask, pio + (value ? PIO_SODR : PIO_CODR));
201 __raw_writel(mask, pio + PIO_OER);
202 __raw_writel(mask, pio + PIO_PER);
203 return 0;
204}
205EXPORT_SYMBOL(at91_set_gpio_output);
206
207
208/*
209 * enable/disable the glitch filter; mostly used with IRQ handling.
210 */
211int __init_or_module at91_set_deglitch(unsigned pin, int is_on)
212{
213 void __iomem *pio = pin_to_controller(pin);
214 unsigned mask = pin_to_mask(pin);
215
216 if (!pio)
217 return -EINVAL;
218 __raw_writel(mask, pio + (is_on ? PIO_IFER : PIO_IFDR));
219 return 0;
220}
221EXPORT_SYMBOL(at91_set_deglitch);
222
Andrew Victordf666b92006-02-22 21:23:35 +0000223/*
224 * enable/disable the multi-driver; This is only valid for output and
225 * allows the output pin to run as an open collector output.
226 */
227int __init_or_module at91_set_multi_drive(unsigned pin, int is_on)
228{
229 void __iomem *pio = pin_to_controller(pin);
230 unsigned mask = pin_to_mask(pin);
231
232 if (!pio)
233 return -EINVAL;
234
235 __raw_writel(mask, pio + (is_on ? PIO_MDER : PIO_MDDR));
236 return 0;
237}
238EXPORT_SYMBOL(at91_set_multi_drive);
239
SAN People73a59c12006-01-09 17:05:41 +0000240/*
241 * assuming the pin is muxed as a gpio output, set its value.
242 */
243int at91_set_gpio_value(unsigned pin, int value)
244{
245 void __iomem *pio = pin_to_controller(pin);
246 unsigned mask = pin_to_mask(pin);
247
248 if (!pio)
249 return -EINVAL;
250 __raw_writel(mask, pio + (value ? PIO_SODR : PIO_CODR));
251 return 0;
252}
253EXPORT_SYMBOL(at91_set_gpio_value);
254
255
256/*
257 * read the pin's value (works even if it's not muxed as a gpio).
258 */
259int at91_get_gpio_value(unsigned pin)
260{
261 void __iomem *pio = pin_to_controller(pin);
262 unsigned mask = pin_to_mask(pin);
263 u32 pdsr;
264
265 if (!pio)
266 return -EINVAL;
267 pdsr = __raw_readl(pio + PIO_PDSR);
268 return (pdsr & mask) != 0;
269}
270EXPORT_SYMBOL(at91_get_gpio_value);
271
272/*--------------------------------------------------------------------------*/
273
Andrew Victor814138f2006-06-19 15:26:54 +0100274#ifdef CONFIG_PM
275
Andrew Victorf2173832006-09-27 13:23:00 +0100276static u32 wakeups[MAX_GPIO_BANKS];
277static u32 backups[MAX_GPIO_BANKS];
Andrew Victor814138f2006-06-19 15:26:54 +0100278
279static int gpio_irq_set_wake(unsigned pin, unsigned state)
280{
281 unsigned mask = pin_to_mask(pin);
Andrew Victor3ea163e2007-01-09 13:47:29 +0100282 unsigned bank = (pin - PIN_BASE) / 32;
Andrew Victor814138f2006-06-19 15:26:54 +0100283
Andrew Victor3ea163e2007-01-09 13:47:29 +0100284 if (unlikely(bank >= MAX_GPIO_BANKS))
Andrew Victor814138f2006-06-19 15:26:54 +0100285 return -EINVAL;
286
287 if (state)
Andrew Victor3ea163e2007-01-09 13:47:29 +0100288 wakeups[bank] |= mask;
Andrew Victor814138f2006-06-19 15:26:54 +0100289 else
Andrew Victor3ea163e2007-01-09 13:47:29 +0100290 wakeups[bank] &= ~mask;
291
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100292 set_irq_wake(gpio_chip[bank].bank->id, state);
Andrew Victor814138f2006-06-19 15:26:54 +0100293
294 return 0;
295}
296
297void at91_gpio_suspend(void)
298{
299 int i;
300
Andrew Victorf2173832006-09-27 13:23:00 +0100301 for (i = 0; i < gpio_banks; i++) {
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100302 void __iomem *pio = gpio_chip[i].regbase;
Andrew Victor814138f2006-06-19 15:26:54 +0100303
David Brownelle83aff52008-01-04 18:30:24 +0100304 backups[i] = __raw_readl(pio + PIO_IMR);
305 __raw_writel(backups[i], pio + PIO_IDR);
306 __raw_writel(wakeups[i], pio + PIO_IER);
Andrew Victor814138f2006-06-19 15:26:54 +0100307
Andrew Victor3ea163e2007-01-09 13:47:29 +0100308 if (!wakeups[i])
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100309 clk_disable(gpio_chip[i].bank->clock);
Andrew Victor3ea163e2007-01-09 13:47:29 +0100310 else {
Andrew Victor814138f2006-06-19 15:26:54 +0100311#ifdef CONFIG_PM_DEBUG
Andrew Victor3ea163e2007-01-09 13:47:29 +0100312 printk(KERN_DEBUG "GPIO-%c may wake for %08x\n", 'A'+i, wakeups[i]);
Andrew Victor814138f2006-06-19 15:26:54 +0100313#endif
314 }
315 }
316}
317
318void at91_gpio_resume(void)
319{
320 int i;
321
Andrew Victorf2173832006-09-27 13:23:00 +0100322 for (i = 0; i < gpio_banks; i++) {
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100323 void __iomem *pio = gpio_chip[i].regbase;
Andrew Victor814138f2006-06-19 15:26:54 +0100324
Andrew Victor3ea163e2007-01-09 13:47:29 +0100325 if (!wakeups[i])
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100326 clk_enable(gpio_chip[i].bank->clock);
Andrew Victor3ea163e2007-01-09 13:47:29 +0100327
David Brownelle83aff52008-01-04 18:30:24 +0100328 __raw_writel(wakeups[i], pio + PIO_IDR);
329 __raw_writel(backups[i], pio + PIO_IER);
Andrew Victorf2173832006-09-27 13:23:00 +0100330 }
Andrew Victor814138f2006-06-19 15:26:54 +0100331}
332
333#else
334#define gpio_irq_set_wake NULL
335#endif
336
SAN People73a59c12006-01-09 17:05:41 +0000337
338/* Several AIC controller irqs are dispatched through this GPIO handler.
339 * To use any AT91_PIN_* as an externally triggered IRQ, first call
340 * at91_set_gpio_input() then maybe enable its glitch filter.
341 * Then just request_irq() with the pin ID; it works like any ARM IRQ
342 * handler, though it always triggers on rising and falling edges.
343 *
344 * Alternatively, certain pins may be used directly as IRQ0..IRQ6 after
345 * configuring them with at91_set_a_periph() or at91_set_b_periph().
346 * IRQ0..IRQ6 should be configurable, e.g. level vs edge triggering.
347 */
348
349static void gpio_irq_mask(unsigned pin)
350{
351 void __iomem *pio = pin_to_controller(pin);
352 unsigned mask = pin_to_mask(pin);
353
354 if (pio)
355 __raw_writel(mask, pio + PIO_IDR);
356}
357
358static void gpio_irq_unmask(unsigned pin)
359{
360 void __iomem *pio = pin_to_controller(pin);
361 unsigned mask = pin_to_mask(pin);
362
363 if (pio)
364 __raw_writel(mask, pio + PIO_IER);
365}
366
367static int gpio_irq_type(unsigned pin, unsigned type)
368{
David Brownelle83aff52008-01-04 18:30:24 +0100369 switch (type) {
370 case IRQ_TYPE_NONE:
371 case IRQ_TYPE_EDGE_BOTH:
372 return 0;
373 default:
374 return -EINVAL;
375 }
SAN People73a59c12006-01-09 17:05:41 +0000376}
377
David Brownell38c677c2006-08-01 22:26:25 +0100378static struct irq_chip gpio_irqchip = {
379 .name = "GPIO",
SAN People73a59c12006-01-09 17:05:41 +0000380 .mask = gpio_irq_mask,
381 .unmask = gpio_irq_unmask,
382 .set_type = gpio_irq_type,
Andrew Victor814138f2006-06-19 15:26:54 +0100383 .set_wake = gpio_irq_set_wake,
SAN People73a59c12006-01-09 17:05:41 +0000384};
385
Russell King10dd5ce2006-11-23 11:41:32 +0000386static void gpio_irq_handler(unsigned irq, struct irq_desc *desc)
SAN People73a59c12006-01-09 17:05:41 +0000387{
388 unsigned pin;
Russell King10dd5ce2006-11-23 11:41:32 +0000389 struct irq_desc *gpio;
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100390 struct at91_gpio_chip *at91_gpio;
SAN People73a59c12006-01-09 17:05:41 +0000391 void __iomem *pio;
392 u32 isr;
393
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100394 at91_gpio = get_irq_chip_data(irq);
395 pio = at91_gpio->regbase;
SAN People73a59c12006-01-09 17:05:41 +0000396
397 /* temporarily mask (level sensitive) parent IRQ */
398 desc->chip->ack(irq);
399 for (;;) {
David Brownelle83aff52008-01-04 18:30:24 +0100400 /* Reading ISR acks pending (edge triggered) GPIO interrupts.
401 * When there none are pending, we're finished unless we need
402 * to process multiple banks (like ID_PIOCDE on sam9263).
403 */
SAN People73a59c12006-01-09 17:05:41 +0000404 isr = __raw_readl(pio + PIO_ISR) & __raw_readl(pio + PIO_IMR);
David Brownelle83aff52008-01-04 18:30:24 +0100405 if (!isr) {
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100406 if (!at91_gpio->next)
David Brownelle83aff52008-01-04 18:30:24 +0100407 break;
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100408 at91_gpio = at91_gpio->next;
409 pio = at91_gpio->regbase;
David Brownelle83aff52008-01-04 18:30:24 +0100410 continue;
411 }
SAN People73a59c12006-01-09 17:05:41 +0000412
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100413 pin = at91_gpio->chip.base;
David Brownell085eefb2008-10-21 23:34:23 +0100414 gpio = &irq_desc[pin];
SAN People73a59c12006-01-09 17:05:41 +0000415
416 while (isr) {
Andrew Victorabbea712006-02-24 22:27:50 +0000417 if (isr & 1) {
Thomas Gleixner07d265d2006-07-01 23:01:50 +0100418 if (unlikely(gpio->depth)) {
Andrew Victorabbea712006-02-24 22:27:50 +0000419 /*
420 * The core ARM interrupt handler lazily disables IRQs so
421 * another IRQ must be generated before it actually gets
422 * here to be disabled on the GPIO controller.
423 */
424 gpio_irq_mask(pin);
425 }
426 else
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +0100427 generic_handle_irq(pin);
Andrew Victorabbea712006-02-24 22:27:50 +0000428 }
SAN People73a59c12006-01-09 17:05:41 +0000429 pin++;
430 gpio++;
431 isr >>= 1;
432 }
433 }
434 desc->chip->unmask(irq);
435 /* now it may re-trigger */
436}
437
Andrew Victorf2173832006-09-27 13:23:00 +0100438/*--------------------------------------------------------------------------*/
SAN People73a59c12006-01-09 17:05:41 +0000439
Andrew Victorb66545e2007-11-23 16:09:10 +0100440#ifdef CONFIG_DEBUG_FS
441
442static int at91_gpio_show(struct seq_file *s, void *unused)
443{
444 int bank, j;
445
446 /* print heading */
447 seq_printf(s, "Pin\t");
448 for (bank = 0; bank < gpio_banks; bank++) {
449 seq_printf(s, "PIO%c\t", 'A' + bank);
450 };
451 seq_printf(s, "\n\n");
452
453 /* print pin status */
454 for (j = 0; j < 32; j++) {
455 seq_printf(s, "%i:\t", j);
456
457 for (bank = 0; bank < gpio_banks; bank++) {
458 unsigned pin = PIN_BASE + (32 * bank) + j;
459 void __iomem *pio = pin_to_controller(pin);
460 unsigned mask = pin_to_mask(pin);
461
462 if (__raw_readl(pio + PIO_PSR) & mask)
463 seq_printf(s, "GPIO:%s", __raw_readl(pio + PIO_PDSR) & mask ? "1" : "0");
464 else
465 seq_printf(s, "%s", __raw_readl(pio + PIO_ABSR) & mask ? "B" : "A");
466
467 seq_printf(s, "\t");
468 }
469
470 seq_printf(s, "\n");
471 }
472
473 return 0;
474}
475
476static int at91_gpio_open(struct inode *inode, struct file *file)
477{
478 return single_open(file, at91_gpio_show, NULL);
479}
480
481static const struct file_operations at91_gpio_operations = {
482 .open = at91_gpio_open,
483 .read = seq_read,
484 .llseek = seq_lseek,
485 .release = single_release,
486};
487
488static int __init at91_gpio_debugfs_init(void)
489{
490 /* /sys/kernel/debug/at91_gpio */
491 (void) debugfs_create_file("at91_gpio", S_IFREG | S_IRUGO, NULL, NULL, &at91_gpio_operations);
492 return 0;
493}
494postcore_initcall(at91_gpio_debugfs_init);
495
496#endif
497
498/*--------------------------------------------------------------------------*/
499
Andrew Victor2b768b62009-02-11 21:39:05 +0100500/*
501 * This lock class tells lockdep that GPIO irqs are in a different
David Brownell37aca702008-03-05 00:08:29 +0100502 * category than their parents, so it won't report false recursion.
503 */
504static struct lock_class_key gpio_lock_class;
505
Andrew Victorf2173832006-09-27 13:23:00 +0100506/*
507 * Called from the processor-specific init to enable GPIO interrupt support.
508 */
509void __init at91_gpio_irq_setup(void)
510{
David Brownelle83aff52008-01-04 18:30:24 +0100511 unsigned pioc, pin;
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100512 struct at91_gpio_chip *this, *prev;
Andrew Victorf2173832006-09-27 13:23:00 +0100513
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100514 for (pioc = 0, pin = PIN_BASE, this = gpio_chip, prev = NULL;
David Brownelle83aff52008-01-04 18:30:24 +0100515 pioc++ < gpio_banks;
516 prev = this, this++) {
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100517 unsigned id = this->bank->id;
SAN People73a59c12006-01-09 17:05:41 +0000518 unsigned i;
519
David Brownelle83aff52008-01-04 18:30:24 +0100520 __raw_writel(~0, this->regbase + PIO_IDR);
SAN People73a59c12006-01-09 17:05:41 +0000521
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100522 for (i = 0, pin = this->chip.base; i < 32; i++, pin++) {
David Brownell37aca702008-03-05 00:08:29 +0100523 lockdep_set_class(&irq_desc[pin].lock, &gpio_lock_class);
524
Andrew Victor814138f2006-06-19 15:26:54 +0100525 /*
526 * Can use the "simple" and not "edge" handler since it's
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200527 * shorter, and the AIC handles interrupts sanely.
Andrew Victor814138f2006-06-19 15:26:54 +0100528 */
SAN People73a59c12006-01-09 17:05:41 +0000529 set_irq_chip(pin, &gpio_irqchip);
Russell King10dd5ce2006-11-23 11:41:32 +0000530 set_irq_handler(pin, handle_simple_irq);
SAN People73a59c12006-01-09 17:05:41 +0000531 set_irq_flags(pin, IRQF_VALID);
532 }
533
David Brownelle83aff52008-01-04 18:30:24 +0100534 /* The toplevel handler handles one bank of GPIOs, except
535 * AT91SAM9263_ID_PIOCDE handles three... PIOC is first in
536 * the list, so we only set up that handler.
537 */
538 if (prev && prev->next == this)
539 continue;
540
541 set_irq_chip_data(id, this);
SAN People73a59c12006-01-09 17:05:41 +0000542 set_irq_chained_handler(id, gpio_irq_handler);
SAN People73a59c12006-01-09 17:05:41 +0000543 }
Andrew Victorf2173832006-09-27 13:23:00 +0100544 pr_info("AT91: %d gpio irqs in %d banks\n", pin - PIN_BASE, gpio_banks);
545}
546
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100547/* gpiolib support */
548static int at91_gpiolib_direction_input(struct gpio_chip *chip,
549 unsigned offset)
550{
551 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
552 void __iomem *pio = at91_gpio->regbase;
553 unsigned mask = 1 << offset;
554
555 __raw_writel(mask, pio + PIO_ODR);
556 return 0;
557}
558
559static int at91_gpiolib_direction_output(struct gpio_chip *chip,
560 unsigned offset, int val)
561{
562 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
563 void __iomem *pio = at91_gpio->regbase;
564 unsigned mask = 1 << offset;
565
566 __raw_writel(mask, pio + (val ? PIO_SODR : PIO_CODR));
567 __raw_writel(mask, pio + PIO_OER);
568 return 0;
569}
570
571static int at91_gpiolib_get(struct gpio_chip *chip, unsigned offset)
572{
573 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
574 void __iomem *pio = at91_gpio->regbase;
575 unsigned mask = 1 << offset;
576 u32 pdsr;
577
578 pdsr = __raw_readl(pio + PIO_PDSR);
579 return (pdsr & mask) != 0;
580}
581
582static void at91_gpiolib_set(struct gpio_chip *chip, unsigned offset, int val)
583{
584 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
585 void __iomem *pio = at91_gpio->regbase;
586 unsigned mask = 1 << offset;
587
588 __raw_writel(mask, pio + (val ? PIO_SODR : PIO_CODR));
589}
590
591static int at91_gpiolib_request(struct gpio_chip *chip, unsigned offset)
592{
593 unsigned pin = chip->base + offset;
594 void __iomem *pio = pin_to_controller(pin);
595 unsigned mask = pin_to_mask(pin);
596
597 /* Cannot request GPIOs that are in alternate function mode */
598 if (!(__raw_readl(pio + PIO_PSR) & mask))
599 return -EPERM;
600
601 return 0;
602}
603
604static void at91_gpiolib_dbg_show(struct seq_file *s, struct gpio_chip *chip)
605{
606 int i;
607
608 for (i = 0; i < chip->ngpio; i++) {
609 unsigned pin = chip->base + i;
610 void __iomem *pio = pin_to_controller(pin);
611 unsigned mask = pin_to_mask(pin);
612 const char *gpio_label;
613
614 gpio_label = gpiochip_is_requested(chip, i);
615 if (gpio_label) {
616 seq_printf(s, "[%s] GPIO%s%d: ",
617 gpio_label, chip->label, i);
618 if (__raw_readl(pio + PIO_PSR) & mask)
619 seq_printf(s, "[gpio] %s\n",
620 at91_get_gpio_value(pin) ?
621 "set" : "clear");
622 else
623 seq_printf(s, "[periph %s]\n",
624 __raw_readl(pio + PIO_ABSR) &
625 mask ? "B" : "A");
626 }
627 }
628}
629
Andrew Victorf2173832006-09-27 13:23:00 +0100630/*
631 * Called from the processor-specific init to enable GPIO pin support.
632 */
633void __init at91_gpio_init(struct at91_gpio_bank *data, int nr_banks)
634{
David Brownelle83aff52008-01-04 18:30:24 +0100635 unsigned i;
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100636 struct at91_gpio_chip *at91_gpio, *last = NULL;
David Brownelle83aff52008-01-04 18:30:24 +0100637
Andrew Victorf2173832006-09-27 13:23:00 +0100638 BUG_ON(nr_banks > MAX_GPIO_BANKS);
639
Andrew Victorf2173832006-09-27 13:23:00 +0100640 gpio_banks = nr_banks;
David Brownelle83aff52008-01-04 18:30:24 +0100641
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100642 for (i = 0; i < nr_banks; i++) {
643 at91_gpio = &gpio_chip[i];
644
645 at91_gpio->bank = &data[i];
646 at91_gpio->chip.base = PIN_BASE + i * 32;
647 at91_gpio->regbase = at91_gpio->bank->offset +
648 (void __iomem *)AT91_VA_BASE_SYS;
David Brownelle83aff52008-01-04 18:30:24 +0100649
Andrew Victor2b768b62009-02-11 21:39:05 +0100650 /* enable PIO controller's clock */
Russell King97fb44e2009-03-13 21:44:51 +0000651 clk_enable(at91_gpio->bank->clock);
Andrew Victor2b768b62009-02-11 21:39:05 +0100652
David Brownelle83aff52008-01-04 18:30:24 +0100653 /* AT91SAM9263_ID_PIOCDE groups PIOC, PIOD, PIOE */
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100654 if (last && last->bank->id == at91_gpio->bank->id)
655 last->next = at91_gpio;
656 last = at91_gpio;
657
658 gpiochip_add(&at91_gpio->chip);
David Brownelle83aff52008-01-04 18:30:24 +0100659 }
SAN People73a59c12006-01-09 17:05:41 +0000660}