Loading...
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
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>
23
24#define LOCAL_CONTROL 0x000
25#define LOCAL_PRESCALER 0x008
26
27/*
28 * The low 2 bits identify the CPU that the GPU IRQ goes to, and the
29 * next 2 bits identify the CPU that the GPU FIQ goes to.
30 */
31#define LOCAL_GPU_ROUTING 0x00c
32/* When setting bits 0-3, enables PMU interrupts on that CPU. */
33#define LOCAL_PM_ROUTING_SET 0x010
34/* When setting bits 0-3, disables PMU interrupts on that CPU. */
35#define LOCAL_PM_ROUTING_CLR 0x014
36/*
37 * The low 4 bits of this are the CPU's timer IRQ enables, and the
38 * next 4 bits are the CPU's timer FIQ enables (which override the IRQ
39 * bits).
40 */
41#define LOCAL_TIMER_INT_CONTROL0 0x040
42/*
43 * The low 4 bits of this are the CPU's per-mailbox IRQ enables, and
44 * the next 4 bits are the CPU's per-mailbox FIQ enables (which
45 * override the IRQ bits).
46 */
47#define LOCAL_MAILBOX_INT_CONTROL0 0x050
48/*
49 * The CPU's interrupt status register. Bits are defined by the the
50 * LOCAL_IRQ_* bits below.
51 */
52#define LOCAL_IRQ_PENDING0 0x060
53/* Same status bits as above, but for FIQ. */
54#define LOCAL_FIQ_PENDING0 0x070
55/*
56 * Mailbox write-to-set bits. There are 16 mailboxes, 4 per CPU, and
57 * these bits are organized by mailbox number and then CPU number. We
58 * use mailbox 0 for IPIs. The mailbox's interrupt is raised while
59 * any bit is set.
60 */
61#define LOCAL_MAILBOX0_SET0 0x080
62#define LOCAL_MAILBOX3_SET0 0x08c
63/* Mailbox write-to-clear bits. */
64#define LOCAL_MAILBOX0_CLR0 0x0c0
65#define LOCAL_MAILBOX3_CLR0 0x0cc
66
67#define LOCAL_IRQ_CNTPSIRQ 0
68#define LOCAL_IRQ_CNTPNSIRQ 1
69#define LOCAL_IRQ_CNTHPIRQ 2
70#define LOCAL_IRQ_CNTVIRQ 3
71#define LOCAL_IRQ_MAILBOX0 4
72#define LOCAL_IRQ_MAILBOX1 5
73#define LOCAL_IRQ_MAILBOX2 6
74#define LOCAL_IRQ_MAILBOX3 7
75#define LOCAL_IRQ_GPU_FAST 8
76#define LOCAL_IRQ_PMU_FAST 9
77#define LAST_IRQ LOCAL_IRQ_PMU_FAST
78
79struct bcm2836_arm_irqchip_intc {
80 struct irq_domain *domain;
81 void __iomem *base;
82};
83
84static struct bcm2836_arm_irqchip_intc intc __read_mostly;
85
86static void bcm2836_arm_irqchip_mask_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
92 writel(readl(reg) & ~BIT(bit), reg);
93}
94
95static void bcm2836_arm_irqchip_unmask_per_cpu_irq(unsigned int reg_offset,
96 unsigned int bit,
97 int cpu)
98{
99 void __iomem *reg = intc.base + reg_offset + 4 * cpu;
100
101 writel(readl(reg) | BIT(bit), reg);
102}
103
104static void bcm2836_arm_irqchip_mask_timer_irq(struct irq_data *d)
105{
106 bcm2836_arm_irqchip_mask_per_cpu_irq(LOCAL_TIMER_INT_CONTROL0,
107 d->hwirq - LOCAL_IRQ_CNTPSIRQ,
108 smp_processor_id());
109}
110
111static void bcm2836_arm_irqchip_unmask_timer_irq(struct irq_data *d)
112{
113 bcm2836_arm_irqchip_unmask_per_cpu_irq(LOCAL_TIMER_INT_CONTROL0,
114 d->hwirq - LOCAL_IRQ_CNTPSIRQ,
115 smp_processor_id());
116}
117
118static struct irq_chip bcm2836_arm_irqchip_timer = {
119 .name = "bcm2836-timer",
120 .irq_mask = bcm2836_arm_irqchip_mask_timer_irq,
121 .irq_unmask = bcm2836_arm_irqchip_unmask_timer_irq,
122};
123
124static void bcm2836_arm_irqchip_mask_pmu_irq(struct irq_data *d)
125{
126 writel(1 << smp_processor_id(), intc.base + LOCAL_PM_ROUTING_CLR);
127}
128
129static void bcm2836_arm_irqchip_unmask_pmu_irq(struct irq_data *d)
130{
131 writel(1 << smp_processor_id(), intc.base + LOCAL_PM_ROUTING_SET);
132}
133
134static struct irq_chip bcm2836_arm_irqchip_pmu = {
135 .name = "bcm2836-pmu",
136 .irq_mask = bcm2836_arm_irqchip_mask_pmu_irq,
137 .irq_unmask = bcm2836_arm_irqchip_unmask_pmu_irq,
138};
139
140static void bcm2836_arm_irqchip_mask_gpu_irq(struct irq_data *d)
141{
142}
143
144static void bcm2836_arm_irqchip_unmask_gpu_irq(struct irq_data *d)
145{
146}
147
148static struct irq_chip bcm2836_arm_irqchip_gpu = {
149 .name = "bcm2836-gpu",
150 .irq_mask = bcm2836_arm_irqchip_mask_gpu_irq,
151 .irq_unmask = bcm2836_arm_irqchip_unmask_gpu_irq,
152};
153
154static void bcm2836_arm_irqchip_register_irq(int hwirq, struct irq_chip *chip)
155{
156 int irq = irq_create_mapping(intc.domain, hwirq);
157
158 irq_set_percpu_devid(irq);
159 irq_set_chip_and_handler(irq, chip, handle_percpu_devid_irq);
160 irq_set_status_flags(irq, IRQ_NOAUTOEN);
161}
162
163static void
164__exception_irq_entry bcm2836_arm_irqchip_handle_irq(struct pt_regs *regs)
165{
166 int cpu = smp_processor_id();
167 u32 stat;
168
169 stat = readl_relaxed(intc.base + LOCAL_IRQ_PENDING0 + 4 * cpu);
170 if (stat & BIT(LOCAL_IRQ_MAILBOX0)) {
171#ifdef CONFIG_SMP
172 void __iomem *mailbox0 = (intc.base +
173 LOCAL_MAILBOX0_CLR0 + 16 * cpu);
174 u32 mbox_val = readl(mailbox0);
175 u32 ipi = ffs(mbox_val) - 1;
176
177 writel(1 << ipi, mailbox0);
178 handle_IPI(ipi, regs);
179#endif
180 } else if (stat) {
181 u32 hwirq = ffs(stat) - 1;
182
183 handle_IRQ(irq_linear_revmap(intc.domain, hwirq), regs);
184 }
185}
186
187#ifdef CONFIG_SMP
188static void bcm2836_arm_irqchip_send_ipi(const struct cpumask *mask,
189 unsigned int ipi)
190{
191 int cpu;
192 void __iomem *mailbox0_base = intc.base + LOCAL_MAILBOX0_SET0;
193
194 /*
195 * Ensure that stores to normal memory are visible to the
196 * other CPUs before issuing the IPI.
197 */
198 dsb();
199
200 for_each_cpu(cpu, mask) {
201 writel(1 << ipi, mailbox0_base + 16 * cpu);
202 }
203}
204
205/* Unmasks the IPI on the CPU when it's online. */
206static int bcm2836_arm_irqchip_cpu_notify(struct notifier_block *nfb,
207 unsigned long action, void *hcpu)
208{
209 unsigned int cpu = (unsigned long)hcpu;
210 unsigned int int_reg = LOCAL_MAILBOX_INT_CONTROL0;
211 unsigned int mailbox = 0;
212
213 if (action == CPU_STARTING || action == CPU_STARTING_FROZEN)
214 bcm2836_arm_irqchip_unmask_per_cpu_irq(int_reg, mailbox, cpu);
215 else if (action == CPU_DYING)
216 bcm2836_arm_irqchip_mask_per_cpu_irq(int_reg, mailbox, cpu);
217
218 return NOTIFY_OK;
219}
220
221static struct notifier_block bcm2836_arm_irqchip_cpu_notifier = {
222 .notifier_call = bcm2836_arm_irqchip_cpu_notify,
223 .priority = 100,
224};
225
226int __init bcm2836_smp_boot_secondary(unsigned int cpu,
227 struct task_struct *idle)
228{
229 unsigned long secondary_startup_phys =
230 (unsigned long)virt_to_phys((void *)secondary_startup);
231
232 writel(secondary_startup_phys,
233 intc.base + LOCAL_MAILBOX3_SET0 + 16 * cpu);
234
235 return 0;
236}
237
238static const struct smp_operations bcm2836_smp_ops __initconst = {
239 .smp_boot_secondary = bcm2836_smp_boot_secondary,
240};
241
242#endif
243
244static const struct irq_domain_ops bcm2836_arm_irqchip_intc_ops = {
245 .xlate = irq_domain_xlate_onecell
246};
247
248static void
249bcm2836_arm_irqchip_smp_init(void)
250{
251#ifdef CONFIG_SMP
252 /* Unmask IPIs to the boot CPU. */
253 bcm2836_arm_irqchip_cpu_notify(&bcm2836_arm_irqchip_cpu_notifier,
254 CPU_STARTING,
255 (void *)smp_processor_id());
256 register_cpu_notifier(&bcm2836_arm_irqchip_cpu_notifier);
257
258 set_smp_cross_call(bcm2836_arm_irqchip_send_ipi);
259 smp_set_ops(&bcm2836_smp_ops);
260#endif
261}
262
263/*
264 * The LOCAL_IRQ_CNT* timer firings are based off of the external
265 * oscillator with some scaling. The firmware sets up CNTFRQ to
266 * report 19.2Mhz, but doesn't set up the scaling registers.
267 */
268static void bcm2835_init_local_timer_frequency(void)
269{
270 /*
271 * Set the timer to source from the 19.2Mhz crystal clock (bit
272 * 8 unset), and only increment by 1 instead of 2 (bit 9
273 * unset).
274 */
275 writel(0, intc.base + LOCAL_CONTROL);
276
277 /*
278 * Set the timer prescaler to 1:1 (timer freq = input freq *
279 * 2**31 / prescaler)
280 */
281 writel(0x80000000, intc.base + LOCAL_PRESCALER);
282}
283
284static int __init bcm2836_arm_irqchip_l1_intc_of_init(struct device_node *node,
285 struct device_node *parent)
286{
287 intc.base = of_iomap(node, 0);
288 if (!intc.base) {
289 panic("%s: unable to map local interrupt registers\n",
290 node->full_name);
291 }
292
293 bcm2835_init_local_timer_frequency();
294
295 intc.domain = irq_domain_add_linear(node, LAST_IRQ + 1,
296 &bcm2836_arm_irqchip_intc_ops,
297 NULL);
298 if (!intc.domain)
299 panic("%s: unable to create IRQ domain\n", node->full_name);
300
301 bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_CNTPSIRQ,
302 &bcm2836_arm_irqchip_timer);
303 bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_CNTPNSIRQ,
304 &bcm2836_arm_irqchip_timer);
305 bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_CNTHPIRQ,
306 &bcm2836_arm_irqchip_timer);
307 bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_CNTVIRQ,
308 &bcm2836_arm_irqchip_timer);
309 bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_GPU_FAST,
310 &bcm2836_arm_irqchip_gpu);
311 bcm2836_arm_irqchip_register_irq(LOCAL_IRQ_PMU_FAST,
312 &bcm2836_arm_irqchip_pmu);
313
314 bcm2836_arm_irqchip_smp_init();
315
316 set_handle_irq(bcm2836_arm_irqchip_handle_irq);
317 return 0;
318}
319
320IRQCHIP_DECLARE(bcm2836_arm_irqchip_l1_intc, "brcm,bcm2836-l1-intc",
321 bcm2836_arm_irqchip_l1_intc_of_init);
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Root interrupt controller for the BCM2836 (Raspberry Pi 2).
4 *
5 * Copyright 2015 Broadcom
6 */
7
8#include <linux/cpu.h>
9#include <linux/of_address.h>
10#include <linux/of_irq.h>
11#include <linux/irqchip.h>
12#include <linux/irqdomain.h>
13#include <linux/irqchip/chained_irq.h>
14#include <linux/irqchip/irq-bcm2836.h>
15
16#include <asm/exception.h>
17
18struct bcm2836_arm_irqchip_intc {
19 struct irq_domain *domain;
20 void __iomem *base;
21};
22
23static struct bcm2836_arm_irqchip_intc intc __read_mostly;
24
25static void bcm2836_arm_irqchip_mask_per_cpu_irq(unsigned int reg_offset,
26 unsigned int bit,
27 int cpu)
28{
29 void __iomem *reg = intc.base + reg_offset + 4 * cpu;
30
31 writel(readl(reg) & ~BIT(bit), reg);
32}
33
34static void bcm2836_arm_irqchip_unmask_per_cpu_irq(unsigned int reg_offset,
35 unsigned int bit,
36 int cpu)
37{
38 void __iomem *reg = intc.base + reg_offset + 4 * cpu;
39
40 writel(readl(reg) | BIT(bit), reg);
41}
42
43static void bcm2836_arm_irqchip_mask_timer_irq(struct irq_data *d)
44{
45 bcm2836_arm_irqchip_mask_per_cpu_irq(LOCAL_TIMER_INT_CONTROL0,
46 d->hwirq - LOCAL_IRQ_CNTPSIRQ,
47 smp_processor_id());
48}
49
50static void bcm2836_arm_irqchip_unmask_timer_irq(struct irq_data *d)
51{
52 bcm2836_arm_irqchip_unmask_per_cpu_irq(LOCAL_TIMER_INT_CONTROL0,
53 d->hwirq - LOCAL_IRQ_CNTPSIRQ,
54 smp_processor_id());
55}
56
57static struct irq_chip bcm2836_arm_irqchip_timer = {
58 .name = "bcm2836-timer",
59 .irq_mask = bcm2836_arm_irqchip_mask_timer_irq,
60 .irq_unmask = bcm2836_arm_irqchip_unmask_timer_irq,
61};
62
63static void bcm2836_arm_irqchip_mask_pmu_irq(struct irq_data *d)
64{
65 writel(1 << smp_processor_id(), intc.base + LOCAL_PM_ROUTING_CLR);
66}
67
68static void bcm2836_arm_irqchip_unmask_pmu_irq(struct irq_data *d)
69{
70 writel(1 << smp_processor_id(), intc.base + LOCAL_PM_ROUTING_SET);
71}
72
73static struct irq_chip bcm2836_arm_irqchip_pmu = {
74 .name = "bcm2836-pmu",
75 .irq_mask = bcm2836_arm_irqchip_mask_pmu_irq,
76 .irq_unmask = bcm2836_arm_irqchip_unmask_pmu_irq,
77};
78
79static void bcm2836_arm_irqchip_mask_gpu_irq(struct irq_data *d)
80{
81}
82
83static void bcm2836_arm_irqchip_unmask_gpu_irq(struct irq_data *d)
84{
85}
86
87static struct irq_chip bcm2836_arm_irqchip_gpu = {
88 .name = "bcm2836-gpu",
89 .irq_mask = bcm2836_arm_irqchip_mask_gpu_irq,
90 .irq_unmask = bcm2836_arm_irqchip_unmask_gpu_irq,
91};
92
93static void bcm2836_arm_irqchip_dummy_op(struct irq_data *d)
94{
95}
96
97static struct irq_chip bcm2836_arm_irqchip_dummy = {
98 .name = "bcm2836-dummy",
99 .irq_eoi = bcm2836_arm_irqchip_dummy_op,
100};
101
102static int bcm2836_map(struct irq_domain *d, unsigned int irq,
103 irq_hw_number_t hw)
104{
105 struct irq_chip *chip;
106
107 switch (hw) {
108 case LOCAL_IRQ_MAILBOX0:
109 chip = &bcm2836_arm_irqchip_dummy;
110 break;
111 case LOCAL_IRQ_CNTPSIRQ:
112 case LOCAL_IRQ_CNTPNSIRQ:
113 case LOCAL_IRQ_CNTHPIRQ:
114 case LOCAL_IRQ_CNTVIRQ:
115 chip = &bcm2836_arm_irqchip_timer;
116 break;
117 case LOCAL_IRQ_GPU_FAST:
118 chip = &bcm2836_arm_irqchip_gpu;
119 break;
120 case LOCAL_IRQ_PMU_FAST:
121 chip = &bcm2836_arm_irqchip_pmu;
122 break;
123 default:
124 pr_warn_once("Unexpected hw irq: %lu\n", hw);
125 return -EINVAL;
126 }
127
128 irq_set_percpu_devid(irq);
129 irq_domain_set_info(d, irq, hw, chip, d->host_data,
130 handle_percpu_devid_irq, NULL, NULL);
131 irq_set_status_flags(irq, IRQ_NOAUTOEN);
132
133 return 0;
134}
135
136static void
137__exception_irq_entry bcm2836_arm_irqchip_handle_irq(struct pt_regs *regs)
138{
139 int cpu = smp_processor_id();
140 u32 stat;
141
142 stat = readl_relaxed(intc.base + LOCAL_IRQ_PENDING0 + 4 * cpu);
143 if (stat) {
144 u32 hwirq = ffs(stat) - 1;
145
146 generic_handle_domain_irq(intc.domain, hwirq);
147 }
148}
149
150#ifdef CONFIG_SMP
151static struct irq_domain *ipi_domain;
152
153static void bcm2836_arm_irqchip_handle_ipi(struct irq_desc *desc)
154{
155 struct irq_chip *chip = irq_desc_get_chip(desc);
156 int cpu = smp_processor_id();
157 u32 mbox_val;
158
159 chained_irq_enter(chip, desc);
160
161 mbox_val = readl_relaxed(intc.base + LOCAL_MAILBOX0_CLR0 + 16 * cpu);
162 if (mbox_val) {
163 int hwirq = ffs(mbox_val) - 1;
164 generic_handle_domain_irq(ipi_domain, hwirq);
165 }
166
167 chained_irq_exit(chip, desc);
168}
169
170static void bcm2836_arm_irqchip_ipi_ack(struct irq_data *d)
171{
172 int cpu = smp_processor_id();
173
174 writel_relaxed(BIT(d->hwirq),
175 intc.base + LOCAL_MAILBOX0_CLR0 + 16 * cpu);
176}
177
178static void bcm2836_arm_irqchip_ipi_send_mask(struct irq_data *d,
179 const struct cpumask *mask)
180{
181 int cpu;
182 void __iomem *mailbox0_base = intc.base + LOCAL_MAILBOX0_SET0;
183
184 /*
185 * Ensure that stores to normal memory are visible to the
186 * other CPUs before issuing the IPI.
187 */
188 smp_wmb();
189
190 for_each_cpu(cpu, mask)
191 writel_relaxed(BIT(d->hwirq), mailbox0_base + 16 * cpu);
192}
193
194static struct irq_chip bcm2836_arm_irqchip_ipi = {
195 .name = "IPI",
196 .irq_mask = bcm2836_arm_irqchip_dummy_op,
197 .irq_unmask = bcm2836_arm_irqchip_dummy_op,
198 .irq_ack = bcm2836_arm_irqchip_ipi_ack,
199 .ipi_send_mask = bcm2836_arm_irqchip_ipi_send_mask,
200};
201
202static int bcm2836_arm_irqchip_ipi_alloc(struct irq_domain *d,
203 unsigned int virq,
204 unsigned int nr_irqs, void *args)
205{
206 int i;
207
208 for (i = 0; i < nr_irqs; i++) {
209 irq_set_percpu_devid(virq + i);
210 irq_domain_set_info(d, virq + i, i, &bcm2836_arm_irqchip_ipi,
211 d->host_data,
212 handle_percpu_devid_irq,
213 NULL, NULL);
214 }
215
216 return 0;
217}
218
219static void bcm2836_arm_irqchip_ipi_free(struct irq_domain *d,
220 unsigned int virq,
221 unsigned int nr_irqs)
222{
223 /* Not freeing IPIs */
224}
225
226static const struct irq_domain_ops ipi_domain_ops = {
227 .alloc = bcm2836_arm_irqchip_ipi_alloc,
228 .free = bcm2836_arm_irqchip_ipi_free,
229};
230
231static int bcm2836_cpu_starting(unsigned int cpu)
232{
233 bcm2836_arm_irqchip_unmask_per_cpu_irq(LOCAL_MAILBOX_INT_CONTROL0, 0,
234 cpu);
235 return 0;
236}
237
238static int bcm2836_cpu_dying(unsigned int cpu)
239{
240 bcm2836_arm_irqchip_mask_per_cpu_irq(LOCAL_MAILBOX_INT_CONTROL0, 0,
241 cpu);
242 return 0;
243}
244
245#define BITS_PER_MBOX 32
246
247static void __init bcm2836_arm_irqchip_smp_init(void)
248{
249 struct irq_fwspec ipi_fwspec = {
250 .fwnode = intc.domain->fwnode,
251 .param_count = 1,
252 .param = {
253 [0] = LOCAL_IRQ_MAILBOX0,
254 },
255 };
256 int base_ipi, mux_irq;
257
258 mux_irq = irq_create_fwspec_mapping(&ipi_fwspec);
259 if (WARN_ON(mux_irq <= 0))
260 return;
261
262 ipi_domain = irq_domain_create_linear(intc.domain->fwnode,
263 BITS_PER_MBOX, &ipi_domain_ops,
264 NULL);
265 if (WARN_ON(!ipi_domain))
266 return;
267
268 ipi_domain->flags |= IRQ_DOMAIN_FLAG_IPI_SINGLE;
269 irq_domain_update_bus_token(ipi_domain, DOMAIN_BUS_IPI);
270
271 base_ipi = irq_domain_alloc_irqs(ipi_domain, BITS_PER_MBOX, NUMA_NO_NODE, NULL);
272 if (WARN_ON(!base_ipi))
273 return;
274
275 set_smp_ipi_range(base_ipi, BITS_PER_MBOX);
276
277 irq_set_chained_handler_and_data(mux_irq,
278 bcm2836_arm_irqchip_handle_ipi, NULL);
279
280 /* Unmask IPIs to the boot CPU. */
281 cpuhp_setup_state(CPUHP_AP_IRQ_BCM2836_STARTING,
282 "irqchip/bcm2836:starting", bcm2836_cpu_starting,
283 bcm2836_cpu_dying);
284}
285#else
286#define bcm2836_arm_irqchip_smp_init() do { } while(0)
287#endif
288
289static const struct irq_domain_ops bcm2836_arm_irqchip_intc_ops = {
290 .xlate = irq_domain_xlate_onetwocell,
291 .map = bcm2836_map,
292};
293
294/*
295 * The LOCAL_IRQ_CNT* timer firings are based off of the external
296 * oscillator with some scaling. The firmware sets up CNTFRQ to
297 * report 19.2Mhz, but doesn't set up the scaling registers.
298 */
299static void bcm2835_init_local_timer_frequency(void)
300{
301 /*
302 * Set the timer to source from the 19.2Mhz crystal clock (bit
303 * 8 unset), and only increment by 1 instead of 2 (bit 9
304 * unset).
305 */
306 writel(0, intc.base + LOCAL_CONTROL);
307
308 /*
309 * Set the timer prescaler to 1:1 (timer freq = input freq *
310 * 2**31 / prescaler)
311 */
312 writel(0x80000000, intc.base + LOCAL_PRESCALER);
313}
314
315static int __init bcm2836_arm_irqchip_l1_intc_of_init(struct device_node *node,
316 struct device_node *parent)
317{
318 intc.base = of_iomap(node, 0);
319 if (!intc.base) {
320 panic("%pOF: unable to map local interrupt registers\n", node);
321 }
322
323 bcm2835_init_local_timer_frequency();
324
325 intc.domain = irq_domain_add_linear(node, LAST_IRQ + 1,
326 &bcm2836_arm_irqchip_intc_ops,
327 NULL);
328 if (!intc.domain)
329 panic("%pOF: unable to create IRQ domain\n", node);
330
331 irq_domain_update_bus_token(intc.domain, DOMAIN_BUS_WIRED);
332
333 bcm2836_arm_irqchip_smp_init();
334
335 set_handle_irq(bcm2836_arm_irqchip_handle_irq);
336 return 0;
337}
338
339IRQCHIP_DECLARE(bcm2836_arm_irqchip_l1_intc, "brcm,bcm2836-l1-intc",
340 bcm2836_arm_irqchip_l1_intc_of_init);