irq-bcm2836.c 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. /*
  2. * Root interrupt controller for the BCM2836 (Raspberry Pi 2).
  3. *
  4. * Copyright 2015 Broadcom
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. */
  16. #include <linux/cpu.h>
  17. #include <linux/of_address.h>
  18. #include <linux/of_irq.h>
  19. #include <linux/irqchip.h>
  20. #include <linux/irqdomain.h>
  21. #include <asm/exception.h>
  22. /*
  23. * The low 2 bits identify the CPU that the GPU IRQ goes to, and the
  24. * next 2 bits identify the CPU that the GPU FIQ goes to.
  25. */
  26. #define LOCAL_GPU_ROUTING 0x00c
  27. /* When setting bits 0-3, enables PMU interrupts on that CPU. */
  28. #define LOCAL_PM_ROUTING_SET 0x010
  29. /* When setting bits 0-3, disables PMU interrupts on that CPU. */
  30. #define LOCAL_PM_ROUTING_CLR 0x014
  31. /*
  32. * The low 4 bits of this are the CPU's timer IRQ enables, and the
  33. * next 4 bits are the CPU's timer FIQ enables (which override the IRQ
  34. * bits).
  35. */
  36. #define LOCAL_TIMER_INT_CONTROL0 0x040
  37. /*
  38. * The low 4 bits of this are the CPU's per-mailbox IRQ enables, and
  39. * the next 4 bits are the CPU's per-mailbox FIQ enables (which
  40. * override the IRQ bits).
  41. */
  42. #define LOCAL_MAILBOX_INT_CONTROL0 0x050
  43. /*
  44. * The CPU's interrupt status register. Bits are defined by the the
  45. * LOCAL_IRQ_* bits below.
  46. */
  47. #define LOCAL_IRQ_PENDING0 0x060
  48. /* Same status bits as above, but for FIQ. */
  49. #define LOCAL_FIQ_PENDING0 0x070
  50. /*
  51. * Mailbox0 write-to-set bits. There are 16 mailboxes, 4 per CPU, and
  52. * these bits are organized by mailbox number and then CPU number. We
  53. * use mailbox 0 for IPIs. The mailbox's interrupt is raised while
  54. * any bit is set.
  55. */
  56. #define LOCAL_MAILBOX0_SET0 0x080
  57. /* Mailbox0 write-to-clear bits. */
  58. #define LOCAL_MAILBOX0_CLR0 0x0c0
  59. #define LOCAL_IRQ_CNTPSIRQ 0
  60. #define LOCAL_IRQ_CNTPNSIRQ 1
  61. #define LOCAL_IRQ_CNTHPIRQ 2
  62. #define LOCAL_IRQ_CNTVIRQ 3
  63. #define LOCAL_IRQ_MAILBOX0 4
  64. #define LOCAL_IRQ_MAILBOX1 5
  65. #define LOCAL_IRQ_MAILBOX2 6
  66. #define LOCAL_IRQ_MAILBOX3 7
  67. #define LOCAL_IRQ_GPU_FAST 8
  68. #define LOCAL_IRQ_PMU_FAST 9
  69. #define LAST_IRQ LOCAL_IRQ_PMU_FAST
  70. struct bcm2836_arm_irqchip_intc {
  71. struct irq_domain *domain;
  72. void __iomem *base;
  73. };
  74. static struct bcm2836_arm_irqchip_intc intc __read_mostly;
  75. static void bcm2836_arm_irqchip_mask_per_cpu_irq(unsigned int reg_offset,
  76. unsigned int bit,
  77. int cpu)
  78. {
  79. void __iomem *reg = intc.base + reg_offset + 4 * cpu;
  80. writel(readl(reg) & ~BIT(bit), reg);
  81. }
  82. static void bcm2836_arm_irqchip_unmask_per_cpu_irq(unsigned int reg_offset,
  83. unsigned int bit,
  84. int cpu)
  85. {
  86. void __iomem *reg = intc.base + reg_offset + 4 * cpu;
  87. writel(readl(reg) | BIT(bit), reg);
  88. }
  89. static void bcm2836_arm_irqchip_mask_timer_irq(struct irq_data *d)
  90. {
  91. bcm2836_arm_irqchip_mask_per_cpu_irq(LOCAL_TIMER_INT_CONTROL0,
  92. d->hwirq - LOCAL_IRQ_CNTPSIRQ,
  93. smp_processor_id());
  94. }
  95. static void bcm2836_arm_irqchip_unmask_timer_irq(struct irq_data *d)
  96. {
  97. bcm2836_arm_irqchip_unmask_per_cpu_irq(LOCAL_TIMER_INT_CONTROL0,
  98. d->hwirq - LOCAL_IRQ_CNTPSIRQ,
  99. smp_processor_id());
  100. }
  101. static struct irq_chip bcm2836_arm_irqchip_timer = {
  102. .name = "bcm2836-timer",
  103. .irq_mask = bcm2836_arm_irqchip_mask_timer_irq,
  104. .irq_unmask = bcm2836_arm_irqchip_unmask_timer_irq,
  105. };
  106. static void bcm2836_arm_irqchip_mask_pmu_irq(struct irq_data *d)
  107. {
  108. writel(1 << smp_processor_id(), intc.base + LOCAL_PM_ROUTING_CLR);
  109. }
  110. static void bcm2836_arm_irqchip_unmask_pmu_irq(struct irq_data *d)
  111. {
  112. writel(1 << smp_processor_id(), intc.base + LOCAL_PM_ROUTING_SET);
  113. }
  114. static struct irq_chip bcm2836_arm_irqchip_pmu = {
  115. .name = "bcm2836-pmu",
  116. .irq_mask = bcm2836_arm_irqchip_mask_pmu_irq,
  117. .irq_unmask = bcm2836_arm_irqchip_unmask_pmu_irq,
  118. };
  119. static void bcm2836_arm_irqchip_mask_gpu_irq(struct irq_data *d)
  120. {
  121. }
  122. static void bcm2836_arm_irqchip_unmask_gpu_irq(struct irq_data *d)
  123. {
  124. }
  125. static struct irq_chip bcm2836_arm_irqchip_gpu = {
  126. .name = "bcm2836-gpu",
  127. .irq_mask = bcm2836_arm_irqchip_mask_gpu_irq,
  128. .irq_unmask = bcm2836_arm_irqchip_unmask_gpu_irq,
  129. };
  130. static void bcm2836_arm_irqchip_register_irq(int hwirq, struct irq_chip *chip)
  131. {
  132. int irq = irq_create_mapping(intc.domain, hwirq);
  133. irq_set_percpu_devid(irq);
  134. irq_set_chip_and_handler(irq, chip, handle_percpu_devid_irq);
  135. irq_set_status_flags(irq, IRQ_NOAUTOEN);
  136. }
  137. static void
  138. __exception_irq_entry bcm2836_arm_irqchip_handle_irq(struct pt_regs *regs)
  139. {
  140. int cpu = smp_processor_id();
  141. u32 stat;
  142. stat = readl_relaxed(intc.base + LOCAL_IRQ_PENDING0 + 4 * cpu);
  143. if (stat & 0x10) {
  144. #ifdef CONFIG_SMP
  145. void __iomem *mailbox0 = (intc.base +
  146. LOCAL_MAILBOX0_CLR0 + 16 * cpu);
  147. u32 mbox_val = readl(mailbox0);
  148. u32 ipi = ffs(mbox_val) - 1;
  149. writel(1 << ipi, mailbox0);
  150. handle_IPI(ipi, regs);
  151. #endif
  152. } else {
  153. u32 hwirq = ffs(stat) - 1;
  154. handle_IRQ(irq_linear_revmap(intc.domain, hwirq), regs);
  155. }
  156. }
  157. #ifdef CONFIG_SMP
  158. static void bcm2836_arm_irqchip_send_ipi(const struct cpumask *mask,
  159. unsigned int ipi)
  160. {
  161. int cpu;
  162. void __iomem *mailbox0_base = intc.base + LOCAL_MAILBOX0_SET0;
  163. /*
  164. * Ensure that stores to normal memory are visible to the
  165. * other CPUs before issuing the IPI.
  166. */
  167. dsb();
  168. for_each_cpu(cpu, mask) {
  169. writel(1 << ipi, mailbox0_base + 16 * cpu);
  170. }
  171. }
  172. /* Unmasks the IPI on the CPU when it's online. */
  173. static int bcm2836_arm_irqchip_cpu_notify(struct notifier_block *nfb,
  174. unsigned long action, void *hcpu)
  175. {
  176. unsigned int cpu = (unsigned long)hcpu;
  177. unsigned int int_reg = LOCAL_MAILBOX_INT_CONTROL0;
  178. unsigned int mailbox = 0;
  179. if (action == CPU_STARTING || action == CPU_STARTING_FROZEN)
  180. bcm2836_arm_irqchip_unmask_per_cpu_irq(int_reg, mailbox, cpu);
  181. else if (action == CPU_DYING)
  182. bcm2836_arm_irqchip_mask_per_cpu_irq(int_reg, mailbox, cpu);
  183. return NOTIFY_OK;
  184. }
  185. static struct notifier_block bcm2836_arm_irqchip_cpu_notifier = {
  186. .notifier_call = bcm2836_arm_irqchip_cpu_notify,
  187. .priority = 100,
  188. };
  189. #endif
  190. static const struct irq_domain_ops bcm2836_arm_irqchip_intc_ops = {
  191. .xlate = irq_domain_xlate_onecell
  192. };
  193. static void
  194. bcm2836_arm_irqchip_smp_init(void)
  195. {
  196. #ifdef CONFIG_SMP
  197. /* Unmask IPIs to the boot CPU. */
  198. bcm2836_arm_irqchip_cpu_notify(&bcm2836_arm_irqchip_cpu_notifier,
  199. CPU_STARTING,
  200. (void *)smp_processor_id());
  201. register_cpu_notifier(&bcm2836_arm_irqchip_cpu_notifier);
  202. set_smp_cross_call(bcm2836_arm_irqchip_send_ipi);
  203. #endif
  204. }
  205. static int __init bcm2836_arm_irqchip_l1_intc_of_init(struct device_node *node,
  206. struct device_node *parent)
  207. {
  208. intc.base = of_iomap(node, 0);
  209. if (!intc.base) {
  210. panic("%s: unable to map local interrupt registers\n",
  211. node->full_name);
  212. }
  213. intc.domain = irq_domain_add_linear(node, LAST_IRQ + 1,
  214. &bcm2836_arm_irqchip_intc_ops,
  215. NULL);
  216. if (!intc.domain)
  217. panic("%s: unable to create IRQ domain\n", node->full_name);
  218. bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_CNTPSIRQ,
  219. &bcm2836_arm_irqchip_timer);
  220. bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_CNTPNSIRQ,
  221. &bcm2836_arm_irqchip_timer);
  222. bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_CNTHPIRQ,
  223. &bcm2836_arm_irqchip_timer);
  224. bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_CNTVIRQ,
  225. &bcm2836_arm_irqchip_timer);
  226. bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_GPU_FAST,
  227. &bcm2836_arm_irqchip_gpu);
  228. bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_PMU_FAST,
  229. &bcm2836_arm_irqchip_pmu);
  230. bcm2836_arm_irqchip_smp_init();
  231. set_handle_irq(bcm2836_arm_irqchip_handle_irq);
  232. return 0;
  233. }
  234. IRQCHIP_DECLARE(bcm2836_arm_irqchip_l1_intc, "brcm,bcm2836-l1-intc",
  235. bcm2836_arm_irqchip_l1_intc_of_init);