blob: 22250420ceeb94280b65abaf143de4aa6581bd4b [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>
SAN People73a59c12006-01-09 17:05:41 +000025
Ryan Mallonf373e8c2009-02-10 21:02:08 +010026#include <asm/gpio.h>
27
Andrew Victorf2173832006-09-27 13:23:00 +010028#include "generic.h"
29
Ryan Mallonf373e8c2009-02-10 21:02:08 +010030struct at91_gpio_chip {
31 struct gpio_chip chip;
32 struct at91_gpio_chip *next; /* Bank sharing same clock */
33 struct at91_gpio_bank *bank; /* Bank definition */
34 void __iomem *regbase; /* Base of register bank */
35};
Andrew Victorf2173832006-09-27 13:23:00 +010036
Ryan Mallonf373e8c2009-02-10 21:02:08 +010037#define to_at91_gpio_chip(c) container_of(c, struct at91_gpio_chip, chip)
38
39static void at91_gpiolib_dbg_show(struct seq_file *s, struct gpio_chip *chip);
40static void at91_gpiolib_set(struct gpio_chip *chip, unsigned offset, int val);
41static int at91_gpiolib_get(struct gpio_chip *chip, unsigned offset);
42static int at91_gpiolib_direction_output(struct gpio_chip *chip,
43 unsigned offset, int val);
44static int at91_gpiolib_direction_input(struct gpio_chip *chip,
45 unsigned offset);
Ryan Mallonf373e8c2009-02-10 21:02:08 +010046
47#define AT91_GPIO_CHIP(name, base_gpio, nr_gpio) \
48 { \
49 .chip = { \
50 .label = name, \
Ryan Mallonf373e8c2009-02-10 21:02:08 +010051 .direction_input = at91_gpiolib_direction_input, \
52 .direction_output = at91_gpiolib_direction_output, \
53 .get = at91_gpiolib_get, \
54 .set = at91_gpiolib_set, \
55 .dbg_show = at91_gpiolib_dbg_show, \
56 .base = base_gpio, \
57 .ngpio = nr_gpio, \
58 }, \
59 }
60
61static struct at91_gpio_chip gpio_chip[] = {
62 AT91_GPIO_CHIP("A", 0x00 + PIN_BASE, 32),
63 AT91_GPIO_CHIP("B", 0x20 + PIN_BASE, 32),
64 AT91_GPIO_CHIP("C", 0x40 + PIN_BASE, 32),
65 AT91_GPIO_CHIP("D", 0x60 + PIN_BASE, 32),
66 AT91_GPIO_CHIP("E", 0x80 + PIN_BASE, 32),
67};
68
Andrew Victorf2173832006-09-27 13:23:00 +010069static int gpio_banks;
70
SAN People73a59c12006-01-09 17:05:41 +000071static inline void __iomem *pin_to_controller(unsigned pin)
72{
SAN People73a59c12006-01-09 17:05:41 +000073 pin -= PIN_BASE;
74 pin /= 32;
Andrew Victorf2173832006-09-27 13:23:00 +010075 if (likely(pin < gpio_banks))
Ryan Mallonf373e8c2009-02-10 21:02:08 +010076 return gpio_chip[pin].regbase;
SAN People73a59c12006-01-09 17:05:41 +000077
78 return NULL;
79}
80
81static inline unsigned pin_to_mask(unsigned pin)
82{
83 pin -= PIN_BASE;
84 return 1 << (pin % 32);
85}
86
87
88/*--------------------------------------------------------------------------*/
89
90/* Not all hardware capabilities are exposed through these calls; they
91 * only encapsulate the most common features and modes. (So if you
92 * want to change signals in groups, do it directly.)
93 *
94 * Bootloaders will usually handle some of the pin multiplexing setup.
95 * The intent is certainly that by the time Linux is fully booted, all
96 * pins should have been fully initialized. These setup calls should
97 * only be used by board setup routines, or possibly in driver probe().
98 *
99 * For bootloaders doing all that setup, these calls could be inlined
100 * as NOPs so Linux won't duplicate any setup code
101 */
102
103
104/*
David Brownella31c4ee2007-02-12 00:53:13 -0800105 * mux the pin to the "GPIO" peripheral role.
106 */
107int __init_or_module at91_set_GPIO_periph(unsigned pin, int use_pullup)
108{
109 void __iomem *pio = pin_to_controller(pin);
110 unsigned mask = pin_to_mask(pin);
111
112 if (!pio)
113 return -EINVAL;
114 __raw_writel(mask, pio + PIO_IDR);
115 __raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR));
116 __raw_writel(mask, pio + PIO_PER);
117 return 0;
118}
119EXPORT_SYMBOL(at91_set_GPIO_periph);
120
121
122/*
SAN People73a59c12006-01-09 17:05:41 +0000123 * mux the pin to the "A" internal peripheral role.
124 */
125int __init_or_module at91_set_A_periph(unsigned pin, int use_pullup)
126{
127 void __iomem *pio = pin_to_controller(pin);
128 unsigned mask = pin_to_mask(pin);
129
130 if (!pio)
131 return -EINVAL;
132
133 __raw_writel(mask, pio + PIO_IDR);
134 __raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR));
135 __raw_writel(mask, pio + PIO_ASR);
136 __raw_writel(mask, pio + PIO_PDR);
137 return 0;
138}
139EXPORT_SYMBOL(at91_set_A_periph);
140
141
142/*
143 * mux the pin to the "B" internal peripheral role.
144 */
145int __init_or_module at91_set_B_periph(unsigned pin, int use_pullup)
146{
147 void __iomem *pio = pin_to_controller(pin);
148 unsigned mask = pin_to_mask(pin);
149
150 if (!pio)
151 return -EINVAL;
152
153 __raw_writel(mask, pio + PIO_IDR);
154 __raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR));
155 __raw_writel(mask, pio + PIO_BSR);
156 __raw_writel(mask, pio + PIO_PDR);
157 return 0;
158}
159EXPORT_SYMBOL(at91_set_B_periph);
160
161
162/*
163 * mux the pin to the gpio controller (instead of "A" or "B" peripheral), and
164 * configure it for an input.
165 */
166int __init_or_module at91_set_gpio_input(unsigned pin, int use_pullup)
167{
168 void __iomem *pio = pin_to_controller(pin);
169 unsigned mask = pin_to_mask(pin);
170
171 if (!pio)
172 return -EINVAL;
173
174 __raw_writel(mask, pio + PIO_IDR);
175 __raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR));
176 __raw_writel(mask, pio + PIO_ODR);
177 __raw_writel(mask, pio + PIO_PER);
178 return 0;
179}
180EXPORT_SYMBOL(at91_set_gpio_input);
181
182
183/*
184 * mux the pin to the gpio controller (instead of "A" or "B" peripheral),
185 * and configure it for an output.
186 */
187int __init_or_module at91_set_gpio_output(unsigned pin, int value)
188{
189 void __iomem *pio = pin_to_controller(pin);
190 unsigned mask = pin_to_mask(pin);
191
192 if (!pio)
193 return -EINVAL;
194
195 __raw_writel(mask, pio + PIO_IDR);
196 __raw_writel(mask, pio + PIO_PUDR);
197 __raw_writel(mask, pio + (value ? PIO_SODR : PIO_CODR));
198 __raw_writel(mask, pio + PIO_OER);
199 __raw_writel(mask, pio + PIO_PER);
200 return 0;
201}
202EXPORT_SYMBOL(at91_set_gpio_output);
203
204
205/*
206 * enable/disable the glitch filter; mostly used with IRQ handling.
207 */
208int __init_or_module at91_set_deglitch(unsigned pin, int is_on)
209{
210 void __iomem *pio = pin_to_controller(pin);
211 unsigned mask = pin_to_mask(pin);
212
213 if (!pio)
214 return -EINVAL;
215 __raw_writel(mask, pio + (is_on ? PIO_IFER : PIO_IFDR));
216 return 0;
217}
218EXPORT_SYMBOL(at91_set_deglitch);
219
Andrew Victordf666b92006-02-22 21:23:35 +0000220/*
221 * enable/disable the multi-driver; This is only valid for output and
222 * allows the output pin to run as an open collector output.
223 */
224int __init_or_module at91_set_multi_drive(unsigned pin, int is_on)
225{
226 void __iomem *pio = pin_to_controller(pin);
227 unsigned mask = pin_to_mask(pin);
228
229 if (!pio)
230 return -EINVAL;
231
232 __raw_writel(mask, pio + (is_on ? PIO_MDER : PIO_MDDR));
233 return 0;
234}
235EXPORT_SYMBOL(at91_set_multi_drive);
236
SAN People73a59c12006-01-09 17:05:41 +0000237/*
238 * assuming the pin is muxed as a gpio output, set its value.
239 */
240int at91_set_gpio_value(unsigned pin, int value)
241{
242 void __iomem *pio = pin_to_controller(pin);
243 unsigned mask = pin_to_mask(pin);
244
245 if (!pio)
246 return -EINVAL;
247 __raw_writel(mask, pio + (value ? PIO_SODR : PIO_CODR));
248 return 0;
249}
250EXPORT_SYMBOL(at91_set_gpio_value);
251
252
253/*
254 * read the pin's value (works even if it's not muxed as a gpio).
255 */
256int at91_get_gpio_value(unsigned pin)
257{
258 void __iomem *pio = pin_to_controller(pin);
259 unsigned mask = pin_to_mask(pin);
260 u32 pdsr;
261
262 if (!pio)
263 return -EINVAL;
264 pdsr = __raw_readl(pio + PIO_PDSR);
265 return (pdsr & mask) != 0;
266}
267EXPORT_SYMBOL(at91_get_gpio_value);
268
269/*--------------------------------------------------------------------------*/
270
Andrew Victor814138f2006-06-19 15:26:54 +0100271#ifdef CONFIG_PM
272
Andrew Victorf2173832006-09-27 13:23:00 +0100273static u32 wakeups[MAX_GPIO_BANKS];
274static u32 backups[MAX_GPIO_BANKS];
Andrew Victor814138f2006-06-19 15:26:54 +0100275
Lennert Buytenhekda0f9402010-11-29 10:26:19 +0100276static int gpio_irq_set_wake(struct irq_data *d, unsigned state)
Andrew Victor814138f2006-06-19 15:26:54 +0100277{
Lennert Buytenhekda0f9402010-11-29 10:26:19 +0100278 unsigned mask = pin_to_mask(d->irq);
279 unsigned bank = (d->irq - PIN_BASE) / 32;
Andrew Victor814138f2006-06-19 15:26:54 +0100280
Andrew Victor3ea163e2007-01-09 13:47:29 +0100281 if (unlikely(bank >= MAX_GPIO_BANKS))
Andrew Victor814138f2006-06-19 15:26:54 +0100282 return -EINVAL;
283
284 if (state)
Andrew Victor3ea163e2007-01-09 13:47:29 +0100285 wakeups[bank] |= mask;
Andrew Victor814138f2006-06-19 15:26:54 +0100286 else
Andrew Victor3ea163e2007-01-09 13:47:29 +0100287 wakeups[bank] &= ~mask;
288
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100289 irq_set_irq_wake(gpio_chip[bank].bank->id, state);
Andrew Victor814138f2006-06-19 15:26:54 +0100290
291 return 0;
292}
293
294void at91_gpio_suspend(void)
295{
296 int i;
297
Andrew Victorf2173832006-09-27 13:23:00 +0100298 for (i = 0; i < gpio_banks; i++) {
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100299 void __iomem *pio = gpio_chip[i].regbase;
Andrew Victor814138f2006-06-19 15:26:54 +0100300
David Brownelle83aff52008-01-04 18:30:24 +0100301 backups[i] = __raw_readl(pio + PIO_IMR);
302 __raw_writel(backups[i], pio + PIO_IDR);
303 __raw_writel(wakeups[i], pio + PIO_IER);
Andrew Victor814138f2006-06-19 15:26:54 +0100304
Andrew Victor3ea163e2007-01-09 13:47:29 +0100305 if (!wakeups[i])
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100306 clk_disable(gpio_chip[i].bank->clock);
Andrew Victor3ea163e2007-01-09 13:47:29 +0100307 else {
Andrew Victor814138f2006-06-19 15:26:54 +0100308#ifdef CONFIG_PM_DEBUG
Andrew Victor3ea163e2007-01-09 13:47:29 +0100309 printk(KERN_DEBUG "GPIO-%c may wake for %08x\n", 'A'+i, wakeups[i]);
Andrew Victor814138f2006-06-19 15:26:54 +0100310#endif
311 }
312 }
313}
314
315void at91_gpio_resume(void)
316{
317 int i;
318
Andrew Victorf2173832006-09-27 13:23:00 +0100319 for (i = 0; i < gpio_banks; i++) {
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100320 void __iomem *pio = gpio_chip[i].regbase;
Andrew Victor814138f2006-06-19 15:26:54 +0100321
Andrew Victor3ea163e2007-01-09 13:47:29 +0100322 if (!wakeups[i])
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100323 clk_enable(gpio_chip[i].bank->clock);
Andrew Victor3ea163e2007-01-09 13:47:29 +0100324
David Brownelle83aff52008-01-04 18:30:24 +0100325 __raw_writel(wakeups[i], pio + PIO_IDR);
326 __raw_writel(backups[i], pio + PIO_IER);
Andrew Victorf2173832006-09-27 13:23:00 +0100327 }
Andrew Victor814138f2006-06-19 15:26:54 +0100328}
329
330#else
331#define gpio_irq_set_wake NULL
332#endif
333
SAN People73a59c12006-01-09 17:05:41 +0000334
335/* Several AIC controller irqs are dispatched through this GPIO handler.
336 * To use any AT91_PIN_* as an externally triggered IRQ, first call
337 * at91_set_gpio_input() then maybe enable its glitch filter.
338 * Then just request_irq() with the pin ID; it works like any ARM IRQ
339 * handler, though it always triggers on rising and falling edges.
340 *
341 * Alternatively, certain pins may be used directly as IRQ0..IRQ6 after
342 * configuring them with at91_set_a_periph() or at91_set_b_periph().
343 * IRQ0..IRQ6 should be configurable, e.g. level vs edge triggering.
344 */
345
Lennert Buytenhekda0f9402010-11-29 10:26:19 +0100346static void gpio_irq_mask(struct irq_data *d)
SAN People73a59c12006-01-09 17:05:41 +0000347{
Lennert Buytenhekda0f9402010-11-29 10:26:19 +0100348 void __iomem *pio = pin_to_controller(d->irq);
349 unsigned mask = pin_to_mask(d->irq);
SAN People73a59c12006-01-09 17:05:41 +0000350
351 if (pio)
352 __raw_writel(mask, pio + PIO_IDR);
353}
354
Lennert Buytenhekda0f9402010-11-29 10:26:19 +0100355static void gpio_irq_unmask(struct irq_data *d)
SAN People73a59c12006-01-09 17:05:41 +0000356{
Lennert Buytenhekda0f9402010-11-29 10:26:19 +0100357 void __iomem *pio = pin_to_controller(d->irq);
358 unsigned mask = pin_to_mask(d->irq);
SAN People73a59c12006-01-09 17:05:41 +0000359
360 if (pio)
361 __raw_writel(mask, pio + PIO_IER);
362}
363
Lennert Buytenhekda0f9402010-11-29 10:26:19 +0100364static int gpio_irq_type(struct irq_data *d, unsigned type)
SAN People73a59c12006-01-09 17:05:41 +0000365{
David Brownelle83aff52008-01-04 18:30:24 +0100366 switch (type) {
367 case IRQ_TYPE_NONE:
368 case IRQ_TYPE_EDGE_BOTH:
369 return 0;
370 default:
371 return -EINVAL;
372 }
SAN People73a59c12006-01-09 17:05:41 +0000373}
374
David Brownell38c677c2006-08-01 22:26:25 +0100375static struct irq_chip gpio_irqchip = {
376 .name = "GPIO",
Thomas Gleixnerac93cdb2011-03-24 12:48:18 +0100377 .irq_disable = gpio_irq_mask,
Lennert Buytenhekda0f9402010-11-29 10:26:19 +0100378 .irq_mask = gpio_irq_mask,
379 .irq_unmask = gpio_irq_unmask,
380 .irq_set_type = gpio_irq_type,
381 .irq_set_wake = gpio_irq_set_wake,
SAN People73a59c12006-01-09 17:05:41 +0000382};
383
Russell King10dd5ce2006-11-23 11:41:32 +0000384static void gpio_irq_handler(unsigned irq, struct irq_desc *desc)
SAN People73a59c12006-01-09 17:05:41 +0000385{
386 unsigned pin;
Thomas Gleixnerac93cdb2011-03-24 12:48:18 +0100387 struct irq_data *idata = irq_desc_get_irq_data(desc);
388 struct irq_chip *chip = irq_data_get_irq_chip(idata);
389 struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(idata);
390 void __iomem *pio = at91_gpio->regbase;
SAN People73a59c12006-01-09 17:05:41 +0000391 u32 isr;
392
SAN People73a59c12006-01-09 17:05:41 +0000393 /* temporarily mask (level sensitive) parent IRQ */
Thomas Gleixnerac93cdb2011-03-24 12:48:18 +0100394 chip->irq_ack(idata);
SAN People73a59c12006-01-09 17:05:41 +0000395 for (;;) {
David Brownelle83aff52008-01-04 18:30:24 +0100396 /* Reading ISR acks pending (edge triggered) GPIO interrupts.
397 * When there none are pending, we're finished unless we need
398 * to process multiple banks (like ID_PIOCDE on sam9263).
399 */
SAN People73a59c12006-01-09 17:05:41 +0000400 isr = __raw_readl(pio + PIO_ISR) & __raw_readl(pio + PIO_IMR);
David Brownelle83aff52008-01-04 18:30:24 +0100401 if (!isr) {
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100402 if (!at91_gpio->next)
David Brownelle83aff52008-01-04 18:30:24 +0100403 break;
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100404 at91_gpio = at91_gpio->next;
405 pio = at91_gpio->regbase;
David Brownelle83aff52008-01-04 18:30:24 +0100406 continue;
407 }
SAN People73a59c12006-01-09 17:05:41 +0000408
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100409 pin = at91_gpio->chip.base;
SAN People73a59c12006-01-09 17:05:41 +0000410
411 while (isr) {
Thomas Gleixnerac93cdb2011-03-24 12:48:18 +0100412 if (isr & 1)
413 generic_handle_irq(pin);
SAN People73a59c12006-01-09 17:05:41 +0000414 pin++;
SAN People73a59c12006-01-09 17:05:41 +0000415 isr >>= 1;
416 }
417 }
Thomas Gleixnerac93cdb2011-03-24 12:48:18 +0100418 chip->irq_unmask(idata);
SAN People73a59c12006-01-09 17:05:41 +0000419 /* now it may re-trigger */
420}
421
Andrew Victorf2173832006-09-27 13:23:00 +0100422/*--------------------------------------------------------------------------*/
SAN People73a59c12006-01-09 17:05:41 +0000423
Andrew Victorb66545e2007-11-23 16:09:10 +0100424#ifdef CONFIG_DEBUG_FS
425
426static int at91_gpio_show(struct seq_file *s, void *unused)
427{
428 int bank, j;
429
430 /* print heading */
431 seq_printf(s, "Pin\t");
432 for (bank = 0; bank < gpio_banks; bank++) {
433 seq_printf(s, "PIO%c\t", 'A' + bank);
434 };
435 seq_printf(s, "\n\n");
436
437 /* print pin status */
438 for (j = 0; j < 32; j++) {
439 seq_printf(s, "%i:\t", j);
440
441 for (bank = 0; bank < gpio_banks; bank++) {
442 unsigned pin = PIN_BASE + (32 * bank) + j;
443 void __iomem *pio = pin_to_controller(pin);
444 unsigned mask = pin_to_mask(pin);
445
446 if (__raw_readl(pio + PIO_PSR) & mask)
447 seq_printf(s, "GPIO:%s", __raw_readl(pio + PIO_PDSR) & mask ? "1" : "0");
448 else
449 seq_printf(s, "%s", __raw_readl(pio + PIO_ABSR) & mask ? "B" : "A");
450
451 seq_printf(s, "\t");
452 }
453
454 seq_printf(s, "\n");
455 }
456
457 return 0;
458}
459
460static int at91_gpio_open(struct inode *inode, struct file *file)
461{
462 return single_open(file, at91_gpio_show, NULL);
463}
464
465static const struct file_operations at91_gpio_operations = {
466 .open = at91_gpio_open,
467 .read = seq_read,
468 .llseek = seq_lseek,
469 .release = single_release,
470};
471
472static int __init at91_gpio_debugfs_init(void)
473{
474 /* /sys/kernel/debug/at91_gpio */
475 (void) debugfs_create_file("at91_gpio", S_IFREG | S_IRUGO, NULL, NULL, &at91_gpio_operations);
476 return 0;
477}
478postcore_initcall(at91_gpio_debugfs_init);
479
480#endif
481
482/*--------------------------------------------------------------------------*/
483
Andrew Victor2b768b62009-02-11 21:39:05 +0100484/*
485 * This lock class tells lockdep that GPIO irqs are in a different
David Brownell37aca702008-03-05 00:08:29 +0100486 * category than their parents, so it won't report false recursion.
487 */
488static struct lock_class_key gpio_lock_class;
489
Andrew Victorf2173832006-09-27 13:23:00 +0100490/*
491 * Called from the processor-specific init to enable GPIO interrupt support.
492 */
493void __init at91_gpio_irq_setup(void)
494{
David Brownelle83aff52008-01-04 18:30:24 +0100495 unsigned pioc, pin;
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100496 struct at91_gpio_chip *this, *prev;
Andrew Victorf2173832006-09-27 13:23:00 +0100497
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100498 for (pioc = 0, pin = PIN_BASE, this = gpio_chip, prev = NULL;
David Brownelle83aff52008-01-04 18:30:24 +0100499 pioc++ < gpio_banks;
500 prev = this, this++) {
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100501 unsigned id = this->bank->id;
SAN People73a59c12006-01-09 17:05:41 +0000502 unsigned i;
503
David Brownelle83aff52008-01-04 18:30:24 +0100504 __raw_writel(~0, this->regbase + PIO_IDR);
SAN People73a59c12006-01-09 17:05:41 +0000505
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100506 for (i = 0, pin = this->chip.base; i < 32; i++, pin++) {
Thomas Gleixner1475b852011-03-22 17:11:09 +0100507 irq_set_lockdep_class(pin, &gpio_lock_class);
David Brownell37aca702008-03-05 00:08:29 +0100508
Andrew Victor814138f2006-06-19 15:26:54 +0100509 /*
510 * Can use the "simple" and not "edge" handler since it's
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200511 * shorter, and the AIC handles interrupts sanely.
Andrew Victor814138f2006-06-19 15:26:54 +0100512 */
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100513 irq_set_chip_and_handler(pin, &gpio_irqchip,
514 handle_simple_irq);
SAN People73a59c12006-01-09 17:05:41 +0000515 set_irq_flags(pin, IRQF_VALID);
516 }
517
David Brownelle83aff52008-01-04 18:30:24 +0100518 /* The toplevel handler handles one bank of GPIOs, except
519 * AT91SAM9263_ID_PIOCDE handles three... PIOC is first in
520 * the list, so we only set up that handler.
521 */
522 if (prev && prev->next == this)
523 continue;
524
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100525 irq_set_chip_data(id, this);
526 irq_set_chained_handler(id, gpio_irq_handler);
SAN People73a59c12006-01-09 17:05:41 +0000527 }
Andrew Victorf2173832006-09-27 13:23:00 +0100528 pr_info("AT91: %d gpio irqs in %d banks\n", pin - PIN_BASE, gpio_banks);
529}
530
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100531/* gpiolib support */
532static int at91_gpiolib_direction_input(struct gpio_chip *chip,
533 unsigned offset)
534{
535 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
536 void __iomem *pio = at91_gpio->regbase;
537 unsigned mask = 1 << offset;
538
539 __raw_writel(mask, pio + PIO_ODR);
540 return 0;
541}
542
543static int at91_gpiolib_direction_output(struct gpio_chip *chip,
544 unsigned offset, int val)
545{
546 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
547 void __iomem *pio = at91_gpio->regbase;
548 unsigned mask = 1 << offset;
549
550 __raw_writel(mask, pio + (val ? PIO_SODR : PIO_CODR));
551 __raw_writel(mask, pio + PIO_OER);
552 return 0;
553}
554
555static int at91_gpiolib_get(struct gpio_chip *chip, unsigned offset)
556{
557 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
558 void __iomem *pio = at91_gpio->regbase;
559 unsigned mask = 1 << offset;
560 u32 pdsr;
561
562 pdsr = __raw_readl(pio + PIO_PDSR);
563 return (pdsr & mask) != 0;
564}
565
566static void at91_gpiolib_set(struct gpio_chip *chip, unsigned offset, int val)
567{
568 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
569 void __iomem *pio = at91_gpio->regbase;
570 unsigned mask = 1 << offset;
571
572 __raw_writel(mask, pio + (val ? PIO_SODR : PIO_CODR));
573}
574
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100575static void at91_gpiolib_dbg_show(struct seq_file *s, struct gpio_chip *chip)
576{
577 int i;
578
579 for (i = 0; i < chip->ngpio; i++) {
580 unsigned pin = chip->base + i;
581 void __iomem *pio = pin_to_controller(pin);
582 unsigned mask = pin_to_mask(pin);
583 const char *gpio_label;
584
585 gpio_label = gpiochip_is_requested(chip, i);
586 if (gpio_label) {
587 seq_printf(s, "[%s] GPIO%s%d: ",
588 gpio_label, chip->label, i);
589 if (__raw_readl(pio + PIO_PSR) & mask)
590 seq_printf(s, "[gpio] %s\n",
591 at91_get_gpio_value(pin) ?
592 "set" : "clear");
593 else
594 seq_printf(s, "[periph %s]\n",
595 __raw_readl(pio + PIO_ABSR) &
596 mask ? "B" : "A");
597 }
598 }
599}
600
Andrew Victorf2173832006-09-27 13:23:00 +0100601/*
602 * Called from the processor-specific init to enable GPIO pin support.
603 */
604void __init at91_gpio_init(struct at91_gpio_bank *data, int nr_banks)
605{
David Brownelle83aff52008-01-04 18:30:24 +0100606 unsigned i;
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100607 struct at91_gpio_chip *at91_gpio, *last = NULL;
David Brownelle83aff52008-01-04 18:30:24 +0100608
Andrew Victorf2173832006-09-27 13:23:00 +0100609 BUG_ON(nr_banks > MAX_GPIO_BANKS);
610
Andrew Victorf2173832006-09-27 13:23:00 +0100611 gpio_banks = nr_banks;
David Brownelle83aff52008-01-04 18:30:24 +0100612
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100613 for (i = 0; i < nr_banks; i++) {
614 at91_gpio = &gpio_chip[i];
615
616 at91_gpio->bank = &data[i];
617 at91_gpio->chip.base = PIN_BASE + i * 32;
618 at91_gpio->regbase = at91_gpio->bank->offset +
619 (void __iomem *)AT91_VA_BASE_SYS;
David Brownelle83aff52008-01-04 18:30:24 +0100620
Andrew Victor2b768b62009-02-11 21:39:05 +0100621 /* enable PIO controller's clock */
Russell King97fb44e2009-03-13 21:44:51 +0000622 clk_enable(at91_gpio->bank->clock);
Andrew Victor2b768b62009-02-11 21:39:05 +0100623
David Brownelle83aff52008-01-04 18:30:24 +0100624 /* AT91SAM9263_ID_PIOCDE groups PIOC, PIOD, PIOE */
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100625 if (last && last->bank->id == at91_gpio->bank->id)
626 last->next = at91_gpio;
627 last = at91_gpio;
628
629 gpiochip_add(&at91_gpio->chip);
David Brownelle83aff52008-01-04 18:30:24 +0100630 }
SAN People73a59c12006-01-09 17:05:41 +0000631}