irq.c 7.2 KB

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