blob: 224e9e2f867453bd85b08b371edf888f961d6e6e [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>
Russell King2f8163b2011-07-26 10:53:52 +010014#include <linux/gpio.h>
Thomas Gleixner07d265d2006-07-01 23:01:50 +010015#include <linux/interrupt.h>
16#include <linux/irq.h>
Andrew Victorb66545e2007-11-23 16:09:10 +010017#include <linux/debugfs.h>
18#include <linux/seq_file.h>
SAN People73a59c12006-01-09 17:05:41 +000019#include <linux/kernel.h>
20#include <linux/list.h>
21#include <linux/module.h>
Russell Kingfced80c2008-09-06 12:10:45 +010022#include <linux/io.h>
SAN People73a59c12006-01-09 17:05:41 +000023
Russell Kinga09e64f2008-08-05 16:14:15 +010024#include <mach/hardware.h>
25#include <mach/at91_pio.h>
SAN People73a59c12006-01-09 17:05:41 +000026
Andrew Victorf2173832006-09-27 13:23:00 +010027#include "generic.h"
28
Ryan Mallonf373e8c2009-02-10 21:02:08 +010029struct 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 */
34};
Andrew Victorf2173832006-09-27 13:23:00 +010035
Ryan Mallonf373e8c2009-02-10 21:02:08 +010036#define to_at91_gpio_chip(c) container_of(c, struct at91_gpio_chip, chip)
37
38static void at91_gpiolib_dbg_show(struct seq_file *s, struct gpio_chip *chip);
39static void at91_gpiolib_set(struct gpio_chip *chip, unsigned offset, int val);
40static int at91_gpiolib_get(struct gpio_chip *chip, unsigned offset);
41static int at91_gpiolib_direction_output(struct gpio_chip *chip,
42 unsigned offset, int val);
43static int at91_gpiolib_direction_input(struct gpio_chip *chip,
44 unsigned offset);
Ryan Mallonf373e8c2009-02-10 21:02:08 +010045
46#define AT91_GPIO_CHIP(name, base_gpio, nr_gpio) \
47 { \
48 .chip = { \
49 .label = name, \
Ryan Mallonf373e8c2009-02-10 21:02:08 +010050 .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, \
55 .base = base_gpio, \
56 .ngpio = nr_gpio, \
57 }, \
58 }
59
60static 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),
66};
67
Andrew Victorf2173832006-09-27 13:23:00 +010068static int gpio_banks;
69
SAN People73a59c12006-01-09 17:05:41 +000070static inline void __iomem *pin_to_controller(unsigned pin)
71{
SAN People73a59c12006-01-09 17:05:41 +000072 pin -= PIN_BASE;
73 pin /= 32;
Andrew Victorf2173832006-09-27 13:23:00 +010074 if (likely(pin < gpio_banks))
Ryan Mallonf373e8c2009-02-10 21:02:08 +010075 return gpio_chip[pin].regbase;
SAN People73a59c12006-01-09 17:05:41 +000076
77 return NULL;
78}
79
80static inline unsigned pin_to_mask(unsigned pin)
81{
82 pin -= PIN_BASE;
83 return 1 << (pin % 32);
84}
85
86
87/*--------------------------------------------------------------------------*/
88
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.)
92 *
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().
97 *
98 * For bootloaders doing all that setup, these calls could be inlined
99 * as NOPs so Linux won't duplicate any setup code
100 */
101
102
103/*
David Brownella31c4ee2007-02-12 00:53:13 -0800104 * mux the pin to the "GPIO" peripheral role.
105 */
106int __init_or_module at91_set_GPIO_periph(unsigned pin, int use_pullup)
107{
108 void __iomem *pio = pin_to_controller(pin);
109 unsigned mask = pin_to_mask(pin);
110
111 if (!pio)
112 return -EINVAL;
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);
116 return 0;
117}
118EXPORT_SYMBOL(at91_set_GPIO_periph);
119
120
121/*
SAN People73a59c12006-01-09 17:05:41 +0000122 * mux the pin to the "A" internal peripheral role.
123 */
124int __init_or_module at91_set_A_periph(unsigned pin, int use_pullup)
125{
126 void __iomem *pio = pin_to_controller(pin);
127 unsigned mask = pin_to_mask(pin);
128
129 if (!pio)
130 return -EINVAL;
131
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);
136 return 0;
137}
138EXPORT_SYMBOL(at91_set_A_periph);
139
140
141/*
142 * mux the pin to the "B" internal peripheral role.
143 */
144int __init_or_module at91_set_B_periph(unsigned pin, int use_pullup)
145{
146 void __iomem *pio = pin_to_controller(pin);
147 unsigned mask = pin_to_mask(pin);
148
149 if (!pio)
150 return -EINVAL;
151
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);
156 return 0;
157}
158EXPORT_SYMBOL(at91_set_B_periph);
159
160
161/*
162 * mux the pin to the gpio controller (instead of "A" or "B" peripheral), and
163 * configure it for an input.
164 */
165int __init_or_module at91_set_gpio_input(unsigned pin, int use_pullup)
166{
167 void __iomem *pio = pin_to_controller(pin);
168 unsigned mask = pin_to_mask(pin);
169
170 if (!pio)
171 return -EINVAL;
172
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);
177 return 0;
178}
179EXPORT_SYMBOL(at91_set_gpio_input);
180
181
182/*
183 * mux the pin to the gpio controller (instead of "A" or "B" peripheral),
184 * and configure it for an output.
185 */
186int __init_or_module at91_set_gpio_output(unsigned pin, int value)
187{
188 void __iomem *pio = pin_to_controller(pin);
189 unsigned mask = pin_to_mask(pin);
190
191 if (!pio)
192 return -EINVAL;
193
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);
199 return 0;
200}
201EXPORT_SYMBOL(at91_set_gpio_output);
202
203
204/*
205 * enable/disable the glitch filter; mostly used with IRQ handling.
206 */
207int __init_or_module at91_set_deglitch(unsigned pin, int is_on)
208{
209 void __iomem *pio = pin_to_controller(pin);
210 unsigned mask = pin_to_mask(pin);
211
212 if (!pio)
213 return -EINVAL;
214 __raw_writel(mask, pio + (is_on ? PIO_IFER : PIO_IFDR));
215 return 0;
216}
217EXPORT_SYMBOL(at91_set_deglitch);
218
Andrew Victordf666b92006-02-22 21:23:35 +0000219/*
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.
222 */
223int __init_or_module at91_set_multi_drive(unsigned pin, int is_on)
224{
225 void __iomem *pio = pin_to_controller(pin);
226 unsigned mask = pin_to_mask(pin);
227
228 if (!pio)
229 return -EINVAL;
230
231 __raw_writel(mask, pio + (is_on ? PIO_MDER : PIO_MDDR));
232 return 0;
233}
234EXPORT_SYMBOL(at91_set_multi_drive);
235
SAN People73a59c12006-01-09 17:05:41 +0000236/*
237 * assuming the pin is muxed as a gpio output, set its value.
238 */
239int at91_set_gpio_value(unsigned pin, int value)
240{
241 void __iomem *pio = pin_to_controller(pin);
242 unsigned mask = pin_to_mask(pin);
243
244 if (!pio)
245 return -EINVAL;
246 __raw_writel(mask, pio + (value ? PIO_SODR : PIO_CODR));
247 return 0;
248}
249EXPORT_SYMBOL(at91_set_gpio_value);
250
251
252/*
253 * read the pin's value (works even if it's not muxed as a gpio).
254 */
255int at91_get_gpio_value(unsigned pin)
256{
257 void __iomem *pio = pin_to_controller(pin);
258 unsigned mask = pin_to_mask(pin);
259 u32 pdsr;
260
261 if (!pio)
262 return -EINVAL;
263 pdsr = __raw_readl(pio + PIO_PDSR);
264 return (pdsr & mask) != 0;
265}
266EXPORT_SYMBOL(at91_get_gpio_value);
267
268/*--------------------------------------------------------------------------*/
269
Andrew Victor814138f2006-06-19 15:26:54 +0100270#ifdef CONFIG_PM
271
Andrew Victorf2173832006-09-27 13:23:00 +0100272static u32 wakeups[MAX_GPIO_BANKS];
273static u32 backups[MAX_GPIO_BANKS];
Andrew Victor814138f2006-06-19 15:26:54 +0100274
Lennert Buytenhekda0f9402010-11-29 10:26:19 +0100275static int gpio_irq_set_wake(struct irq_data *d, unsigned state)
Andrew Victor814138f2006-06-19 15:26:54 +0100276{
Lennert Buytenhekda0f9402010-11-29 10:26:19 +0100277 unsigned mask = pin_to_mask(d->irq);
278 unsigned bank = (d->irq - PIN_BASE) / 32;
Andrew Victor814138f2006-06-19 15:26:54 +0100279
Andrew Victor3ea163e2007-01-09 13:47:29 +0100280 if (unlikely(bank >= MAX_GPIO_BANKS))
Andrew Victor814138f2006-06-19 15:26:54 +0100281 return -EINVAL;
282
283 if (state)
Andrew Victor3ea163e2007-01-09 13:47:29 +0100284 wakeups[bank] |= mask;
Andrew Victor814138f2006-06-19 15:26:54 +0100285 else
Andrew Victor3ea163e2007-01-09 13:47:29 +0100286 wakeups[bank] &= ~mask;
287
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100288 irq_set_irq_wake(gpio_chip[bank].bank->id, state);
Andrew Victor814138f2006-06-19 15:26:54 +0100289
290 return 0;
291}
292
293void at91_gpio_suspend(void)
294{
295 int i;
296
Andrew Victorf2173832006-09-27 13:23:00 +0100297 for (i = 0; i < gpio_banks; i++) {
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100298 void __iomem *pio = gpio_chip[i].regbase;
Andrew Victor814138f2006-06-19 15:26:54 +0100299
David Brownelle83aff52008-01-04 18:30:24 +0100300 backups[i] = __raw_readl(pio + PIO_IMR);
301 __raw_writel(backups[i], pio + PIO_IDR);
302 __raw_writel(wakeups[i], pio + PIO_IER);
Andrew Victor814138f2006-06-19 15:26:54 +0100303
Andrew Victor3ea163e2007-01-09 13:47:29 +0100304 if (!wakeups[i])
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100305 clk_disable(gpio_chip[i].bank->clock);
Andrew Victor3ea163e2007-01-09 13:47:29 +0100306 else {
Andrew Victor814138f2006-06-19 15:26:54 +0100307#ifdef CONFIG_PM_DEBUG
Andrew Victor3ea163e2007-01-09 13:47:29 +0100308 printk(KERN_DEBUG "GPIO-%c may wake for %08x\n", 'A'+i, wakeups[i]);
Andrew Victor814138f2006-06-19 15:26:54 +0100309#endif
310 }
311 }
312}
313
314void at91_gpio_resume(void)
315{
316 int i;
317
Andrew Victorf2173832006-09-27 13:23:00 +0100318 for (i = 0; i < gpio_banks; i++) {
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100319 void __iomem *pio = gpio_chip[i].regbase;
Andrew Victor814138f2006-06-19 15:26:54 +0100320
Andrew Victor3ea163e2007-01-09 13:47:29 +0100321 if (!wakeups[i])
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100322 clk_enable(gpio_chip[i].bank->clock);
Andrew Victor3ea163e2007-01-09 13:47:29 +0100323
David Brownelle83aff52008-01-04 18:30:24 +0100324 __raw_writel(wakeups[i], pio + PIO_IDR);
325 __raw_writel(backups[i], pio + PIO_IER);
Andrew Victorf2173832006-09-27 13:23:00 +0100326 }
Andrew Victor814138f2006-06-19 15:26:54 +0100327}
328
329#else
330#define gpio_irq_set_wake NULL
331#endif
332
SAN People73a59c12006-01-09 17:05:41 +0000333
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.
339 *
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.
343 */
344
Lennert Buytenhekda0f9402010-11-29 10:26:19 +0100345static void gpio_irq_mask(struct irq_data *d)
SAN People73a59c12006-01-09 17:05:41 +0000346{
Lennert Buytenhekda0f9402010-11-29 10:26:19 +0100347 void __iomem *pio = pin_to_controller(d->irq);
348 unsigned mask = pin_to_mask(d->irq);
SAN People73a59c12006-01-09 17:05:41 +0000349
350 if (pio)
351 __raw_writel(mask, pio + PIO_IDR);
352}
353
Lennert Buytenhekda0f9402010-11-29 10:26:19 +0100354static void gpio_irq_unmask(struct irq_data *d)
SAN People73a59c12006-01-09 17:05:41 +0000355{
Lennert Buytenhekda0f9402010-11-29 10:26:19 +0100356 void __iomem *pio = pin_to_controller(d->irq);
357 unsigned mask = pin_to_mask(d->irq);
SAN People73a59c12006-01-09 17:05:41 +0000358
359 if (pio)
360 __raw_writel(mask, pio + PIO_IER);
361}
362
Lennert Buytenhekda0f9402010-11-29 10:26:19 +0100363static int gpio_irq_type(struct irq_data *d, unsigned type)
SAN People73a59c12006-01-09 17:05:41 +0000364{
David Brownelle83aff52008-01-04 18:30:24 +0100365 switch (type) {
366 case IRQ_TYPE_NONE:
367 case IRQ_TYPE_EDGE_BOTH:
368 return 0;
369 default:
370 return -EINVAL;
371 }
SAN People73a59c12006-01-09 17:05:41 +0000372}
373
David Brownell38c677c2006-08-01 22:26:25 +0100374static struct irq_chip gpio_irqchip = {
375 .name = "GPIO",
Thomas Gleixnerac93cdb2011-03-24 12:48:18 +0100376 .irq_disable = gpio_irq_mask,
Lennert Buytenhekda0f9402010-11-29 10:26:19 +0100377 .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,
SAN People73a59c12006-01-09 17:05:41 +0000381};
382
Russell King10dd5ce2006-11-23 11:41:32 +0000383static void gpio_irq_handler(unsigned irq, struct irq_desc *desc)
SAN People73a59c12006-01-09 17:05:41 +0000384{
385 unsigned pin;
Thomas Gleixnerac93cdb2011-03-24 12:48:18 +0100386 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;
SAN People73a59c12006-01-09 17:05:41 +0000390 u32 isr;
391
SAN People73a59c12006-01-09 17:05:41 +0000392 /* temporarily mask (level sensitive) parent IRQ */
Thomas Gleixnerac93cdb2011-03-24 12:48:18 +0100393 chip->irq_ack(idata);
SAN People73a59c12006-01-09 17:05:41 +0000394 for (;;) {
David Brownelle83aff52008-01-04 18:30:24 +0100395 /* 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).
398 */
SAN People73a59c12006-01-09 17:05:41 +0000399 isr = __raw_readl(pio + PIO_ISR) & __raw_readl(pio + PIO_IMR);
David Brownelle83aff52008-01-04 18:30:24 +0100400 if (!isr) {
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100401 if (!at91_gpio->next)
David Brownelle83aff52008-01-04 18:30:24 +0100402 break;
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100403 at91_gpio = at91_gpio->next;
404 pio = at91_gpio->regbase;
David Brownelle83aff52008-01-04 18:30:24 +0100405 continue;
406 }
SAN People73a59c12006-01-09 17:05:41 +0000407
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100408 pin = at91_gpio->chip.base;
SAN People73a59c12006-01-09 17:05:41 +0000409
410 while (isr) {
Thomas Gleixnerac93cdb2011-03-24 12:48:18 +0100411 if (isr & 1)
412 generic_handle_irq(pin);
SAN People73a59c12006-01-09 17:05:41 +0000413 pin++;
SAN People73a59c12006-01-09 17:05:41 +0000414 isr >>= 1;
415 }
416 }
Thomas Gleixnerac93cdb2011-03-24 12:48:18 +0100417 chip->irq_unmask(idata);
SAN People73a59c12006-01-09 17:05:41 +0000418 /* now it may re-trigger */
419}
420
Andrew Victorf2173832006-09-27 13:23:00 +0100421/*--------------------------------------------------------------------------*/
SAN People73a59c12006-01-09 17:05:41 +0000422
Andrew Victorb66545e2007-11-23 16:09:10 +0100423#ifdef CONFIG_DEBUG_FS
424
425static int at91_gpio_show(struct seq_file *s, void *unused)
426{
427 int bank, j;
428
429 /* print heading */
430 seq_printf(s, "Pin\t");
431 for (bank = 0; bank < gpio_banks; bank++) {
432 seq_printf(s, "PIO%c\t", 'A' + bank);
433 };
434 seq_printf(s, "\n\n");
435
436 /* print pin status */
437 for (j = 0; j < 32; j++) {
438 seq_printf(s, "%i:\t", j);
439
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);
444
445 if (__raw_readl(pio + PIO_PSR) & mask)
446 seq_printf(s, "GPIO:%s", __raw_readl(pio + PIO_PDSR) & mask ? "1" : "0");
447 else
448 seq_printf(s, "%s", __raw_readl(pio + PIO_ABSR) & mask ? "B" : "A");
449
450 seq_printf(s, "\t");
451 }
452
453 seq_printf(s, "\n");
454 }
455
456 return 0;
457}
458
459static int at91_gpio_open(struct inode *inode, struct file *file)
460{
461 return single_open(file, at91_gpio_show, NULL);
462}
463
464static const struct file_operations at91_gpio_operations = {
465 .open = at91_gpio_open,
466 .read = seq_read,
467 .llseek = seq_lseek,
468 .release = single_release,
469};
470
471static int __init at91_gpio_debugfs_init(void)
472{
473 /* /sys/kernel/debug/at91_gpio */
474 (void) debugfs_create_file("at91_gpio", S_IFREG | S_IRUGO, NULL, NULL, &at91_gpio_operations);
475 return 0;
476}
477postcore_initcall(at91_gpio_debugfs_init);
478
479#endif
480
481/*--------------------------------------------------------------------------*/
482
Andrew Victor2b768b62009-02-11 21:39:05 +0100483/*
484 * This lock class tells lockdep that GPIO irqs are in a different
David Brownell37aca702008-03-05 00:08:29 +0100485 * category than their parents, so it won't report false recursion.
486 */
487static struct lock_class_key gpio_lock_class;
488
Andrew Victorf2173832006-09-27 13:23:00 +0100489/*
490 * Called from the processor-specific init to enable GPIO interrupt support.
491 */
492void __init at91_gpio_irq_setup(void)
493{
David Brownelle83aff52008-01-04 18:30:24 +0100494 unsigned pioc, pin;
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100495 struct at91_gpio_chip *this, *prev;
Andrew Victorf2173832006-09-27 13:23:00 +0100496
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100497 for (pioc = 0, pin = PIN_BASE, this = gpio_chip, prev = NULL;
David Brownelle83aff52008-01-04 18:30:24 +0100498 pioc++ < gpio_banks;
499 prev = this, this++) {
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100500 unsigned id = this->bank->id;
SAN People73a59c12006-01-09 17:05:41 +0000501 unsigned i;
502
David Brownelle83aff52008-01-04 18:30:24 +0100503 __raw_writel(~0, this->regbase + PIO_IDR);
SAN People73a59c12006-01-09 17:05:41 +0000504
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100505 for (i = 0, pin = this->chip.base; i < 32; i++, pin++) {
Thomas Gleixner1475b852011-03-22 17:11:09 +0100506 irq_set_lockdep_class(pin, &gpio_lock_class);
David Brownell37aca702008-03-05 00:08:29 +0100507
Andrew Victor814138f2006-06-19 15:26:54 +0100508 /*
509 * Can use the "simple" and not "edge" handler since it's
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200510 * shorter, and the AIC handles interrupts sanely.
Andrew Victor814138f2006-06-19 15:26:54 +0100511 */
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100512 irq_set_chip_and_handler(pin, &gpio_irqchip,
513 handle_simple_irq);
SAN People73a59c12006-01-09 17:05:41 +0000514 set_irq_flags(pin, IRQF_VALID);
515 }
516
David Brownelle83aff52008-01-04 18:30:24 +0100517 /* 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.
520 */
521 if (prev && prev->next == this)
522 continue;
523
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100524 irq_set_chip_data(id, this);
525 irq_set_chained_handler(id, gpio_irq_handler);
SAN People73a59c12006-01-09 17:05:41 +0000526 }
Andrew Victorf2173832006-09-27 13:23:00 +0100527 pr_info("AT91: %d gpio irqs in %d banks\n", pin - PIN_BASE, gpio_banks);
528}
529
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100530/* gpiolib support */
531static int at91_gpiolib_direction_input(struct gpio_chip *chip,
532 unsigned offset)
533{
534 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
535 void __iomem *pio = at91_gpio->regbase;
536 unsigned mask = 1 << offset;
537
538 __raw_writel(mask, pio + PIO_ODR);
539 return 0;
540}
541
542static int at91_gpiolib_direction_output(struct gpio_chip *chip,
543 unsigned offset, int val)
544{
545 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
546 void __iomem *pio = at91_gpio->regbase;
547 unsigned mask = 1 << offset;
548
549 __raw_writel(mask, pio + (val ? PIO_SODR : PIO_CODR));
550 __raw_writel(mask, pio + PIO_OER);
551 return 0;
552}
553
554static int at91_gpiolib_get(struct gpio_chip *chip, unsigned offset)
555{
556 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
557 void __iomem *pio = at91_gpio->regbase;
558 unsigned mask = 1 << offset;
559 u32 pdsr;
560
561 pdsr = __raw_readl(pio + PIO_PDSR);
562 return (pdsr & mask) != 0;
563}
564
565static void at91_gpiolib_set(struct gpio_chip *chip, unsigned offset, int val)
566{
567 struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
568 void __iomem *pio = at91_gpio->regbase;
569 unsigned mask = 1 << offset;
570
571 __raw_writel(mask, pio + (val ? PIO_SODR : PIO_CODR));
572}
573
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100574static void at91_gpiolib_dbg_show(struct seq_file *s, struct gpio_chip *chip)
575{
576 int i;
577
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;
583
584 gpio_label = gpiochip_is_requested(chip, i);
585 if (gpio_label) {
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) ?
591 "set" : "clear");
592 else
593 seq_printf(s, "[periph %s]\n",
594 __raw_readl(pio + PIO_ABSR) &
595 mask ? "B" : "A");
596 }
597 }
598}
599
Andrew Victorf2173832006-09-27 13:23:00 +0100600/*
601 * Called from the processor-specific init to enable GPIO pin support.
602 */
603void __init at91_gpio_init(struct at91_gpio_bank *data, int nr_banks)
604{
David Brownelle83aff52008-01-04 18:30:24 +0100605 unsigned i;
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100606 struct at91_gpio_chip *at91_gpio, *last = NULL;
David Brownelle83aff52008-01-04 18:30:24 +0100607
Andrew Victorf2173832006-09-27 13:23:00 +0100608 BUG_ON(nr_banks > MAX_GPIO_BANKS);
609
Andrew Victorf2173832006-09-27 13:23:00 +0100610 gpio_banks = nr_banks;
David Brownelle83aff52008-01-04 18:30:24 +0100611
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100612 for (i = 0; i < nr_banks; i++) {
613 at91_gpio = &gpio_chip[i];
614
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;
David Brownelle83aff52008-01-04 18:30:24 +0100619
Andrew Victor2b768b62009-02-11 21:39:05 +0100620 /* enable PIO controller's clock */
Russell King97fb44e2009-03-13 21:44:51 +0000621 clk_enable(at91_gpio->bank->clock);
Andrew Victor2b768b62009-02-11 21:39:05 +0100622
David Brownelle83aff52008-01-04 18:30:24 +0100623 /* AT91SAM9263_ID_PIOCDE groups PIOC, PIOD, PIOE */
Ryan Mallonf373e8c2009-02-10 21:02:08 +0100624 if (last && last->bank->id == at91_gpio->bank->id)
625 last->next = at91_gpio;
626 last = at91_gpio;
627
628 gpiochip_add(&at91_gpio->chip);
David Brownelle83aff52008-01-04 18:30:24 +0100629 }
SAN People73a59c12006-01-09 17:05:41 +0000630}