Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 | /* * linux/include/asm-arm/arch-sa1100/irq.h * * Copyright (C) 1996-1999 Russell king * Copyright (C) 1999 Hugo Fiennes * * Changelog: * 22-08-1998 RMK Restructured IRQ routines * 06-01-1999 HBF SA1100 twiddles * 12-02-1999 NP added ICCR * 17-02-1999 NP empeg henry ugly hacks now in a separate file ;) * 11-08-1999 PD SA1101 support added * 25-09-1999 RMK Merged into main ARM tree, cleaned up * 12-05-2000 NP IRQ dispatcher handler for GPIO 11 to 27. * 26-05-2000 JD SA-1111 support added */ #include <linux/config.h> #include <asm/irq.h> #define fixup_irq(x) (x) /* * We don't need to ACK IRQs on the SA1100 unless they're GPIOs * this is for internal IRQs i.e. from 11 to 31. */ static void sa1100_mask_irq(unsigned int irq) { ICMR &= ~(1 << irq); } static void sa1100_unmask_irq(unsigned int irq) { ICMR |= (1 << irq); } /* * SA1100 GPIO edge detection for IRQs. */ extern int GPIO_IRQ_rising_edge; extern int GPIO_IRQ_falling_edge; /* * GPIO IRQs must be acknoledged. This is for IRQs from 0 to 10. */ static void sa1100_mask_and_ack_GPIO0_10_irq(unsigned int irq) { ICMR &= ~(1 << irq); GEDR = (1 << irq); } static void sa1100_mask_GPIO0_10_irq(unsigned int irq) { ICMR &= ~(1 << irq); } static void sa1100_unmask_GPIO0_10_irq(unsigned int irq) { GRER = (GRER & ~(1 << irq)) | (GPIO_IRQ_rising_edge & (1 << irq)); GFER = (GFER & ~(1 << irq)) | (GPIO_IRQ_falling_edge & (1 << irq)); ICMR |= (1 << irq); } /* * Install handler for GPIO 11-27 edge detect interrupts */ void do_IRQ(int irq, struct pt_regs * regs); static int GPIO_11_27_enabled; /* enabled i.e. unmasked GPIO IRQs */ static int GPIO_11_27_spurious; /* GPIOs that triggered when masked */ static void sa1100_GPIO11_27_demux(int irq, void *dev_id, struct pt_regs *regs) { int i, spurious; while( (irq = (GEDR & 0xfffff800)) ){ /* * We don't want to clear GRER/GFER when the corresponding * IRQ is masked because we could miss a level transition * i.e. an IRQ which need servicing as soon as it is * unmasked. However, such situation should happen only * during the loop below. Thus all IRQs which aren't * enabled at this point are considered spurious. Those * are cleared but only de-activated if they happened twice. */ spurious = irq & ~GPIO_11_27_enabled; if (spurious) { GEDR = spurious; GRER &= ~(spurious & GPIO_11_27_spurious); GFER &= ~(spurious & GPIO_11_27_spurious); GPIO_11_27_spurious |= spurious; irq ^= spurious; if (!irq) continue; } for (i = 11; i <= 27; ++i) { if (irq & (1<<i)) { do_IRQ( IRQ_GPIO_11_27(i), regs ); } } } } static struct irqaction GPIO11_27_irq = { name: "GPIO 11-27", handler: sa1100_GPIO11_27_demux, flags: SA_INTERRUPT }; static void sa1100_mask_and_ack_GPIO11_27_irq(unsigned int irq) { int mask = (1 << GPIO_11_27_IRQ(irq)); GPIO_11_27_enabled &= ~mask; GEDR = mask; } static void sa1100_mask_GPIO11_27_irq(unsigned int irq) { GPIO_11_27_enabled &= ~(1 << GPIO_11_27_IRQ(irq)); } static void sa1100_unmask_GPIO11_27_irq(unsigned int irq) { int mask = (1 << GPIO_11_27_IRQ(irq)); GPIO_11_27_enabled |= mask; GPIO_11_27_spurious &= ~mask; GRER = (GRER & ~mask) | (GPIO_IRQ_rising_edge & mask); GFER = (GFER & ~mask) | (GPIO_IRQ_falling_edge & mask); } #if defined(CONFIG_SA1111) /* * Install handler for SA1111 IRQ handler. */ static void sa1111_IRQ_demux( int irq, void *dev_id, struct pt_regs *regs ) { int i; unsigned long stat0, stat1; while( (stat0 = INTSTATCLR0) && (stat1 = INTSTATCLR1) ){ if( stat0 ) for( i = 0; i < 32; i++ ) if( stat0 & (1<<i) ) do_IRQ( SA1111_IRQ(i), regs ); if( stat1 ) for( i = 32; i < 55; i++ ) if( stat1 & (1<<(i-32)) ) do_IRQ( SA1111_IRQ(i), regs ); } } static struct irqaction sa1111_irq = { name: "SA1111", handler: sa1111_IRQ_demux, flags: SA_INTERRUPT }; static void sa1111_mask_and_ack_lowirq(unsigned int irq) { unsigned int mask = 1 << (irq - SA1111_IRQ(0)); //INTEN0 &= ~mask; INTSTATCLR0 = mask; } static void sa1111_mask_and_ack_highirq(unsigned int irq) { unsigned int mask = 1 << (irq - SA1111_IRQ(32)); //INTEN1 &= ~mask; INTSTATCLR1 = mask; } static void sa1111_mask_lowirq(unsigned int irq) { //INTEN0 &= ~(1 << (irq - SA1111_IRQ(0))); } static void sa1111_mask_highirq(unsigned int irq) { //INTEN1 &= ~(1 << (irq - SA1111_IRQ(32))); } static void sa1111_unmask_lowirq(unsigned int irq) { INTEN0 |= 1 << (irq - SA1111_IRQ(0)); } static void sa1111_unmask_highirq(unsigned int irq) { INTEN1 |= 1 << ((irq - SA1111_IRQ(32))); } #endif /* CONFIG_SA1111 */ #ifdef CONFIG_ASSABET_NEPONSET /* * Install handler for Neponset IRQ. Yes, yes... we are way down the IRQ * cascade which is not good for IRQ latency, but the hardware has been * designed that way... */ static void neponset_IRQ_demux( int irq, void *dev_id, struct pt_regs *regs ) { int irr; for(;;){ irr = IRR & (IRR_ETHERNET | IRR_USAR | IRR_SA1111); /* Let's have all active IRQ bits high. * Note: there is a typo in the Neponset user's guide * for the SA1111 IRR level. */ irr ^= (IRR_ETHERNET | IRR_USAR); if (!irr) break; if( irr & IRR_ETHERNET ) do_IRQ(NEPONSET_ETHERNET_IRQ, regs); if( irr & IRR_USAR ) do_IRQ(NEPONSET_USAR_IRQ, regs); if( irr & IRR_SA1111 ) sa1111_IRQ_demux(irq, dev_id, regs); } } static struct irqaction neponset_irq = { name: "Neponset", handler: neponset_IRQ_demux, flags: SA_INTERRUPT }; #endif #if defined(CONFIG_SA1100_GRAPHICSCLIENT) || defined(CONFIG_SA1100_THINCLIENT) /* * IRQ handler for the ThinClient/GraphicsClient external IRQ controller */ static void ADS_IRQ_demux( int irq, void *dev_id, struct pt_regs *regs ) { int irq, i; while( (irq = ADS_INT_ST1 | (ADS_INT_ST2 << 8)) ){ for( i = 0; i < 16; i++ ) if( irq & (1<<i) ) do_IRQ( ADS_EXT_IRQ(i), regs ); } } static struct irqaction ADS_ext_irq = { name: "ADS_ext_IRQ", handler: ADS_IRQ_demux, flags: SA_INTERRUPT }; static void ADS_mask_and_ack_irq0(unsigned int irq) { int mask = (1 << (irq - ADS_EXT_IRQ(0))); ADS_INT_EN1 &= ~mask; ADS_INT_ST1 = mask; } static void ADS_mask_irq0(unsigned int irq) { ADS_INT_ST1 = (1 << (irq - ADS_EXT_IRQ(0))); } static void ADS_unmask_irq0(unsigned int irq) { ADS_INT_EN1 |= (1 << (irq - ADS_EXT_IRQ(0))); } static void ADS_mask_and_ack_irq1(unsigned int irq) { int mask = (1 << (irq - ADS_EXT_IRQ(8))); ADS_INT_EN2 &= ~mask; ADS_INT_ST2 = mask; } static void ADS_mask_irq1(unsigned int irq) { ADS_INT_ST2 = (1 << (irq - ADS_EXT_IRQ(8))); } static void ADS_unmask_irq1(unsigned int irq) { ADS_INT_EN2 |= (1 << (irq - ADS_EXT_IRQ(8))); } #endif static __inline__ void irq_init_irq(void) { int irq; /* disable all IRQs */ ICMR = 0; /* all IRQs are IRQ, not FIQ */ ICLR = 0; /* clear all GPIO edge detects */ GFER = 0; GRER = 0; GEDR = -1; /* * Whatever the doc says, this has to be set for the wait-on-irq * instruction to work... on a SA1100 rev 9 at least. */ ICCR = 1; for (irq = 0; irq <= 10; irq++) { irq_desc[irq].valid = 1; irq_desc[irq].probe_ok = 1; irq_desc[irq].mask_ack = sa1100_mask_and_ack_GPIO0_10_irq; irq_desc[irq].mask = sa1100_mask_GPIO0_10_irq; irq_desc[irq].unmask = sa1100_unmask_GPIO0_10_irq; } for (irq = 11; irq <= 31; irq++) { irq_desc[irq].valid = 1; irq_desc[irq].probe_ok = 0; irq_desc[irq].mask_ack = sa1100_mask_irq; irq_desc[irq].mask = sa1100_mask_irq; irq_desc[irq].unmask = sa1100_unmask_irq; } for (irq = 32; irq <= 48; irq++) { irq_desc[irq].valid = 1; irq_desc[irq].probe_ok = 1; irq_desc[irq].mask_ack = sa1100_mask_and_ack_GPIO11_27_irq; irq_desc[irq].mask = sa1100_mask_GPIO11_27_irq; irq_desc[irq].unmask = sa1100_unmask_GPIO11_27_irq; } setup_arm_irq( IRQ_GPIO11_27, &GPIO11_27_irq ); #ifdef CONFIG_SA1111 if( machine_is_assabet() && machine_has_neponset() ){ /* disable all IRQs */ INTEN0 = 0; INTEN1 = 0; /* detect on rising edge */ INTPOL0 = 0; INTPOL1 = 0; /* clear all IRQs */ INTSTATCLR0 = -1; INTSTATCLR1 = -1; for (irq = SA1111_IRQ(0); irq <= SA1111_IRQ(26); irq++) { irq_desc[irq].valid = 1; irq_desc[irq].probe_ok = 1; irq_desc[irq].mask_ack = sa1111_mask_and_ack_lowirq; irq_desc[irq].mask = sa1111_mask_lowirq; irq_desc[irq].unmask = sa1111_unmask_lowirq; } for (irq = SA1111_IRQ(32); irq <= SA1111_IRQ(54); irq++) { irq_desc[irq].valid = 1; irq_desc[irq].probe_ok = 1; irq_desc[irq].mask_ack = sa1111_mask_and_ack_highirq; irq_desc[irq].mask = sa1111_mask_highirq; irq_desc[irq].unmask = sa1111_unmask_highirq; } if( machine_has_neponset() ){ /* setup extra Neponset IRQs */ irq = NEPONSET_ETHERNET_IRQ; irq_desc[irq].valid = 1; irq_desc[irq].probe_ok = 1; irq = NEPONSET_USAR_IRQ; irq_desc[irq].valid = 1; irq_desc[irq].probe_ok = 1; set_GPIO_IRQ_edge( GPIO_NEP_IRQ, GPIO_RISING_EDGE ); setup_arm_irq( IRQ_GPIO_NEP_IRQ, &neponset_irq ); }else{ /* for pure SA1111 designs to come (currently unused) */ set_GPIO_IRQ_edge( 0, GPIO_RISING_EDGE ); setup_arm_irq( -1, &sa1111_irq ); } } #endif #if defined(CONFIG_SA1100_GRAPHICSCLIENT) || defined(CONFIG_SA1100_THINCLIENT) if( machine_is_graphicsclient() || machine_is_thinclient() ){ /* disable all IRQs */ ADS_INT_EN1 = 0; ADS_INT_EN2 = 0; /* clear all IRQs */ ADS_INT_ST1 = 0xff; ADS_INT_ST2 = 0xff; for (irq = ADS_EXT_IRQ(0); irq <= ADS_EXT_IRQ(7); irq++) { irq_desc[irq].valid = 1; irq_desc[irq].probe_ok = 1; irq_desc[irq].mask_ack = ADS_mask_and_ack_irq0; irq_desc[irq].mask = ADS_mask_irq0; irq_desc[irq].unmask = ADS_unmask_irq0; } for (irq = ADS_EXT_IRQ(8); irq <= ADS_EXT_IRQ(15); irq++) { irq_desc[irq].valid = 1; irq_desc[irq].probe_ok = 1; irq_desc[irq].mask_ack = ADS_mask_and_ack_irq1; irq_desc[irq].mask = ADS_mask_irq1; irq_desc[irq].unmask = ADS_unmask_irq1; } GPDR &= ~GPIO_GPIO0; set_GPIO_IRQ_edge(GPIO_GPIO0, GPIO_FALLING_EDGE); setup_arm_irq( IRQ_GPIO0, &ADS_ext_irq ); } #endif } |