xref: /linux/drivers/irqchip/irq-loongson-pch-pic.c (revision 25f3514aab3748bfef4a279ed599f836ac83e62a)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  *  Copyright (C) 2020, Jiaxun Yang <jiaxun.yang@flygoat.com>
4  *  Loongson PCH PIC support
5  */
6 
7 #define pr_fmt(fmt) "pch-pic: " fmt
8 
9 #include <linux/interrupt.h>
10 #include <linux/irq.h>
11 #include <linux/irqchip.h>
12 #include <linux/irqdomain.h>
13 #include <linux/kernel.h>
14 #include <linux/platform_device.h>
15 #include <linux/of_address.h>
16 #include <linux/of_irq.h>
17 #include <linux/of_platform.h>
18 
19 /* Registers */
20 #define PCH_PIC_MASK		0x20
21 #define PCH_PIC_HTMSI_EN	0x40
22 #define PCH_PIC_EDGE		0x60
23 #define PCH_PIC_CLR		0x80
24 #define PCH_PIC_AUTO0		0xc0
25 #define PCH_PIC_AUTO1		0xe0
26 #define PCH_INT_ROUTE(irq)	(0x100 + irq)
27 #define PCH_INT_HTVEC(irq)	(0x200 + irq)
28 #define PCH_PIC_POL		0x3e0
29 
30 #define PIC_COUNT_PER_REG	32
31 #define PIC_REG_COUNT		2
32 #define PIC_COUNT		(PIC_COUNT_PER_REG * PIC_REG_COUNT)
33 #define PIC_REG_IDX(irq_id)	((irq_id) / PIC_COUNT_PER_REG)
34 #define PIC_REG_BIT(irq_id)	((irq_id) % PIC_COUNT_PER_REG)
35 
36 static int nr_pics;
37 
38 struct pch_pic {
39 	void __iomem		*base;
40 	struct irq_domain	*pic_domain;
41 	u32			ht_vec_base;
42 	raw_spinlock_t		pic_lock;
43 	u32			vec_count;
44 	u32			gsi_base;
45 };
46 
47 static struct pch_pic *pch_pic_priv[MAX_IO_PICS];
48 
49 struct fwnode_handle *pch_pic_handle[MAX_IO_PICS];
50 
51 static void pch_pic_bitset(struct pch_pic *priv, int offset, int bit)
52 {
53 	u32 reg;
54 	void __iomem *addr = priv->base + offset + PIC_REG_IDX(bit) * 4;
55 
56 	raw_spin_lock(&priv->pic_lock);
57 	reg = readl(addr);
58 	reg |= BIT(PIC_REG_BIT(bit));
59 	writel(reg, addr);
60 	raw_spin_unlock(&priv->pic_lock);
61 }
62 
63 static void pch_pic_bitclr(struct pch_pic *priv, int offset, int bit)
64 {
65 	u32 reg;
66 	void __iomem *addr = priv->base + offset + PIC_REG_IDX(bit) * 4;
67 
68 	raw_spin_lock(&priv->pic_lock);
69 	reg = readl(addr);
70 	reg &= ~BIT(PIC_REG_BIT(bit));
71 	writel(reg, addr);
72 	raw_spin_unlock(&priv->pic_lock);
73 }
74 
75 static void pch_pic_mask_irq(struct irq_data *d)
76 {
77 	struct pch_pic *priv = irq_data_get_irq_chip_data(d);
78 
79 	pch_pic_bitset(priv, PCH_PIC_MASK, d->hwirq);
80 	irq_chip_mask_parent(d);
81 }
82 
83 static void pch_pic_unmask_irq(struct irq_data *d)
84 {
85 	struct pch_pic *priv = irq_data_get_irq_chip_data(d);
86 
87 	writel(BIT(PIC_REG_BIT(d->hwirq)),
88 			priv->base + PCH_PIC_CLR + PIC_REG_IDX(d->hwirq) * 4);
89 
90 	irq_chip_unmask_parent(d);
91 	pch_pic_bitclr(priv, PCH_PIC_MASK, d->hwirq);
92 }
93 
94 static int pch_pic_set_type(struct irq_data *d, unsigned int type)
95 {
96 	struct pch_pic *priv = irq_data_get_irq_chip_data(d);
97 	int ret = 0;
98 
99 	switch (type) {
100 	case IRQ_TYPE_EDGE_RISING:
101 		pch_pic_bitset(priv, PCH_PIC_EDGE, d->hwirq);
102 		pch_pic_bitclr(priv, PCH_PIC_POL, d->hwirq);
103 		irq_set_handler_locked(d, handle_edge_irq);
104 		break;
105 	case IRQ_TYPE_EDGE_FALLING:
106 		pch_pic_bitset(priv, PCH_PIC_EDGE, d->hwirq);
107 		pch_pic_bitset(priv, PCH_PIC_POL, d->hwirq);
108 		irq_set_handler_locked(d, handle_edge_irq);
109 		break;
110 	case IRQ_TYPE_LEVEL_HIGH:
111 		pch_pic_bitclr(priv, PCH_PIC_EDGE, d->hwirq);
112 		pch_pic_bitclr(priv, PCH_PIC_POL, d->hwirq);
113 		irq_set_handler_locked(d, handle_level_irq);
114 		break;
115 	case IRQ_TYPE_LEVEL_LOW:
116 		pch_pic_bitclr(priv, PCH_PIC_EDGE, d->hwirq);
117 		pch_pic_bitset(priv, PCH_PIC_POL, d->hwirq);
118 		irq_set_handler_locked(d, handle_level_irq);
119 		break;
120 	default:
121 		ret = -EINVAL;
122 		break;
123 	}
124 
125 	return ret;
126 }
127 
128 static void pch_pic_ack_irq(struct irq_data *d)
129 {
130 	unsigned int reg;
131 	struct pch_pic *priv = irq_data_get_irq_chip_data(d);
132 
133 	reg = readl(priv->base + PCH_PIC_EDGE + PIC_REG_IDX(d->hwirq) * 4);
134 	if (reg & BIT(PIC_REG_BIT(d->hwirq))) {
135 		writel(BIT(PIC_REG_BIT(d->hwirq)),
136 			priv->base + PCH_PIC_CLR + PIC_REG_IDX(d->hwirq) * 4);
137 	}
138 	irq_chip_ack_parent(d);
139 }
140 
141 static struct irq_chip pch_pic_irq_chip = {
142 	.name			= "PCH PIC",
143 	.irq_mask		= pch_pic_mask_irq,
144 	.irq_unmask		= pch_pic_unmask_irq,
145 	.irq_ack		= pch_pic_ack_irq,
146 	.irq_set_affinity	= irq_chip_set_affinity_parent,
147 	.irq_set_type		= pch_pic_set_type,
148 };
149 
150 static int pch_pic_domain_translate(struct irq_domain *d,
151 					struct irq_fwspec *fwspec,
152 					unsigned long *hwirq,
153 					unsigned int *type)
154 {
155 	struct pch_pic *priv = d->host_data;
156 	struct device_node *of_node = to_of_node(fwspec->fwnode);
157 
158 	if (of_node) {
159 		if (fwspec->param_count < 2)
160 			return -EINVAL;
161 
162 		*hwirq = fwspec->param[0] + priv->ht_vec_base;
163 		*type = fwspec->param[1] & IRQ_TYPE_SENSE_MASK;
164 	} else {
165 		if (fwspec->param_count < 1)
166 			return -EINVAL;
167 
168 		*hwirq = fwspec->param[0] - priv->gsi_base;
169 		if (fwspec->param_count > 1)
170 			*type = fwspec->param[1] & IRQ_TYPE_SENSE_MASK;
171 		else
172 			*type = IRQ_TYPE_NONE;
173 	}
174 
175 	return 0;
176 }
177 
178 static int pch_pic_alloc(struct irq_domain *domain, unsigned int virq,
179 			      unsigned int nr_irqs, void *arg)
180 {
181 	int err;
182 	unsigned int type;
183 	unsigned long hwirq;
184 	struct irq_fwspec *fwspec = arg;
185 	struct irq_fwspec parent_fwspec;
186 	struct pch_pic *priv = domain->host_data;
187 
188 	err = pch_pic_domain_translate(domain, fwspec, &hwirq, &type);
189 	if (err)
190 		return err;
191 
192 	parent_fwspec.fwnode = domain->parent->fwnode;
193 	parent_fwspec.param_count = 1;
194 	parent_fwspec.param[0] = hwirq;
195 
196 	err = irq_domain_alloc_irqs_parent(domain, virq, 1, &parent_fwspec);
197 	if (err)
198 		return err;
199 
200 	irq_domain_set_info(domain, virq, hwirq,
201 			    &pch_pic_irq_chip, priv,
202 			    handle_level_irq, NULL, NULL);
203 	irq_set_probe(virq);
204 
205 	return 0;
206 }
207 
208 static const struct irq_domain_ops pch_pic_domain_ops = {
209 	.translate	= pch_pic_domain_translate,
210 	.alloc		= pch_pic_alloc,
211 	.free		= irq_domain_free_irqs_parent,
212 };
213 
214 static void pch_pic_reset(struct pch_pic *priv)
215 {
216 	int i;
217 
218 	for (i = 0; i < PIC_COUNT; i++) {
219 		/* Write vector ID */
220 		writeb(priv->ht_vec_base + i, priv->base + PCH_INT_HTVEC(i));
221 		/* Hardcode route to HT0 Lo */
222 		writeb(1, priv->base + PCH_INT_ROUTE(i));
223 	}
224 
225 	for (i = 0; i < PIC_REG_COUNT; i++) {
226 		/* Clear IRQ cause registers, mask all interrupts */
227 		writel_relaxed(0xFFFFFFFF, priv->base + PCH_PIC_MASK + 4 * i);
228 		writel_relaxed(0xFFFFFFFF, priv->base + PCH_PIC_CLR + 4 * i);
229 		/* Clear auto bounce, we don't need that */
230 		writel_relaxed(0, priv->base + PCH_PIC_AUTO0 + 4 * i);
231 		writel_relaxed(0, priv->base + PCH_PIC_AUTO1 + 4 * i);
232 		/* Enable HTMSI transformer */
233 		writel_relaxed(0xFFFFFFFF, priv->base + PCH_PIC_HTMSI_EN + 4 * i);
234 	}
235 }
236 
237 static int pch_pic_init(phys_addr_t addr, unsigned long size, int vec_base,
238 			struct irq_domain *parent_domain, struct fwnode_handle *domain_handle,
239 			u32 gsi_base)
240 {
241 	struct pch_pic *priv;
242 
243 	priv = kzalloc(sizeof(*priv), GFP_KERNEL);
244 	if (!priv)
245 		return -ENOMEM;
246 
247 	raw_spin_lock_init(&priv->pic_lock);
248 	priv->base = ioremap(addr, size);
249 	if (!priv->base)
250 		goto free_priv;
251 
252 	priv->ht_vec_base = vec_base;
253 	priv->vec_count = ((readq(priv->base) >> 48) & 0xff) + 1;
254 	priv->gsi_base = gsi_base;
255 
256 	priv->pic_domain = irq_domain_create_hierarchy(parent_domain, 0,
257 						priv->vec_count, domain_handle,
258 						&pch_pic_domain_ops, priv);
259 
260 	if (!priv->pic_domain) {
261 		pr_err("Failed to create IRQ domain\n");
262 		goto iounmap_base;
263 	}
264 
265 	pch_pic_reset(priv);
266 	pch_pic_handle[nr_pics] = domain_handle;
267 	pch_pic_priv[nr_pics++] = priv;
268 
269 	return 0;
270 
271 iounmap_base:
272 	iounmap(priv->base);
273 free_priv:
274 	kfree(priv);
275 
276 	return -EINVAL;
277 }
278 
279 #ifdef CONFIG_OF
280 
281 static int pch_pic_of_init(struct device_node *node,
282 				struct device_node *parent)
283 {
284 	int err, vec_base;
285 	struct resource res;
286 	struct irq_domain *parent_domain;
287 
288 	if (of_address_to_resource(node, 0, &res))
289 		return -EINVAL;
290 
291 	parent_domain = irq_find_host(parent);
292 	if (!parent_domain) {
293 		pr_err("Failed to find the parent domain\n");
294 		return -ENXIO;
295 	}
296 
297 	if (of_property_read_u32(node, "loongson,pic-base-vec", &vec_base)) {
298 		pr_err("Failed to determine pic-base-vec\n");
299 		return -EINVAL;
300 	}
301 
302 	err = pch_pic_init(res.start, resource_size(&res), vec_base,
303 				parent_domain, of_node_to_fwnode(node), 0);
304 	if (err < 0)
305 		return err;
306 
307 	return 0;
308 }
309 
310 IRQCHIP_DECLARE(pch_pic, "loongson,pch-pic-1.0", pch_pic_of_init);
311 
312 #endif
313 
314 #ifdef CONFIG_ACPI
315 int find_pch_pic(u32 gsi)
316 {
317 	int i;
318 
319 	/* Find the PCH_PIC that manages this GSI. */
320 	for (i = 0; i < MAX_IO_PICS; i++) {
321 		struct pch_pic *priv = pch_pic_priv[i];
322 
323 		if (!priv)
324 			return -1;
325 
326 		if (gsi >= priv->gsi_base && gsi < (priv->gsi_base + priv->vec_count))
327 			return i;
328 	}
329 
330 	pr_err("ERROR: Unable to locate PCH_PIC for GSI %d\n", gsi);
331 	return -1;
332 }
333 
334 static int __init
335 pch_lpc_parse_madt(union acpi_subtable_headers *header,
336 		       const unsigned long end)
337 {
338 	struct acpi_madt_lpc_pic *pchlpc_entry = (struct acpi_madt_lpc_pic *)header;
339 
340 	return pch_lpc_acpi_init(pch_pic_priv[0]->pic_domain, pchlpc_entry);
341 }
342 
343 static int __init acpi_cascade_irqdomain_init(void)
344 {
345 	acpi_table_parse_madt(ACPI_MADT_TYPE_LPC_PIC,
346 			      pch_lpc_parse_madt, 0);
347 	return 0;
348 }
349 
350 int __init pch_pic_acpi_init(struct irq_domain *parent,
351 					struct acpi_madt_bio_pic *acpi_pchpic)
352 {
353 	int ret, vec_base;
354 	struct fwnode_handle *domain_handle;
355 
356 	vec_base = acpi_pchpic->gsi_base - GSI_MIN_PCH_IRQ;
357 
358 	domain_handle = irq_domain_alloc_fwnode(&acpi_pchpic->address);
359 	if (!domain_handle) {
360 		pr_err("Unable to allocate domain handle\n");
361 		return -ENOMEM;
362 	}
363 
364 	ret = pch_pic_init(acpi_pchpic->address, acpi_pchpic->size,
365 				vec_base, parent, domain_handle, acpi_pchpic->gsi_base);
366 
367 	if (ret < 0) {
368 		irq_domain_free_fwnode(domain_handle);
369 		return ret;
370 	}
371 
372 	if (acpi_pchpic->id == 0)
373 		acpi_cascade_irqdomain_init();
374 
375 	return ret;
376 }
377 #endif
378