intc-compact.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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 <asm/irq.h>
  15. #define NR_CPU_IRQS 32 /* number of irq lines coming in */
  16. #define TIMER0_IRQ 3 /* Fixed by ISA */
  17. /*
  18. * Early Hardware specific Interrupt setup
  19. * -Platform independent, needed for each CPU (not foldable into init_IRQ)
  20. * -Called very early (start_kernel -> setup_arch -> setup_processor)
  21. *
  22. * what it does ?
  23. * -Optionally, setup the High priority Interrupts as Level 2 IRQs
  24. */
  25. void arc_init_IRQ(void)
  26. {
  27. unsigned int level_mask = 0, i;
  28. /* Is timer high priority Interrupt (Level2 in ARCompact jargon) */
  29. level_mask |= IS_ENABLED(CONFIG_ARC_COMPACT_IRQ_LEVELS) << TIMER0_IRQ;
  30. /*
  31. * Write to register, even if no LV2 IRQs configured to reset it
  32. * in case bootloader had mucked with it
  33. */
  34. write_aux_reg(AUX_IRQ_LEV, level_mask);
  35. if (level_mask)
  36. pr_info("Level-2 interrupts bitset %x\n", level_mask);
  37. /*
  38. * Disable all IRQ lines so faulty external hardware won't
  39. * trigger interrupt that kernel is not ready to handle.
  40. */
  41. for (i = TIMER0_IRQ; i < NR_CPU_IRQS; i++) {
  42. unsigned int ienb;
  43. ienb = read_aux_reg(AUX_IENABLE);
  44. ienb &= ~(1 << i);
  45. write_aux_reg(AUX_IENABLE, ienb);
  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_irq_mask(struct irq_data *data)
  59. {
  60. unsigned int ienb;
  61. ienb = read_aux_reg(AUX_IENABLE);
  62. ienb &= ~(1 << data->hwirq);
  63. write_aux_reg(AUX_IENABLE, ienb);
  64. }
  65. static void arc_irq_unmask(struct irq_data *data)
  66. {
  67. unsigned int ienb;
  68. ienb = read_aux_reg(AUX_IENABLE);
  69. ienb |= (1 << data->hwirq);
  70. write_aux_reg(AUX_IENABLE, ienb);
  71. }
  72. static struct irq_chip onchip_intc = {
  73. .name = "ARC In-core Intc",
  74. .irq_mask = arc_irq_mask,
  75. .irq_unmask = arc_irq_unmask,
  76. };
  77. static int arc_intc_domain_map(struct irq_domain *d, unsigned int irq,
  78. irq_hw_number_t hw)
  79. {
  80. switch (hw) {
  81. case TIMER0_IRQ:
  82. irq_set_percpu_devid(irq);
  83. irq_set_chip_and_handler(irq, &onchip_intc, handle_percpu_irq);
  84. break;
  85. default:
  86. irq_set_chip_and_handler(irq, &onchip_intc, handle_level_irq);
  87. }
  88. return 0;
  89. }
  90. static const struct irq_domain_ops arc_intc_domain_ops = {
  91. .xlate = irq_domain_xlate_onecell,
  92. .map = arc_intc_domain_map,
  93. };
  94. static int __init
  95. init_onchip_IRQ(struct device_node *intc, struct device_node *parent)
  96. {
  97. struct irq_domain *root_domain;
  98. if (parent)
  99. panic("DeviceTree incore intc not a root irq controller\n");
  100. root_domain = irq_domain_add_linear(intc, NR_CPU_IRQS,
  101. &arc_intc_domain_ops, NULL);
  102. if (!root_domain)
  103. panic("root irq domain not avail\n");
  104. /*
  105. * Needed for primary domain lookup to succeed
  106. * This is a primary irqchip, and can never have a parent
  107. */
  108. irq_set_default_host(root_domain);
  109. return 0;
  110. }
  111. IRQCHIP_DECLARE(arc_intc, "snps,arc700-intc", init_onchip_IRQ);
  112. /*
  113. * arch_local_irq_enable - Enable interrupts.
  114. *
  115. * 1. Explicitly called to re-enable interrupts
  116. * 2. Implicitly called from spin_unlock_irq, write_unlock_irq etc
  117. * which maybe in hard ISR itself
  118. *
  119. * Semantics of this function change depending on where it is called from:
  120. *
  121. * -If called from hard-ISR, it must not invert interrupt priorities
  122. * e.g. suppose TIMER is high priority (Level 2) IRQ
  123. * Time hard-ISR, timer_interrupt( ) calls spin_unlock_irq several times.
  124. * Here local_irq_enable( ) shd not re-enable lower priority interrupts
  125. * -If called from soft-ISR, it must re-enable all interrupts
  126. * soft ISR are low prioity jobs which can be very slow, thus all IRQs
  127. * must be enabled while they run.
  128. * Now hardware context wise we may still be in L2 ISR (not done rtie)
  129. * still we must re-enable both L1 and L2 IRQs
  130. * Another twist is prev scenario with flow being
  131. * L1 ISR ==> interrupted by L2 ISR ==> L2 soft ISR
  132. * here we must not re-enable Ll as prev Ll Interrupt's h/w context will get
  133. * over-written (this is deficiency in ARC700 Interrupt mechanism)
  134. */
  135. #ifdef CONFIG_ARC_COMPACT_IRQ_LEVELS /* Complex version for 2 IRQ levels */
  136. void arch_local_irq_enable(void)
  137. {
  138. unsigned long flags = arch_local_save_flags();
  139. if (flags & STATUS_A2_MASK)
  140. flags |= STATUS_E2_MASK;
  141. else if (flags & STATUS_A1_MASK)
  142. flags |= STATUS_E1_MASK;
  143. arch_local_irq_restore(flags);
  144. }
  145. EXPORT_SYMBOL(arch_local_irq_enable);
  146. #endif