irq-armada-370-xp.c 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. /*
  2. * Marvell Armada 370 and Armada XP SoC IRQ handling
  3. *
  4. * Copyright (C) 2012 Marvell
  5. *
  6. * Lior Amsalem <alior@marvell.com>
  7. * Gregory CLEMENT <gregory.clement@free-electrons.com>
  8. * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
  9. * Ben Dooks <ben.dooks@codethink.co.uk>
  10. *
  11. * This file is licensed under the terms of the GNU General Public
  12. * License version 2. This program is licensed "as is" without any
  13. * warranty of any kind, whether express or implied.
  14. */
  15. #include <linux/kernel.h>
  16. #include <linux/module.h>
  17. #include <linux/init.h>
  18. #include <linux/irq.h>
  19. #include <linux/interrupt.h>
  20. #include <linux/io.h>
  21. #include <linux/of_address.h>
  22. #include <linux/of_irq.h>
  23. #include <linux/irqdomain.h>
  24. #include <asm/mach/arch.h>
  25. #include <asm/exception.h>
  26. #include <asm/smp_plat.h>
  27. #include <asm/hardware/cache-l2x0.h>
  28. /* Interrupt Controller Registers Map */
  29. #define ARMADA_370_XP_INT_SET_MASK_OFFS (0x48)
  30. #define ARMADA_370_XP_INT_CLEAR_MASK_OFFS (0x4C)
  31. #define ARMADA_370_XP_INT_CONTROL (0x00)
  32. #define ARMADA_370_XP_INT_SET_ENABLE_OFFS (0x30)
  33. #define ARMADA_370_XP_INT_CLEAR_ENABLE_OFFS (0x34)
  34. #define ARMADA_370_XP_INT_SOURCE_CTL(irq) (0x100 + irq*4)
  35. #define ARMADA_370_XP_CPU_INTACK_OFFS (0x44)
  36. #define ARMADA_370_XP_SW_TRIG_INT_OFFS (0x4)
  37. #define ARMADA_370_XP_IN_DRBEL_MSK_OFFS (0xc)
  38. #define ARMADA_370_XP_IN_DRBEL_CAUSE_OFFS (0x8)
  39. #define ARMADA_370_XP_MAX_PER_CPU_IRQS (28)
  40. #define ACTIVE_DOORBELLS (8)
  41. static DEFINE_RAW_SPINLOCK(irq_controller_lock);
  42. static void __iomem *per_cpu_int_base;
  43. static void __iomem *main_int_base;
  44. static struct irq_domain *armada_370_xp_mpic_domain;
  45. /*
  46. * In SMP mode:
  47. * For shared global interrupts, mask/unmask global enable bit
  48. * For CPU interrtups, mask/unmask the calling CPU's bit
  49. */
  50. static void armada_370_xp_irq_mask(struct irq_data *d)
  51. {
  52. #ifdef CONFIG_SMP
  53. irq_hw_number_t hwirq = irqd_to_hwirq(d);
  54. if (hwirq > ARMADA_370_XP_MAX_PER_CPU_IRQS)
  55. writel(hwirq, main_int_base +
  56. ARMADA_370_XP_INT_CLEAR_ENABLE_OFFS);
  57. else
  58. writel(hwirq, per_cpu_int_base +
  59. ARMADA_370_XP_INT_SET_MASK_OFFS);
  60. #else
  61. writel(irqd_to_hwirq(d),
  62. per_cpu_int_base + ARMADA_370_XP_INT_SET_MASK_OFFS);
  63. #endif
  64. }
  65. static void armada_370_xp_irq_unmask(struct irq_data *d)
  66. {
  67. #ifdef CONFIG_SMP
  68. irq_hw_number_t hwirq = irqd_to_hwirq(d);
  69. if (hwirq > ARMADA_370_XP_MAX_PER_CPU_IRQS)
  70. writel(hwirq, main_int_base +
  71. ARMADA_370_XP_INT_SET_ENABLE_OFFS);
  72. else
  73. writel(hwirq, per_cpu_int_base +
  74. ARMADA_370_XP_INT_CLEAR_MASK_OFFS);
  75. #else
  76. writel(irqd_to_hwirq(d),
  77. per_cpu_int_base + ARMADA_370_XP_INT_CLEAR_MASK_OFFS);
  78. #endif
  79. }
  80. #ifdef CONFIG_SMP
  81. static int armada_xp_set_affinity(struct irq_data *d,
  82. const struct cpumask *mask_val, bool force)
  83. {
  84. unsigned long reg;
  85. unsigned long new_mask = 0;
  86. unsigned long online_mask = 0;
  87. unsigned long count = 0;
  88. irq_hw_number_t hwirq = irqd_to_hwirq(d);
  89. int cpu;
  90. for_each_cpu(cpu, mask_val) {
  91. new_mask |= 1 << cpu_logical_map(cpu);
  92. count++;
  93. }
  94. /*
  95. * Forbid mutlicore interrupt affinity
  96. * This is required since the MPIC HW doesn't limit
  97. * several CPUs from acknowledging the same interrupt.
  98. */
  99. if (count > 1)
  100. return -EINVAL;
  101. for_each_cpu(cpu, cpu_online_mask)
  102. online_mask |= 1 << cpu_logical_map(cpu);
  103. raw_spin_lock(&irq_controller_lock);
  104. reg = readl(main_int_base + ARMADA_370_XP_INT_SOURCE_CTL(hwirq));
  105. reg = (reg & (~online_mask)) | new_mask;
  106. writel(reg, main_int_base + ARMADA_370_XP_INT_SOURCE_CTL(hwirq));
  107. raw_spin_unlock(&irq_controller_lock);
  108. return 0;
  109. }
  110. #endif
  111. static struct irq_chip armada_370_xp_irq_chip = {
  112. .name = "armada_370_xp_irq",
  113. .irq_mask = armada_370_xp_irq_mask,
  114. .irq_mask_ack = armada_370_xp_irq_mask,
  115. .irq_unmask = armada_370_xp_irq_unmask,
  116. #ifdef CONFIG_SMP
  117. .irq_set_affinity = armada_xp_set_affinity,
  118. #endif
  119. };
  120. static int armada_370_xp_mpic_irq_map(struct irq_domain *h,
  121. unsigned int virq, irq_hw_number_t hw)
  122. {
  123. armada_370_xp_irq_mask(irq_get_irq_data(virq));
  124. writel(hw, main_int_base + ARMADA_370_XP_INT_SET_ENABLE_OFFS);
  125. irq_set_status_flags(virq, IRQ_LEVEL);
  126. if (hw < ARMADA_370_XP_MAX_PER_CPU_IRQS) {
  127. irq_set_percpu_devid(virq);
  128. irq_set_chip_and_handler(virq, &armada_370_xp_irq_chip,
  129. handle_percpu_devid_irq);
  130. } else {
  131. irq_set_chip_and_handler(virq, &armada_370_xp_irq_chip,
  132. handle_level_irq);
  133. }
  134. set_irq_flags(virq, IRQF_VALID | IRQF_PROBE);
  135. return 0;
  136. }
  137. #ifdef CONFIG_SMP
  138. void armada_mpic_send_doorbell(const struct cpumask *mask, unsigned int irq)
  139. {
  140. int cpu;
  141. unsigned long map = 0;
  142. /* Convert our logical CPU mask into a physical one. */
  143. for_each_cpu(cpu, mask)
  144. map |= 1 << cpu_logical_map(cpu);
  145. /*
  146. * Ensure that stores to Normal memory are visible to the
  147. * other CPUs before issuing the IPI.
  148. */
  149. dsb();
  150. /* submit softirq */
  151. writel((map << 8) | irq, main_int_base +
  152. ARMADA_370_XP_SW_TRIG_INT_OFFS);
  153. }
  154. void armada_xp_mpic_smp_cpu_init(void)
  155. {
  156. /* Clear pending IPIs */
  157. writel(0, per_cpu_int_base + ARMADA_370_XP_IN_DRBEL_CAUSE_OFFS);
  158. /* Enable first 8 IPIs */
  159. writel((1 << ACTIVE_DOORBELLS) - 1, per_cpu_int_base +
  160. ARMADA_370_XP_IN_DRBEL_MSK_OFFS);
  161. /* Unmask IPI interrupt */
  162. writel(0, per_cpu_int_base + ARMADA_370_XP_INT_CLEAR_MASK_OFFS);
  163. }
  164. #endif /* CONFIG_SMP */
  165. static struct irq_domain_ops armada_370_xp_mpic_irq_ops = {
  166. .map = armada_370_xp_mpic_irq_map,
  167. .xlate = irq_domain_xlate_onecell,
  168. };
  169. static int __init armada_370_xp_mpic_of_init(struct device_node *node,
  170. struct device_node *parent)
  171. {
  172. u32 control;
  173. main_int_base = of_iomap(node, 0);
  174. per_cpu_int_base = of_iomap(node, 1);
  175. BUG_ON(!main_int_base);
  176. BUG_ON(!per_cpu_int_base);
  177. control = readl(main_int_base + ARMADA_370_XP_INT_CONTROL);
  178. armada_370_xp_mpic_domain =
  179. irq_domain_add_linear(node, (control >> 2) & 0x3ff,
  180. &armada_370_xp_mpic_irq_ops, NULL);
  181. if (!armada_370_xp_mpic_domain)
  182. panic("Unable to add Armada_370_Xp MPIC irq domain (DT)\n");
  183. irq_set_default_host(armada_370_xp_mpic_domain);
  184. #ifdef CONFIG_SMP
  185. armada_xp_mpic_smp_cpu_init();
  186. /*
  187. * Set the default affinity from all CPUs to the boot cpu.
  188. * This is required since the MPIC doesn't limit several CPUs
  189. * from acknowledging the same interrupt.
  190. */
  191. cpumask_clear(irq_default_affinity);
  192. cpumask_set_cpu(smp_processor_id(), irq_default_affinity);
  193. #endif
  194. return 0;
  195. }
  196. asmlinkage void __exception_irq_entry armada_370_xp_handle_irq(struct pt_regs
  197. *regs)
  198. {
  199. u32 irqstat, irqnr;
  200. do {
  201. irqstat = readl_relaxed(per_cpu_int_base +
  202. ARMADA_370_XP_CPU_INTACK_OFFS);
  203. irqnr = irqstat & 0x3FF;
  204. if (irqnr > 1022)
  205. break;
  206. if (irqnr > 0) {
  207. irqnr = irq_find_mapping(armada_370_xp_mpic_domain,
  208. irqnr);
  209. handle_IRQ(irqnr, regs);
  210. continue;
  211. }
  212. #ifdef CONFIG_SMP
  213. /* IPI Handling */
  214. if (irqnr == 0) {
  215. u32 ipimask, ipinr;
  216. ipimask = readl_relaxed(per_cpu_int_base +
  217. ARMADA_370_XP_IN_DRBEL_CAUSE_OFFS)
  218. & 0xFF;
  219. writel(0x0, per_cpu_int_base +
  220. ARMADA_370_XP_IN_DRBEL_CAUSE_OFFS);
  221. /* Handle all pending doorbells */
  222. for (ipinr = 0; ipinr < ACTIVE_DOORBELLS; ipinr++) {
  223. if (ipimask & (0x1 << ipinr))
  224. handle_IPI(ipinr, regs);
  225. }
  226. continue;
  227. }
  228. #endif
  229. } while (1);
  230. }
  231. static const struct of_device_id mpic_of_match[] __initconst = {
  232. {.compatible = "marvell,mpic", .data = armada_370_xp_mpic_of_init},
  233. {},
  234. };
  235. void __init armada_370_xp_init_irq(void)
  236. {
  237. of_irq_init(mpic_of_match);
  238. #ifdef CONFIG_CACHE_L2X0
  239. l2x0_of_init(0, ~0UL);
  240. #endif
  241. }