irq-bcm2836.c 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  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. #define LOCAL_CONTROL 0x000
  23. #define LOCAL_PRESCALER 0x008
  24. /*
  25. * The low 2 bits identify the CPU that the GPU IRQ goes to, and the
  26. * next 2 bits identify the CPU that the GPU FIQ goes to.
  27. */
  28. #define LOCAL_GPU_ROUTING 0x00c
  29. /* When setting bits 0-3, enables PMU interrupts on that CPU. */
  30. #define LOCAL_PM_ROUTING_SET 0x010
  31. /* When setting bits 0-3, disables PMU interrupts on that CPU. */
  32. #define LOCAL_PM_ROUTING_CLR 0x014
  33. /*
  34. * The low 4 bits of this are the CPU's timer IRQ enables, and the
  35. * next 4 bits are the CPU's timer FIQ enables (which override the IRQ
  36. * bits).
  37. */
  38. #define LOCAL_TIMER_INT_CONTROL0 0x040
  39. /*
  40. * The low 4 bits of this are the CPU's per-mailbox IRQ enables, and
  41. * the next 4 bits are the CPU's per-mailbox FIQ enables (which
  42. * override the IRQ bits).
  43. */
  44. #define LOCAL_MAILBOX_INT_CONTROL0 0x050
  45. /*
  46. * The CPU's interrupt status register. Bits are defined by the the
  47. * LOCAL_IRQ_* bits below.
  48. */
  49. #define LOCAL_IRQ_PENDING0 0x060
  50. /* Same status bits as above, but for FIQ. */
  51. #define LOCAL_FIQ_PENDING0 0x070
  52. /*
  53. * Mailbox write-to-set bits. There are 16 mailboxes, 4 per CPU, and
  54. * these bits are organized by mailbox number and then CPU number. We
  55. * use mailbox 0 for IPIs. The mailbox's interrupt is raised while
  56. * any bit is set.
  57. */
  58. #define LOCAL_MAILBOX0_SET0 0x080
  59. #define LOCAL_MAILBOX3_SET0 0x08c
  60. /* Mailbox write-to-clear bits. */
  61. #define LOCAL_MAILBOX0_CLR0 0x0c0
  62. #define LOCAL_MAILBOX3_CLR0 0x0cc
  63. #define LOCAL_IRQ_CNTPSIRQ 0
  64. #define LOCAL_IRQ_CNTPNSIRQ 1
  65. #define LOCAL_IRQ_CNTHPIRQ 2
  66. #define LOCAL_IRQ_CNTVIRQ 3
  67. #define LOCAL_IRQ_MAILBOX0 4
  68. #define LOCAL_IRQ_MAILBOX1 5
  69. #define LOCAL_IRQ_MAILBOX2 6
  70. #define LOCAL_IRQ_MAILBOX3 7
  71. #define LOCAL_IRQ_GPU_FAST 8
  72. #define LOCAL_IRQ_PMU_FAST 9
  73. #define LAST_IRQ LOCAL_IRQ_PMU_FAST
  74. struct bcm2836_arm_irqchip_intc {
  75. struct irq_domain *domain;
  76. void __iomem *base;
  77. };
  78. static struct bcm2836_arm_irqchip_intc intc __read_mostly;
  79. static void bcm2836_arm_irqchip_mask_per_cpu_irq(unsigned int reg_offset,
  80. unsigned int bit,
  81. int cpu)
  82. {
  83. void __iomem *reg = intc.base + reg_offset + 4 * cpu;
  84. writel(readl(reg) & ~BIT(bit), reg);
  85. }
  86. static void bcm2836_arm_irqchip_unmask_per_cpu_irq(unsigned int reg_offset,
  87. unsigned int bit,
  88. int cpu)
  89. {
  90. void __iomem *reg = intc.base + reg_offset + 4 * cpu;
  91. writel(readl(reg) | BIT(bit), reg);
  92. }
  93. static void bcm2836_arm_irqchip_mask_timer_irq(struct irq_data *d)
  94. {
  95. bcm2836_arm_irqchip_mask_per_cpu_irq(LOCAL_TIMER_INT_CONTROL0,
  96. d->hwirq - LOCAL_IRQ_CNTPSIRQ,
  97. smp_processor_id());
  98. }
  99. static void bcm2836_arm_irqchip_unmask_timer_irq(struct irq_data *d)
  100. {
  101. bcm2836_arm_irqchip_unmask_per_cpu_irq(LOCAL_TIMER_INT_CONTROL0,
  102. d->hwirq - LOCAL_IRQ_CNTPSIRQ,
  103. smp_processor_id());
  104. }
  105. static struct irq_chip bcm2836_arm_irqchip_timer = {
  106. .name = "bcm2836-timer",
  107. .irq_mask = bcm2836_arm_irqchip_mask_timer_irq,
  108. .irq_unmask = bcm2836_arm_irqchip_unmask_timer_irq,
  109. };
  110. static void bcm2836_arm_irqchip_mask_pmu_irq(struct irq_data *d)
  111. {
  112. writel(1 << smp_processor_id(), intc.base + LOCAL_PM_ROUTING_CLR);
  113. }
  114. static void bcm2836_arm_irqchip_unmask_pmu_irq(struct irq_data *d)
  115. {
  116. writel(1 << smp_processor_id(), intc.base + LOCAL_PM_ROUTING_SET);
  117. }
  118. static struct irq_chip bcm2836_arm_irqchip_pmu = {
  119. .name = "bcm2836-pmu",
  120. .irq_mask = bcm2836_arm_irqchip_mask_pmu_irq,
  121. .irq_unmask = bcm2836_arm_irqchip_unmask_pmu_irq,
  122. };
  123. static void bcm2836_arm_irqchip_mask_gpu_irq(struct irq_data *d)
  124. {
  125. }
  126. static void bcm2836_arm_irqchip_unmask_gpu_irq(struct irq_data *d)
  127. {
  128. }
  129. static struct irq_chip bcm2836_arm_irqchip_gpu = {
  130. .name = "bcm2836-gpu",
  131. .irq_mask = bcm2836_arm_irqchip_mask_gpu_irq,
  132. .irq_unmask = bcm2836_arm_irqchip_unmask_gpu_irq,
  133. };
  134. static void bcm2836_arm_irqchip_register_irq(int hwirq, struct irq_chip *chip)
  135. {
  136. int irq = irq_create_mapping(intc.domain, hwirq);
  137. irq_set_percpu_devid(irq);
  138. irq_set_chip_and_handler(irq, chip, handle_percpu_devid_irq);
  139. irq_set_status_flags(irq, IRQ_NOAUTOEN);
  140. }
  141. static void
  142. __exception_irq_entry bcm2836_arm_irqchip_handle_irq(struct pt_regs *regs)
  143. {
  144. int cpu = smp_processor_id();
  145. u32 stat;
  146. stat = readl_relaxed(intc.base + LOCAL_IRQ_PENDING0 + 4 * cpu);
  147. if (stat & BIT(LOCAL_IRQ_MAILBOX0)) {
  148. #ifdef CONFIG_SMP
  149. void __iomem *mailbox0 = (intc.base +
  150. LOCAL_MAILBOX0_CLR0 + 16 * cpu);
  151. u32 mbox_val = readl(mailbox0);
  152. u32 ipi = ffs(mbox_val) - 1;
  153. writel(1 << ipi, mailbox0);
  154. handle_IPI(ipi, regs);
  155. #endif
  156. } else if (stat) {
  157. u32 hwirq = ffs(stat) - 1;
  158. handle_domain_irq(intc.domain, hwirq, regs);
  159. }
  160. }
  161. #ifdef CONFIG_SMP
  162. static void bcm2836_arm_irqchip_send_ipi(const struct cpumask *mask,
  163. unsigned int ipi)
  164. {
  165. int cpu;
  166. void __iomem *mailbox0_base = intc.base + LOCAL_MAILBOX0_SET0;
  167. /*
  168. * Ensure that stores to normal memory are visible to the
  169. * other CPUs before issuing the IPI.
  170. */
  171. smp_wmb();
  172. for_each_cpu(cpu, mask) {
  173. writel(1 << ipi, mailbox0_base + 16 * cpu);
  174. }
  175. }
  176. static int bcm2836_cpu_starting(unsigned int cpu)
  177. {
  178. bcm2836_arm_irqchip_unmask_per_cpu_irq(LOCAL_MAILBOX_INT_CONTROL0, 0,
  179. cpu);
  180. return 0;
  181. }
  182. static int bcm2836_cpu_dying(unsigned int cpu)
  183. {
  184. bcm2836_arm_irqchip_mask_per_cpu_irq(LOCAL_MAILBOX_INT_CONTROL0, 0,
  185. cpu);
  186. return 0;
  187. }
  188. #ifdef CONFIG_ARM
  189. static int __init bcm2836_smp_boot_secondary(unsigned int cpu,
  190. struct task_struct *idle)
  191. {
  192. unsigned long secondary_startup_phys =
  193. (unsigned long)virt_to_phys((void *)secondary_startup);
  194. writel(secondary_startup_phys,
  195. intc.base + LOCAL_MAILBOX3_SET0 + 16 * cpu);
  196. return 0;
  197. }
  198. static const struct smp_operations bcm2836_smp_ops __initconst = {
  199. .smp_boot_secondary = bcm2836_smp_boot_secondary,
  200. };
  201. #endif
  202. #endif
  203. static const struct irq_domain_ops bcm2836_arm_irqchip_intc_ops = {
  204. .xlate = irq_domain_xlate_onecell
  205. };
  206. static void
  207. bcm2836_arm_irqchip_smp_init(void)
  208. {
  209. #ifdef CONFIG_SMP
  210. /* Unmask IPIs to the boot CPU. */
  211. cpuhp_setup_state(CPUHP_AP_IRQ_BCM2836_STARTING,
  212. "AP_IRQ_BCM2836_STARTING", bcm2836_cpu_starting,
  213. bcm2836_cpu_dying);
  214. set_smp_cross_call(bcm2836_arm_irqchip_send_ipi);
  215. #ifdef CONFIG_ARM
  216. smp_set_ops(&bcm2836_smp_ops);
  217. #endif
  218. #endif
  219. }
  220. /*
  221. * The LOCAL_IRQ_CNT* timer firings are based off of the external
  222. * oscillator with some scaling. The firmware sets up CNTFRQ to
  223. * report 19.2Mhz, but doesn't set up the scaling registers.
  224. */
  225. static void bcm2835_init_local_timer_frequency(void)
  226. {
  227. /*
  228. * Set the timer to source from the 19.2Mhz crystal clock (bit
  229. * 8 unset), and only increment by 1 instead of 2 (bit 9
  230. * unset).
  231. */
  232. writel(0, intc.base + LOCAL_CONTROL);
  233. /*
  234. * Set the timer prescaler to 1:1 (timer freq = input freq *
  235. * 2**31 / prescaler)
  236. */
  237. writel(0x80000000, intc.base + LOCAL_PRESCALER);
  238. }
  239. static int __init bcm2836_arm_irqchip_l1_intc_of_init(struct device_node *node,
  240. struct device_node *parent)
  241. {
  242. intc.base = of_iomap(node, 0);
  243. if (!intc.base) {
  244. panic("%s: unable to map local interrupt registers\n",
  245. node->full_name);
  246. }
  247. bcm2835_init_local_timer_frequency();
  248. intc.domain = irq_domain_add_linear(node, LAST_IRQ + 1,
  249. &bcm2836_arm_irqchip_intc_ops,
  250. NULL);
  251. if (!intc.domain)
  252. panic("%s: unable to create IRQ domain\n", node->full_name);
  253. bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_CNTPSIRQ,
  254. &bcm2836_arm_irqchip_timer);
  255. bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_CNTPNSIRQ,
  256. &bcm2836_arm_irqchip_timer);
  257. bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_CNTHPIRQ,
  258. &bcm2836_arm_irqchip_timer);
  259. bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_CNTVIRQ,
  260. &bcm2836_arm_irqchip_timer);
  261. bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_GPU_FAST,
  262. &bcm2836_arm_irqchip_gpu);
  263. bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_PMU_FAST,
  264. &bcm2836_arm_irqchip_pmu);
  265. bcm2836_arm_irqchip_smp_init();
  266. set_handle_irq(bcm2836_arm_irqchip_handle_irq);
  267. return 0;
  268. }
  269. IRQCHIP_DECLARE(bcm2836_arm_irqchip_l1_intc, "brcm,bcm2836-l1-intc",
  270. bcm2836_arm_irqchip_l1_intc_of_init);