1d2912cb1SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
2c7c42ec2SSimon Arlott /*
3c7c42ec2SSimon Arlott * Broadcom BCM6345 style Level 1 interrupt controller driver
4c7c42ec2SSimon Arlott *
5c7c42ec2SSimon Arlott * Copyright (C) 2014 Broadcom Corporation
6c7c42ec2SSimon Arlott * Copyright 2015 Simon Arlott
7c7c42ec2SSimon Arlott *
8c7c42ec2SSimon Arlott * This is based on the BCM7038 (which supports SMP) but with a single
9c7c42ec2SSimon Arlott * enable register instead of separate mask/set/clear registers.
10c7c42ec2SSimon Arlott *
11c7c42ec2SSimon Arlott * The BCM3380 has a similar mask/status register layout, but each pair
12c7c42ec2SSimon Arlott * of words is at separate locations (and SMP is not supported).
13c7c42ec2SSimon Arlott *
14c7c42ec2SSimon Arlott * ENABLE/STATUS words are packed next to each other for each CPU:
15c7c42ec2SSimon Arlott *
16c7c42ec2SSimon Arlott * BCM6368:
17c7c42ec2SSimon Arlott * 0x1000_0020: CPU0_W0_ENABLE
18c7c42ec2SSimon Arlott * 0x1000_0024: CPU0_W1_ENABLE
19c7c42ec2SSimon Arlott * 0x1000_0028: CPU0_W0_STATUS IRQs 31-63
20c7c42ec2SSimon Arlott * 0x1000_002c: CPU0_W1_STATUS IRQs 0-31
21c7c42ec2SSimon Arlott * 0x1000_0030: CPU1_W0_ENABLE
22c7c42ec2SSimon Arlott * 0x1000_0034: CPU1_W1_ENABLE
23c7c42ec2SSimon Arlott * 0x1000_0038: CPU1_W0_STATUS IRQs 31-63
24c7c42ec2SSimon Arlott * 0x1000_003c: CPU1_W1_STATUS IRQs 0-31
25c7c42ec2SSimon Arlott *
26c7c42ec2SSimon Arlott * BCM63168:
27c7c42ec2SSimon Arlott * 0x1000_0020: CPU0_W0_ENABLE
28c7c42ec2SSimon Arlott * 0x1000_0024: CPU0_W1_ENABLE
29c7c42ec2SSimon Arlott * 0x1000_0028: CPU0_W2_ENABLE
30c7c42ec2SSimon Arlott * 0x1000_002c: CPU0_W3_ENABLE
31c7c42ec2SSimon Arlott * 0x1000_0030: CPU0_W0_STATUS IRQs 96-127
32c7c42ec2SSimon Arlott * 0x1000_0034: CPU0_W1_STATUS IRQs 64-95
33c7c42ec2SSimon Arlott * 0x1000_0038: CPU0_W2_STATUS IRQs 32-63
34c7c42ec2SSimon Arlott * 0x1000_003c: CPU0_W3_STATUS IRQs 0-31
35c7c42ec2SSimon Arlott * 0x1000_0040: CPU1_W0_ENABLE
36c7c42ec2SSimon Arlott * 0x1000_0044: CPU1_W1_ENABLE
37c7c42ec2SSimon Arlott * 0x1000_0048: CPU1_W2_ENABLE
38c7c42ec2SSimon Arlott * 0x1000_004c: CPU1_W3_ENABLE
39c7c42ec2SSimon Arlott * 0x1000_0050: CPU1_W0_STATUS IRQs 96-127
40c7c42ec2SSimon Arlott * 0x1000_0054: CPU1_W1_STATUS IRQs 64-95
41c7c42ec2SSimon Arlott * 0x1000_0058: CPU1_W2_STATUS IRQs 32-63
42c7c42ec2SSimon Arlott * 0x1000_005c: CPU1_W3_STATUS IRQs 0-31
43c7c42ec2SSimon Arlott *
44c7c42ec2SSimon Arlott * IRQs are numbered in CPU native endian order
45c7c42ec2SSimon Arlott * (which is big-endian in these examples)
46c7c42ec2SSimon Arlott */
47c7c42ec2SSimon Arlott
48c7c42ec2SSimon Arlott #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
49c7c42ec2SSimon Arlott
50c7c42ec2SSimon Arlott #include <linux/bitops.h>
51c7c42ec2SSimon Arlott #include <linux/cpumask.h>
52c7c42ec2SSimon Arlott #include <linux/kernel.h>
53c7c42ec2SSimon Arlott #include <linux/init.h>
54c7c42ec2SSimon Arlott #include <linux/interrupt.h>
55c7c42ec2SSimon Arlott #include <linux/io.h>
56c7c42ec2SSimon Arlott #include <linux/ioport.h>
57c7c42ec2SSimon Arlott #include <linux/irq.h>
58c7c42ec2SSimon Arlott #include <linux/irqdomain.h>
59c7c42ec2SSimon Arlott #include <linux/module.h>
60c7c42ec2SSimon Arlott #include <linux/of.h>
61c7c42ec2SSimon Arlott #include <linux/of_irq.h>
62c7c42ec2SSimon Arlott #include <linux/of_address.h>
63c7c42ec2SSimon Arlott #include <linux/platform_device.h>
64c7c42ec2SSimon Arlott #include <linux/slab.h>
65c7c42ec2SSimon Arlott #include <linux/smp.h>
66c7c42ec2SSimon Arlott #include <linux/types.h>
67c7c42ec2SSimon Arlott #include <linux/irqchip.h>
68c7c42ec2SSimon Arlott #include <linux/irqchip/chained_irq.h>
69c7c42ec2SSimon Arlott
70c7c42ec2SSimon Arlott #define IRQS_PER_WORD 32
71c7c42ec2SSimon Arlott #define REG_BYTES_PER_IRQ_WORD (sizeof(u32) * 2)
72c7c42ec2SSimon Arlott
73c7c42ec2SSimon Arlott struct bcm6345_l1_cpu;
74c7c42ec2SSimon Arlott
75c7c42ec2SSimon Arlott struct bcm6345_l1_chip {
76c7c42ec2SSimon Arlott raw_spinlock_t lock;
77c7c42ec2SSimon Arlott unsigned int n_words;
78c7c42ec2SSimon Arlott struct irq_domain *domain;
79c7c42ec2SSimon Arlott struct cpumask cpumask;
80c7c42ec2SSimon Arlott struct bcm6345_l1_cpu *cpus[NR_CPUS];
81c7c42ec2SSimon Arlott };
82c7c42ec2SSimon Arlott
83c7c42ec2SSimon Arlott struct bcm6345_l1_cpu {
84*55ad2485SJonas Gorski struct bcm6345_l1_chip *intc;
85c7c42ec2SSimon Arlott void __iomem *map_base;
86c7c42ec2SSimon Arlott unsigned int parent_irq;
87c7c42ec2SSimon Arlott u32 enable_cache[];
88c7c42ec2SSimon Arlott };
89c7c42ec2SSimon Arlott
reg_enable(struct bcm6345_l1_chip * intc,unsigned int word)90c7c42ec2SSimon Arlott static inline unsigned int reg_enable(struct bcm6345_l1_chip *intc,
91c7c42ec2SSimon Arlott unsigned int word)
92c7c42ec2SSimon Arlott {
93c7c42ec2SSimon Arlott #ifdef __BIG_ENDIAN
94c7c42ec2SSimon Arlott return (1 * intc->n_words - word - 1) * sizeof(u32);
95c7c42ec2SSimon Arlott #else
96c7c42ec2SSimon Arlott return (0 * intc->n_words + word) * sizeof(u32);
97c7c42ec2SSimon Arlott #endif
98c7c42ec2SSimon Arlott }
99c7c42ec2SSimon Arlott
reg_status(struct bcm6345_l1_chip * intc,unsigned int word)100c7c42ec2SSimon Arlott static inline unsigned int reg_status(struct bcm6345_l1_chip *intc,
101c7c42ec2SSimon Arlott unsigned int word)
102c7c42ec2SSimon Arlott {
103c7c42ec2SSimon Arlott #ifdef __BIG_ENDIAN
104c7c42ec2SSimon Arlott return (2 * intc->n_words - word - 1) * sizeof(u32);
105c7c42ec2SSimon Arlott #else
106c7c42ec2SSimon Arlott return (1 * intc->n_words + word) * sizeof(u32);
107c7c42ec2SSimon Arlott #endif
108c7c42ec2SSimon Arlott }
109c7c42ec2SSimon Arlott
cpu_for_irq(struct bcm6345_l1_chip * intc,struct irq_data * d)110c7c42ec2SSimon Arlott static inline unsigned int cpu_for_irq(struct bcm6345_l1_chip *intc,
111c7c42ec2SSimon Arlott struct irq_data *d)
112c7c42ec2SSimon Arlott {
113c7c42ec2SSimon Arlott return cpumask_first_and(&intc->cpumask, irq_data_get_affinity_mask(d));
114c7c42ec2SSimon Arlott }
115c7c42ec2SSimon Arlott
bcm6345_l1_irq_handle(struct irq_desc * desc)116c7c42ec2SSimon Arlott static void bcm6345_l1_irq_handle(struct irq_desc *desc)
117c7c42ec2SSimon Arlott {
118*55ad2485SJonas Gorski struct bcm6345_l1_cpu *cpu = irq_desc_get_handler_data(desc);
119*55ad2485SJonas Gorski struct bcm6345_l1_chip *intc = cpu->intc;
120c7c42ec2SSimon Arlott struct irq_chip *chip = irq_desc_get_chip(desc);
121c7c42ec2SSimon Arlott unsigned int idx;
122c7c42ec2SSimon Arlott
123c7c42ec2SSimon Arlott chained_irq_enter(chip, desc);
124c7c42ec2SSimon Arlott
125c7c42ec2SSimon Arlott for (idx = 0; idx < intc->n_words; idx++) {
126c7c42ec2SSimon Arlott int base = idx * IRQS_PER_WORD;
127c7c42ec2SSimon Arlott unsigned long pending;
128c7c42ec2SSimon Arlott irq_hw_number_t hwirq;
129c7c42ec2SSimon Arlott
130c7c42ec2SSimon Arlott pending = __raw_readl(cpu->map_base + reg_status(intc, idx));
131c7c42ec2SSimon Arlott pending &= __raw_readl(cpu->map_base + reg_enable(intc, idx));
132c7c42ec2SSimon Arlott
133c7c42ec2SSimon Arlott for_each_set_bit(hwirq, &pending, IRQS_PER_WORD) {
13446b61c88SMark Rutland if (generic_handle_domain_irq(intc->domain, base + hwirq))
135c7c42ec2SSimon Arlott spurious_interrupt();
136c7c42ec2SSimon Arlott }
137c7c42ec2SSimon Arlott }
138c7c42ec2SSimon Arlott
139c7c42ec2SSimon Arlott chained_irq_exit(chip, desc);
140c7c42ec2SSimon Arlott }
141c7c42ec2SSimon Arlott
__bcm6345_l1_unmask(struct irq_data * d)142c7c42ec2SSimon Arlott static inline void __bcm6345_l1_unmask(struct irq_data *d)
143c7c42ec2SSimon Arlott {
144c7c42ec2SSimon Arlott struct bcm6345_l1_chip *intc = irq_data_get_irq_chip_data(d);
145c7c42ec2SSimon Arlott u32 word = d->hwirq / IRQS_PER_WORD;
146c7c42ec2SSimon Arlott u32 mask = BIT(d->hwirq % IRQS_PER_WORD);
147c7c42ec2SSimon Arlott unsigned int cpu_idx = cpu_for_irq(intc, d);
148c7c42ec2SSimon Arlott
149c7c42ec2SSimon Arlott intc->cpus[cpu_idx]->enable_cache[word] |= mask;
150c7c42ec2SSimon Arlott __raw_writel(intc->cpus[cpu_idx]->enable_cache[word],
151c7c42ec2SSimon Arlott intc->cpus[cpu_idx]->map_base + reg_enable(intc, word));
152c7c42ec2SSimon Arlott }
153c7c42ec2SSimon Arlott
__bcm6345_l1_mask(struct irq_data * d)154c7c42ec2SSimon Arlott static inline void __bcm6345_l1_mask(struct irq_data *d)
155c7c42ec2SSimon Arlott {
156c7c42ec2SSimon Arlott struct bcm6345_l1_chip *intc = irq_data_get_irq_chip_data(d);
157c7c42ec2SSimon Arlott u32 word = d->hwirq / IRQS_PER_WORD;
158c7c42ec2SSimon Arlott u32 mask = BIT(d->hwirq % IRQS_PER_WORD);
159c7c42ec2SSimon Arlott unsigned int cpu_idx = cpu_for_irq(intc, d);
160c7c42ec2SSimon Arlott
161c7c42ec2SSimon Arlott intc->cpus[cpu_idx]->enable_cache[word] &= ~mask;
162c7c42ec2SSimon Arlott __raw_writel(intc->cpus[cpu_idx]->enable_cache[word],
163c7c42ec2SSimon Arlott intc->cpus[cpu_idx]->map_base + reg_enable(intc, word));
164c7c42ec2SSimon Arlott }
165c7c42ec2SSimon Arlott
bcm6345_l1_unmask(struct irq_data * d)166c7c42ec2SSimon Arlott static void bcm6345_l1_unmask(struct irq_data *d)
167c7c42ec2SSimon Arlott {
168c7c42ec2SSimon Arlott struct bcm6345_l1_chip *intc = irq_data_get_irq_chip_data(d);
169c7c42ec2SSimon Arlott unsigned long flags;
170c7c42ec2SSimon Arlott
171c7c42ec2SSimon Arlott raw_spin_lock_irqsave(&intc->lock, flags);
172c7c42ec2SSimon Arlott __bcm6345_l1_unmask(d);
173c7c42ec2SSimon Arlott raw_spin_unlock_irqrestore(&intc->lock, flags);
174c7c42ec2SSimon Arlott }
175c7c42ec2SSimon Arlott
bcm6345_l1_mask(struct irq_data * d)176c7c42ec2SSimon Arlott static void bcm6345_l1_mask(struct irq_data *d)
177c7c42ec2SSimon Arlott {
178c7c42ec2SSimon Arlott struct bcm6345_l1_chip *intc = irq_data_get_irq_chip_data(d);
179c7c42ec2SSimon Arlott unsigned long flags;
180c7c42ec2SSimon Arlott
181c7c42ec2SSimon Arlott raw_spin_lock_irqsave(&intc->lock, flags);
182c7c42ec2SSimon Arlott __bcm6345_l1_mask(d);
183c7c42ec2SSimon Arlott raw_spin_unlock_irqrestore(&intc->lock, flags);
184c7c42ec2SSimon Arlott }
185c7c42ec2SSimon Arlott
bcm6345_l1_set_affinity(struct irq_data * d,const struct cpumask * dest,bool force)186c7c42ec2SSimon Arlott static int bcm6345_l1_set_affinity(struct irq_data *d,
187c7c42ec2SSimon Arlott const struct cpumask *dest,
188c7c42ec2SSimon Arlott bool force)
189c7c42ec2SSimon Arlott {
190c7c42ec2SSimon Arlott struct bcm6345_l1_chip *intc = irq_data_get_irq_chip_data(d);
191c7c42ec2SSimon Arlott u32 word = d->hwirq / IRQS_PER_WORD;
192c7c42ec2SSimon Arlott u32 mask = BIT(d->hwirq % IRQS_PER_WORD);
193c7c42ec2SSimon Arlott unsigned int old_cpu = cpu_for_irq(intc, d);
194c7c42ec2SSimon Arlott unsigned int new_cpu;
195c7c42ec2SSimon Arlott struct cpumask valid;
196c7c42ec2SSimon Arlott unsigned long flags;
197c7c42ec2SSimon Arlott bool enabled;
198c7c42ec2SSimon Arlott
199c7c42ec2SSimon Arlott if (!cpumask_and(&valid, &intc->cpumask, dest))
200c7c42ec2SSimon Arlott return -EINVAL;
201c7c42ec2SSimon Arlott
202c7c42ec2SSimon Arlott new_cpu = cpumask_any_and(&valid, cpu_online_mask);
203c7c42ec2SSimon Arlott if (new_cpu >= nr_cpu_ids)
204c7c42ec2SSimon Arlott return -EINVAL;
205c7c42ec2SSimon Arlott
206c7c42ec2SSimon Arlott dest = cpumask_of(new_cpu);
207c7c42ec2SSimon Arlott
208c7c42ec2SSimon Arlott raw_spin_lock_irqsave(&intc->lock, flags);
209c7c42ec2SSimon Arlott if (old_cpu != new_cpu) {
210c7c42ec2SSimon Arlott enabled = intc->cpus[old_cpu]->enable_cache[word] & mask;
211c7c42ec2SSimon Arlott if (enabled)
212c7c42ec2SSimon Arlott __bcm6345_l1_mask(d);
213073352e9SSamuel Holland irq_data_update_affinity(d, dest);
214c7c42ec2SSimon Arlott if (enabled)
215c7c42ec2SSimon Arlott __bcm6345_l1_unmask(d);
216c7c42ec2SSimon Arlott } else {
217073352e9SSamuel Holland irq_data_update_affinity(d, dest);
218c7c42ec2SSimon Arlott }
219c7c42ec2SSimon Arlott raw_spin_unlock_irqrestore(&intc->lock, flags);
220c7c42ec2SSimon Arlott
221d0ed5e8eSMarc Zyngier irq_data_update_effective_affinity(d, cpumask_of(new_cpu));
222d0ed5e8eSMarc Zyngier
223c7c42ec2SSimon Arlott return IRQ_SET_MASK_OK_NOCOPY;
224c7c42ec2SSimon Arlott }
225c7c42ec2SSimon Arlott
bcm6345_l1_init_one(struct device_node * dn,unsigned int idx,struct bcm6345_l1_chip * intc)226c7c42ec2SSimon Arlott static int __init bcm6345_l1_init_one(struct device_node *dn,
227c7c42ec2SSimon Arlott unsigned int idx,
228c7c42ec2SSimon Arlott struct bcm6345_l1_chip *intc)
229c7c42ec2SSimon Arlott {
230c7c42ec2SSimon Arlott struct resource res;
231c7c42ec2SSimon Arlott resource_size_t sz;
232c7c42ec2SSimon Arlott struct bcm6345_l1_cpu *cpu;
233c7c42ec2SSimon Arlott unsigned int i, n_words;
234c7c42ec2SSimon Arlott
235c7c42ec2SSimon Arlott if (of_address_to_resource(dn, idx, &res))
236c7c42ec2SSimon Arlott return -EINVAL;
237c7c42ec2SSimon Arlott sz = resource_size(&res);
238c7c42ec2SSimon Arlott n_words = sz / REG_BYTES_PER_IRQ_WORD;
239c7c42ec2SSimon Arlott
240c7c42ec2SSimon Arlott if (!intc->n_words)
241c7c42ec2SSimon Arlott intc->n_words = n_words;
242c7c42ec2SSimon Arlott else if (intc->n_words != n_words)
243c7c42ec2SSimon Arlott return -EINVAL;
244c7c42ec2SSimon Arlott
245c7c42ec2SSimon Arlott cpu = intc->cpus[idx] = kzalloc(sizeof(*cpu) + n_words * sizeof(u32),
246c7c42ec2SSimon Arlott GFP_KERNEL);
247c7c42ec2SSimon Arlott if (!cpu)
248c7c42ec2SSimon Arlott return -ENOMEM;
249c7c42ec2SSimon Arlott
250*55ad2485SJonas Gorski cpu->intc = intc;
251c7c42ec2SSimon Arlott cpu->map_base = ioremap(res.start, sz);
252c7c42ec2SSimon Arlott if (!cpu->map_base)
253c7c42ec2SSimon Arlott return -ENOMEM;
254c7c42ec2SSimon Arlott
25523c7ff12SÁlvaro Fernández Rojas if (!request_mem_region(res.start, sz, res.name))
25623c7ff12SÁlvaro Fernández Rojas pr_err("failed to request intc memory");
25723c7ff12SÁlvaro Fernández Rojas
258c7c42ec2SSimon Arlott for (i = 0; i < n_words; i++) {
259c7c42ec2SSimon Arlott cpu->enable_cache[i] = 0;
260c7c42ec2SSimon Arlott __raw_writel(0, cpu->map_base + reg_enable(intc, i));
261c7c42ec2SSimon Arlott }
262c7c42ec2SSimon Arlott
263c7c42ec2SSimon Arlott cpu->parent_irq = irq_of_parse_and_map(dn, idx);
264c7c42ec2SSimon Arlott if (!cpu->parent_irq) {
265c7c42ec2SSimon Arlott pr_err("failed to map parent interrupt %d\n", cpu->parent_irq);
266c7c42ec2SSimon Arlott return -EINVAL;
267c7c42ec2SSimon Arlott }
268c7c42ec2SSimon Arlott irq_set_chained_handler_and_data(cpu->parent_irq,
269*55ad2485SJonas Gorski bcm6345_l1_irq_handle, cpu);
270c7c42ec2SSimon Arlott
271c7c42ec2SSimon Arlott return 0;
272c7c42ec2SSimon Arlott }
273c7c42ec2SSimon Arlott
274c7c42ec2SSimon Arlott static struct irq_chip bcm6345_l1_irq_chip = {
275c7c42ec2SSimon Arlott .name = "bcm6345-l1",
276c7c42ec2SSimon Arlott .irq_mask = bcm6345_l1_mask,
277c7c42ec2SSimon Arlott .irq_unmask = bcm6345_l1_unmask,
278c7c42ec2SSimon Arlott .irq_set_affinity = bcm6345_l1_set_affinity,
279c7c42ec2SSimon Arlott };
280c7c42ec2SSimon Arlott
bcm6345_l1_map(struct irq_domain * d,unsigned int virq,irq_hw_number_t hw_irq)281c7c42ec2SSimon Arlott static int bcm6345_l1_map(struct irq_domain *d, unsigned int virq,
282c7c42ec2SSimon Arlott irq_hw_number_t hw_irq)
283c7c42ec2SSimon Arlott {
284c7c42ec2SSimon Arlott irq_set_chip_and_handler(virq,
285c7c42ec2SSimon Arlott &bcm6345_l1_irq_chip, handle_percpu_irq);
286c7c42ec2SSimon Arlott irq_set_chip_data(virq, d->host_data);
287d0ed5e8eSMarc Zyngier irqd_set_single_target(irq_desc_get_irq_data(irq_to_desc(virq)));
288c7c42ec2SSimon Arlott return 0;
289c7c42ec2SSimon Arlott }
290c7c42ec2SSimon Arlott
291c7c42ec2SSimon Arlott static const struct irq_domain_ops bcm6345_l1_domain_ops = {
292c7c42ec2SSimon Arlott .xlate = irq_domain_xlate_onecell,
293c7c42ec2SSimon Arlott .map = bcm6345_l1_map,
294c7c42ec2SSimon Arlott };
295c7c42ec2SSimon Arlott
bcm6345_l1_of_init(struct device_node * dn,struct device_node * parent)296c7c42ec2SSimon Arlott static int __init bcm6345_l1_of_init(struct device_node *dn,
297c7c42ec2SSimon Arlott struct device_node *parent)
298c7c42ec2SSimon Arlott {
299c7c42ec2SSimon Arlott struct bcm6345_l1_chip *intc;
300c7c42ec2SSimon Arlott unsigned int idx;
301c7c42ec2SSimon Arlott int ret;
302c7c42ec2SSimon Arlott
303c7c42ec2SSimon Arlott intc = kzalloc(sizeof(*intc), GFP_KERNEL);
304c7c42ec2SSimon Arlott if (!intc)
305c7c42ec2SSimon Arlott return -ENOMEM;
306c7c42ec2SSimon Arlott
307c7c42ec2SSimon Arlott for_each_possible_cpu(idx) {
308c7c42ec2SSimon Arlott ret = bcm6345_l1_init_one(dn, idx, intc);
309c7c42ec2SSimon Arlott if (ret)
310c7c42ec2SSimon Arlott pr_err("failed to init intc L1 for cpu %d: %d\n",
311c7c42ec2SSimon Arlott idx, ret);
312c7c42ec2SSimon Arlott else
313c7c42ec2SSimon Arlott cpumask_set_cpu(idx, &intc->cpumask);
314c7c42ec2SSimon Arlott }
315c7c42ec2SSimon Arlott
3160de61d73SYury Norov if (cpumask_empty(&intc->cpumask)) {
317c7c42ec2SSimon Arlott ret = -ENODEV;
318c7c42ec2SSimon Arlott goto out_free;
319c7c42ec2SSimon Arlott }
320c7c42ec2SSimon Arlott
321c7c42ec2SSimon Arlott raw_spin_lock_init(&intc->lock);
322c7c42ec2SSimon Arlott
323c7c42ec2SSimon Arlott intc->domain = irq_domain_add_linear(dn, IRQS_PER_WORD * intc->n_words,
324c7c42ec2SSimon Arlott &bcm6345_l1_domain_ops,
325c7c42ec2SSimon Arlott intc);
326c7c42ec2SSimon Arlott if (!intc->domain) {
327c7c42ec2SSimon Arlott ret = -ENOMEM;
328c7c42ec2SSimon Arlott goto out_unmap;
329c7c42ec2SSimon Arlott }
330c7c42ec2SSimon Arlott
331c7c42ec2SSimon Arlott pr_info("registered BCM6345 L1 intc (IRQs: %d)\n",
332c7c42ec2SSimon Arlott IRQS_PER_WORD * intc->n_words);
333c7c42ec2SSimon Arlott for_each_cpu(idx, &intc->cpumask) {
334c7c42ec2SSimon Arlott struct bcm6345_l1_cpu *cpu = intc->cpus[idx];
335c7c42ec2SSimon Arlott
33623c7ff12SÁlvaro Fernández Rojas pr_info(" CPU%u (irq = %d)\n", idx, cpu->parent_irq);
337c7c42ec2SSimon Arlott }
338c7c42ec2SSimon Arlott
339c7c42ec2SSimon Arlott return 0;
340c7c42ec2SSimon Arlott
341c7c42ec2SSimon Arlott out_unmap:
342c7c42ec2SSimon Arlott for_each_possible_cpu(idx) {
343c7c42ec2SSimon Arlott struct bcm6345_l1_cpu *cpu = intc->cpus[idx];
344c7c42ec2SSimon Arlott
345c7c42ec2SSimon Arlott if (cpu) {
346c7c42ec2SSimon Arlott if (cpu->map_base)
347c7c42ec2SSimon Arlott iounmap(cpu->map_base);
348c7c42ec2SSimon Arlott kfree(cpu);
349c7c42ec2SSimon Arlott }
350c7c42ec2SSimon Arlott }
351c7c42ec2SSimon Arlott out_free:
352c7c42ec2SSimon Arlott kfree(intc);
353c7c42ec2SSimon Arlott return ret;
354c7c42ec2SSimon Arlott }
355c7c42ec2SSimon Arlott
356c7c42ec2SSimon Arlott IRQCHIP_DECLARE(bcm6345_l1, "brcm,bcm6345-l1-intc", bcm6345_l1_of_init);
357