1 // SPDX-License-Identifier: GPL-2.0
3 * Support for Versatile FPGA-based IRQ controllers
5 #include <linux/bitops.h>
8 #include <linux/irqchip.h>
9 #include <linux/irqchip/chained_irq.h>
10 #include <linux/irqchip/versatile-fpga.h>
11 #include <linux/irqdomain.h>
12 #include <linux/module.h>
14 #include <linux/of_address.h>
15 #include <linux/of_irq.h>
17 #include <asm/exception.h>
18 #include <asm/mach/irq.h>
20 #define IRQ_STATUS 0x00
21 #define IRQ_RAW_STATUS 0x04
22 #define IRQ_ENABLE_SET 0x08
23 #define IRQ_ENABLE_CLEAR 0x0c
24 #define INT_SOFT_SET 0x10
25 #define INT_SOFT_CLEAR 0x14
26 #define FIQ_STATUS 0x20
27 #define FIQ_RAW_STATUS 0x24
28 #define FIQ_ENABLE 0x28
29 #define FIQ_ENABLE_SET 0x28
30 #define FIQ_ENABLE_CLEAR 0x2C
32 #define PIC_ENABLES 0x20 /* set interrupt pass through bits */
35 * struct fpga_irq_data - irq data container for the FPGA IRQ controller
36 * @base: memory offset in virtual memory
37 * @chip: chip container for this instance
38 * @domain: IRQ domain for this instance
39 * @valid: mask for valid IRQs on this controller
40 * @used_irqs: number of active IRQs on this controller
42 struct fpga_irq_data
{
46 struct irq_domain
*domain
;
50 /* we cannot allocate memory when the controllers are initially registered */
51 static struct fpga_irq_data fpga_irq_devices
[CONFIG_VERSATILE_FPGA_IRQ_NR
];
52 static int fpga_irq_id
;
54 static void fpga_irq_mask(struct irq_data
*d
)
56 struct fpga_irq_data
*f
= irq_data_get_irq_chip_data(d
);
57 u32 mask
= 1 << d
->hwirq
;
59 writel(mask
, f
->base
+ IRQ_ENABLE_CLEAR
);
62 static void fpga_irq_unmask(struct irq_data
*d
)
64 struct fpga_irq_data
*f
= irq_data_get_irq_chip_data(d
);
65 u32 mask
= 1 << d
->hwirq
;
67 writel(mask
, f
->base
+ IRQ_ENABLE_SET
);
70 static void fpga_irq_handle(struct irq_desc
*desc
)
72 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
73 struct fpga_irq_data
*f
= irq_desc_get_handler_data(desc
);
76 chained_irq_enter(chip
, desc
);
78 status
= readl(f
->base
+ IRQ_STATUS
);
85 unsigned int irq
= ffs(status
) - 1;
87 status
&= ~(1 << irq
);
88 generic_handle_irq(irq_find_mapping(f
->domain
, irq
));
92 chained_irq_exit(chip
, desc
);
96 * Handle each interrupt in a single FPGA IRQ controller. Returns non-zero
97 * if we've handled at least one interrupt. This does a single read of the
98 * status register and handles all interrupts in order from LSB first.
100 static int handle_one_fpga(struct fpga_irq_data
*f
, struct pt_regs
*regs
)
106 while ((status
= readl(f
->base
+ IRQ_STATUS
))) {
107 irq
= ffs(status
) - 1;
108 handle_domain_irq(f
->domain
, irq
, regs
);
116 * Keep iterating over all registered FPGA IRQ controllers until there are
117 * no pending interrupts.
119 asmlinkage
void __exception_irq_entry
fpga_handle_irq(struct pt_regs
*regs
)
124 for (i
= 0, handled
= 0; i
< fpga_irq_id
; ++i
)
125 handled
|= handle_one_fpga(&fpga_irq_devices
[i
], regs
);
129 static int fpga_irqdomain_map(struct irq_domain
*d
, unsigned int irq
,
130 irq_hw_number_t hwirq
)
132 struct fpga_irq_data
*f
= d
->host_data
;
134 /* Skip invalid IRQs, only register handlers for the real ones */
135 if (!(f
->valid
& BIT(hwirq
)))
137 irq_set_chip_data(irq
, f
);
138 irq_set_chip_and_handler(irq
, &f
->chip
,
144 static const struct irq_domain_ops fpga_irqdomain_ops
= {
145 .map
= fpga_irqdomain_map
,
146 .xlate
= irq_domain_xlate_onetwocell
,
149 void __init
fpga_irq_init(void __iomem
*base
, const char *name
, int irq_start
,
150 int parent_irq
, u32 valid
, struct device_node
*node
)
152 struct fpga_irq_data
*f
;
155 if (fpga_irq_id
>= ARRAY_SIZE(fpga_irq_devices
)) {
156 pr_err("%s: too few FPGA IRQ controllers, increase CONFIG_VERSATILE_FPGA_IRQ_NR\n", __func__
);
159 f
= &fpga_irq_devices
[fpga_irq_id
];
162 f
->chip
.irq_ack
= fpga_irq_mask
;
163 f
->chip
.irq_mask
= fpga_irq_mask
;
164 f
->chip
.irq_unmask
= fpga_irq_unmask
;
167 if (parent_irq
!= -1) {
168 irq_set_chained_handler_and_data(parent_irq
, fpga_irq_handle
,
172 /* This will also allocate irq descriptors */
173 f
->domain
= irq_domain_add_simple(node
, fls(valid
), irq_start
,
174 &fpga_irqdomain_ops
, f
);
176 /* This will allocate all valid descriptors in the linear case */
177 for (i
= 0; i
< fls(valid
); i
++)
178 if (valid
& BIT(i
)) {
180 irq_create_mapping(f
->domain
, i
);
184 pr_info("FPGA IRQ chip %d \"%s\" @ %p, %u irqs",
185 fpga_irq_id
, name
, base
, f
->used_irqs
);
186 if (parent_irq
!= -1)
187 pr_cont(", parent IRQ: %d\n", parent_irq
);
195 int __init
fpga_irq_of_init(struct device_node
*node
,
196 struct device_node
*parent
)
206 base
= of_iomap(node
, 0);
207 WARN(!base
, "unable to map fpga irq registers\n");
209 if (of_property_read_u32(node
, "clear-mask", &clear_mask
))
212 if (of_property_read_u32(node
, "valid-mask", &valid_mask
))
215 writel(clear_mask
, base
+ IRQ_ENABLE_CLEAR
);
216 writel(clear_mask
, base
+ FIQ_ENABLE_CLEAR
);
218 /* Some chips are cascaded from a parent IRQ */
219 parent_irq
= irq_of_parse_and_map(node
, 0);
221 set_handle_irq(fpga_handle_irq
);
225 fpga_irq_init(base
, node
->name
, 0, parent_irq
, valid_mask
, node
);
228 * On Versatile AB/PB, some secondary interrupts have a direct
229 * pass-thru to the primary controller for IRQs 20 and 22-31 which need
230 * to be enabled. See section 3.10 of the Versatile AB user guide.
232 if (of_device_is_compatible(node
, "arm,versatile-sic"))
233 writel(0xffd00000, base
+ PIC_ENABLES
);
237 IRQCHIP_DECLARE(arm_fpga
, "arm,versatile-fpga-irq", fpga_irq_of_init
);
238 IRQCHIP_DECLARE(arm_fpga_sic
, "arm,versatile-sic", fpga_irq_of_init
);
239 IRQCHIP_DECLARE(ox810se_rps
, "oxsemi,ox810se-rps-irq", fpga_irq_of_init
);