2 * Copyright (C) 2008 Ilya Yanok, Emcraft Systems
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
11 #include <linux/irq.h>
12 #include <linux/of_address.h>
13 #include <linux/of_irq.h>
14 #include <linux/of_platform.h>
18 * The FPGA supports 9 interrupt sources, which can be routed to 3
19 * interrupt request lines of the MPIC. The line to be used can be
20 * specified through the third cell of FDT property "interrupts".
23 #define SOCRATES_FPGA_NUM_IRQS 9
25 #define FPGA_PIC_IRQCFG (0x0)
26 #define FPGA_PIC_IRQMASK(n) (0x4 + 0x4 * (n))
28 #define SOCRATES_FPGA_IRQ_MASK ((1 << SOCRATES_FPGA_NUM_IRQS) - 1)
30 struct socrates_fpga_irq_info
{
31 unsigned int irq_line
;
36 * Interrupt routing and type table
38 * IRQ_TYPE_NONE means the interrupt type is configurable,
39 * otherwise it's fixed to the specified value.
41 static struct socrates_fpga_irq_info fpga_irqs
[SOCRATES_FPGA_NUM_IRQS
] = {
42 [0] = {0, IRQ_TYPE_NONE
},
43 [1] = {0, IRQ_TYPE_LEVEL_HIGH
},
44 [2] = {0, IRQ_TYPE_LEVEL_LOW
},
45 [3] = {0, IRQ_TYPE_NONE
},
46 [4] = {0, IRQ_TYPE_NONE
},
47 [5] = {0, IRQ_TYPE_NONE
},
48 [6] = {0, IRQ_TYPE_NONE
},
49 [7] = {0, IRQ_TYPE_NONE
},
50 [8] = {0, IRQ_TYPE_LEVEL_HIGH
},
53 static DEFINE_RAW_SPINLOCK(socrates_fpga_pic_lock
);
55 static void __iomem
*socrates_fpga_pic_iobase
;
56 static struct irq_domain
*socrates_fpga_pic_irq_host
;
57 static unsigned int socrates_fpga_irqs
[3];
59 static inline uint32_t socrates_fpga_pic_read(int reg
)
61 return in_be32(socrates_fpga_pic_iobase
+ reg
);
64 static inline void socrates_fpga_pic_write(int reg
, uint32_t val
)
66 out_be32(socrates_fpga_pic_iobase
+ reg
, val
);
69 static inline unsigned int socrates_fpga_pic_get_irq(unsigned int irq
)
75 /* Check irq line routed to the MPIC */
76 for (i
= 0; i
< 3; i
++) {
77 if (irq
== socrates_fpga_irqs
[i
])
83 raw_spin_lock_irqsave(&socrates_fpga_pic_lock
, flags
);
84 cause
= socrates_fpga_pic_read(FPGA_PIC_IRQMASK(i
));
85 raw_spin_unlock_irqrestore(&socrates_fpga_pic_lock
, flags
);
86 for (i
= SOCRATES_FPGA_NUM_IRQS
- 1; i
>= 0; i
--) {
87 if (cause
>> (i
+ 16))
90 return irq_linear_revmap(socrates_fpga_pic_irq_host
,
94 static void socrates_fpga_pic_cascade(struct irq_desc
*desc
)
96 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
97 unsigned int irq
= irq_desc_get_irq(desc
);
98 unsigned int cascade_irq
;
101 * See if we actually have an interrupt, call generic handling code if
104 cascade_irq
= socrates_fpga_pic_get_irq(irq
);
107 generic_handle_irq(cascade_irq
);
108 chip
->irq_eoi(&desc
->irq_data
);
111 static void socrates_fpga_pic_ack(struct irq_data
*d
)
114 unsigned int irq_line
, hwirq
= irqd_to_hwirq(d
);
117 irq_line
= fpga_irqs
[hwirq
].irq_line
;
118 raw_spin_lock_irqsave(&socrates_fpga_pic_lock
, flags
);
119 mask
= socrates_fpga_pic_read(FPGA_PIC_IRQMASK(irq_line
))
120 & SOCRATES_FPGA_IRQ_MASK
;
121 mask
|= (1 << (hwirq
+ 16));
122 socrates_fpga_pic_write(FPGA_PIC_IRQMASK(irq_line
), mask
);
123 raw_spin_unlock_irqrestore(&socrates_fpga_pic_lock
, flags
);
126 static void socrates_fpga_pic_mask(struct irq_data
*d
)
129 unsigned int hwirq
= irqd_to_hwirq(d
);
133 irq_line
= fpga_irqs
[hwirq
].irq_line
;
134 raw_spin_lock_irqsave(&socrates_fpga_pic_lock
, flags
);
135 mask
= socrates_fpga_pic_read(FPGA_PIC_IRQMASK(irq_line
))
136 & SOCRATES_FPGA_IRQ_MASK
;
137 mask
&= ~(1 << hwirq
);
138 socrates_fpga_pic_write(FPGA_PIC_IRQMASK(irq_line
), mask
);
139 raw_spin_unlock_irqrestore(&socrates_fpga_pic_lock
, flags
);
142 static void socrates_fpga_pic_mask_ack(struct irq_data
*d
)
145 unsigned int hwirq
= irqd_to_hwirq(d
);
149 irq_line
= fpga_irqs
[hwirq
].irq_line
;
150 raw_spin_lock_irqsave(&socrates_fpga_pic_lock
, flags
);
151 mask
= socrates_fpga_pic_read(FPGA_PIC_IRQMASK(irq_line
))
152 & SOCRATES_FPGA_IRQ_MASK
;
153 mask
&= ~(1 << hwirq
);
154 mask
|= (1 << (hwirq
+ 16));
155 socrates_fpga_pic_write(FPGA_PIC_IRQMASK(irq_line
), mask
);
156 raw_spin_unlock_irqrestore(&socrates_fpga_pic_lock
, flags
);
159 static void socrates_fpga_pic_unmask(struct irq_data
*d
)
162 unsigned int hwirq
= irqd_to_hwirq(d
);
166 irq_line
= fpga_irqs
[hwirq
].irq_line
;
167 raw_spin_lock_irqsave(&socrates_fpga_pic_lock
, flags
);
168 mask
= socrates_fpga_pic_read(FPGA_PIC_IRQMASK(irq_line
))
169 & SOCRATES_FPGA_IRQ_MASK
;
170 mask
|= (1 << hwirq
);
171 socrates_fpga_pic_write(FPGA_PIC_IRQMASK(irq_line
), mask
);
172 raw_spin_unlock_irqrestore(&socrates_fpga_pic_lock
, flags
);
175 static void socrates_fpga_pic_eoi(struct irq_data
*d
)
178 unsigned int hwirq
= irqd_to_hwirq(d
);
182 irq_line
= fpga_irqs
[hwirq
].irq_line
;
183 raw_spin_lock_irqsave(&socrates_fpga_pic_lock
, flags
);
184 mask
= socrates_fpga_pic_read(FPGA_PIC_IRQMASK(irq_line
))
185 & SOCRATES_FPGA_IRQ_MASK
;
186 mask
|= (1 << (hwirq
+ 16));
187 socrates_fpga_pic_write(FPGA_PIC_IRQMASK(irq_line
), mask
);
188 raw_spin_unlock_irqrestore(&socrates_fpga_pic_lock
, flags
);
191 static int socrates_fpga_pic_set_type(struct irq_data
*d
,
192 unsigned int flow_type
)
195 unsigned int hwirq
= irqd_to_hwirq(d
);
199 if (fpga_irqs
[hwirq
].type
!= IRQ_TYPE_NONE
)
202 switch (flow_type
& IRQ_TYPE_SENSE_MASK
) {
203 case IRQ_TYPE_LEVEL_HIGH
:
206 case IRQ_TYPE_LEVEL_LOW
:
212 raw_spin_lock_irqsave(&socrates_fpga_pic_lock
, flags
);
213 mask
= socrates_fpga_pic_read(FPGA_PIC_IRQCFG
);
215 mask
|= (1 << hwirq
);
217 mask
&= ~(1 << hwirq
);
218 socrates_fpga_pic_write(FPGA_PIC_IRQCFG
, mask
);
219 raw_spin_unlock_irqrestore(&socrates_fpga_pic_lock
, flags
);
223 static struct irq_chip socrates_fpga_pic_chip
= {
225 .irq_ack
= socrates_fpga_pic_ack
,
226 .irq_mask
= socrates_fpga_pic_mask
,
227 .irq_mask_ack
= socrates_fpga_pic_mask_ack
,
228 .irq_unmask
= socrates_fpga_pic_unmask
,
229 .irq_eoi
= socrates_fpga_pic_eoi
,
230 .irq_set_type
= socrates_fpga_pic_set_type
,
233 static int socrates_fpga_pic_host_map(struct irq_domain
*h
, unsigned int virq
,
234 irq_hw_number_t hwirq
)
236 /* All interrupts are LEVEL sensitive */
237 irq_set_status_flags(virq
, IRQ_LEVEL
);
238 irq_set_chip_and_handler(virq
, &socrates_fpga_pic_chip
,
244 static int socrates_fpga_pic_host_xlate(struct irq_domain
*h
,
245 struct device_node
*ct
, const u32
*intspec
, unsigned int intsize
,
246 irq_hw_number_t
*out_hwirq
, unsigned int *out_flags
)
248 struct socrates_fpga_irq_info
*fpga_irq
= &fpga_irqs
[intspec
[0]];
250 *out_hwirq
= intspec
[0];
251 if (fpga_irq
->type
== IRQ_TYPE_NONE
) {
252 /* type is configurable */
253 if (intspec
[1] != IRQ_TYPE_LEVEL_LOW
&&
254 intspec
[1] != IRQ_TYPE_LEVEL_HIGH
) {
255 pr_warning("FPGA PIC: invalid irq type, "
256 "setting default active low\n");
257 *out_flags
= IRQ_TYPE_LEVEL_LOW
;
259 *out_flags
= intspec
[1];
263 *out_flags
= fpga_irq
->type
;
266 /* Use specified interrupt routing */
268 fpga_irq
->irq_line
= intspec
[2];
270 pr_warning("FPGA PIC: invalid irq routing\n");
275 static const struct irq_domain_ops socrates_fpga_pic_host_ops
= {
276 .map
= socrates_fpga_pic_host_map
,
277 .xlate
= socrates_fpga_pic_host_xlate
,
280 void socrates_fpga_pic_init(struct device_node
*pic
)
285 /* Setup an irq_domain structure */
286 socrates_fpga_pic_irq_host
= irq_domain_add_linear(pic
,
287 SOCRATES_FPGA_NUM_IRQS
, &socrates_fpga_pic_host_ops
, NULL
);
288 if (socrates_fpga_pic_irq_host
== NULL
) {
289 pr_err("FPGA PIC: Unable to allocate host\n");
293 for (i
= 0; i
< 3; i
++) {
294 socrates_fpga_irqs
[i
] = irq_of_parse_and_map(pic
, i
);
295 if (!socrates_fpga_irqs
[i
]) {
296 pr_warning("FPGA PIC: can't get irq%d.\n", i
);
299 irq_set_chained_handler(socrates_fpga_irqs
[i
],
300 socrates_fpga_pic_cascade
);
303 socrates_fpga_pic_iobase
= of_iomap(pic
, 0);
305 raw_spin_lock_irqsave(&socrates_fpga_pic_lock
, flags
);
306 socrates_fpga_pic_write(FPGA_PIC_IRQMASK(0),
307 SOCRATES_FPGA_IRQ_MASK
<< 16);
308 socrates_fpga_pic_write(FPGA_PIC_IRQMASK(1),
309 SOCRATES_FPGA_IRQ_MASK
<< 16);
310 socrates_fpga_pic_write(FPGA_PIC_IRQMASK(2),
311 SOCRATES_FPGA_IRQ_MASK
<< 16);
312 raw_spin_unlock_irqrestore(&socrates_fpga_pic_lock
, flags
);
314 pr_info("FPGA PIC: Setting up Socrates FPGA PIC\n");