2 * Copyright 2015-2016 Vladimir Zapolskiy <vz@mleia.com>
4 * The code contained herein is licensed under the GNU General Public
5 * License. You may obtain a copy of the GNU General Public License
6 * Version 2 or later at the following locations:
8 * http://www.opensource.org/licenses/gpl-license.html
9 * http://www.gnu.org/copyleft/gpl.html
12 #define pr_fmt(fmt) "%s: " fmt, __func__
15 #include <linux/irqchip.h>
16 #include <linux/irqchip/chained_irq.h>
17 #include <linux/of_address.h>
18 #include <linux/of_irq.h>
19 #include <linux/of_platform.h>
20 #include <linux/slab.h>
21 #include <asm/exception.h>
23 #define LPC32XX_INTC_MASK 0x00
24 #define LPC32XX_INTC_RAW 0x04
25 #define LPC32XX_INTC_STAT 0x08
26 #define LPC32XX_INTC_POL 0x0C
27 #define LPC32XX_INTC_TYPE 0x10
28 #define LPC32XX_INTC_FIQ 0x14
30 #define NR_LPC32XX_IC_IRQS 32
32 struct lpc32xx_irq_chip
{
34 struct irq_domain
*domain
;
38 static struct lpc32xx_irq_chip
*lpc32xx_mic_irqc
;
40 static inline u32
lpc32xx_ic_read(struct lpc32xx_irq_chip
*ic
, u32 reg
)
42 return readl_relaxed(ic
->base
+ reg
);
45 static inline void lpc32xx_ic_write(struct lpc32xx_irq_chip
*ic
,
48 writel_relaxed(val
, ic
->base
+ reg
);
51 static void lpc32xx_irq_mask(struct irq_data
*d
)
53 struct lpc32xx_irq_chip
*ic
= irq_data_get_irq_chip_data(d
);
54 u32 val
, mask
= BIT(d
->hwirq
);
56 val
= lpc32xx_ic_read(ic
, LPC32XX_INTC_MASK
) & ~mask
;
57 lpc32xx_ic_write(ic
, LPC32XX_INTC_MASK
, val
);
60 static void lpc32xx_irq_unmask(struct irq_data
*d
)
62 struct lpc32xx_irq_chip
*ic
= irq_data_get_irq_chip_data(d
);
63 u32 val
, mask
= BIT(d
->hwirq
);
65 val
= lpc32xx_ic_read(ic
, LPC32XX_INTC_MASK
) | mask
;
66 lpc32xx_ic_write(ic
, LPC32XX_INTC_MASK
, val
);
69 static void lpc32xx_irq_ack(struct irq_data
*d
)
71 struct lpc32xx_irq_chip
*ic
= irq_data_get_irq_chip_data(d
);
72 u32 mask
= BIT(d
->hwirq
);
74 lpc32xx_ic_write(ic
, LPC32XX_INTC_RAW
, mask
);
77 static int lpc32xx_irq_set_type(struct irq_data
*d
, unsigned int type
)
79 struct lpc32xx_irq_chip
*ic
= irq_data_get_irq_chip_data(d
);
80 u32 val
, mask
= BIT(d
->hwirq
);
84 case IRQ_TYPE_EDGE_RISING
:
88 case IRQ_TYPE_EDGE_FALLING
:
92 case IRQ_TYPE_LEVEL_HIGH
:
96 case IRQ_TYPE_LEVEL_LOW
:
101 pr_info("unsupported irq type %d\n", type
);
105 irqd_set_trigger_type(d
, type
);
107 val
= lpc32xx_ic_read(ic
, LPC32XX_INTC_POL
);
112 lpc32xx_ic_write(ic
, LPC32XX_INTC_POL
, val
);
114 val
= lpc32xx_ic_read(ic
, LPC32XX_INTC_TYPE
);
117 irq_set_handler_locked(d
, handle_edge_irq
);
120 irq_set_handler_locked(d
, handle_level_irq
);
122 lpc32xx_ic_write(ic
, LPC32XX_INTC_TYPE
, val
);
127 static void __exception_irq_entry
lpc32xx_handle_irq(struct pt_regs
*regs
)
129 struct lpc32xx_irq_chip
*ic
= lpc32xx_mic_irqc
;
130 u32 hwirq
= lpc32xx_ic_read(ic
, LPC32XX_INTC_STAT
), irq
;
135 handle_domain_irq(lpc32xx_mic_irqc
->domain
, irq
, regs
);
139 static void lpc32xx_sic_handler(struct irq_desc
*desc
)
141 struct lpc32xx_irq_chip
*ic
= irq_desc_get_handler_data(desc
);
142 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
143 u32 hwirq
= lpc32xx_ic_read(ic
, LPC32XX_INTC_STAT
), irq
;
145 chained_irq_enter(chip
, desc
);
150 generic_handle_irq(irq_find_mapping(ic
->domain
, irq
));
153 chained_irq_exit(chip
, desc
);
156 static int lpc32xx_irq_domain_map(struct irq_domain
*id
, unsigned int virq
,
159 struct lpc32xx_irq_chip
*ic
= id
->host_data
;
161 irq_set_chip_data(virq
, ic
);
162 irq_set_chip_and_handler(virq
, &ic
->chip
, handle_level_irq
);
163 irq_set_status_flags(virq
, IRQ_LEVEL
);
164 irq_set_noprobe(virq
);
169 static void lpc32xx_irq_domain_unmap(struct irq_domain
*id
, unsigned int virq
)
171 irq_set_chip_and_handler(virq
, NULL
, NULL
);
174 static const struct irq_domain_ops lpc32xx_irq_domain_ops
= {
175 .map
= lpc32xx_irq_domain_map
,
176 .unmap
= lpc32xx_irq_domain_unmap
,
177 .xlate
= irq_domain_xlate_twocell
,
180 static int __init
lpc32xx_of_ic_init(struct device_node
*node
,
181 struct device_node
*parent
)
183 struct lpc32xx_irq_chip
*irqc
;
184 bool is_mic
= of_device_is_compatible(node
, "nxp,lpc3220-mic");
185 const __be32
*reg
= of_get_property(node
, "reg", NULL
);
186 u32 parent_irq
, i
, addr
= reg
? be32_to_cpu(*reg
) : 0;
188 irqc
= kzalloc(sizeof(*irqc
), GFP_KERNEL
);
192 irqc
->base
= of_iomap(node
, 0);
194 pr_err("%pOF: unable to map registers\n", node
);
199 irqc
->chip
.irq_ack
= lpc32xx_irq_ack
;
200 irqc
->chip
.irq_mask
= lpc32xx_irq_mask
;
201 irqc
->chip
.irq_unmask
= lpc32xx_irq_unmask
;
202 irqc
->chip
.irq_set_type
= lpc32xx_irq_set_type
;
204 irqc
->chip
.name
= kasprintf(GFP_KERNEL
, "%08x.mic", addr
);
206 irqc
->chip
.name
= kasprintf(GFP_KERNEL
, "%08x.sic", addr
);
208 irqc
->domain
= irq_domain_add_linear(node
, NR_LPC32XX_IC_IRQS
,
209 &lpc32xx_irq_domain_ops
, irqc
);
211 pr_err("unable to add irq domain\n");
213 kfree(irqc
->chip
.name
);
219 lpc32xx_mic_irqc
= irqc
;
220 set_handle_irq(lpc32xx_handle_irq
);
222 for (i
= 0; i
< of_irq_count(node
); i
++) {
223 parent_irq
= irq_of_parse_and_map(node
, i
);
225 irq_set_chained_handler_and_data(parent_irq
,
226 lpc32xx_sic_handler
, irqc
);
230 lpc32xx_ic_write(irqc
, LPC32XX_INTC_MASK
, 0x00);
231 lpc32xx_ic_write(irqc
, LPC32XX_INTC_POL
, 0x00);
232 lpc32xx_ic_write(irqc
, LPC32XX_INTC_TYPE
, 0x00);
237 IRQCHIP_DECLARE(nxp_lpc32xx_mic
, "nxp,lpc3220-mic", lpc32xx_of_ic_init
);
238 IRQCHIP_DECLARE(nxp_lpc32xx_sic
, "nxp,lpc3220-sic", lpc32xx_of_ic_init
);