2 * Root interrupt controller for the BCM2836 (Raspberry Pi 2).
4 * Copyright 2015 Broadcom
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.
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.
17 #include <linux/cpu.h>
18 #include <linux/of_address.h>
19 #include <linux/of_irq.h>
20 #include <linux/irqchip.h>
21 #include <linux/irqdomain.h>
22 #include <asm/exception.h>
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.
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
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
38 #define LOCAL_TIMER_INT_CONTROL0 0x040
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).
44 #define LOCAL_MAILBOX_INT_CONTROL0 0x050
46 * The CPU's interrupt status register. Bits are defined by the the
47 * LOCAL_IRQ_* bits below.
49 #define LOCAL_IRQ_PENDING0 0x060
50 /* Same status bits as above, but for FIQ. */
51 #define LOCAL_FIQ_PENDING0 0x070
53 * Mailbox0 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
58 #define LOCAL_MAILBOX0_SET0 0x080
59 /* Mailbox0 write-to-clear bits. */
60 #define LOCAL_MAILBOX0_CLR0 0x0c0
62 #define LOCAL_IRQ_CNTPSIRQ 0
63 #define LOCAL_IRQ_CNTPNSIRQ 1
64 #define LOCAL_IRQ_CNTHPIRQ 2
65 #define LOCAL_IRQ_CNTVIRQ 3
66 #define LOCAL_IRQ_MAILBOX0 4
67 #define LOCAL_IRQ_MAILBOX1 5
68 #define LOCAL_IRQ_MAILBOX2 6
69 #define LOCAL_IRQ_MAILBOX3 7
70 #define LOCAL_IRQ_GPU_FAST 8
71 #define LOCAL_IRQ_PMU_FAST 9
72 #define LAST_IRQ LOCAL_IRQ_PMU_FAST
74 struct bcm2836_arm_irqchip_intc
{
75 struct irq_domain
*domain
;
79 static struct bcm2836_arm_irqchip_intc intc __read_mostly
;
81 static void bcm2836_arm_irqchip_mask_per_cpu_irq(unsigned int reg_offset
,
85 void __iomem
*reg
= intc
.base
+ reg_offset
+ 4 * cpu
;
87 writel(readl(reg
) & ~BIT(bit
), reg
);
90 static void bcm2836_arm_irqchip_unmask_per_cpu_irq(unsigned int reg_offset
,
94 void __iomem
*reg
= intc
.base
+ reg_offset
+ 4 * cpu
;
96 writel(readl(reg
) | BIT(bit
), reg
);
99 static void bcm2836_arm_irqchip_mask_timer_irq(struct irq_data
*d
)
101 bcm2836_arm_irqchip_mask_per_cpu_irq(LOCAL_TIMER_INT_CONTROL0
,
102 d
->hwirq
- LOCAL_IRQ_CNTPSIRQ
,
106 static void bcm2836_arm_irqchip_unmask_timer_irq(struct irq_data
*d
)
108 bcm2836_arm_irqchip_unmask_per_cpu_irq(LOCAL_TIMER_INT_CONTROL0
,
109 d
->hwirq
- LOCAL_IRQ_CNTPSIRQ
,
113 static struct irq_chip bcm2836_arm_irqchip_timer
= {
114 .name
= "bcm2836-timer",
115 .irq_mask
= bcm2836_arm_irqchip_mask_timer_irq
,
116 .irq_unmask
= bcm2836_arm_irqchip_unmask_timer_irq
,
119 static void bcm2836_arm_irqchip_mask_pmu_irq(struct irq_data
*d
)
121 writel(1 << smp_processor_id(), intc
.base
+ LOCAL_PM_ROUTING_CLR
);
124 static void bcm2836_arm_irqchip_unmask_pmu_irq(struct irq_data
*d
)
126 writel(1 << smp_processor_id(), intc
.base
+ LOCAL_PM_ROUTING_SET
);
129 static struct irq_chip bcm2836_arm_irqchip_pmu
= {
130 .name
= "bcm2836-pmu",
131 .irq_mask
= bcm2836_arm_irqchip_mask_pmu_irq
,
132 .irq_unmask
= bcm2836_arm_irqchip_unmask_pmu_irq
,
135 static void bcm2836_arm_irqchip_mask_gpu_irq(struct irq_data
*d
)
139 static void bcm2836_arm_irqchip_unmask_gpu_irq(struct irq_data
*d
)
143 static struct irq_chip bcm2836_arm_irqchip_gpu
= {
144 .name
= "bcm2836-gpu",
145 .irq_mask
= bcm2836_arm_irqchip_mask_gpu_irq
,
146 .irq_unmask
= bcm2836_arm_irqchip_unmask_gpu_irq
,
149 static void bcm2836_arm_irqchip_register_irq(int hwirq
, struct irq_chip
*chip
)
151 int irq
= irq_create_mapping(intc
.domain
, hwirq
);
153 irq_set_percpu_devid(irq
);
154 irq_set_chip_and_handler(irq
, chip
, handle_percpu_devid_irq
);
155 irq_set_status_flags(irq
, IRQ_NOAUTOEN
);
159 __exception_irq_entry
bcm2836_arm_irqchip_handle_irq(struct pt_regs
*regs
)
161 int cpu
= smp_processor_id();
164 stat
= readl_relaxed(intc
.base
+ LOCAL_IRQ_PENDING0
+ 4 * cpu
);
167 void __iomem
*mailbox0
= (intc
.base
+
168 LOCAL_MAILBOX0_CLR0
+ 16 * cpu
);
169 u32 mbox_val
= readl(mailbox0
);
170 u32 ipi
= ffs(mbox_val
) - 1;
172 writel(1 << ipi
, mailbox0
);
173 handle_IPI(ipi
, regs
);
176 u32 hwirq
= ffs(stat
) - 1;
178 handle_IRQ(irq_linear_revmap(intc
.domain
, hwirq
), regs
);
183 static void bcm2836_arm_irqchip_send_ipi(const struct cpumask
*mask
,
187 void __iomem
*mailbox0_base
= intc
.base
+ LOCAL_MAILBOX0_SET0
;
190 * Ensure that stores to normal memory are visible to the
191 * other CPUs before issuing the IPI.
195 for_each_cpu(cpu
, mask
) {
196 writel(1 << ipi
, mailbox0_base
+ 16 * cpu
);
200 /* Unmasks the IPI on the CPU when it's online. */
201 static int bcm2836_arm_irqchip_cpu_notify(struct notifier_block
*nfb
,
202 unsigned long action
, void *hcpu
)
204 unsigned int cpu
= (unsigned long)hcpu
;
205 unsigned int int_reg
= LOCAL_MAILBOX_INT_CONTROL0
;
206 unsigned int mailbox
= 0;
208 if (action
== CPU_STARTING
|| action
== CPU_STARTING_FROZEN
)
209 bcm2836_arm_irqchip_unmask_per_cpu_irq(int_reg
, mailbox
, cpu
);
210 else if (action
== CPU_DYING
)
211 bcm2836_arm_irqchip_mask_per_cpu_irq(int_reg
, mailbox
, cpu
);
216 static struct notifier_block bcm2836_arm_irqchip_cpu_notifier
= {
217 .notifier_call
= bcm2836_arm_irqchip_cpu_notify
,
222 static const struct irq_domain_ops bcm2836_arm_irqchip_intc_ops
= {
223 .xlate
= irq_domain_xlate_onecell
227 bcm2836_arm_irqchip_smp_init(void)
230 /* Unmask IPIs to the boot CPU. */
231 bcm2836_arm_irqchip_cpu_notify(&bcm2836_arm_irqchip_cpu_notifier
,
233 (void *)smp_processor_id());
234 register_cpu_notifier(&bcm2836_arm_irqchip_cpu_notifier
);
236 set_smp_cross_call(bcm2836_arm_irqchip_send_ipi
);
240 static int __init
bcm2836_arm_irqchip_l1_intc_of_init(struct device_node
*node
,
241 struct device_node
*parent
)
243 intc
.base
= of_iomap(node
, 0);
245 panic("%s: unable to map local interrupt registers\n",
249 intc
.domain
= irq_domain_add_linear(node
, LAST_IRQ
+ 1,
250 &bcm2836_arm_irqchip_intc_ops
,
253 panic("%s: unable to create IRQ domain\n", node
->full_name
);
255 bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_CNTPSIRQ
,
256 &bcm2836_arm_irqchip_timer
);
257 bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_CNTPNSIRQ
,
258 &bcm2836_arm_irqchip_timer
);
259 bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_CNTHPIRQ
,
260 &bcm2836_arm_irqchip_timer
);
261 bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_CNTVIRQ
,
262 &bcm2836_arm_irqchip_timer
);
263 bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_GPU_FAST
,
264 &bcm2836_arm_irqchip_gpu
);
265 bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_PMU_FAST
,
266 &bcm2836_arm_irqchip_pmu
);
268 bcm2836_arm_irqchip_smp_init();
270 set_handle_irq(bcm2836_arm_irqchip_handle_irq
);
274 IRQCHIP_DECLARE(bcm2836_arm_irqchip_l1_intc
, "brcm,bcm2836-l1-intc",
275 bcm2836_arm_irqchip_l1_intc_of_init
);