irq.c 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. /*
  2. * linux/arch/arm/mach-omap1/irq.c
  3. *
  4. * Interrupt handler for all OMAP boards
  5. *
  6. * Copyright (C) 2004 Nokia Corporation
  7. * Written by Tony Lindgren <tony@atomide.com>
  8. * Major cleanups by Juha Yrjölä <juha.yrjola@nokia.com>
  9. *
  10. * Completely re-written to support various OMAP chips with bank specific
  11. * interrupt handlers.
  12. *
  13. * Some snippets of the code taken from the older OMAP interrupt handler
  14. * Copyright (C) 2001 RidgeRun, Inc. Greg Lonnon <glonnon@ridgerun.com>
  15. *
  16. * GPIO interrupt handler moved to gpio.c by Juha Yrjola
  17. *
  18. * This program is free software; you can redistribute it and/or modify it
  19. * under the terms of the GNU General Public License as published by the
  20. * Free Software Foundation; either version 2 of the License, or (at your
  21. * option) any later version.
  22. *
  23. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  24. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  25. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
  26. * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  27. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  28. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  29. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  30. * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  31. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  32. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  33. *
  34. * You should have received a copy of the GNU General Public License along
  35. * with this program; if not, write to the Free Software Foundation, Inc.,
  36. * 675 Mass Ave, Cambridge, MA 02139, USA.
  37. */
  38. #include <linux/gpio.h>
  39. #include <linux/init.h>
  40. #include <linux/module.h>
  41. #include <linux/sched.h>
  42. #include <linux/interrupt.h>
  43. #include <linux/io.h>
  44. #include <asm/irq.h>
  45. #include <asm/mach/irq.h>
  46. #include <plat/cpu.h>
  47. #include <mach/hardware.h>
  48. #define IRQ_BANK(irq) ((irq) >> 5)
  49. #define IRQ_BIT(irq) ((irq) & 0x1f)
  50. struct omap_irq_bank {
  51. unsigned long base_reg;
  52. unsigned long trigger_map;
  53. unsigned long wake_enable;
  54. };
  55. u32 omap_irq_flags;
  56. static unsigned int irq_bank_count;
  57. static struct omap_irq_bank *irq_banks;
  58. static inline unsigned int irq_bank_readl(int bank, int offset)
  59. {
  60. return omap_readl(irq_banks[bank].base_reg + offset);
  61. }
  62. static inline void irq_bank_writel(unsigned long value, int bank, int offset)
  63. {
  64. omap_writel(value, irq_banks[bank].base_reg + offset);
  65. }
  66. static void omap_ack_irq(struct irq_data *d)
  67. {
  68. if (d->irq > 31)
  69. omap_writel(0x1, OMAP_IH2_BASE + IRQ_CONTROL_REG_OFFSET);
  70. omap_writel(0x1, OMAP_IH1_BASE + IRQ_CONTROL_REG_OFFSET);
  71. }
  72. static void omap_mask_irq(struct irq_data *d)
  73. {
  74. int bank = IRQ_BANK(d->irq);
  75. u32 l;
  76. l = omap_readl(irq_banks[bank].base_reg + IRQ_MIR_REG_OFFSET);
  77. l |= 1 << IRQ_BIT(d->irq);
  78. omap_writel(l, irq_banks[bank].base_reg + IRQ_MIR_REG_OFFSET);
  79. }
  80. static void omap_unmask_irq(struct irq_data *d)
  81. {
  82. int bank = IRQ_BANK(d->irq);
  83. u32 l;
  84. l = omap_readl(irq_banks[bank].base_reg + IRQ_MIR_REG_OFFSET);
  85. l &= ~(1 << IRQ_BIT(d->irq));
  86. omap_writel(l, irq_banks[bank].base_reg + IRQ_MIR_REG_OFFSET);
  87. }
  88. static void omap_mask_ack_irq(struct irq_data *d)
  89. {
  90. omap_mask_irq(d);
  91. omap_ack_irq(d);
  92. }
  93. static int omap_wake_irq(struct irq_data *d, unsigned int enable)
  94. {
  95. int bank = IRQ_BANK(d->irq);
  96. if (enable)
  97. irq_banks[bank].wake_enable |= IRQ_BIT(d->irq);
  98. else
  99. irq_banks[bank].wake_enable &= ~IRQ_BIT(d->irq);
  100. return 0;
  101. }
  102. /*
  103. * Allows tuning the IRQ type and priority
  104. *
  105. * NOTE: There is currently no OMAP fiq handler for Linux. Read the
  106. * mailing list threads on FIQ handlers if you are planning to
  107. * add a FIQ handler for OMAP.
  108. */
  109. static void omap_irq_set_cfg(int irq, int fiq, int priority, int trigger)
  110. {
  111. signed int bank;
  112. unsigned long val, offset;
  113. bank = IRQ_BANK(irq);
  114. /* FIQ is only available on bank 0 interrupts */
  115. fiq = bank ? 0 : (fiq & 0x1);
  116. val = fiq | ((priority & 0x1f) << 2) | ((trigger & 0x1) << 1);
  117. offset = IRQ_ILR0_REG_OFFSET + IRQ_BIT(irq) * 0x4;
  118. irq_bank_writel(val, bank, offset);
  119. }
  120. #if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850)
  121. static struct omap_irq_bank omap7xx_irq_banks[] = {
  122. { .base_reg = OMAP_IH1_BASE, .trigger_map = 0xb3f8e22f },
  123. { .base_reg = OMAP_IH2_BASE, .trigger_map = 0xfdb9c1f2 },
  124. { .base_reg = OMAP_IH2_BASE + 0x100, .trigger_map = 0x800040f3 },
  125. };
  126. #endif
  127. #ifdef CONFIG_ARCH_OMAP15XX
  128. static struct omap_irq_bank omap1510_irq_banks[] = {
  129. { .base_reg = OMAP_IH1_BASE, .trigger_map = 0xb3febfff },
  130. { .base_reg = OMAP_IH2_BASE, .trigger_map = 0xffbfffed },
  131. };
  132. static struct omap_irq_bank omap310_irq_banks[] = {
  133. { .base_reg = OMAP_IH1_BASE, .trigger_map = 0xb3faefc3 },
  134. { .base_reg = OMAP_IH2_BASE, .trigger_map = 0x65b3c061 },
  135. };
  136. #endif
  137. #if defined(CONFIG_ARCH_OMAP16XX)
  138. static struct omap_irq_bank omap1610_irq_banks[] = {
  139. { .base_reg = OMAP_IH1_BASE, .trigger_map = 0xb3fefe8f },
  140. { .base_reg = OMAP_IH2_BASE, .trigger_map = 0xfdb7c1fd },
  141. { .base_reg = OMAP_IH2_BASE + 0x100, .trigger_map = 0xffffb7ff },
  142. { .base_reg = OMAP_IH2_BASE + 0x200, .trigger_map = 0xffffffff },
  143. };
  144. #endif
  145. static struct irq_chip omap_irq_chip = {
  146. .name = "MPU",
  147. .irq_ack = omap_mask_ack_irq,
  148. .irq_mask = omap_mask_irq,
  149. .irq_unmask = omap_unmask_irq,
  150. .irq_set_wake = omap_wake_irq,
  151. };
  152. void __init omap1_init_irq(void)
  153. {
  154. int i, j;
  155. #if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
  156. if (cpu_is_omap7xx()) {
  157. omap_irq_flags = INT_7XX_IH2_IRQ;
  158. irq_banks = omap7xx_irq_banks;
  159. irq_bank_count = ARRAY_SIZE(omap7xx_irq_banks);
  160. }
  161. #endif
  162. #ifdef CONFIG_ARCH_OMAP15XX
  163. if (cpu_is_omap1510()) {
  164. omap_irq_flags = INT_1510_IH2_IRQ;
  165. irq_banks = omap1510_irq_banks;
  166. irq_bank_count = ARRAY_SIZE(omap1510_irq_banks);
  167. }
  168. if (cpu_is_omap310()) {
  169. omap_irq_flags = INT_1510_IH2_IRQ;
  170. irq_banks = omap310_irq_banks;
  171. irq_bank_count = ARRAY_SIZE(omap310_irq_banks);
  172. }
  173. #endif
  174. #if defined(CONFIG_ARCH_OMAP16XX)
  175. if (cpu_is_omap16xx()) {
  176. omap_irq_flags = INT_1510_IH2_IRQ;
  177. irq_banks = omap1610_irq_banks;
  178. irq_bank_count = ARRAY_SIZE(omap1610_irq_banks);
  179. }
  180. #endif
  181. printk("Total of %i interrupts in %i interrupt banks\n",
  182. irq_bank_count * 32, irq_bank_count);
  183. /* Mask and clear all interrupts */
  184. for (i = 0; i < irq_bank_count; i++) {
  185. irq_bank_writel(~0x0, i, IRQ_MIR_REG_OFFSET);
  186. irq_bank_writel(0x0, i, IRQ_ITR_REG_OFFSET);
  187. }
  188. /* Clear any pending interrupts */
  189. irq_bank_writel(0x03, 0, IRQ_CONTROL_REG_OFFSET);
  190. irq_bank_writel(0x03, 1, IRQ_CONTROL_REG_OFFSET);
  191. /* Enable interrupts in global mask */
  192. if (cpu_is_omap7xx())
  193. irq_bank_writel(0x0, 0, IRQ_GMR_REG_OFFSET);
  194. /* Install the interrupt handlers for each bank */
  195. for (i = 0; i < irq_bank_count; i++) {
  196. for (j = i * 32; j < (i + 1) * 32; j++) {
  197. int irq_trigger;
  198. irq_trigger = irq_banks[i].trigger_map >> IRQ_BIT(j);
  199. omap_irq_set_cfg(j, 0, 0, irq_trigger);
  200. irq_set_chip_and_handler(j, &omap_irq_chip,
  201. handle_level_irq);
  202. set_irq_flags(j, IRQF_VALID);
  203. }
  204. }
  205. /* Unmask level 2 handler */
  206. if (cpu_is_omap7xx())
  207. omap_unmask_irq(irq_get_irq_data(INT_7XX_IH2_IRQ));
  208. else if (cpu_is_omap15xx())
  209. omap_unmask_irq(irq_get_irq_data(INT_1510_IH2_IRQ));
  210. else if (cpu_is_omap16xx())
  211. omap_unmask_irq(irq_get_irq_data(INT_1610_IH2_IRQ));
  212. }