Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/mach-sa1100/irq.c |
| 3 | * |
| 4 | * Copyright (C) 1999-2001 Nicolas Pitre |
| 5 | * |
| 6 | * Generic IRQ handling for the SA11x0, GPIO 11-27 IRQ demultiplexing. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | */ |
| 12 | #include <linux/init.h> |
| 13 | #include <linux/module.h> |
Thomas Gleixner | 119c641 | 2006-07-01 22:32:38 +0100 | [diff] [blame^] | 14 | #include <linux/interrupt.h> |
| 15 | #include <linux/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/ioport.h> |
| 17 | #include <linux/ptrace.h> |
| 18 | #include <linux/sysdev.h> |
| 19 | |
| 20 | #include <asm/hardware.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <asm/mach/irq.h> |
| 22 | |
| 23 | #include "generic.h" |
| 24 | |
| 25 | |
| 26 | /* |
| 27 | * SA1100 GPIO edge detection for IRQs: |
| 28 | * IRQs are generated on Falling-Edge, Rising-Edge, or both. |
| 29 | * Use this instead of directly setting GRER/GFER. |
| 30 | */ |
| 31 | static int GPIO_IRQ_rising_edge; |
| 32 | static int GPIO_IRQ_falling_edge; |
| 33 | static int GPIO_IRQ_mask = (1 << 11) - 1; |
| 34 | |
| 35 | /* |
| 36 | * To get the GPIO number from an IRQ number |
| 37 | */ |
| 38 | #define GPIO_11_27_IRQ(i) ((i) - 21) |
| 39 | #define GPIO11_27_MASK(irq) (1 << GPIO_11_27_IRQ(irq)) |
| 40 | |
| 41 | static int sa1100_gpio_type(unsigned int irq, unsigned int type) |
| 42 | { |
| 43 | unsigned int mask; |
| 44 | |
| 45 | if (irq <= 10) |
| 46 | mask = 1 << irq; |
| 47 | else |
| 48 | mask = GPIO11_27_MASK(irq); |
| 49 | |
| 50 | if (type == IRQT_PROBE) { |
| 51 | if ((GPIO_IRQ_rising_edge | GPIO_IRQ_falling_edge) & mask) |
| 52 | return 0; |
| 53 | type = __IRQT_RISEDGE | __IRQT_FALEDGE; |
| 54 | } |
| 55 | |
| 56 | if (type & __IRQT_RISEDGE) { |
| 57 | GPIO_IRQ_rising_edge |= mask; |
| 58 | } else |
| 59 | GPIO_IRQ_rising_edge &= ~mask; |
| 60 | if (type & __IRQT_FALEDGE) { |
| 61 | GPIO_IRQ_falling_edge |= mask; |
| 62 | } else |
| 63 | GPIO_IRQ_falling_edge &= ~mask; |
| 64 | |
| 65 | GRER = GPIO_IRQ_rising_edge & GPIO_IRQ_mask; |
| 66 | GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask; |
| 67 | |
| 68 | return 0; |
| 69 | } |
| 70 | |
| 71 | /* |
| 72 | * GPIO IRQs must be acknowledged. This is for IRQs from 0 to 10. |
| 73 | */ |
| 74 | static void sa1100_low_gpio_ack(unsigned int irq) |
| 75 | { |
| 76 | GEDR = (1 << irq); |
| 77 | } |
| 78 | |
| 79 | static void sa1100_low_gpio_mask(unsigned int irq) |
| 80 | { |
| 81 | ICMR &= ~(1 << irq); |
| 82 | } |
| 83 | |
| 84 | static void sa1100_low_gpio_unmask(unsigned int irq) |
| 85 | { |
| 86 | ICMR |= 1 << irq; |
| 87 | } |
| 88 | |
| 89 | static int sa1100_low_gpio_wake(unsigned int irq, unsigned int on) |
| 90 | { |
| 91 | if (on) |
| 92 | PWER |= 1 << irq; |
| 93 | else |
| 94 | PWER &= ~(1 << irq); |
| 95 | return 0; |
| 96 | } |
| 97 | |
| 98 | static struct irqchip sa1100_low_gpio_chip = { |
| 99 | .ack = sa1100_low_gpio_ack, |
| 100 | .mask = sa1100_low_gpio_mask, |
| 101 | .unmask = sa1100_low_gpio_unmask, |
Russell King | 7801907 | 2005-09-04 19:43:13 +0100 | [diff] [blame] | 102 | .set_type = sa1100_gpio_type, |
| 103 | .set_wake = sa1100_low_gpio_wake, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | }; |
| 105 | |
| 106 | /* |
| 107 | * IRQ11 (GPIO11 through 27) handler. We enter here with the |
| 108 | * irq_controller_lock held, and IRQs disabled. Decode the IRQ |
| 109 | * and call the handler. |
| 110 | */ |
| 111 | static void |
| 112 | sa1100_high_gpio_handler(unsigned int irq, struct irqdesc *desc, |
| 113 | struct pt_regs *regs) |
| 114 | { |
| 115 | unsigned int mask; |
| 116 | |
| 117 | mask = GEDR & 0xfffff800; |
| 118 | do { |
| 119 | /* |
| 120 | * clear down all currently active IRQ sources. |
| 121 | * We will be processing them all. |
| 122 | */ |
| 123 | GEDR = mask; |
| 124 | |
| 125 | irq = IRQ_GPIO11; |
| 126 | desc = irq_desc + irq; |
| 127 | mask >>= 11; |
| 128 | do { |
| 129 | if (mask & 1) |
Russell King | 664399e | 2005-09-04 19:45:00 +0100 | [diff] [blame] | 130 | desc_handle_irq(irq, desc, regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | mask >>= 1; |
| 132 | irq++; |
| 133 | desc++; |
| 134 | } while (mask); |
| 135 | |
| 136 | mask = GEDR & 0xfffff800; |
| 137 | } while (mask); |
| 138 | } |
| 139 | |
| 140 | /* |
| 141 | * Like GPIO0 to 10, GPIO11-27 IRQs need to be handled specially. |
| 142 | * In addition, the IRQs are all collected up into one bit in the |
| 143 | * interrupt controller registers. |
| 144 | */ |
| 145 | static void sa1100_high_gpio_ack(unsigned int irq) |
| 146 | { |
| 147 | unsigned int mask = GPIO11_27_MASK(irq); |
| 148 | |
| 149 | GEDR = mask; |
| 150 | } |
| 151 | |
| 152 | static void sa1100_high_gpio_mask(unsigned int irq) |
| 153 | { |
| 154 | unsigned int mask = GPIO11_27_MASK(irq); |
| 155 | |
| 156 | GPIO_IRQ_mask &= ~mask; |
| 157 | |
| 158 | GRER &= ~mask; |
| 159 | GFER &= ~mask; |
| 160 | } |
| 161 | |
| 162 | static void sa1100_high_gpio_unmask(unsigned int irq) |
| 163 | { |
| 164 | unsigned int mask = GPIO11_27_MASK(irq); |
| 165 | |
| 166 | GPIO_IRQ_mask |= mask; |
| 167 | |
| 168 | GRER = GPIO_IRQ_rising_edge & GPIO_IRQ_mask; |
| 169 | GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask; |
| 170 | } |
| 171 | |
| 172 | static int sa1100_high_gpio_wake(unsigned int irq, unsigned int on) |
| 173 | { |
| 174 | if (on) |
| 175 | PWER |= GPIO11_27_MASK(irq); |
| 176 | else |
| 177 | PWER &= ~GPIO11_27_MASK(irq); |
| 178 | return 0; |
| 179 | } |
| 180 | |
| 181 | static struct irqchip sa1100_high_gpio_chip = { |
| 182 | .ack = sa1100_high_gpio_ack, |
| 183 | .mask = sa1100_high_gpio_mask, |
| 184 | .unmask = sa1100_high_gpio_unmask, |
Russell King | 7801907 | 2005-09-04 19:43:13 +0100 | [diff] [blame] | 185 | .set_type = sa1100_gpio_type, |
| 186 | .set_wake = sa1100_high_gpio_wake, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | }; |
| 188 | |
| 189 | /* |
| 190 | * We don't need to ACK IRQs on the SA1100 unless they're GPIOs |
| 191 | * this is for internal IRQs i.e. from 11 to 31. |
| 192 | */ |
| 193 | static void sa1100_mask_irq(unsigned int irq) |
| 194 | { |
| 195 | ICMR &= ~(1 << irq); |
| 196 | } |
| 197 | |
| 198 | static void sa1100_unmask_irq(unsigned int irq) |
| 199 | { |
| 200 | ICMR |= (1 << irq); |
| 201 | } |
| 202 | |
Russell King | 19ca5d2 | 2006-05-06 11:26:30 +0100 | [diff] [blame] | 203 | /* |
| 204 | * Apart form GPIOs, only the RTC alarm can be a wakeup event. |
| 205 | */ |
| 206 | static int sa1100_set_wake(unsigned int irq, unsigned int on) |
| 207 | { |
| 208 | if (irq == IRQ_RTCAlrm) { |
| 209 | if (on) |
| 210 | PWER |= PWER_RTC; |
| 211 | else |
| 212 | PWER &= ~PWER_RTC; |
| 213 | return 0; |
| 214 | } |
| 215 | return -EINVAL; |
| 216 | } |
| 217 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | static struct irqchip sa1100_normal_chip = { |
| 219 | .ack = sa1100_mask_irq, |
| 220 | .mask = sa1100_mask_irq, |
| 221 | .unmask = sa1100_unmask_irq, |
Russell King | 19ca5d2 | 2006-05-06 11:26:30 +0100 | [diff] [blame] | 222 | .set_wake = sa1100_set_wake, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | }; |
| 224 | |
| 225 | static struct resource irq_resource = { |
| 226 | .name = "irqs", |
| 227 | .start = 0x90050000, |
| 228 | .end = 0x9005ffff, |
| 229 | }; |
| 230 | |
| 231 | static struct sa1100irq_state { |
| 232 | unsigned int saved; |
| 233 | unsigned int icmr; |
| 234 | unsigned int iclr; |
| 235 | unsigned int iccr; |
| 236 | } sa1100irq_state; |
| 237 | |
| 238 | static int sa1100irq_suspend(struct sys_device *dev, pm_message_t state) |
| 239 | { |
| 240 | struct sa1100irq_state *st = &sa1100irq_state; |
| 241 | |
| 242 | st->saved = 1; |
| 243 | st->icmr = ICMR; |
| 244 | st->iclr = ICLR; |
| 245 | st->iccr = ICCR; |
| 246 | |
| 247 | /* |
| 248 | * Disable all GPIO-based interrupts. |
| 249 | */ |
| 250 | ICMR &= ~(IC_GPIO11_27|IC_GPIO10|IC_GPIO9|IC_GPIO8|IC_GPIO7| |
| 251 | IC_GPIO6|IC_GPIO5|IC_GPIO4|IC_GPIO3|IC_GPIO2| |
| 252 | IC_GPIO1|IC_GPIO0); |
| 253 | |
| 254 | /* |
| 255 | * Set the appropriate edges for wakeup. |
| 256 | */ |
| 257 | GRER = PWER & GPIO_IRQ_rising_edge; |
| 258 | GFER = PWER & GPIO_IRQ_falling_edge; |
| 259 | |
| 260 | /* |
| 261 | * Clear any pending GPIO interrupts. |
| 262 | */ |
| 263 | GEDR = GEDR; |
| 264 | |
| 265 | return 0; |
| 266 | } |
| 267 | |
| 268 | static int sa1100irq_resume(struct sys_device *dev) |
| 269 | { |
| 270 | struct sa1100irq_state *st = &sa1100irq_state; |
| 271 | |
| 272 | if (st->saved) { |
| 273 | ICCR = st->iccr; |
| 274 | ICLR = st->iclr; |
| 275 | |
| 276 | GRER = GPIO_IRQ_rising_edge & GPIO_IRQ_mask; |
| 277 | GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask; |
| 278 | |
| 279 | ICMR = st->icmr; |
| 280 | } |
| 281 | return 0; |
| 282 | } |
| 283 | |
| 284 | static struct sysdev_class sa1100irq_sysclass = { |
| 285 | set_kset_name("sa11x0-irq"), |
| 286 | .suspend = sa1100irq_suspend, |
| 287 | .resume = sa1100irq_resume, |
| 288 | }; |
| 289 | |
| 290 | static struct sys_device sa1100irq_device = { |
| 291 | .id = 0, |
| 292 | .cls = &sa1100irq_sysclass, |
| 293 | }; |
| 294 | |
| 295 | static int __init sa1100irq_init_devicefs(void) |
| 296 | { |
| 297 | sysdev_class_register(&sa1100irq_sysclass); |
| 298 | return sysdev_register(&sa1100irq_device); |
| 299 | } |
| 300 | |
| 301 | device_initcall(sa1100irq_init_devicefs); |
| 302 | |
| 303 | void __init sa1100_init_irq(void) |
| 304 | { |
| 305 | unsigned int irq; |
| 306 | |
| 307 | request_resource(&iomem_resource, &irq_resource); |
| 308 | |
| 309 | /* disable all IRQs */ |
| 310 | ICMR = 0; |
| 311 | |
| 312 | /* all IRQs are IRQ, not FIQ */ |
| 313 | ICLR = 0; |
| 314 | |
| 315 | /* clear all GPIO edge detects */ |
| 316 | GFER = 0; |
| 317 | GRER = 0; |
| 318 | GEDR = -1; |
| 319 | |
| 320 | /* |
| 321 | * Whatever the doc says, this has to be set for the wait-on-irq |
| 322 | * instruction to work... on a SA1100 rev 9 at least. |
| 323 | */ |
| 324 | ICCR = 1; |
| 325 | |
| 326 | for (irq = 0; irq <= 10; irq++) { |
| 327 | set_irq_chip(irq, &sa1100_low_gpio_chip); |
| 328 | set_irq_handler(irq, do_edge_IRQ); |
| 329 | set_irq_flags(irq, IRQF_VALID | IRQF_PROBE); |
| 330 | } |
| 331 | |
| 332 | for (irq = 12; irq <= 31; irq++) { |
| 333 | set_irq_chip(irq, &sa1100_normal_chip); |
| 334 | set_irq_handler(irq, do_level_IRQ); |
| 335 | set_irq_flags(irq, IRQF_VALID); |
| 336 | } |
| 337 | |
| 338 | for (irq = 32; irq <= 48; irq++) { |
| 339 | set_irq_chip(irq, &sa1100_high_gpio_chip); |
| 340 | set_irq_handler(irq, do_edge_IRQ); |
| 341 | set_irq_flags(irq, IRQF_VALID | IRQF_PROBE); |
| 342 | } |
| 343 | |
| 344 | /* |
| 345 | * Install handler for GPIO 11-27 edge detect interrupts |
| 346 | */ |
| 347 | set_irq_chip(IRQ_GPIO11_27, &sa1100_normal_chip); |
| 348 | set_irq_chained_handler(IRQ_GPIO11_27, sa1100_high_gpio_handler); |
| 349 | } |