irq.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /*
  2. * Copyright (C) 2007 Lemote Inc. & Insititute of Computing Technology
  3. * Author: Fuxin Zhang, zhangfx@lemote.com
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License as published by the
  7. * Free Software Foundation; either version 2 of the License, or (at your
  8. * option) any later version.
  9. *
  10. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  11. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  12. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
  13. * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  14. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  15. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  16. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  17. * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  18. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  19. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  20. *
  21. * You should have received a copy of the GNU General Public License along
  22. * with this program; if not, write to the Free Software Foundation, Inc.,
  23. * 675 Mass Ave, Cambridge, MA 02139, USA.
  24. *
  25. */
  26. #include <linux/delay.h>
  27. #include <linux/io.h>
  28. #include <linux/init.h>
  29. #include <linux/interrupt.h>
  30. #include <linux/irq.h>
  31. #include <asm/irq_cpu.h>
  32. #include <asm/i8259.h>
  33. #include <asm/mipsregs.h>
  34. #include <asm/mips-boards/bonito64.h>
  35. /*
  36. * the first level int-handler will jump here if it is a bonito irq
  37. */
  38. static void bonito_irqdispatch(void)
  39. {
  40. u32 int_status;
  41. int i;
  42. /* workaround the IO dma problem: let cpu looping to allow DMA finish */
  43. int_status = BONITO_INTISR;
  44. if (int_status & (1 << 10)) {
  45. while (int_status & (1 << 10)) {
  46. udelay(1);
  47. int_status = BONITO_INTISR;
  48. }
  49. }
  50. /* Get pending sources, masked by current enables */
  51. int_status = BONITO_INTISR & BONITO_INTEN;
  52. if (int_status != 0) {
  53. i = __ffs(int_status);
  54. int_status &= ~(1 << i);
  55. do_IRQ(BONITO_IRQ_BASE + i);
  56. }
  57. }
  58. static void i8259_irqdispatch(void)
  59. {
  60. int irq;
  61. irq = i8259_irq();
  62. if (irq >= 0) {
  63. do_IRQ(irq);
  64. } else {
  65. spurious_interrupt();
  66. }
  67. }
  68. asmlinkage void plat_irq_dispatch(void)
  69. {
  70. unsigned int pending = read_c0_cause() & read_c0_status() & ST0_IM;
  71. if (pending & CAUSEF_IP7) {
  72. do_IRQ(MIPS_CPU_IRQ_BASE + 7);
  73. } else if (pending & CAUSEF_IP5) {
  74. i8259_irqdispatch();
  75. } else if (pending & CAUSEF_IP2) {
  76. bonito_irqdispatch();
  77. } else {
  78. spurious_interrupt();
  79. }
  80. }
  81. static struct irqaction cascade_irqaction = {
  82. .handler = no_action,
  83. .name = "cascade",
  84. };
  85. void __init arch_init_irq(void)
  86. {
  87. extern void bonito_irq_init(void);
  88. /*
  89. * Clear all of the interrupts while we change the able around a bit.
  90. * int-handler is not on bootstrap
  91. */
  92. clear_c0_status(ST0_IM | ST0_BEV);
  93. local_irq_disable();
  94. /* most bonito irq should be level triggered */
  95. BONITO_INTEDGE = BONITO_ICU_SYSTEMERR | BONITO_ICU_MASTERERR |
  96. BONITO_ICU_RETRYERR | BONITO_ICU_MBOXES;
  97. BONITO_INTSTEER = 0;
  98. /*
  99. * Mask out all interrupt by writing "1" to all bit position in
  100. * the interrupt reset reg.
  101. */
  102. BONITO_INTENCLR = ~0;
  103. /* init all controller
  104. * 0-15 ------> i8259 interrupt
  105. * 16-23 ------> mips cpu interrupt
  106. * 32-63 ------> bonito irq
  107. */
  108. /* Sets the first-level interrupt dispatcher. */
  109. mips_cpu_irq_init();
  110. init_i8259_irqs();
  111. bonito_irq_init();
  112. /*
  113. printk("GPIODATA=%x, GPIOIE=%x\n", BONITO_GPIODATA, BONITO_GPIOIE);
  114. printk("INTEN=%x, INTSET=%x, INTCLR=%x, INTISR=%x\n",
  115. BONITO_INTEN, BONITO_INTENSET,
  116. BONITO_INTENCLR, BONITO_INTISR);
  117. */
  118. /* bonito irq at IP2 */
  119. setup_irq(MIPS_CPU_IRQ_BASE + 2, &cascade_irqaction);
  120. /* 8259 irq at IP5 */
  121. setup_irq(MIPS_CPU_IRQ_BASE + 5, &cascade_irqaction);
  122. }