irq.c 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. /*
  2. * Copyright (C) 2011-12 Synopsys, Inc. (www.synopsys.com)
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. *
  8. */
  9. #include <linux/interrupt.h>
  10. #include <linux/module.h>
  11. #include <linux/of.h>
  12. #include <linux/irqdomain.h>
  13. #include <linux/irqchip.h>
  14. #include "../../drivers/irqchip/irqchip.h"
  15. #include <asm/sections.h>
  16. #include <asm/irq.h>
  17. #include <asm/mach_desc.h>
  18. /*
  19. * Early Hardware specific Interrupt setup
  20. * -Called very early (start_kernel -> setup_arch -> setup_processor)
  21. * -Platform Independent (must for any ARC700)
  22. * -Needed for each CPU (hence not foldable into init_IRQ)
  23. *
  24. * what it does ?
  25. * -setup Vector Table Base Reg - in case Linux not linked at 0x8000_0000
  26. * -Disable all IRQs (on CPU side)
  27. * -Optionally, setup the High priority Interrupts as Level 2 IRQs
  28. */
  29. void __cpuinit arc_init_IRQ(void)
  30. {
  31. int level_mask = 0;
  32. write_aux_reg(AUX_INTR_VEC_BASE, _int_vec_base_lds);
  33. /* Disable all IRQs: enable them as devices request */
  34. write_aux_reg(AUX_IENABLE, 0);
  35. /* setup any high priority Interrupts (Level2 in ARCompact jargon) */
  36. #ifdef CONFIG_ARC_IRQ3_LV2
  37. level_mask |= (1 << 3);
  38. #endif
  39. #ifdef CONFIG_ARC_IRQ5_LV2
  40. level_mask |= (1 << 5);
  41. #endif
  42. #ifdef CONFIG_ARC_IRQ6_LV2
  43. level_mask |= (1 << 6);
  44. #endif
  45. if (level_mask) {
  46. pr_info("Level-2 interrupts bitset %x\n", level_mask);
  47. write_aux_reg(AUX_IRQ_LEV, level_mask);
  48. }
  49. }
  50. /*
  51. * ARC700 core includes a simple on-chip intc supporting
  52. * -per IRQ enable/disable
  53. * -2 levels of interrupts (high/low)
  54. * -all interrupts being level triggered
  55. *
  56. * To reduce platform code, we assume all IRQs directly hooked-up into intc.
  57. * Platforms with external intc, hence cascaded IRQs, are free to over-ride
  58. * below, per IRQ.
  59. */
  60. static void arc_mask_irq(struct irq_data *data)
  61. {
  62. arch_mask_irq(data->irq);
  63. }
  64. static void arc_unmask_irq(struct irq_data *data)
  65. {
  66. arch_unmask_irq(data->irq);
  67. }
  68. static struct irq_chip onchip_intc = {
  69. .name = "ARC In-core Intc",
  70. .irq_mask = arc_mask_irq,
  71. .irq_unmask = arc_unmask_irq,
  72. };
  73. static int arc_intc_domain_map(struct irq_domain *d, unsigned int irq,
  74. irq_hw_number_t hw)
  75. {
  76. if (irq == TIMER0_IRQ)
  77. irq_set_chip_and_handler(irq, &onchip_intc, handle_percpu_irq);
  78. else
  79. irq_set_chip_and_handler(irq, &onchip_intc, handle_level_irq);
  80. return 0;
  81. }
  82. static const struct irq_domain_ops arc_intc_domain_ops = {
  83. .xlate = irq_domain_xlate_onecell,
  84. .map = arc_intc_domain_map,
  85. };
  86. static struct irq_domain *root_domain;
  87. static int __init
  88. init_onchip_IRQ(struct device_node *intc, struct device_node *parent)
  89. {
  90. if (parent)
  91. panic("DeviceTree incore intc not a root irq controller\n");
  92. root_domain = irq_domain_add_legacy(intc, NR_CPU_IRQS, 0, 0,
  93. &arc_intc_domain_ops, NULL);
  94. if (!root_domain)
  95. panic("root irq domain not avail\n");
  96. /* with this we don't need to export root_domain */
  97. irq_set_default_host(root_domain);
  98. return 0;
  99. }
  100. IRQCHIP_DECLARE(arc_intc, "snps,arc700-intc", init_onchip_IRQ);
  101. /*
  102. * Late Interrupt system init called from start_kernel for Boot CPU only
  103. *
  104. * Since slab must already be initialized, platforms can start doing any
  105. * needed request_irq( )s
  106. */
  107. void __init init_IRQ(void)
  108. {
  109. /* Any external intc can be setup here */
  110. if (machine_desc->init_irq)
  111. machine_desc->init_irq();
  112. /* process the entire interrupt tree in one go */
  113. irqchip_init();
  114. #ifdef CONFIG_SMP
  115. /* Master CPU can initialize it's side of IPI */
  116. if (machine_desc->init_smp)
  117. machine_desc->init_smp(smp_processor_id());
  118. #endif
  119. }
  120. /*
  121. * "C" Entry point for any ARC ISR, called from low level vector handler
  122. * @irq is the vector number read from ICAUSE reg of on-chip intc
  123. */
  124. void arch_do_IRQ(unsigned int irq, struct pt_regs *regs)
  125. {
  126. struct pt_regs *old_regs = set_irq_regs(regs);
  127. irq_enter();
  128. generic_handle_irq(irq);
  129. irq_exit();
  130. set_irq_regs(old_regs);
  131. }
  132. int __init get_hw_config_num_irq(void)
  133. {
  134. uint32_t val = read_aux_reg(ARC_REG_VECBASE_BCR);
  135. switch (val & 0x03) {
  136. case 0:
  137. return 16;
  138. case 1:
  139. return 32;
  140. case 2:
  141. return 8;
  142. default:
  143. return 0;
  144. }
  145. return 0;
  146. }
  147. /*
  148. * arch_local_irq_enable - Enable interrupts.
  149. *
  150. * 1. Explicitly called to re-enable interrupts
  151. * 2. Implicitly called from spin_unlock_irq, write_unlock_irq etc
  152. * which maybe in hard ISR itself
  153. *
  154. * Semantics of this function change depending on where it is called from:
  155. *
  156. * -If called from hard-ISR, it must not invert interrupt priorities
  157. * e.g. suppose TIMER is high priority (Level 2) IRQ
  158. * Time hard-ISR, timer_interrupt( ) calls spin_unlock_irq several times.
  159. * Here local_irq_enable( ) shd not re-enable lower priority interrupts
  160. * -If called from soft-ISR, it must re-enable all interrupts
  161. * soft ISR are low prioity jobs which can be very slow, thus all IRQs
  162. * must be enabled while they run.
  163. * Now hardware context wise we may still be in L2 ISR (not done rtie)
  164. * still we must re-enable both L1 and L2 IRQs
  165. * Another twist is prev scenario with flow being
  166. * L1 ISR ==> interrupted by L2 ISR ==> L2 soft ISR
  167. * here we must not re-enable Ll as prev Ll Interrupt's h/w context will get
  168. * over-written (this is deficiency in ARC700 Interrupt mechanism)
  169. */
  170. #ifdef CONFIG_ARC_COMPACT_IRQ_LEVELS /* Complex version for 2 IRQ levels */
  171. void arch_local_irq_enable(void)
  172. {
  173. unsigned long flags;
  174. flags = arch_local_save_flags();
  175. /* Allow both L1 and L2 at the onset */
  176. flags |= (STATUS_E1_MASK | STATUS_E2_MASK);
  177. /* Called from hard ISR (between irq_enter and irq_exit) */
  178. if (in_irq()) {
  179. /* If in L2 ISR, don't re-enable any further IRQs as this can
  180. * cause IRQ priorities to get upside down. e.g. it could allow
  181. * L1 be taken while in L2 hard ISR which is wrong not only in
  182. * theory, it can also cause the dreaded L1-L2-L1 scenario
  183. */
  184. if (flags & STATUS_A2_MASK)
  185. flags &= ~(STATUS_E1_MASK | STATUS_E2_MASK);
  186. /* Even if in L1 ISR, allowe Higher prio L2 IRQs */
  187. else if (flags & STATUS_A1_MASK)
  188. flags &= ~(STATUS_E1_MASK);
  189. }
  190. /* called from soft IRQ, ideally we want to re-enable all levels */
  191. else if (in_softirq()) {
  192. /* However if this is case of L1 interrupted by L2,
  193. * re-enabling both may cause whaco L1-L2-L1 scenario
  194. * because ARC700 allows level 1 to interrupt an active L2 ISR
  195. * Thus we disable both
  196. * However some code, executing in soft ISR wants some IRQs
  197. * to be enabled so we re-enable L2 only
  198. *
  199. * How do we determine L1 intr by L2
  200. * -A2 is set (means in L2 ISR)
  201. * -E1 is set in this ISR's pt_regs->status32 which is
  202. * saved copy of status32_l2 when l2 ISR happened
  203. */
  204. struct pt_regs *pt = get_irq_regs();
  205. if ((flags & STATUS_A2_MASK) && pt &&
  206. (pt->status32 & STATUS_A1_MASK)) {
  207. /*flags &= ~(STATUS_E1_MASK | STATUS_E2_MASK); */
  208. flags &= ~(STATUS_E1_MASK);
  209. }
  210. }
  211. arch_local_irq_restore(flags);
  212. }
  213. #else /* ! CONFIG_ARC_COMPACT_IRQ_LEVELS */
  214. /*
  215. * Simpler version for only 1 level of interrupt
  216. * Here we only Worry about Level 1 Bits
  217. */
  218. void arch_local_irq_enable(void)
  219. {
  220. unsigned long flags;
  221. /*
  222. * ARC IDE Drivers tries to re-enable interrupts from hard-isr
  223. * context which is simply wrong
  224. */
  225. if (in_irq()) {
  226. WARN_ONCE(1, "IRQ enabled from hard-isr");
  227. return;
  228. }
  229. flags = arch_local_save_flags();
  230. flags |= (STATUS_E1_MASK | STATUS_E2_MASK);
  231. arch_local_irq_restore(flags);
  232. }
  233. #endif
  234. EXPORT_SYMBOL(arch_local_irq_enable);