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> |
Russell King | 3169663 | 2012-06-06 11:42:36 +0100 | [diff] [blame] | 15 | #include <linux/io.h> |
Thomas Gleixner | 119c641 | 2006-07-01 22:32:38 +0100 | [diff] [blame] | 16 | #include <linux/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/ioport.h> |
Rafael J. Wysocki | 9053398 | 2011-04-22 22:03:03 +0200 | [diff] [blame] | 18 | #include <linux/syscore_ops.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 20 | #include <mach/hardware.h> |
Rob Herring | f314f33 | 2012-02-24 00:06:51 +0100 | [diff] [blame] | 21 | #include <mach/irqs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <asm/mach/irq.h> |
Dmitry Eremin-Solenikov | affcab3 | 2014-11-28 15:55:16 +0100 | [diff] [blame^] | 23 | #include <asm/exception.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | #include "generic.h" |
| 26 | |
| 27 | |
| 28 | /* |
| 29 | * SA1100 GPIO edge detection for IRQs: |
| 30 | * IRQs are generated on Falling-Edge, Rising-Edge, or both. |
| 31 | * Use this instead of directly setting GRER/GFER. |
| 32 | */ |
| 33 | static int GPIO_IRQ_rising_edge; |
| 34 | static int GPIO_IRQ_falling_edge; |
| 35 | static int GPIO_IRQ_mask = (1 << 11) - 1; |
| 36 | |
| 37 | /* |
| 38 | * To get the GPIO number from an IRQ number |
| 39 | */ |
| 40 | #define GPIO_11_27_IRQ(i) ((i) - 21) |
| 41 | #define GPIO11_27_MASK(irq) (1 << GPIO_11_27_IRQ(irq)) |
| 42 | |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 43 | static int sa1100_gpio_type(struct irq_data *d, unsigned int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | { |
| 45 | unsigned int mask; |
| 46 | |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 47 | if (d->irq <= 10) |
| 48 | mask = 1 << d->irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | else |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 50 | mask = GPIO11_27_MASK(d->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 52 | if (type == IRQ_TYPE_PROBE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | if ((GPIO_IRQ_rising_edge | GPIO_IRQ_falling_edge) & mask) |
| 54 | return 0; |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 55 | type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | } |
| 57 | |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 58 | if (type & IRQ_TYPE_EDGE_RISING) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | GPIO_IRQ_rising_edge |= mask; |
| 60 | } else |
| 61 | GPIO_IRQ_rising_edge &= ~mask; |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 62 | if (type & IRQ_TYPE_EDGE_FALLING) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | GPIO_IRQ_falling_edge |= mask; |
| 64 | } else |
| 65 | GPIO_IRQ_falling_edge &= ~mask; |
| 66 | |
| 67 | GRER = GPIO_IRQ_rising_edge & GPIO_IRQ_mask; |
| 68 | GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask; |
| 69 | |
| 70 | return 0; |
| 71 | } |
| 72 | |
| 73 | /* |
| 74 | * GPIO IRQs must be acknowledged. This is for IRQs from 0 to 10. |
| 75 | */ |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 76 | static void sa1100_low_gpio_ack(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | { |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 78 | GEDR = (1 << d->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | } |
| 80 | |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 81 | static void sa1100_low_gpio_mask(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | { |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 83 | ICMR &= ~(1 << d->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | } |
| 85 | |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 86 | static void sa1100_low_gpio_unmask(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | { |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 88 | ICMR |= 1 << d->irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | } |
| 90 | |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 91 | static int sa1100_low_gpio_wake(struct irq_data *d, unsigned int on) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | { |
| 93 | if (on) |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 94 | PWER |= 1 << d->irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | else |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 96 | PWER &= ~(1 << d->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | return 0; |
| 98 | } |
| 99 | |
David Brownell | 38c677c | 2006-08-01 22:26:25 +0100 | [diff] [blame] | 100 | static struct irq_chip sa1100_low_gpio_chip = { |
| 101 | .name = "GPIO-l", |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 102 | .irq_ack = sa1100_low_gpio_ack, |
| 103 | .irq_mask = sa1100_low_gpio_mask, |
| 104 | .irq_unmask = sa1100_low_gpio_unmask, |
| 105 | .irq_set_type = sa1100_gpio_type, |
| 106 | .irq_set_wake = sa1100_low_gpio_wake, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | }; |
| 108 | |
| 109 | /* |
| 110 | * IRQ11 (GPIO11 through 27) handler. We enter here with the |
| 111 | * irq_controller_lock held, and IRQs disabled. Decode the IRQ |
| 112 | * and call the handler. |
| 113 | */ |
| 114 | static void |
Russell King | 10dd5ce | 2006-11-23 11:41:32 +0000 | [diff] [blame] | 115 | sa1100_high_gpio_handler(unsigned int irq, struct irq_desc *desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | { |
| 117 | unsigned int mask; |
| 118 | |
| 119 | mask = GEDR & 0xfffff800; |
| 120 | do { |
| 121 | /* |
| 122 | * clear down all currently active IRQ sources. |
| 123 | * We will be processing them all. |
| 124 | */ |
| 125 | GEDR = mask; |
| 126 | |
| 127 | irq = IRQ_GPIO11; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | mask >>= 11; |
| 129 | do { |
| 130 | if (mask & 1) |
Dmitry Baryshkov | d8aa025 | 2008-10-09 13:36:24 +0100 | [diff] [blame] | 131 | generic_handle_irq(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | mask >>= 1; |
| 133 | irq++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 145 | static void sa1100_high_gpio_ack(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | { |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 147 | unsigned int mask = GPIO11_27_MASK(d->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | |
| 149 | GEDR = mask; |
| 150 | } |
| 151 | |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 152 | static void sa1100_high_gpio_mask(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | { |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 154 | unsigned int mask = GPIO11_27_MASK(d->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
| 156 | GPIO_IRQ_mask &= ~mask; |
| 157 | |
| 158 | GRER &= ~mask; |
| 159 | GFER &= ~mask; |
| 160 | } |
| 161 | |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 162 | static void sa1100_high_gpio_unmask(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | { |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 164 | unsigned int mask = GPIO11_27_MASK(d->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 172 | static int sa1100_high_gpio_wake(struct irq_data *d, unsigned int on) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | { |
| 174 | if (on) |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 175 | PWER |= GPIO11_27_MASK(d->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | else |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 177 | PWER &= ~GPIO11_27_MASK(d->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | return 0; |
| 179 | } |
| 180 | |
David Brownell | 38c677c | 2006-08-01 22:26:25 +0100 | [diff] [blame] | 181 | static struct irq_chip sa1100_high_gpio_chip = { |
| 182 | .name = "GPIO-h", |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 183 | .irq_ack = sa1100_high_gpio_ack, |
| 184 | .irq_mask = sa1100_high_gpio_mask, |
| 185 | .irq_unmask = sa1100_high_gpio_unmask, |
| 186 | .irq_set_type = sa1100_gpio_type, |
| 187 | .irq_set_wake = sa1100_high_gpio_wake, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | }; |
| 189 | |
| 190 | /* |
| 191 | * We don't need to ACK IRQs on the SA1100 unless they're GPIOs |
| 192 | * this is for internal IRQs i.e. from 11 to 31. |
| 193 | */ |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 194 | static void sa1100_mask_irq(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | { |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 196 | ICMR &= ~(1 << d->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | } |
| 198 | |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 199 | static void sa1100_unmask_irq(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | { |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 201 | ICMR |= (1 << d->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | } |
| 203 | |
Russell King | 19ca5d2 | 2006-05-06 11:26:30 +0100 | [diff] [blame] | 204 | /* |
| 205 | * Apart form GPIOs, only the RTC alarm can be a wakeup event. |
| 206 | */ |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 207 | static int sa1100_set_wake(struct irq_data *d, unsigned int on) |
Russell King | 19ca5d2 | 2006-05-06 11:26:30 +0100 | [diff] [blame] | 208 | { |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 209 | if (d->irq == IRQ_RTCAlrm) { |
Russell King | 19ca5d2 | 2006-05-06 11:26:30 +0100 | [diff] [blame] | 210 | if (on) |
| 211 | PWER |= PWER_RTC; |
| 212 | else |
| 213 | PWER &= ~PWER_RTC; |
| 214 | return 0; |
| 215 | } |
| 216 | return -EINVAL; |
| 217 | } |
| 218 | |
David Brownell | 38c677c | 2006-08-01 22:26:25 +0100 | [diff] [blame] | 219 | static struct irq_chip sa1100_normal_chip = { |
| 220 | .name = "SC", |
Lennert Buytenhek | c4e8964 | 2010-11-29 11:12:06 +0100 | [diff] [blame] | 221 | .irq_ack = sa1100_mask_irq, |
| 222 | .irq_mask = sa1100_mask_irq, |
| 223 | .irq_unmask = sa1100_unmask_irq, |
| 224 | .irq_set_wake = sa1100_set_wake, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | }; |
| 226 | |
Russell King | a181099 | 2012-01-12 10:25:29 +0000 | [diff] [blame] | 227 | static struct resource irq_resource = |
| 228 | DEFINE_RES_MEM_NAMED(0x90050000, SZ_64K, "irqs"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | |
| 230 | static struct sa1100irq_state { |
| 231 | unsigned int saved; |
| 232 | unsigned int icmr; |
| 233 | unsigned int iclr; |
| 234 | unsigned int iccr; |
| 235 | } sa1100irq_state; |
| 236 | |
Rafael J. Wysocki | 9053398 | 2011-04-22 22:03:03 +0200 | [diff] [blame] | 237 | static int sa1100irq_suspend(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | { |
| 239 | struct sa1100irq_state *st = &sa1100irq_state; |
| 240 | |
| 241 | st->saved = 1; |
| 242 | st->icmr = ICMR; |
| 243 | st->iclr = ICLR; |
| 244 | st->iccr = ICCR; |
| 245 | |
| 246 | /* |
| 247 | * Disable all GPIO-based interrupts. |
| 248 | */ |
| 249 | ICMR &= ~(IC_GPIO11_27|IC_GPIO10|IC_GPIO9|IC_GPIO8|IC_GPIO7| |
| 250 | IC_GPIO6|IC_GPIO5|IC_GPIO4|IC_GPIO3|IC_GPIO2| |
| 251 | IC_GPIO1|IC_GPIO0); |
| 252 | |
| 253 | /* |
| 254 | * Set the appropriate edges for wakeup. |
| 255 | */ |
| 256 | GRER = PWER & GPIO_IRQ_rising_edge; |
| 257 | GFER = PWER & GPIO_IRQ_falling_edge; |
| 258 | |
| 259 | /* |
| 260 | * Clear any pending GPIO interrupts. |
| 261 | */ |
| 262 | GEDR = GEDR; |
| 263 | |
| 264 | return 0; |
| 265 | } |
| 266 | |
Rafael J. Wysocki | 9053398 | 2011-04-22 22:03:03 +0200 | [diff] [blame] | 267 | static void sa1100irq_resume(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | { |
| 269 | struct sa1100irq_state *st = &sa1100irq_state; |
| 270 | |
| 271 | if (st->saved) { |
| 272 | ICCR = st->iccr; |
| 273 | ICLR = st->iclr; |
| 274 | |
| 275 | GRER = GPIO_IRQ_rising_edge & GPIO_IRQ_mask; |
| 276 | GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask; |
| 277 | |
| 278 | ICMR = st->icmr; |
| 279 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | } |
| 281 | |
Rafael J. Wysocki | 9053398 | 2011-04-22 22:03:03 +0200 | [diff] [blame] | 282 | static struct syscore_ops sa1100irq_syscore_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | .suspend = sa1100irq_suspend, |
| 284 | .resume = sa1100irq_resume, |
| 285 | }; |
| 286 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | static int __init sa1100irq_init_devicefs(void) |
| 288 | { |
Rafael J. Wysocki | 9053398 | 2011-04-22 22:03:03 +0200 | [diff] [blame] | 289 | register_syscore_ops(&sa1100irq_syscore_ops); |
| 290 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | device_initcall(sa1100irq_init_devicefs); |
| 294 | |
Dmitry Eremin-Solenikov | affcab3 | 2014-11-28 15:55:16 +0100 | [diff] [blame^] | 295 | static asmlinkage void __exception_irq_entry |
| 296 | sa1100_handle_irq(struct pt_regs *regs) |
| 297 | { |
| 298 | uint32_t icip, icmr, mask; |
| 299 | |
| 300 | do { |
| 301 | icip = (ICIP); |
| 302 | icmr = (ICMR); |
| 303 | mask = icip & icmr; |
| 304 | |
| 305 | if (mask == 0) |
| 306 | break; |
| 307 | |
| 308 | handle_IRQ(ffs(mask) - 1 + IRQ_GPIO0, regs); |
| 309 | } while (1); |
| 310 | } |
| 311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | void __init sa1100_init_irq(void) |
| 313 | { |
| 314 | unsigned int irq; |
| 315 | |
| 316 | request_resource(&iomem_resource, &irq_resource); |
| 317 | |
| 318 | /* disable all IRQs */ |
| 319 | ICMR = 0; |
| 320 | |
| 321 | /* all IRQs are IRQ, not FIQ */ |
| 322 | ICLR = 0; |
| 323 | |
| 324 | /* clear all GPIO edge detects */ |
| 325 | GFER = 0; |
| 326 | GRER = 0; |
| 327 | GEDR = -1; |
| 328 | |
| 329 | /* |
| 330 | * Whatever the doc says, this has to be set for the wait-on-irq |
| 331 | * instruction to work... on a SA1100 rev 9 at least. |
| 332 | */ |
| 333 | ICCR = 1; |
| 334 | |
| 335 | for (irq = 0; irq <= 10; irq++) { |
Thomas Gleixner | f38c02f | 2011-03-24 13:35:09 +0100 | [diff] [blame] | 336 | irq_set_chip_and_handler(irq, &sa1100_low_gpio_chip, |
| 337 | handle_edge_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | set_irq_flags(irq, IRQF_VALID | IRQF_PROBE); |
| 339 | } |
| 340 | |
| 341 | for (irq = 12; irq <= 31; irq++) { |
Thomas Gleixner | f38c02f | 2011-03-24 13:35:09 +0100 | [diff] [blame] | 342 | irq_set_chip_and_handler(irq, &sa1100_normal_chip, |
| 343 | handle_level_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | set_irq_flags(irq, IRQF_VALID); |
| 345 | } |
| 346 | |
| 347 | for (irq = 32; irq <= 48; irq++) { |
Thomas Gleixner | f38c02f | 2011-03-24 13:35:09 +0100 | [diff] [blame] | 348 | irq_set_chip_and_handler(irq, &sa1100_high_gpio_chip, |
| 349 | handle_edge_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | set_irq_flags(irq, IRQF_VALID | IRQF_PROBE); |
| 351 | } |
| 352 | |
| 353 | /* |
| 354 | * Install handler for GPIO 11-27 edge detect interrupts |
| 355 | */ |
Thomas Gleixner | 6845664a | 2011-03-24 13:25:22 +0100 | [diff] [blame] | 356 | irq_set_chip(IRQ_GPIO11_27, &sa1100_normal_chip); |
| 357 | irq_set_chained_handler(IRQ_GPIO11_27, sa1100_high_gpio_handler); |
Dmitry Baryshkov | 45528e3 | 2008-04-10 13:31:47 +0100 | [diff] [blame] | 358 | |
Dmitry Eremin-Solenikov | affcab3 | 2014-11-28 15:55:16 +0100 | [diff] [blame^] | 359 | set_handle_irq(sa1100_handle_irq); |
| 360 | |
Dmitry Baryshkov | 45528e3 | 2008-04-10 13:31:47 +0100 | [diff] [blame] | 361 | sa1100_init_gpio(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | } |