irq.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * IRQ vector handles
  3. *
  4. * This file is subject to the terms and conditions of the GNU General Public
  5. * License. See the file "COPYING" in the main directory of this archive
  6. * for more details.
  7. *
  8. * Copyright (C) 1995, 1996, 1997, 2003 by Ralf Baechle
  9. */
  10. #include <linux/kernel.h>
  11. #include <linux/init.h>
  12. #include <linux/irq.h>
  13. #include <linux/interrupt.h>
  14. #include <linux/pci.h>
  15. #include <asm/i8259.h>
  16. #include <asm/irq_cpu.h>
  17. #include <asm/gt64120.h>
  18. #include <asm/ptrace.h>
  19. #include <asm/mach-cobalt/cobalt.h>
  20. /*
  21. * We have two types of interrupts that we handle, ones that come in through
  22. * the CPU interrupt lines, and ones that come in on the via chip. The CPU
  23. * mappings are:
  24. *
  25. * 16 - Software interrupt 0 (unused) IE_SW0
  26. * 17 - Software interrupt 1 (unused) IE_SW1
  27. * 18 - Galileo chip (timer) IE_IRQ0
  28. * 19 - Tulip 0 + NCR SCSI IE_IRQ1
  29. * 20 - Tulip 1 IE_IRQ2
  30. * 21 - 16550 UART IE_IRQ3
  31. * 22 - VIA southbridge PIC IE_IRQ4
  32. * 23 - unused IE_IRQ5
  33. *
  34. * The VIA chip is a master/slave 8259 setup and has the following interrupts:
  35. *
  36. * 8 - RTC
  37. * 9 - PCI
  38. * 14 - IDE0
  39. * 15 - IDE1
  40. */
  41. static inline void galileo_irq(struct pt_regs *regs)
  42. {
  43. unsigned int mask, pending, devfn;
  44. mask = GALILEO_INL(GT_INTRMASK_OFS);
  45. pending = GALILEO_INL(GT_INTRCAUSE_OFS) & mask;
  46. if (pending & GALILEO_INTR_T0EXP) {
  47. GALILEO_OUTL(~GALILEO_INTR_T0EXP, GT_INTRCAUSE_OFS);
  48. do_IRQ(COBALT_GALILEO_IRQ, regs);
  49. } else if (pending & GALILEO_INTR_RETRY_CTR) {
  50. devfn = GALILEO_INL(GT_PCI0_CFGADDR_OFS) >> 8;
  51. GALILEO_OUTL(~GALILEO_INTR_RETRY_CTR, GT_INTRCAUSE_OFS);
  52. printk(KERN_WARNING "Galileo: PCI retry count exceeded (%02x.%u)\n",
  53. PCI_SLOT(devfn), PCI_FUNC(devfn));
  54. } else {
  55. GALILEO_OUTL(mask & ~pending, GT_INTRMASK_OFS);
  56. printk(KERN_WARNING "Galileo: masking unexpected interrupt %08x\n", pending);
  57. }
  58. }
  59. static inline void via_pic_irq(struct pt_regs *regs)
  60. {
  61. int irq;
  62. irq = i8259_irq();
  63. if (irq >= 0)
  64. do_IRQ(irq, regs);
  65. }
  66. asmlinkage void plat_irq_dispatch(struct pt_regs *regs)
  67. {
  68. unsigned pending;
  69. pending = read_c0_status() & read_c0_cause();
  70. if (pending & CAUSEF_IP2) /* COBALT_GALILEO_IRQ (18) */
  71. galileo_irq(regs);
  72. else if (pending & CAUSEF_IP6) /* COBALT_VIA_IRQ (22) */
  73. via_pic_irq(regs);
  74. else if (pending & CAUSEF_IP3) /* COBALT_ETH0_IRQ (19) */
  75. do_IRQ(COBALT_CPU_IRQ + 3, regs);
  76. else if (pending & CAUSEF_IP4) /* COBALT_ETH1_IRQ (20) */
  77. do_IRQ(COBALT_CPU_IRQ + 4, regs);
  78. else if (pending & CAUSEF_IP5) /* COBALT_SERIAL_IRQ (21) */
  79. do_IRQ(COBALT_CPU_IRQ + 5, regs);
  80. else if (pending & CAUSEF_IP7) /* IRQ 23 */
  81. do_IRQ(COBALT_CPU_IRQ + 7, regs);
  82. }
  83. static struct irqaction irq_via = {
  84. no_action, 0, { { 0, } }, "cascade", NULL, NULL
  85. };
  86. void __init arch_init_irq(void)
  87. {
  88. /*
  89. * Mask all Galileo interrupts. The Galileo
  90. * handler is set in cobalt_timer_setup()
  91. */
  92. GALILEO_OUTL(0, GT_INTRMASK_OFS);
  93. init_i8259_irqs(); /* 0 ... 15 */
  94. mips_cpu_irq_init(COBALT_CPU_IRQ); /* 16 ... 23 */
  95. /*
  96. * Mask all cpu interrupts
  97. * (except IE4, we already masked those at VIA level)
  98. */
  99. change_c0_status(ST0_IM, IE_IRQ4);
  100. setup_irq(COBALT_VIA_IRQ, &irq_via);
  101. }