intc-compact.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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/irq.h>
  16. /*
  17. * Early Hardware specific Interrupt setup
  18. * -Platform independent, needed for each CPU (not foldable into init_IRQ)
  19. * -Called very early (start_kernel -> setup_arch -> setup_processor)
  20. *
  21. * what it does ?
  22. * -Optionally, setup the High priority Interrupts as Level 2 IRQs
  23. */
  24. void arc_init_IRQ(void)
  25. {
  26. int level_mask = 0;
  27. /* setup any high priority Interrupts (Level2 in ARCompact jargon) */
  28. level_mask |= IS_ENABLED(CONFIG_ARC_IRQ3_LV2) << 3;
  29. level_mask |= IS_ENABLED(CONFIG_ARC_IRQ5_LV2) << 5;
  30. level_mask |= IS_ENABLED(CONFIG_ARC_IRQ6_LV2) << 6;
  31. /*
  32. * Write to register, even if no LV2 IRQs configured to reset it
  33. * in case bootloader had mucked with it
  34. */
  35. write_aux_reg(AUX_IRQ_LEV, level_mask);
  36. if (level_mask)
  37. pr_info("Level-2 interrupts bitset %x\n", level_mask);
  38. }
  39. /*
  40. * ARC700 core includes a simple on-chip intc supporting
  41. * -per IRQ enable/disable
  42. * -2 levels of interrupts (high/low)
  43. * -all interrupts being level triggered
  44. *
  45. * To reduce platform code, we assume all IRQs directly hooked-up into intc.
  46. * Platforms with external intc, hence cascaded IRQs, are free to over-ride
  47. * below, per IRQ.
  48. */
  49. static void arc_irq_mask(struct irq_data *data)
  50. {
  51. unsigned int ienb;
  52. ienb = read_aux_reg(AUX_IENABLE);
  53. ienb &= ~(1 << data->irq);
  54. write_aux_reg(AUX_IENABLE, ienb);
  55. }
  56. static void arc_irq_unmask(struct irq_data *data)
  57. {
  58. unsigned int ienb;
  59. ienb = read_aux_reg(AUX_IENABLE);
  60. ienb |= (1 << data->irq);
  61. write_aux_reg(AUX_IENABLE, ienb);
  62. }
  63. static struct irq_chip onchip_intc = {
  64. .name = "ARC In-core Intc",
  65. .irq_mask = arc_irq_mask,
  66. .irq_unmask = arc_irq_unmask,
  67. };
  68. static int arc_intc_domain_map(struct irq_domain *d, unsigned int irq,
  69. irq_hw_number_t hw)
  70. {
  71. /*
  72. * XXX: the IPI IRQ needs to be handled like TIMER too. However ARC core
  73. * code doesn't own it (like TIMER0). ISS IDU / ezchip define it
  74. * in platform header which can't be included here as it goes
  75. * against multi-platform image philisophy
  76. */
  77. if (irq == TIMER0_IRQ)
  78. irq_set_chip_and_handler(irq, &onchip_intc, handle_percpu_irq);
  79. else
  80. irq_set_chip_and_handler(irq, &onchip_intc, handle_level_irq);
  81. return 0;
  82. }
  83. static const struct irq_domain_ops arc_intc_domain_ops = {
  84. .xlate = irq_domain_xlate_onecell,
  85. .map = arc_intc_domain_map,
  86. };
  87. static struct irq_domain *root_domain;
  88. static int __init
  89. init_onchip_IRQ(struct device_node *intc, struct device_node *parent)
  90. {
  91. if (parent)
  92. panic("DeviceTree incore intc not a root irq controller\n");
  93. root_domain = irq_domain_add_legacy(intc, NR_CPU_IRQS, 0, 0,
  94. &arc_intc_domain_ops, NULL);
  95. if (!root_domain)
  96. panic("root irq domain not avail\n");
  97. /* with this we don't need to export root_domain */
  98. irq_set_default_host(root_domain);
  99. return 0;
  100. }
  101. IRQCHIP_DECLARE(arc_intc, "snps,arc700-intc", init_onchip_IRQ);
  102. /*
  103. * arch_local_irq_enable - Enable interrupts.
  104. *
  105. * 1. Explicitly called to re-enable interrupts
  106. * 2. Implicitly called from spin_unlock_irq, write_unlock_irq etc
  107. * which maybe in hard ISR itself
  108. *
  109. * Semantics of this function change depending on where it is called from:
  110. *
  111. * -If called from hard-ISR, it must not invert interrupt priorities
  112. * e.g. suppose TIMER is high priority (Level 2) IRQ
  113. * Time hard-ISR, timer_interrupt( ) calls spin_unlock_irq several times.
  114. * Here local_irq_enable( ) shd not re-enable lower priority interrupts
  115. * -If called from soft-ISR, it must re-enable all interrupts
  116. * soft ISR are low prioity jobs which can be very slow, thus all IRQs
  117. * must be enabled while they run.
  118. * Now hardware context wise we may still be in L2 ISR (not done rtie)
  119. * still we must re-enable both L1 and L2 IRQs
  120. * Another twist is prev scenario with flow being
  121. * L1 ISR ==> interrupted by L2 ISR ==> L2 soft ISR
  122. * here we must not re-enable Ll as prev Ll Interrupt's h/w context will get
  123. * over-written (this is deficiency in ARC700 Interrupt mechanism)
  124. */
  125. #ifdef CONFIG_ARC_COMPACT_IRQ_LEVELS /* Complex version for 2 IRQ levels */
  126. void arch_local_irq_enable(void)
  127. {
  128. unsigned long flags = arch_local_save_flags();
  129. /* Allow both L1 and L2 at the onset */
  130. flags |= (STATUS_E1_MASK | STATUS_E2_MASK);
  131. /* Called from hard ISR (between irq_enter and irq_exit) */
  132. if (in_irq()) {
  133. /* If in L2 ISR, don't re-enable any further IRQs as this can
  134. * cause IRQ priorities to get upside down. e.g. it could allow
  135. * L1 be taken while in L2 hard ISR which is wrong not only in
  136. * theory, it can also cause the dreaded L1-L2-L1 scenario
  137. */
  138. if (flags & STATUS_A2_MASK)
  139. flags &= ~(STATUS_E1_MASK | STATUS_E2_MASK);
  140. /* Even if in L1 ISR, allowe Higher prio L2 IRQs */
  141. else if (flags & STATUS_A1_MASK)
  142. flags &= ~(STATUS_E1_MASK);
  143. }
  144. /* called from soft IRQ, ideally we want to re-enable all levels */
  145. else if (in_softirq()) {
  146. /* However if this is case of L1 interrupted by L2,
  147. * re-enabling both may cause whaco L1-L2-L1 scenario
  148. * because ARC700 allows level 1 to interrupt an active L2 ISR
  149. * Thus we disable both
  150. * However some code, executing in soft ISR wants some IRQs
  151. * to be enabled so we re-enable L2 only
  152. *
  153. * How do we determine L1 intr by L2
  154. * -A2 is set (means in L2 ISR)
  155. * -E1 is set in this ISR's pt_regs->status32 which is
  156. * saved copy of status32_l2 when l2 ISR happened
  157. */
  158. struct pt_regs *pt = get_irq_regs();
  159. if ((flags & STATUS_A2_MASK) && pt &&
  160. (pt->status32 & STATUS_A1_MASK)) {
  161. /*flags &= ~(STATUS_E1_MASK | STATUS_E2_MASK); */
  162. flags &= ~(STATUS_E1_MASK);
  163. }
  164. }
  165. arch_local_irq_restore(flags);
  166. }
  167. #else /* ! CONFIG_ARC_COMPACT_IRQ_LEVELS */
  168. /*
  169. * Simpler version for only 1 level of interrupt
  170. * Here we only Worry about Level 1 Bits
  171. */
  172. void arch_local_irq_enable(void)
  173. {
  174. unsigned long flags;
  175. /*
  176. * ARC IDE Drivers tries to re-enable interrupts from hard-isr
  177. * context which is simply wrong
  178. */
  179. if (in_irq()) {
  180. WARN_ONCE(1, "IRQ enabled from hard-isr");
  181. return;
  182. }
  183. flags = arch_local_save_flags();
  184. flags |= (STATUS_E1_MASK | STATUS_E2_MASK);
  185. arch_local_irq_restore(flags);
  186. }
  187. #endif
  188. EXPORT_SYMBOL(arch_local_irq_enable);