root/arch/alpha/kernel/irq.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. disable_irq
  2. enable_irq
  3. get_irq_list
  4. ack_irq
  5. mask_irq
  6. unmask_irq
  7. request_irq
  8. free_irq
  9. handle_nmi
  10. unexpected_irq
  11. handle_irq
  12. device_interrupt
  13. isa_device_interrupt
  14. cabriolet_and_eb66p_device_interrupt
  15. eb66_and_eb64p_device_interrupt
  16. srm_device_interrupt
  17. probe_irq_on
  18. probe_irq_off
  19. machine_check
  20. do_entInt
  21. init_IRQ

   1 /*
   2  *      linux/arch/alpha/kernel/irq.c
   3  *
   4  *      Copyright (C) 1995 Linus Torvalds
   5  *
   6  * This file contains the code used by various IRQ handling routines:
   7  * asking for different IRQ's should be done through these routines
   8  * instead of just grabbing them. Thus setups with different IRQ numbers
   9  * shouldn't result in any weird surprises, and installing new handlers
  10  * should be easier.
  11  */
  12 
  13 #include <linux/config.h>
  14 #include <linux/ptrace.h>
  15 #include <linux/errno.h>
  16 #include <linux/kernel_stat.h>
  17 #include <linux/signal.h>
  18 #include <linux/sched.h>
  19 #include <linux/interrupt.h>
  20 #include <linux/random.h>
  21 
  22 #include <asm/system.h>
  23 #include <asm/io.h>
  24 #include <asm/irq.h>
  25 #include <asm/bitops.h>
  26 #include <asm/dma.h>
  27 
  28 extern void timer_interrupt(struct pt_regs * regs);
  29 
  30 static unsigned char cache_21 = 0xff;
  31 static unsigned char cache_A1 = 0xff;
  32 
  33 #if NR_IRQS == 33
  34   static unsigned char cache_804 = 0xef;
  35   static unsigned char cache_805 = 0xff;
  36   static unsigned char cache_806 = 0xff;
  37 #elif NR_IRQS == 32
  38   static unsigned char cache_26 = 0xdf;
  39   static unsigned char cache_27 = 0xff;
  40 #endif
  41 
  42 void disable_irq(unsigned int irq_nr)
     /* [previous][next][first][last][top][bottom][index][help] */
  43 {
  44         unsigned long flags;
  45         unsigned char mask;
  46 
  47         save_flags(flags);
  48         cli();
  49         mask = 1 << (irq_nr & 7);
  50 
  51         if (irq_nr < 8) {
  52                 cache_21 |= mask;
  53                 outb(cache_21,0x21);
  54         } else if (irq_nr < 16) {
  55                 cache_A1 |= mask;
  56                 outb(cache_A1,0xA1);
  57 #if NR_IRQS == 33
  58         } else if (irq_nr < 24) {
  59                 cache_804 |= mask;
  60                 outb(cache_804, 0x804);
  61         } else if (irq_nr < 32) {
  62                 cache_805 |= mask;
  63                 outb(cache_805, 0x805);
  64         } else {
  65                 cache_806 |= mask;
  66                 outb(cache_806, 0x806);
  67 #elif NR_IRQS == 32 
  68         } else if (irq_nr < 24) {
  69                 cache_26 |= mask;
  70                 outb(cache_26, 0x26);
  71         } else {
  72                 cache_27 |= mask;
  73                 outb(cache_27, 0x27);
  74 #endif
  75         }
  76         restore_flags(flags);
  77 }
  78 
  79 void enable_irq(unsigned int irq_nr)
     /* [previous][next][first][last][top][bottom][index][help] */
  80 {
  81         unsigned long flags;
  82         unsigned char mask;
  83 
  84         mask = ~(1 << (irq_nr & 7));
  85         save_flags(flags);
  86         cli();
  87 
  88         if (irq_nr < 8) {
  89                 cache_21 &= mask;
  90                 outb(cache_21,0x21);
  91         } else if (irq_nr < 16) {
  92                 cache_A1 &= mask;
  93                 outb(cache_A1,0xA1);
  94 #if NR_IRQS == 33
  95         } else if (irq_nr < 24) {
  96                 cache_804 &= mask;
  97                 outb(cache_804, 0x804);
  98         } else if (irq_nr < 32) {
  99                 cache_805 &= mask;
 100                 outb(cache_805, 0x805);
 101         } else {
 102                 cache_806 &= mask;
 103                 outb(cache_806, 0x806);
 104 #elif NR_IRQS == 32
 105         } else if (irq_nr < 24) {
 106                 cache_26 &= mask;
 107                 outb(cache_26, 0x26);
 108         } else {
 109                 cache_27 &= mask;
 110                 outb(cache_27, 0x27);
 111 #endif
 112         }
 113         restore_flags(flags);
 114 }
 115 
 116 /*
 117  * Initial irq handlers.
 118  */
 119 struct irqaction {
 120         void (*handler)(int, struct pt_regs *);
 121         unsigned long flags;
 122         unsigned long mask;
 123         const char *name;
 124 };
 125 
 126 static struct irqaction irq_action[NR_IRQS];
 127 
 128 int get_irq_list(char *buf)
     /* [previous][next][first][last][top][bottom][index][help] */
 129 {
 130         int i, len = 0;
 131         struct irqaction * action = irq_action;
 132 
 133         for (i = 0 ; i < NR_IRQS ; i++, action++) {
 134                 if (!action->handler)
 135                         continue;
 136                 len += sprintf(buf+len, "%2d: %8d %c %s\n",
 137                         i, kstat.interrupts[i],
 138                         (action->flags & SA_INTERRUPT) ? '+' : ' ',
 139                         action->name);
 140         }
 141         return len;
 142 }
 143 
 144 static inline void ack_irq(int irq)
     /* [previous][next][first][last][top][bottom][index][help] */
 145 {
 146         if (irq < 16) {
 147                 /* ACK the interrupt making it the lowest priority */
 148                 /*  First the slave .. */
 149                 if (irq > 7) {
 150                         outb(0xE0 | (irq - 8), 0xa0);
 151                         irq = 2;
 152                 }
 153                 /* .. then the master */
 154                 outb(0xE0 | irq, 0x20);
 155         }
 156 }
 157 
 158 static inline void mask_irq(int irq)
     /* [previous][next][first][last][top][bottom][index][help] */
 159 {
 160         unsigned char mask;
 161 
 162         mask = 1 << (irq & 7);
 163         if (irq < 8) {
 164                 cache_21 |= mask;
 165                 outb(cache_21, 0x21);
 166         } else if (irq < 16) {
 167                 cache_A1 |= mask;
 168                 outb(cache_A1, 0xA1);
 169 #if NR_IRQS == 33
 170         } else if (irq < 24) {
 171                 cache_804 |= mask;
 172                 outb(cache_804, 0x804);
 173         } else if (irq < 32) {
 174                 cache_805 |= mask;
 175                 outb(cache_805, 0x805);
 176         } else {
 177                 cache_806 |= mask;
 178                 outb(cache_806, 0x806);
 179 #elif NR_IRQS == 32
 180         } else if (irq < 24) {
 181                 cache_26 |= mask;
 182                 outb(cache_26, 0x26);
 183         } else {
 184                 cache_27 |= mask;
 185                 outb(cache_27, 0x27);
 186 #endif
 187         }
 188 }
 189 
 190 static inline void unmask_irq(unsigned long irq)
     /* [previous][next][first][last][top][bottom][index][help] */
 191 {
 192         unsigned char mask = ~(1 << (irq & 7));
 193 
 194         if (irq < 8) {
 195                 cache_21 &= mask;
 196                 outb(cache_21, 0x21);
 197         } else if (irq < 16) {
 198                 cache_A1 &= mask;
 199                 outb(cache_A1, 0xA1);
 200 #if NR_IRQS == 33
 201         } else if (irq < 24) {
 202                 cache_804 &= mask;
 203                 outb(cache_804, 0x804);
 204         } else if (irq < 32) {
 205                 cache_805 &= mask;
 206                 outb(cache_805, 0x805);
 207         } else {
 208                 cache_806 &= mask;
 209                 outb(cache_806, 0x806);
 210 #elif defined(CONFIG_ALPHA_EB66) || defined(CONFIG_ALPHA_EB66P)
 211         } else if (irq < 24) {
 212                 cache_26 &= mask;
 213                 outb(cache_26, 0x26);
 214         } else {
 215                 cache_27 &= mask;
 216                 outb(cache_27, 0x27);
 217 #endif
 218         }
 219 }
 220 
 221 int request_irq(unsigned int irq, void (*handler)(int, struct pt_regs *),
     /* [previous][next][first][last][top][bottom][index][help] */
 222         unsigned long irqflags, const char * devname)
 223 {
 224         struct irqaction * action;
 225         unsigned long flags;
 226 
 227         if (irq >= NR_IRQS)
 228                 return -EINVAL;
 229         /* don't accept requests for irq #0 */
 230         if (!irq)
 231                 return -EINVAL;
 232         action = irq + irq_action;
 233         if (action->handler)
 234                 return -EBUSY;
 235         if (!handler)
 236                 return -EINVAL;
 237         save_flags(flags);
 238         cli();
 239         action->handler = handler;
 240         action->flags = irqflags;
 241         action->mask = 0;
 242         action->name = devname;
 243         enable_irq(irq);
 244         if (irq >= 8 && irq < 16) {
 245                 enable_irq(2);  /* ensure cascade is enabled too */
 246         }
 247         restore_flags(flags);
 248         return 0;
 249 }
 250 
 251 void free_irq(unsigned int irq)
     /* [previous][next][first][last][top][bottom][index][help] */
 252 {
 253         struct irqaction * action = irq + irq_action;
 254         unsigned long flags;
 255 
 256         if (irq >= NR_IRQS) {
 257                 printk("Trying to free IRQ%d\n", irq);
 258                 return;
 259         }
 260         if (!action->handler) {
 261                 printk("Trying to free free IRQ%d\n", irq);
 262                 return;
 263         }
 264         save_flags(flags);
 265         cli();
 266         mask_irq(irq);
 267         action->handler = NULL;
 268         action->flags = 0;
 269         action->mask = 0;
 270         action->name = NULL;
 271         restore_flags(flags);
 272 }
 273 
 274 static inline void handle_nmi(struct pt_regs * regs)
     /* [previous][next][first][last][top][bottom][index][help] */
 275 {
 276         printk("Whee.. NMI received. Probable hardware error\n");
 277         printk("61=%02x, 461=%02x\n", inb(0x61), inb(0x461));
 278 }
 279 
 280 static void unexpected_irq(int irq, struct pt_regs * regs)
     /* [previous][next][first][last][top][bottom][index][help] */
 281 {
 282         int i;
 283 
 284         printk("IO device interrupt, irq = %d\n", irq);
 285         printk("PC = %016lx PS=%04lx\n", regs->pc, regs->ps);
 286         printk("Expecting: ");
 287         for (i = 0; i < 16; i++)
 288                 if (irq_action[i].handler)
 289                         printk("[%s:%d] ", irq_action[i].name, i);
 290         printk("\n");
 291 #if defined(CONFIG_ALPHA_JENSEN)
 292         printk("64=%02x, 60=%02x, 3fa=%02x 2fa=%02x\n",
 293                 inb(0x64), inb(0x60), inb(0x3fa), inb(0x2fa));
 294         outb(0x0c, 0x3fc);
 295         outb(0x0c, 0x2fc);
 296         outb(0,0x61);
 297         outb(0,0x461);
 298 #endif
 299 }
 300 
 301 static inline void handle_irq(int irq, struct pt_regs * regs)
     /* [previous][next][first][last][top][bottom][index][help] */
 302 {
 303         struct irqaction * action = irq + irq_action;
 304 
 305         kstat.interrupts[irq]++;
 306         if (!action->handler) {
 307                 unexpected_irq(irq, regs);
 308                 return;
 309         }
 310         action->handler(irq, regs);
 311 }
 312 
 313 static inline void device_interrupt(int irq, int ack, struct pt_regs * regs)
     /* [previous][next][first][last][top][bottom][index][help] */
 314 {
 315         struct irqaction * action;
 316 
 317         if ((unsigned) irq > NR_IRQS) {
 318                 printk("device_interrupt: unexpected interrupt %d\n", irq);
 319                 return;
 320         }
 321 
 322         kstat.interrupts[irq]++;
 323         action = irq_action + irq;
 324         if (action->flags & SA_SAMPLE_RANDOM)
 325                 add_interrupt_randomness(irq);
 326         /* quick interrupts get executed with no extra overhead */
 327         if (action->flags & SA_INTERRUPT) {
 328                 action->handler(irq, regs);
 329                 ack_irq(ack);
 330                 return;
 331         }
 332         /*
 333          * For normal interrupts, we mask it out, and then ACK it.
 334          * This way another (more timing-critical) interrupt can
 335          * come through while we're doing this one.
 336          *
 337          * Note! A irq without a handler gets masked and acked, but
 338          * never unmasked. The autoirq stuff depends on this (it looks
 339          * at the masks before and after doing the probing).
 340          */
 341         mask_irq(ack);
 342         ack_irq(ack);
 343         if (!action->handler)
 344                 return;
 345         action->handler(irq, regs);
 346         unmask_irq(ack);
 347 }
 348 
 349 /*
 350  * Handle ISA interrupt via the PICs.
 351  */
 352 static inline void isa_device_interrupt(unsigned long vector,
     /* [previous][next][first][last][top][bottom][index][help] */
 353                                         struct pt_regs * regs)
 354 {
 355         unsigned long pic;
 356         int j;
 357         /* 
 358          *  The first read of gives you *all* interrupting lines.
 359          *  Therefore, read the mask register and and out those lines
 360          *  not enabled.  Note that some documentation has 21 and a1 
 361          *  write only.  This is not true.
 362          */
 363         pic = inb(0x20) | (inb(0xA0) << 8);     /* read isr */
 364         pic &= ~((cache_A1 << 8) | cache_21);   /* apply mask */
 365         pic &= 0xFFFB;                          /* mask out cascade */
 366 
 367         while (pic) {
 368                 j = ffz(~pic);
 369                 pic &= pic - 1;
 370                 device_interrupt(j, j, regs);
 371         }
 372 }
 373 
 374 static inline void cabriolet_and_eb66p_device_interrupt(unsigned long vector,
     /* [previous][next][first][last][top][bottom][index][help] */
 375                                                         struct pt_regs * regs)
 376 {
 377         unsigned long pld;
 378         unsigned int i;
 379         unsigned long flags;
 380 
 381         save_flags(flags);
 382         cli();
 383 
 384         /* read the interrupt summary registers */
 385         pld = inb(0x804) | (inb(0x805) << 8) | (inb(0x806) << 16);
 386 
 387         /*
 388          * Now for every possible bit set, work through them and call
 389          * the appropriate interrupt handler.
 390          */
 391         while (pld) {
 392                 i = ffz(~pld);
 393                 pld &= pld - 1; /* clear least bit set */
 394                 if (i == 4) {
 395                         isa_device_interrupt(vector, regs);
 396                 } else {
 397                         device_interrupt(16 + i, 16 + i, regs);
 398                 }
 399         }
 400         restore_flags(flags);
 401 }
 402 
 403 static inline void eb66_and_eb64p_device_interrupt(unsigned long vector,
     /* [previous][next][first][last][top][bottom][index][help] */
 404                                                    struct pt_regs * regs)
 405 {
 406         unsigned long pld;
 407         unsigned int i;
 408         unsigned long flags;
 409 
 410         save_flags(flags);
 411         cli();
 412 
 413         /* read the interrupt summary registers */
 414         pld = inb(0x26) | (inb(0x27) << 8);
 415         /*
 416          * Now, for every possible bit set, work through
 417          * them and call the appropriate interrupt handler.
 418          */
 419         while (pld) {
 420                 i = ffz(~pld);
 421                 pld &= pld - 1; /* clear least bit set */
 422 
 423                 if (i == 5) {
 424                         isa_device_interrupt(vector, regs);
 425                 } else {
 426                         device_interrupt(16 + i, 16 + i, regs);
 427                 }
 428         }
 429         restore_flags(flags);
 430 }
 431 
 432 /*
 433  * Jensen is special: the vector is 0x8X0 for EISA interrupt X, and
 434  * 0x9X0 for the local motherboard interrupts..
 435  *
 436  *      0x660 - NMI
 437  *
 438  *      0x800 - IRQ0  interval timer (not used, as we use the RTC timer)
 439  *      0x810 - IRQ1  line printer (duh..)
 440  *      0x860 - IRQ6  floppy disk
 441  *      0x8E0 - IRQ14 SCSI controller
 442  *
 443  *      0x900 - COM1
 444  *      0x920 - COM2
 445  *      0x980 - keyboard
 446  *      0x990 - mouse
 447  *
 448  * PCI-based systems are more sane: they don't have the local
 449  * interrupts at all, and have only normal PCI interrupts from
 450  * devices.  Happily it's easy enough to do a sane mapping from the
 451  * Jensen..  Note that this means that we may have to do a hardware
 452  * "ack" to a different interrupt than we report to the rest of the
 453  * world.
 454  */
 455 static inline void srm_device_interrupt(unsigned long vector, struct pt_regs * regs)
     /* [previous][next][first][last][top][bottom][index][help] */
 456 {
 457         int irq, ack;
 458 
 459         ack = irq = (vector - 0x800) >> 4;
 460 
 461 #ifdef CONFIG_ALPHA_JENSEN
 462         switch (vector) {
 463               case 0x660: handle_nmi(regs); return;
 464                 /* local device interrupts: */
 465               case 0x900: handle_irq(4, regs); return;  /* com1 -> irq 4 */
 466               case 0x920: handle_irq(3, regs); return;  /* com2 -> irq 3 */
 467               case 0x980: handle_irq(1, regs); return;  /* kbd -> irq 1 */
 468               case 0x990: handle_irq(9, regs); return;  /* mouse -> irq 9 */
 469               default:
 470                 if (vector > 0x900) {
 471                         printk("Unknown local interrupt %lx\n", vector);
 472                 }
 473         }
 474         /* irq1 is supposed to be the keyboard, silly Jensen (is this really needed??) */
 475         if (irq == 1)
 476                 irq = 7;
 477 #endif /* CONFIG_ALPHA_JENSEN */
 478 
 479         device_interrupt(irq, ack, regs);
 480 }
 481 
 482 #if NR_IRQS > 64
 483 #  error Number of irqs limited to 64 due to interrupt-probing.
 484 #endif
 485 
 486 /*
 487  * Start listening for interrupts..
 488  */
 489 unsigned long probe_irq_on(void)
     /* [previous][next][first][last][top][bottom][index][help] */
 490 {
 491         unsigned long irqs = 0, irqmask;
 492         unsigned long delay;
 493         unsigned int i;
 494 
 495         for (i = NR_IRQS - 1; i > 0; i--) {
 496                 if (!irq_action[i].handler) {
 497                         enable_irq(i);
 498                         irqs |= (1 << i);
 499                 }
 500         }
 501 
 502         /* wait for spurious interrupts to mask themselves out again */
 503         for (delay = jiffies + HZ/10; delay > jiffies; )
 504                 /* about 100 ms delay */;
 505         
 506         /* now filter out any obviously spurious interrupts */
 507         irqmask = (((unsigned long)cache_A1)<<8) | (unsigned long) cache_21;
 508 #if NR_IRQS == 33
 509         irqmask |= ((((unsigned long)cache_804)<<16) |
 510                     (((unsigned long)cache_805)<<24) |
 511                     (((unsigned long)cache_806)<<24));
 512 #elif NR_IRQS == 32
 513         irqmask |= ((((unsigned long)cache_26)<<16) |
 514                     (((unsigned long)cache_27)<<24));
 515 #endif
 516         irqs &= ~irqmask;
 517         return irqs;
 518 }
 519 
 520 /*
 521  * Get the result of the IRQ probe.. A negative result means that
 522  * we have several candidates (but we return the lowest-numbered
 523  * one).
 524  */
 525 int probe_irq_off(unsigned long irqs)
     /* [previous][next][first][last][top][bottom][index][help] */
 526 {
 527         unsigned long irqmask;
 528         int i;
 529         
 530         irqmask = (((unsigned int)cache_A1)<<8) | (unsigned int)cache_21;
 531 #if NR_IRQS == 33
 532         irqmask |= ((((unsigned long)cache_804)<<16) |
 533                     (((unsigned long)cache_805)<<24) |
 534                     (((unsigned long)cache_806)<<24));
 535 #elif NR_IRQS == 32
 536         irqmask |= ((((unsigned long)cache_26)<<16) |
 537                     (((unsigned long)cache_27)<<24));
 538 #endif
 539         irqs &= irqmask;
 540         if (!irqs)
 541                 return 0;
 542         i = ffz(~irqs);
 543         if (irqs != (1UL << i))
 544                 i = -i;
 545         return i;
 546 }
 547 
 548 static void machine_check(unsigned long vector, unsigned long la, struct pt_regs * regs)
     /* [previous][next][first][last][top][bottom][index][help] */
 549 {
 550 #if defined(CONFIG_ALPHA_LCA)
 551         extern void lca_machine_check (unsigned long vector, unsigned long la,
 552                                        struct pt_regs *regs);
 553         lca_machine_check(vector, la, regs);
 554 #elif defined(CONFIG_ALPHA_APECS)
 555         extern void apecs_machine_check(unsigned long vector, unsigned long la,
 556                                         struct pt_regs * regs);
 557         apecs_machine_check(vector, la, regs);
 558 #else
 559         printk("Machine check\n");
 560 #endif
 561 }
 562 
 563 asmlinkage void do_entInt(unsigned long type, unsigned long vector, unsigned long la_ptr,
     /* [previous][next][first][last][top][bottom][index][help] */
 564         unsigned long a3, unsigned long a4, unsigned long a5,
 565         struct pt_regs regs)
 566 {
 567         switch (type) {
 568                 case 0:
 569                         printk("Interprocessor interrupt? You must be kidding\n");
 570                         break;
 571                 case 1:
 572                         timer_interrupt(&regs);
 573                         return;
 574                 case 2:
 575                         machine_check(vector, la_ptr, &regs);
 576                         return;
 577                 case 3:
 578 #if defined(CONFIG_ALPHA_JENSEN) || defined(CONFIG_ALPHA_NONAME) || \
 579     defined(CONFIG_ALPHA_SRM)
 580                         srm_device_interrupt(vector, &regs);
 581 #elif NR_IRQS == 33
 582                         cabriolet_and_eb66p_device_interrupt(vector, &regs);
 583 #elif NR_IRQS == 32
 584                         eb66_and_eb64p_device_interrupt(vector, &regs);
 585 #endif
 586                         return;
 587                 case 4:
 588                         printk("Performance counter interrupt\n");
 589                         break;;
 590                 default:
 591                         printk("Hardware intr %ld %lx? Huh?\n", type, vector);
 592         }
 593         printk("PC = %016lx PS=%04lx\n", regs.pc, regs.ps);
 594 }
 595 
 596 extern asmlinkage void entInt(void);
 597 
 598 void init_IRQ(void)
     /* [previous][next][first][last][top][bottom][index][help] */
 599 {
 600         wrent(entInt, 0);
 601         dma_outb(0, DMA1_RESET_REG);
 602         dma_outb(0, DMA2_RESET_REG);
 603         dma_outb(0, DMA1_CLR_MASK_REG);
 604         dma_outb(0, DMA2_CLR_MASK_REG);
 605 #if NR_IRQS == 33
 606         outb(cache_804, 0x804);
 607         outb(cache_805, 0x805);
 608         outb(cache_806, 0x806);
 609 #elif NR_IRQS == 32
 610         outb(cache_26, 0x26);
 611         outb(cache_27, 0x27);
 612 #endif
 613 }

/* [previous][next][first][last][top][bottom][index][help] */