2 * Support for Versatile FPGA-based IRQ controllers
4 #include <linux/bitops.h>
7 #include <linux/irqchip/versatile-fpga.h>
8 #include <linux/irqdomain.h>
9 #include <linux/module.h>
11 #include <linux/of_address.h>
12 #include <linux/of_irq.h>
14 #include <asm/exception.h>
15 #include <asm/mach/irq.h>
19 #define IRQ_STATUS 0x00
20 #define IRQ_RAW_STATUS 0x04
21 #define IRQ_ENABLE_SET 0x08
22 #define IRQ_ENABLE_CLEAR 0x0c
23 #define INT_SOFT_SET 0x10
24 #define INT_SOFT_CLEAR 0x14
25 #define FIQ_STATUS 0x20
26 #define FIQ_RAW_STATUS 0x24
27 #define FIQ_ENABLE 0x28
28 #define FIQ_ENABLE_SET 0x28
29 #define FIQ_ENABLE_CLEAR 0x2C
31 #define PIC_ENABLES 0x20 /* set interrupt pass through bits */
34 * struct fpga_irq_data - irq data container for the FPGA IRQ controller
35 * @base: memory offset in virtual memory
36 * @chip: chip container for this instance
37 * @domain: IRQ domain for this instance
38 * @valid: mask for valid IRQs on this controller
39 * @used_irqs: number of active IRQs on this controller
41 struct fpga_irq_data
{
45 struct irq_domain
*domain
;
49 /* we cannot allocate memory when the controllers are initially registered */
50 static struct fpga_irq_data fpga_irq_devices
[CONFIG_VERSATILE_FPGA_IRQ_NR
];
51 static int fpga_irq_id
;
53 static void fpga_irq_mask(struct irq_data
*d
)
55 struct fpga_irq_data
*f
= irq_data_get_irq_chip_data(d
);
56 u32 mask
= 1 << d
->hwirq
;
58 writel(mask
, f
->base
+ IRQ_ENABLE_CLEAR
);
61 static void fpga_irq_unmask(struct irq_data
*d
)
63 struct fpga_irq_data
*f
= irq_data_get_irq_chip_data(d
);
64 u32 mask
= 1 << d
->hwirq
;
66 writel(mask
, f
->base
+ IRQ_ENABLE_SET
);
69 static void fpga_irq_handle(unsigned int irq
, struct irq_desc
*desc
)
71 struct fpga_irq_data
*f
= irq_desc_get_handler_data(desc
);
72 u32 status
= readl(f
->base
+ IRQ_STATUS
);
75 do_bad_IRQ(irq
, desc
);
80 irq
= ffs(status
) - 1;
81 status
&= ~(1 << irq
);
82 generic_handle_irq(irq_find_mapping(f
->domain
, irq
));
87 * Handle each interrupt in a single FPGA IRQ controller. Returns non-zero
88 * if we've handled at least one interrupt. This does a single read of the
89 * status register and handles all interrupts in order from LSB first.
91 static int handle_one_fpga(struct fpga_irq_data
*f
, struct pt_regs
*regs
)
97 while ((status
= readl(f
->base
+ IRQ_STATUS
))) {
98 irq
= ffs(status
) - 1;
99 handle_domain_irq(f
->domain
, irq
, regs
);
107 * Keep iterating over all registered FPGA IRQ controllers until there are
108 * no pending interrupts.
110 asmlinkage
void __exception_irq_entry
fpga_handle_irq(struct pt_regs
*regs
)
115 for (i
= 0, handled
= 0; i
< fpga_irq_id
; ++i
)
116 handled
|= handle_one_fpga(&fpga_irq_devices
[i
], regs
);
120 static int fpga_irqdomain_map(struct irq_domain
*d
, unsigned int irq
,
121 irq_hw_number_t hwirq
)
123 struct fpga_irq_data
*f
= d
->host_data
;
125 /* Skip invalid IRQs, only register handlers for the real ones */
126 if (!(f
->valid
& BIT(hwirq
)))
128 irq_set_chip_data(irq
, f
);
129 irq_set_chip_and_handler(irq
, &f
->chip
,
131 set_irq_flags(irq
, IRQF_VALID
| IRQF_PROBE
);
135 static struct irq_domain_ops fpga_irqdomain_ops
= {
136 .map
= fpga_irqdomain_map
,
137 .xlate
= irq_domain_xlate_onetwocell
,
140 void __init
fpga_irq_init(void __iomem
*base
, const char *name
, int irq_start
,
141 int parent_irq
, u32 valid
, struct device_node
*node
)
143 struct fpga_irq_data
*f
;
146 if (fpga_irq_id
>= ARRAY_SIZE(fpga_irq_devices
)) {
147 pr_err("%s: too few FPGA IRQ controllers, increase CONFIG_VERSATILE_FPGA_IRQ_NR\n", __func__
);
150 f
= &fpga_irq_devices
[fpga_irq_id
];
153 f
->chip
.irq_ack
= fpga_irq_mask
;
154 f
->chip
.irq_mask
= fpga_irq_mask
;
155 f
->chip
.irq_unmask
= fpga_irq_unmask
;
158 if (parent_irq
!= -1) {
159 irq_set_handler_data(parent_irq
, f
);
160 irq_set_chained_handler(parent_irq
, fpga_irq_handle
);
163 /* This will also allocate irq descriptors */
164 f
->domain
= irq_domain_add_simple(node
, fls(valid
), irq_start
,
165 &fpga_irqdomain_ops
, f
);
167 /* This will allocate all valid descriptors in the linear case */
168 for (i
= 0; i
< fls(valid
); i
++)
169 if (valid
& BIT(i
)) {
171 irq_create_mapping(f
->domain
, i
);
175 pr_info("FPGA IRQ chip %d \"%s\" @ %p, %u irqs",
176 fpga_irq_id
, name
, base
, f
->used_irqs
);
177 if (parent_irq
!= -1)
178 pr_cont(", parent IRQ: %d\n", parent_irq
);
186 int __init
fpga_irq_of_init(struct device_node
*node
,
187 struct device_node
*parent
)
197 base
= of_iomap(node
, 0);
198 WARN(!base
, "unable to map fpga irq registers\n");
200 if (of_property_read_u32(node
, "clear-mask", &clear_mask
))
203 if (of_property_read_u32(node
, "valid-mask", &valid_mask
))
206 /* Some chips are cascaded from a parent IRQ */
207 parent_irq
= irq_of_parse_and_map(node
, 0);
209 set_handle_irq(fpga_handle_irq
);
213 fpga_irq_init(base
, node
->name
, 0, parent_irq
, valid_mask
, node
);
215 writel(clear_mask
, base
+ IRQ_ENABLE_CLEAR
);
216 writel(clear_mask
, base
+ FIQ_ENABLE_CLEAR
);
219 * On Versatile AB/PB, some secondary interrupts have a direct
220 * pass-thru to the primary controller for IRQs 20 and 22-31 which need
221 * to be enabled. See section 3.10 of the Versatile AB user guide.
223 if (of_device_is_compatible(node
, "arm,versatile-sic"))
224 writel(0xffd00000, base
+ PIC_ENABLES
);
228 IRQCHIP_DECLARE(arm_fpga
, "arm,versatile-fpga-irq", fpga_irq_of_init
);
229 IRQCHIP_DECLARE(arm_fpga_sic
, "arm,versatile-sic", fpga_irq_of_init
);