]>
git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - drivers/irqchip/irq-mscc-ocelot.c
1 // SPDX-License-Identifier: (GPL-2.0 OR MIT)
3 * Microsemi Ocelot IRQ controller driver
5 * Copyright (c) 2017 Microsemi Corporation
7 #include <linux/bitops.h>
9 #include <linux/of_address.h>
10 #include <linux/of_irq.h>
11 #include <linux/irqchip.h>
12 #include <linux/irqchip/chained_irq.h>
13 #include <linux/interrupt.h>
15 #define ICPU_CFG_INTR_DST_INTR_IDENT(_p, x) ((_p)->reg_off_ident + 0x4 * (x))
16 #define ICPU_CFG_INTR_INTR_TRIGGER(_p, x) ((_p)->reg_off_trigger + 0x4 * (x))
18 #define FLAGS_HAS_TRIGGER BIT(0)
19 #define FLAGS_NEED_INIT_ENABLE BIT(1)
33 static struct chip_props ocelot_props
= {
34 .flags
= FLAGS_HAS_TRIGGER
,
35 .reg_off_sticky
= 0x10,
37 .reg_off_ena_clr
= 0x1c,
38 .reg_off_ena_set
= 0x20,
39 .reg_off_ident
= 0x38,
40 .reg_off_trigger
= 0x5c,
44 static struct chip_props serval_props
= {
45 .flags
= FLAGS_HAS_TRIGGER
,
46 .reg_off_sticky
= 0xc,
48 .reg_off_ena_clr
= 0x18,
49 .reg_off_ena_set
= 0x1c,
50 .reg_off_ident
= 0x20,
51 .reg_off_trigger
= 0x4,
55 static struct chip_props luton_props
= {
56 .flags
= FLAGS_NEED_INIT_ENABLE
,
59 .reg_off_ena_clr
= 0x8,
60 .reg_off_ena_set
= 0xc,
61 .reg_off_ident
= 0x18,
62 .reg_off_ena_irq0
= 0x14,
66 static struct chip_props jaguar2_props
= {
67 .flags
= FLAGS_HAS_TRIGGER
,
68 .reg_off_sticky
= 0x10,
70 .reg_off_ena_clr
= 0x1c,
71 .reg_off_ena_set
= 0x20,
72 .reg_off_ident
= 0x38,
73 .reg_off_trigger
= 0x5c,
77 static void ocelot_irq_unmask(struct irq_data
*data
)
79 struct irq_chip_generic
*gc
= irq_data_get_irq_chip_data(data
);
80 struct irq_domain
*d
= data
->domain
;
81 struct chip_props
*p
= d
->host_data
;
82 struct irq_chip_type
*ct
= irq_data_get_chip_type(data
);
83 unsigned int mask
= data
->mask
;
87 val
= irq_reg_readl(gc
, ICPU_CFG_INTR_INTR_TRIGGER(p
, 0)) |
88 irq_reg_readl(gc
, ICPU_CFG_INTR_INTR_TRIGGER(p
, 1));
90 irq_reg_writel(gc
, mask
, p
->reg_off_sticky
);
92 *ct
->mask_cache
&= ~mask
;
93 irq_reg_writel(gc
, mask
, p
->reg_off_ena_set
);
97 static void ocelot_irq_handler(struct irq_desc
*desc
)
99 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
100 struct irq_domain
*d
= irq_desc_get_handler_data(desc
);
101 struct chip_props
*p
= d
->host_data
;
102 struct irq_chip_generic
*gc
= irq_get_domain_generic_chip(d
, 0);
103 u32 reg
= irq_reg_readl(gc
, ICPU_CFG_INTR_DST_INTR_IDENT(p
, 0));
105 chained_irq_enter(chip
, desc
);
108 u32 hwirq
= __fls(reg
);
110 generic_handle_domain_irq(d
, hwirq
);
111 reg
&= ~(BIT(hwirq
));
114 chained_irq_exit(chip
, desc
);
117 static int __init
vcoreiii_irq_init(struct device_node
*node
,
118 struct device_node
*parent
,
119 struct chip_props
*p
)
121 struct irq_domain
*domain
;
122 struct irq_chip_generic
*gc
;
125 parent_irq
= irq_of_parse_and_map(node
, 0);
129 domain
= irq_domain_add_linear(node
, p
->n_irq
,
130 &irq_generic_chip_ops
, NULL
);
132 pr_err("%pOFn: unable to add irq domain\n", node
);
136 ret
= irq_alloc_domain_generic_chips(domain
, p
->n_irq
, 1,
137 "icpu", handle_level_irq
,
140 pr_err("%pOFn: unable to alloc irq domain gc\n", node
);
141 goto err_domain_remove
;
144 gc
= irq_get_domain_generic_chip(domain
, 0);
145 gc
->reg_base
= of_iomap(node
, 0);
147 pr_err("%pOFn: unable to map resource\n", node
);
152 gc
->chip_types
[0].chip
.irq_ack
= irq_gc_ack_set_bit
;
153 gc
->chip_types
[0].regs
.ack
= p
->reg_off_sticky
;
154 if (p
->flags
& FLAGS_HAS_TRIGGER
) {
155 gc
->chip_types
[0].regs
.mask
= p
->reg_off_ena_clr
;
156 gc
->chip_types
[0].chip
.irq_unmask
= ocelot_irq_unmask
;
157 gc
->chip_types
[0].chip
.irq_mask
= irq_gc_mask_set_bit
;
159 gc
->chip_types
[0].regs
.enable
= p
->reg_off_ena_set
;
160 gc
->chip_types
[0].regs
.disable
= p
->reg_off_ena_clr
;
161 gc
->chip_types
[0].chip
.irq_mask
= irq_gc_mask_disable_reg
;
162 gc
->chip_types
[0].chip
.irq_unmask
= irq_gc_unmask_enable_reg
;
165 /* Mask and ack all interrupts */
166 irq_reg_writel(gc
, 0, p
->reg_off_ena
);
167 irq_reg_writel(gc
, 0xffffffff, p
->reg_off_sticky
);
170 if (p
->flags
& FLAGS_NEED_INIT_ENABLE
)
171 irq_reg_writel(gc
, BIT(0), p
->reg_off_ena_irq0
);
173 domain
->host_data
= p
;
174 irq_set_chained_handler_and_data(parent_irq
, ocelot_irq_handler
,
180 irq_free_generic_chip(gc
);
183 irq_domain_remove(domain
);
188 static int __init
ocelot_irq_init(struct device_node
*node
,
189 struct device_node
*parent
)
191 return vcoreiii_irq_init(node
, parent
, &ocelot_props
);
194 IRQCHIP_DECLARE(ocelot_icpu
, "mscc,ocelot-icpu-intr", ocelot_irq_init
);
196 static int __init
serval_irq_init(struct device_node
*node
,
197 struct device_node
*parent
)
199 return vcoreiii_irq_init(node
, parent
, &serval_props
);
202 IRQCHIP_DECLARE(serval_icpu
, "mscc,serval-icpu-intr", serval_irq_init
);
204 static int __init
luton_irq_init(struct device_node
*node
,
205 struct device_node
*parent
)
207 return vcoreiii_irq_init(node
, parent
, &luton_props
);
210 IRQCHIP_DECLARE(luton_icpu
, "mscc,luton-icpu-intr", luton_irq_init
);
212 static int __init
jaguar2_irq_init(struct device_node
*node
,
213 struct device_node
*parent
)
215 return vcoreiii_irq_init(node
, parent
, &jaguar2_props
);
218 IRQCHIP_DECLARE(jaguar2_icpu
, "mscc,jaguar2-icpu-intr", jaguar2_irq_init
);