Merge branch 'acpica'
[linux-2.6-block.git] / drivers / irqchip / irq-versatile-fpga.c
CommitLineData
c41b16f8
RK
1/*
2 * Support for Versatile FPGA-based IRQ controllers
3 */
3a6ca8c5 4#include <linux/bitops.h>
c41b16f8
RK
5#include <linux/irq.h>
6#include <linux/io.h>
41a83e06 7#include <linux/irqchip.h>
2389d501 8#include <linux/irqchip/versatile-fpga.h>
3108e6ab
LW
9#include <linux/irqdomain.h>
10#include <linux/module.h>
9bc15031
LW
11#include <linux/of.h>
12#include <linux/of_address.h>
bdd272cb 13#include <linux/of_irq.h>
c41b16f8 14
3108e6ab 15#include <asm/exception.h>
c41b16f8 16#include <asm/mach/irq.h>
c41b16f8
RK
17
18#define IRQ_STATUS 0x00
19#define IRQ_RAW_STATUS 0x04
20#define IRQ_ENABLE_SET 0x08
21#define IRQ_ENABLE_CLEAR 0x0c
9bc15031
LW
22#define INT_SOFT_SET 0x10
23#define INT_SOFT_CLEAR 0x14
24#define FIQ_STATUS 0x20
25#define FIQ_RAW_STATUS 0x24
26#define FIQ_ENABLE 0x28
27#define FIQ_ENABLE_SET 0x28
28#define FIQ_ENABLE_CLEAR 0x2C
c41b16f8 29
59318461
RH
30#define PIC_ENABLES 0x20 /* set interrupt pass through bits */
31
3108e6ab
LW
32/**
33 * struct fpga_irq_data - irq data container for the FPGA IRQ controller
34 * @base: memory offset in virtual memory
3108e6ab
LW
35 * @chip: chip container for this instance
36 * @domain: IRQ domain for this instance
37 * @valid: mask for valid IRQs on this controller
38 * @used_irqs: number of active IRQs on this controller
39 */
40struct fpga_irq_data {
41 void __iomem *base;
3108e6ab
LW
42 struct irq_chip chip;
43 u32 valid;
44 struct irq_domain *domain;
45 u8 used_irqs;
46};
47
48/* we cannot allocate memory when the controllers are initially registered */
2389d501 49static struct fpga_irq_data fpga_irq_devices[CONFIG_VERSATILE_FPGA_IRQ_NR];
3108e6ab
LW
50static int fpga_irq_id;
51
c41b16f8
RK
52static void fpga_irq_mask(struct irq_data *d)
53{
54 struct fpga_irq_data *f = irq_data_get_irq_chip_data(d);
3108e6ab 55 u32 mask = 1 << d->hwirq;
c41b16f8
RK
56
57 writel(mask, f->base + IRQ_ENABLE_CLEAR);
58}
59
60static void fpga_irq_unmask(struct irq_data *d)
61{
62 struct fpga_irq_data *f = irq_data_get_irq_chip_data(d);
3108e6ab 63 u32 mask = 1 << d->hwirq;
c41b16f8
RK
64
65 writel(mask, f->base + IRQ_ENABLE_SET);
66}
67
bd0b9ac4 68static void fpga_irq_handle(struct irq_desc *desc)
c41b16f8 69{
6845664a 70 struct fpga_irq_data *f = irq_desc_get_handler_data(desc);
c41b16f8
RK
71 u32 status = readl(f->base + IRQ_STATUS);
72
73 if (status == 0) {
bd0b9ac4 74 do_bad_IRQ(desc);
c41b16f8
RK
75 return;
76 }
77
78 do {
bd0b9ac4
TG
79 unsigned int irq = ffs(status) - 1;
80
c41b16f8 81 status &= ~(1 << irq);
3108e6ab 82 generic_handle_irq(irq_find_mapping(f->domain, irq));
c41b16f8
RK
83 } while (status);
84}
85
3108e6ab
LW
86/*
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.
90 */
91static int handle_one_fpga(struct fpga_irq_data *f, struct pt_regs *regs)
92{
93 int handled = 0;
94 int irq;
95 u32 status;
96
97 while ((status = readl(f->base + IRQ_STATUS))) {
98 irq = ffs(status) - 1;
84bc7399 99 handle_domain_irq(f->domain, irq, regs);
3108e6ab
LW
100 handled = 1;
101 }
102
103 return handled;
104}
105
106/*
107 * Keep iterating over all registered FPGA IRQ controllers until there are
108 * no pending interrupts.
109 */
110asmlinkage void __exception_irq_entry fpga_handle_irq(struct pt_regs *regs)
c41b16f8 111{
3108e6ab 112 int i, handled;
c41b16f8 113
3108e6ab
LW
114 do {
115 for (i = 0, handled = 0; i < fpga_irq_id; ++i)
116 handled |= handle_one_fpga(&fpga_irq_devices[i], regs);
117 } while (handled);
118}
119
120static int fpga_irqdomain_map(struct irq_domain *d, unsigned int irq,
121 irq_hw_number_t hwirq)
122{
123 struct fpga_irq_data *f = d->host_data;
124
125 /* Skip invalid IRQs, only register handlers for the real ones */
3a6ca8c5 126 if (!(f->valid & BIT(hwirq)))
d94ea3f6 127 return -EPERM;
3108e6ab
LW
128 irq_set_chip_data(irq, f);
129 irq_set_chip_and_handler(irq, &f->chip,
130 handle_level_irq);
d17cab44 131 irq_set_probe(irq);
3108e6ab
LW
132 return 0;
133}
134
96009736 135static const struct irq_domain_ops fpga_irqdomain_ops = {
3108e6ab
LW
136 .map = fpga_irqdomain_map,
137 .xlate = irq_domain_xlate_onetwocell,
138};
139
3a6ca8c5
LW
140void __init fpga_irq_init(void __iomem *base, const char *name, int irq_start,
141 int parent_irq, u32 valid, struct device_node *node)
142{
3108e6ab 143 struct fpga_irq_data *f;
3a6ca8c5 144 int i;
3108e6ab
LW
145
146 if (fpga_irq_id >= ARRAY_SIZE(fpga_irq_devices)) {
e6423f8b 147 pr_err("%s: too few FPGA IRQ controllers, increase CONFIG_VERSATILE_FPGA_IRQ_NR\n", __func__);
3a6ca8c5 148 return;
3108e6ab 149 }
3108e6ab
LW
150 f = &fpga_irq_devices[fpga_irq_id];
151 f->base = base;
3108e6ab 152 f->chip.name = name;
c41b16f8
RK
153 f->chip.irq_ack = fpga_irq_mask;
154 f->chip.irq_mask = fpga_irq_mask;
155 f->chip.irq_unmask = fpga_irq_unmask;
3108e6ab 156 f->valid = valid;
c41b16f8
RK
157
158 if (parent_irq != -1) {
fcd3c5be
TG
159 irq_set_chained_handler_and_data(parent_irq, fpga_irq_handle,
160 f);
c41b16f8
RK
161 }
162
3a6ca8c5
LW
163 /* This will also allocate irq descriptors */
164 f->domain = irq_domain_add_simple(node, fls(valid), irq_start,
3108e6ab 165 &fpga_irqdomain_ops, f);
3a6ca8c5
LW
166
167 /* This will allocate all valid descriptors in the linear case */
168 for (i = 0; i < fls(valid); i++)
169 if (valid & BIT(i)) {
170 if (!irq_start)
171 irq_create_mapping(f->domain, i);
172 f->used_irqs++;
173 }
174
bdd272cb 175 pr_info("FPGA IRQ chip %d \"%s\" @ %p, %u irqs",
3108e6ab 176 fpga_irq_id, name, base, f->used_irqs);
bdd272cb
LW
177 if (parent_irq != -1)
178 pr_cont(", parent IRQ: %d\n", parent_irq);
179 else
180 pr_cont("\n");
3a6ca8c5
LW
181
182 fpga_irq_id++;
9bc15031 183}
c41b16f8 184
9bc15031
LW
185#ifdef CONFIG_OF
186int __init fpga_irq_of_init(struct device_node *node,
187 struct device_node *parent)
188{
9bc15031
LW
189 void __iomem *base;
190 u32 clear_mask;
191 u32 valid_mask;
bdd272cb 192 int parent_irq;
9bc15031
LW
193
194 if (WARN_ON(!node))
195 return -ENODEV;
196
197 base = of_iomap(node, 0);
198 WARN(!base, "unable to map fpga irq registers\n");
199
200 if (of_property_read_u32(node, "clear-mask", &clear_mask))
201 clear_mask = 0;
202
203 if (of_property_read_u32(node, "valid-mask", &valid_mask))
204 valid_mask = 0;
205
bdd272cb
LW
206 /* Some chips are cascaded from a parent IRQ */
207 parent_irq = irq_of_parse_and_map(node, 0);
2920bc9a
RH
208 if (!parent_irq) {
209 set_handle_irq(fpga_handle_irq);
bdd272cb 210 parent_irq = -1;
2920bc9a 211 }
bdd272cb
LW
212
213 fpga_irq_init(base, node->name, 0, parent_irq, valid_mask, node);
9bc15031
LW
214
215 writel(clear_mask, base + IRQ_ENABLE_CLEAR);
216 writel(clear_mask, base + FIQ_ENABLE_CLEAR);
217
59318461
RH
218 /*
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.
222 */
223 if (of_device_is_compatible(node, "arm,versatile-sic"))
224 writel(0xffd00000, base + PIC_ENABLES);
225
9bc15031 226 return 0;
c41b16f8 227}
2920bc9a 228IRQCHIP_DECLARE(arm_fpga, "arm,versatile-fpga-irq", fpga_irq_of_init);
59318461 229IRQCHIP_DECLARE(arm_fpga_sic, "arm,versatile-sic", fpga_irq_of_init);
9bc15031 230#endif