irq.c 7.9 KB

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