irq.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * arch/mips/emma2rh/markeins/irq.c
  3. * This file defines the irq handler for EMMA2RH.
  4. *
  5. * Copyright (C) NEC Electronics Corporation 2004-2006
  6. *
  7. * This file is based on the arch/mips/ddb5xxx/ddb5477/irq.c
  8. *
  9. * Copyright 2001 MontaVista Software Inc.
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2 of the License, or
  14. * (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  24. */
  25. #include <linux/init.h>
  26. #include <linux/interrupt.h>
  27. #include <linux/irq.h>
  28. #include <linux/types.h>
  29. #include <linux/ptrace.h>
  30. #include <linux/delay.h>
  31. #include <asm/i8259.h>
  32. #include <asm/irq_cpu.h>
  33. #include <asm/system.h>
  34. #include <asm/mipsregs.h>
  35. #include <asm/debug.h>
  36. #include <asm/addrspace.h>
  37. #include <asm/bootinfo.h>
  38. #include <asm/emma2rh/emma2rh.h>
  39. /*
  40. * IRQ mapping
  41. *
  42. * 0-7: 8 CPU interrupts
  43. * 0 - software interrupt 0
  44. * 1 - software interrupt 1
  45. * 2 - most Vrc5477 interrupts are routed to this pin
  46. * 3 - (optional) some other interrupts routed to this pin for debugg
  47. * 4 - not used
  48. * 5 - not used
  49. * 6 - not used
  50. * 7 - cpu timer (used by default)
  51. *
  52. */
  53. extern void emma2rh_sw_irq_init(u32 base);
  54. extern void emma2rh_gpio_irq_init(u32 base);
  55. extern void emma2rh_irq_init(u32 base);
  56. extern void emma2rh_irq_dispatch(void);
  57. static struct irqaction irq_cascade = {
  58. .handler = no_action,
  59. .flags = 0,
  60. .mask = CPU_MASK_NONE,
  61. .name = "cascade",
  62. .dev_id = NULL,
  63. .next = NULL,
  64. };
  65. void __init arch_init_irq(void)
  66. {
  67. u32 reg;
  68. db_run(printk("markeins_irq_setup invoked.\n"));
  69. /* by default, interrupts are disabled. */
  70. emma2rh_out32(EMMA2RH_BHIF_INT_EN_0, 0);
  71. emma2rh_out32(EMMA2RH_BHIF_INT_EN_1, 0);
  72. emma2rh_out32(EMMA2RH_BHIF_INT_EN_2, 0);
  73. emma2rh_out32(EMMA2RH_BHIF_INT1_EN_0, 0);
  74. emma2rh_out32(EMMA2RH_BHIF_INT1_EN_1, 0);
  75. emma2rh_out32(EMMA2RH_BHIF_INT1_EN_2, 0);
  76. emma2rh_out32(EMMA2RH_BHIF_SW_INT_EN, 0);
  77. clear_c0_status(0xff00);
  78. set_c0_status(0x0400);
  79. #define GPIO_PCI (0xf<<15)
  80. /* setup GPIO interrupt for PCI interface */
  81. /* direction input */
  82. reg = emma2rh_in32(EMMA2RH_GPIO_DIR);
  83. emma2rh_out32(EMMA2RH_GPIO_DIR, reg & ~GPIO_PCI);
  84. /* disable interrupt */
  85. reg = emma2rh_in32(EMMA2RH_GPIO_INT_MASK);
  86. emma2rh_out32(EMMA2RH_GPIO_INT_MASK, reg & ~GPIO_PCI);
  87. /* level triggerd */
  88. reg = emma2rh_in32(EMMA2RH_GPIO_INT_MODE);
  89. emma2rh_out32(EMMA2RH_GPIO_INT_MODE, reg | GPIO_PCI);
  90. reg = emma2rh_in32(EMMA2RH_GPIO_INT_CND_A);
  91. emma2rh_out32(EMMA2RH_GPIO_INT_CND_A, reg & (~GPIO_PCI));
  92. /* interrupt clear */
  93. emma2rh_out32(EMMA2RH_GPIO_INT_ST, ~GPIO_PCI);
  94. /* init all controllers */
  95. emma2rh_irq_init(EMMA2RH_IRQ_BASE);
  96. emma2rh_sw_irq_init(EMMA2RH_SW_IRQ_BASE);
  97. emma2rh_gpio_irq_init(EMMA2RH_GPIO_IRQ_BASE);
  98. mips_cpu_irq_init(CPU_IRQ_BASE);
  99. /* setup cascade interrupts */
  100. setup_irq(EMMA2RH_IRQ_BASE + EMMA2RH_SW_CASCADE, &irq_cascade);
  101. setup_irq(EMMA2RH_IRQ_BASE + EMMA2RH_GPIO_CASCADE, &irq_cascade);
  102. setup_irq(CPU_IRQ_BASE + CPU_EMMA2RH_CASCADE, &irq_cascade);
  103. }
  104. asmlinkage void plat_irq_dispatch(void)
  105. {
  106. unsigned int pending = read_c0_status() & read_c0_cause();
  107. if (pending & STATUSF_IP7)
  108. do_IRQ(CPU_IRQ_BASE + 7);
  109. else if (pending & STATUSF_IP2)
  110. emma2rh_irq_dispatch();
  111. else if (pending & STATUSF_IP1)
  112. do_IRQ(CPU_IRQ_BASE + 1);
  113. else if (pending & STATUSF_IP0)
  114. do_IRQ(CPU_IRQ_BASE + 0);
  115. else
  116. spurious_interrupt();
  117. }