irq.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /*
  2. * linux/arch/arm/mach-omap2/irq.c
  3. *
  4. * Interrupt handler for OMAP2 boards.
  5. *
  6. * Copyright (C) 2005 Nokia Corporation
  7. * Author: Paul Mundt <paul.mundt@nokia.com>
  8. *
  9. * This file is subject to the terms and conditions of the GNU General Public
  10. * License. See the file "COPYING" in the main directory of this archive
  11. * for more details.
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/init.h>
  15. #include <linux/interrupt.h>
  16. #include <linux/io.h>
  17. #include <mach/hardware.h>
  18. #include <asm/mach/irq.h>
  19. /* selected INTC register offsets */
  20. #define INTC_REVISION 0x0000
  21. #define INTC_SYSCONFIG 0x0010
  22. #define INTC_SYSSTATUS 0x0014
  23. #define INTC_CONTROL 0x0048
  24. #define INTC_MIR_CLEAR0 0x0088
  25. #define INTC_MIR_SET0 0x008c
  26. #define INTC_PENDING_IRQ0 0x0098
  27. /* Number of IRQ state bits in each MIR register */
  28. #define IRQ_BITS_PER_REG 32
  29. /*
  30. * OMAP2 has a number of different interrupt controllers, each interrupt
  31. * controller is identified as its own "bank". Register definitions are
  32. * fairly consistent for each bank, but not all registers are implemented
  33. * for each bank.. when in doubt, consult the TRM.
  34. */
  35. static struct omap_irq_bank {
  36. void __iomem *base_reg;
  37. unsigned int nr_irqs;
  38. } __attribute__ ((aligned(4))) irq_banks[] = {
  39. {
  40. /* MPU INTC */
  41. .base_reg = 0,
  42. .nr_irqs = 96,
  43. },
  44. };
  45. /* INTC bank register get/set */
  46. static void intc_bank_write_reg(u32 val, struct omap_irq_bank *bank, u16 reg)
  47. {
  48. __raw_writel(val, bank->base_reg + reg);
  49. }
  50. static u32 intc_bank_read_reg(struct omap_irq_bank *bank, u16 reg)
  51. {
  52. return __raw_readl(bank->base_reg + reg);
  53. }
  54. /* XXX: FIQ and additional INTC support (only MPU at the moment) */
  55. static void omap_ack_irq(unsigned int irq)
  56. {
  57. intc_bank_write_reg(0x1, &irq_banks[0], INTC_CONTROL);
  58. }
  59. static void omap_mask_irq(unsigned int irq)
  60. {
  61. int offset = irq & (~(IRQ_BITS_PER_REG - 1));
  62. irq &= (IRQ_BITS_PER_REG - 1);
  63. intc_bank_write_reg(1 << irq, &irq_banks[0], INTC_MIR_SET0 + offset);
  64. }
  65. static void omap_unmask_irq(unsigned int irq)
  66. {
  67. int offset = irq & (~(IRQ_BITS_PER_REG - 1));
  68. irq &= (IRQ_BITS_PER_REG - 1);
  69. intc_bank_write_reg(1 << irq, &irq_banks[0], INTC_MIR_CLEAR0 + offset);
  70. }
  71. static void omap_mask_ack_irq(unsigned int irq)
  72. {
  73. omap_mask_irq(irq);
  74. omap_ack_irq(irq);
  75. }
  76. static struct irq_chip omap_irq_chip = {
  77. .name = "INTC",
  78. .ack = omap_mask_ack_irq,
  79. .mask = omap_mask_irq,
  80. .unmask = omap_unmask_irq,
  81. };
  82. static void __init omap_irq_bank_init_one(struct omap_irq_bank *bank)
  83. {
  84. unsigned long tmp;
  85. tmp = intc_bank_read_reg(bank, INTC_REVISION) & 0xff;
  86. printk(KERN_INFO "IRQ: Found an INTC at 0x%p "
  87. "(revision %ld.%ld) with %d interrupts\n",
  88. bank->base_reg, tmp >> 4, tmp & 0xf, bank->nr_irqs);
  89. tmp = intc_bank_read_reg(bank, INTC_SYSCONFIG);
  90. tmp |= 1 << 1; /* soft reset */
  91. intc_bank_write_reg(tmp, bank, INTC_SYSCONFIG);
  92. while (!(intc_bank_read_reg(bank, INTC_SYSSTATUS) & 0x1))
  93. /* Wait for reset to complete */;
  94. /* Enable autoidle */
  95. intc_bank_write_reg(1 << 0, bank, INTC_SYSCONFIG);
  96. }
  97. void __init omap_init_irq(void)
  98. {
  99. unsigned long nr_of_irqs = 0;
  100. unsigned int nr_banks = 0;
  101. int i;
  102. for (i = 0; i < ARRAY_SIZE(irq_banks); i++) {
  103. struct omap_irq_bank *bank = irq_banks + i;
  104. if (cpu_is_omap24xx())
  105. bank->base_reg = OMAP2_IO_ADDRESS(OMAP24XX_IC_BASE);
  106. else if (cpu_is_omap34xx())
  107. bank->base_reg = OMAP2_IO_ADDRESS(OMAP34XX_IC_BASE);
  108. omap_irq_bank_init_one(bank);
  109. nr_of_irqs += bank->nr_irqs;
  110. nr_banks++;
  111. }
  112. printk(KERN_INFO "Total of %ld interrupts on %d active controller%s\n",
  113. nr_of_irqs, nr_banks, nr_banks > 1 ? "s" : "");
  114. for (i = 0; i < nr_of_irqs; i++) {
  115. set_irq_chip(i, &omap_irq_chip);
  116. set_irq_handler(i, handle_level_irq);
  117. set_irq_flags(i, IRQF_VALID);
  118. }
  119. }