SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 1 | /* |
Andrew Victor | 9d04126 | 2007-02-05 11:42:07 +0100 | [diff] [blame] | 2 | * linux/arch/arm/mach-at91/gpio.c |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 3 | * |
| 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 Victor | f217383 | 2006-09-27 13:23:00 +0100 | [diff] [blame] | 12 | #include <linux/clk.h> |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 13 | #include <linux/errno.h> |
Thomas Gleixner | 07d265d | 2006-07-01 23:01:50 +0100 | [diff] [blame] | 14 | #include <linux/interrupt.h> |
| 15 | #include <linux/irq.h> |
Andrew Victor | b66545e | 2007-11-23 16:09:10 +0100 | [diff] [blame] | 16 | #include <linux/debugfs.h> |
| 17 | #include <linux/seq_file.h> |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 18 | #include <linux/kernel.h> |
| 19 | #include <linux/list.h> |
| 20 | #include <linux/module.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 21 | #include <linux/io.h> |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 22 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 23 | #include <mach/hardware.h> |
| 24 | #include <mach/at91_pio.h> |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 25 | |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 26 | #include <asm/gpio.h> |
| 27 | |
Andrew Victor | f217383 | 2006-09-27 13:23:00 +0100 | [diff] [blame] | 28 | #include "generic.h" |
| 29 | |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 30 | struct 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 Victor | f217383 | 2006-09-27 13:23:00 +0100 | [diff] [blame] | 36 | |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 37 | #define to_at91_gpio_chip(c) container_of(c, struct at91_gpio_chip, chip) |
| 38 | |
| 39 | static void at91_gpiolib_dbg_show(struct seq_file *s, struct gpio_chip *chip); |
| 40 | static void at91_gpiolib_set(struct gpio_chip *chip, unsigned offset, int val); |
| 41 | static int at91_gpiolib_get(struct gpio_chip *chip, unsigned offset); |
| 42 | static int at91_gpiolib_direction_output(struct gpio_chip *chip, |
| 43 | unsigned offset, int val); |
| 44 | static int at91_gpiolib_direction_input(struct gpio_chip *chip, |
| 45 | unsigned offset); |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 46 | |
| 47 | #define AT91_GPIO_CHIP(name, base_gpio, nr_gpio) \ |
| 48 | { \ |
| 49 | .chip = { \ |
| 50 | .label = name, \ |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 51 | .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 | |
| 61 | static 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 Victor | f217383 | 2006-09-27 13:23:00 +0100 | [diff] [blame] | 69 | static int gpio_banks; |
| 70 | |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 71 | static inline void __iomem *pin_to_controller(unsigned pin) |
| 72 | { |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 73 | pin -= PIN_BASE; |
| 74 | pin /= 32; |
Andrew Victor | f217383 | 2006-09-27 13:23:00 +0100 | [diff] [blame] | 75 | if (likely(pin < gpio_banks)) |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 76 | return gpio_chip[pin].regbase; |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 77 | |
| 78 | return NULL; |
| 79 | } |
| 80 | |
| 81 | static 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 Brownell | a31c4ee | 2007-02-12 00:53:13 -0800 | [diff] [blame] | 105 | * mux the pin to the "GPIO" peripheral role. |
| 106 | */ |
| 107 | int __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 | } |
| 119 | EXPORT_SYMBOL(at91_set_GPIO_periph); |
| 120 | |
| 121 | |
| 122 | /* |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 123 | * mux the pin to the "A" internal peripheral role. |
| 124 | */ |
| 125 | int __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 | } |
| 139 | EXPORT_SYMBOL(at91_set_A_periph); |
| 140 | |
| 141 | |
| 142 | /* |
| 143 | * mux the pin to the "B" internal peripheral role. |
| 144 | */ |
| 145 | int __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 | } |
| 159 | EXPORT_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 | */ |
| 166 | int __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 | } |
| 180 | EXPORT_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 | */ |
| 187 | int __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 | } |
| 202 | EXPORT_SYMBOL(at91_set_gpio_output); |
| 203 | |
| 204 | |
| 205 | /* |
| 206 | * enable/disable the glitch filter; mostly used with IRQ handling. |
| 207 | */ |
| 208 | int __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 | } |
| 218 | EXPORT_SYMBOL(at91_set_deglitch); |
| 219 | |
Andrew Victor | df666b9 | 2006-02-22 21:23:35 +0000 | [diff] [blame] | 220 | /* |
| 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 | */ |
| 224 | int __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 | } |
| 235 | EXPORT_SYMBOL(at91_set_multi_drive); |
| 236 | |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 237 | /* |
| 238 | * assuming the pin is muxed as a gpio output, set its value. |
| 239 | */ |
| 240 | int 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 | } |
| 250 | EXPORT_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 | */ |
| 256 | int 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 | } |
| 267 | EXPORT_SYMBOL(at91_get_gpio_value); |
| 268 | |
| 269 | /*--------------------------------------------------------------------------*/ |
| 270 | |
Andrew Victor | 814138f | 2006-06-19 15:26:54 +0100 | [diff] [blame] | 271 | #ifdef CONFIG_PM |
| 272 | |
Andrew Victor | f217383 | 2006-09-27 13:23:00 +0100 | [diff] [blame] | 273 | static u32 wakeups[MAX_GPIO_BANKS]; |
| 274 | static u32 backups[MAX_GPIO_BANKS]; |
Andrew Victor | 814138f | 2006-06-19 15:26:54 +0100 | [diff] [blame] | 275 | |
Lennert Buytenhek | da0f940 | 2010-11-29 10:26:19 +0100 | [diff] [blame] | 276 | static int gpio_irq_set_wake(struct irq_data *d, unsigned state) |
Andrew Victor | 814138f | 2006-06-19 15:26:54 +0100 | [diff] [blame] | 277 | { |
Lennert Buytenhek | da0f940 | 2010-11-29 10:26:19 +0100 | [diff] [blame] | 278 | unsigned mask = pin_to_mask(d->irq); |
| 279 | unsigned bank = (d->irq - PIN_BASE) / 32; |
Andrew Victor | 814138f | 2006-06-19 15:26:54 +0100 | [diff] [blame] | 280 | |
Andrew Victor | 3ea163e | 2007-01-09 13:47:29 +0100 | [diff] [blame] | 281 | if (unlikely(bank >= MAX_GPIO_BANKS)) |
Andrew Victor | 814138f | 2006-06-19 15:26:54 +0100 | [diff] [blame] | 282 | return -EINVAL; |
| 283 | |
| 284 | if (state) |
Andrew Victor | 3ea163e | 2007-01-09 13:47:29 +0100 | [diff] [blame] | 285 | wakeups[bank] |= mask; |
Andrew Victor | 814138f | 2006-06-19 15:26:54 +0100 | [diff] [blame] | 286 | else |
Andrew Victor | 3ea163e | 2007-01-09 13:47:29 +0100 | [diff] [blame] | 287 | wakeups[bank] &= ~mask; |
| 288 | |
Thomas Gleixner | 6845664a | 2011-03-24 13:25:22 +0100 | [diff] [blame] | 289 | irq_set_irq_wake(gpio_chip[bank].bank->id, state); |
Andrew Victor | 814138f | 2006-06-19 15:26:54 +0100 | [diff] [blame] | 290 | |
| 291 | return 0; |
| 292 | } |
| 293 | |
| 294 | void at91_gpio_suspend(void) |
| 295 | { |
| 296 | int i; |
| 297 | |
Andrew Victor | f217383 | 2006-09-27 13:23:00 +0100 | [diff] [blame] | 298 | for (i = 0; i < gpio_banks; i++) { |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 299 | void __iomem *pio = gpio_chip[i].regbase; |
Andrew Victor | 814138f | 2006-06-19 15:26:54 +0100 | [diff] [blame] | 300 | |
David Brownell | e83aff5 | 2008-01-04 18:30:24 +0100 | [diff] [blame] | 301 | backups[i] = __raw_readl(pio + PIO_IMR); |
| 302 | __raw_writel(backups[i], pio + PIO_IDR); |
| 303 | __raw_writel(wakeups[i], pio + PIO_IER); |
Andrew Victor | 814138f | 2006-06-19 15:26:54 +0100 | [diff] [blame] | 304 | |
Andrew Victor | 3ea163e | 2007-01-09 13:47:29 +0100 | [diff] [blame] | 305 | if (!wakeups[i]) |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 306 | clk_disable(gpio_chip[i].bank->clock); |
Andrew Victor | 3ea163e | 2007-01-09 13:47:29 +0100 | [diff] [blame] | 307 | else { |
Andrew Victor | 814138f | 2006-06-19 15:26:54 +0100 | [diff] [blame] | 308 | #ifdef CONFIG_PM_DEBUG |
Andrew Victor | 3ea163e | 2007-01-09 13:47:29 +0100 | [diff] [blame] | 309 | printk(KERN_DEBUG "GPIO-%c may wake for %08x\n", 'A'+i, wakeups[i]); |
Andrew Victor | 814138f | 2006-06-19 15:26:54 +0100 | [diff] [blame] | 310 | #endif |
| 311 | } |
| 312 | } |
| 313 | } |
| 314 | |
| 315 | void at91_gpio_resume(void) |
| 316 | { |
| 317 | int i; |
| 318 | |
Andrew Victor | f217383 | 2006-09-27 13:23:00 +0100 | [diff] [blame] | 319 | for (i = 0; i < gpio_banks; i++) { |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 320 | void __iomem *pio = gpio_chip[i].regbase; |
Andrew Victor | 814138f | 2006-06-19 15:26:54 +0100 | [diff] [blame] | 321 | |
Andrew Victor | 3ea163e | 2007-01-09 13:47:29 +0100 | [diff] [blame] | 322 | if (!wakeups[i]) |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 323 | clk_enable(gpio_chip[i].bank->clock); |
Andrew Victor | 3ea163e | 2007-01-09 13:47:29 +0100 | [diff] [blame] | 324 | |
David Brownell | e83aff5 | 2008-01-04 18:30:24 +0100 | [diff] [blame] | 325 | __raw_writel(wakeups[i], pio + PIO_IDR); |
| 326 | __raw_writel(backups[i], pio + PIO_IER); |
Andrew Victor | f217383 | 2006-09-27 13:23:00 +0100 | [diff] [blame] | 327 | } |
Andrew Victor | 814138f | 2006-06-19 15:26:54 +0100 | [diff] [blame] | 328 | } |
| 329 | |
| 330 | #else |
| 331 | #define gpio_irq_set_wake NULL |
| 332 | #endif |
| 333 | |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 334 | |
| 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 Buytenhek | da0f940 | 2010-11-29 10:26:19 +0100 | [diff] [blame] | 346 | static void gpio_irq_mask(struct irq_data *d) |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 347 | { |
Lennert Buytenhek | da0f940 | 2010-11-29 10:26:19 +0100 | [diff] [blame] | 348 | void __iomem *pio = pin_to_controller(d->irq); |
| 349 | unsigned mask = pin_to_mask(d->irq); |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 350 | |
| 351 | if (pio) |
| 352 | __raw_writel(mask, pio + PIO_IDR); |
| 353 | } |
| 354 | |
Lennert Buytenhek | da0f940 | 2010-11-29 10:26:19 +0100 | [diff] [blame] | 355 | static void gpio_irq_unmask(struct irq_data *d) |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 356 | { |
Lennert Buytenhek | da0f940 | 2010-11-29 10:26:19 +0100 | [diff] [blame] | 357 | void __iomem *pio = pin_to_controller(d->irq); |
| 358 | unsigned mask = pin_to_mask(d->irq); |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 359 | |
| 360 | if (pio) |
| 361 | __raw_writel(mask, pio + PIO_IER); |
| 362 | } |
| 363 | |
Lennert Buytenhek | da0f940 | 2010-11-29 10:26:19 +0100 | [diff] [blame] | 364 | static int gpio_irq_type(struct irq_data *d, unsigned type) |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 365 | { |
David Brownell | e83aff5 | 2008-01-04 18:30:24 +0100 | [diff] [blame] | 366 | switch (type) { |
| 367 | case IRQ_TYPE_NONE: |
| 368 | case IRQ_TYPE_EDGE_BOTH: |
| 369 | return 0; |
| 370 | default: |
| 371 | return -EINVAL; |
| 372 | } |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 373 | } |
| 374 | |
David Brownell | 38c677c | 2006-08-01 22:26:25 +0100 | [diff] [blame] | 375 | static struct irq_chip gpio_irqchip = { |
| 376 | .name = "GPIO", |
Thomas Gleixner | ac93cdb | 2011-03-24 12:48:18 +0100 | [diff] [blame] | 377 | .irq_disable = gpio_irq_mask, |
Lennert Buytenhek | da0f940 | 2010-11-29 10:26:19 +0100 | [diff] [blame] | 378 | .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 People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 382 | }; |
| 383 | |
Russell King | 10dd5ce | 2006-11-23 11:41:32 +0000 | [diff] [blame] | 384 | static void gpio_irq_handler(unsigned irq, struct irq_desc *desc) |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 385 | { |
| 386 | unsigned pin; |
Thomas Gleixner | ac93cdb | 2011-03-24 12:48:18 +0100 | [diff] [blame] | 387 | 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 People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 391 | u32 isr; |
| 392 | |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 393 | /* temporarily mask (level sensitive) parent IRQ */ |
Thomas Gleixner | ac93cdb | 2011-03-24 12:48:18 +0100 | [diff] [blame] | 394 | chip->irq_ack(idata); |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 395 | for (;;) { |
David Brownell | e83aff5 | 2008-01-04 18:30:24 +0100 | [diff] [blame] | 396 | /* 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 People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 400 | isr = __raw_readl(pio + PIO_ISR) & __raw_readl(pio + PIO_IMR); |
David Brownell | e83aff5 | 2008-01-04 18:30:24 +0100 | [diff] [blame] | 401 | if (!isr) { |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 402 | if (!at91_gpio->next) |
David Brownell | e83aff5 | 2008-01-04 18:30:24 +0100 | [diff] [blame] | 403 | break; |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 404 | at91_gpio = at91_gpio->next; |
| 405 | pio = at91_gpio->regbase; |
David Brownell | e83aff5 | 2008-01-04 18:30:24 +0100 | [diff] [blame] | 406 | continue; |
| 407 | } |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 408 | |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 409 | pin = at91_gpio->chip.base; |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 410 | |
| 411 | while (isr) { |
Thomas Gleixner | ac93cdb | 2011-03-24 12:48:18 +0100 | [diff] [blame] | 412 | if (isr & 1) |
| 413 | generic_handle_irq(pin); |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 414 | pin++; |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 415 | isr >>= 1; |
| 416 | } |
| 417 | } |
Thomas Gleixner | ac93cdb | 2011-03-24 12:48:18 +0100 | [diff] [blame] | 418 | chip->irq_unmask(idata); |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 419 | /* now it may re-trigger */ |
| 420 | } |
| 421 | |
Andrew Victor | f217383 | 2006-09-27 13:23:00 +0100 | [diff] [blame] | 422 | /*--------------------------------------------------------------------------*/ |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 423 | |
Andrew Victor | b66545e | 2007-11-23 16:09:10 +0100 | [diff] [blame] | 424 | #ifdef CONFIG_DEBUG_FS |
| 425 | |
| 426 | static 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 | |
| 460 | static int at91_gpio_open(struct inode *inode, struct file *file) |
| 461 | { |
| 462 | return single_open(file, at91_gpio_show, NULL); |
| 463 | } |
| 464 | |
| 465 | static 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 | |
| 472 | static 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 | } |
| 478 | postcore_initcall(at91_gpio_debugfs_init); |
| 479 | |
| 480 | #endif |
| 481 | |
| 482 | /*--------------------------------------------------------------------------*/ |
| 483 | |
Andrew Victor | 2b768b6 | 2009-02-11 21:39:05 +0100 | [diff] [blame] | 484 | /* |
| 485 | * This lock class tells lockdep that GPIO irqs are in a different |
David Brownell | 37aca70 | 2008-03-05 00:08:29 +0100 | [diff] [blame] | 486 | * category than their parents, so it won't report false recursion. |
| 487 | */ |
| 488 | static struct lock_class_key gpio_lock_class; |
| 489 | |
Andrew Victor | f217383 | 2006-09-27 13:23:00 +0100 | [diff] [blame] | 490 | /* |
| 491 | * Called from the processor-specific init to enable GPIO interrupt support. |
| 492 | */ |
| 493 | void __init at91_gpio_irq_setup(void) |
| 494 | { |
David Brownell | e83aff5 | 2008-01-04 18:30:24 +0100 | [diff] [blame] | 495 | unsigned pioc, pin; |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 496 | struct at91_gpio_chip *this, *prev; |
Andrew Victor | f217383 | 2006-09-27 13:23:00 +0100 | [diff] [blame] | 497 | |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 498 | for (pioc = 0, pin = PIN_BASE, this = gpio_chip, prev = NULL; |
David Brownell | e83aff5 | 2008-01-04 18:30:24 +0100 | [diff] [blame] | 499 | pioc++ < gpio_banks; |
| 500 | prev = this, this++) { |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 501 | unsigned id = this->bank->id; |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 502 | unsigned i; |
| 503 | |
David Brownell | e83aff5 | 2008-01-04 18:30:24 +0100 | [diff] [blame] | 504 | __raw_writel(~0, this->regbase + PIO_IDR); |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 505 | |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 506 | for (i = 0, pin = this->chip.base; i < 32; i++, pin++) { |
Thomas Gleixner | 1475b85 | 2011-03-22 17:11:09 +0100 | [diff] [blame] | 507 | irq_set_lockdep_class(pin, &gpio_lock_class); |
David Brownell | 37aca70 | 2008-03-05 00:08:29 +0100 | [diff] [blame] | 508 | |
Andrew Victor | 814138f | 2006-06-19 15:26:54 +0100 | [diff] [blame] | 509 | /* |
| 510 | * Can use the "simple" and not "edge" handler since it's |
Robert P. J. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 511 | * shorter, and the AIC handles interrupts sanely. |
Andrew Victor | 814138f | 2006-06-19 15:26:54 +0100 | [diff] [blame] | 512 | */ |
Thomas Gleixner | f38c02f | 2011-03-24 13:35:09 +0100 | [diff] [blame] | 513 | irq_set_chip_and_handler(pin, &gpio_irqchip, |
| 514 | handle_simple_irq); |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 515 | set_irq_flags(pin, IRQF_VALID); |
| 516 | } |
| 517 | |
David Brownell | e83aff5 | 2008-01-04 18:30:24 +0100 | [diff] [blame] | 518 | /* 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 Gleixner | 6845664a | 2011-03-24 13:25:22 +0100 | [diff] [blame] | 525 | irq_set_chip_data(id, this); |
| 526 | irq_set_chained_handler(id, gpio_irq_handler); |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 527 | } |
Andrew Victor | f217383 | 2006-09-27 13:23:00 +0100 | [diff] [blame] | 528 | pr_info("AT91: %d gpio irqs in %d banks\n", pin - PIN_BASE, gpio_banks); |
| 529 | } |
| 530 | |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 531 | /* gpiolib support */ |
| 532 | static 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 | |
| 543 | static 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 | |
| 555 | static 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 | |
| 566 | static 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 Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 575 | static 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 Victor | f217383 | 2006-09-27 13:23:00 +0100 | [diff] [blame] | 601 | /* |
| 602 | * Called from the processor-specific init to enable GPIO pin support. |
| 603 | */ |
| 604 | void __init at91_gpio_init(struct at91_gpio_bank *data, int nr_banks) |
| 605 | { |
David Brownell | e83aff5 | 2008-01-04 18:30:24 +0100 | [diff] [blame] | 606 | unsigned i; |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 607 | struct at91_gpio_chip *at91_gpio, *last = NULL; |
David Brownell | e83aff5 | 2008-01-04 18:30:24 +0100 | [diff] [blame] | 608 | |
Andrew Victor | f217383 | 2006-09-27 13:23:00 +0100 | [diff] [blame] | 609 | BUG_ON(nr_banks > MAX_GPIO_BANKS); |
| 610 | |
Andrew Victor | f217383 | 2006-09-27 13:23:00 +0100 | [diff] [blame] | 611 | gpio_banks = nr_banks; |
David Brownell | e83aff5 | 2008-01-04 18:30:24 +0100 | [diff] [blame] | 612 | |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 613 | 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 Brownell | e83aff5 | 2008-01-04 18:30:24 +0100 | [diff] [blame] | 620 | |
Andrew Victor | 2b768b6 | 2009-02-11 21:39:05 +0100 | [diff] [blame] | 621 | /* enable PIO controller's clock */ |
Russell King | 97fb44e | 2009-03-13 21:44:51 +0000 | [diff] [blame] | 622 | clk_enable(at91_gpio->bank->clock); |
Andrew Victor | 2b768b6 | 2009-02-11 21:39:05 +0100 | [diff] [blame] | 623 | |
David Brownell | e83aff5 | 2008-01-04 18:30:24 +0100 | [diff] [blame] | 624 | /* AT91SAM9263_ID_PIOCDE groups PIOC, PIOD, PIOE */ |
Ryan Mallon | f373e8c | 2009-02-10 21:02:08 +0100 | [diff] [blame] | 625 | 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 Brownell | e83aff5 | 2008-01-04 18:30:24 +0100 | [diff] [blame] | 630 | } |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 631 | } |