blob: 192950e9909b9d316c1dacfac67530b75f5db0dc [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) 2015 Hisilicon Limited, All Rights Reserved.
4 * Author: Jun Ma <majun258@huawei.com>
5 * Author: Yun Wu <wuyun.wu@huawei.com>
6 */
7
8#include <linux/acpi.h>
9#include <linux/interrupt.h>
10#include <linux/irqchip.h>
11#include <linux/module.h>
12#include <linux/msi.h>
13#include <linux/of_address.h>
14#include <linux/of_irq.h>
15#include <linux/of_platform.h>
16#include <linux/platform_device.h>
17#include <linux/slab.h>
18
19/* Interrupt numbers per mbigen node supported */
20#define IRQS_PER_MBIGEN_NODE 128
21
22/* 64 irqs (Pin0-pin63) are reserved for each mbigen chip */
23#define RESERVED_IRQ_PER_MBIGEN_CHIP 64
24
25/* The maximum IRQ pin number of mbigen chip(start from 0) */
26#define MAXIMUM_IRQ_PIN_NUM 1407
27
28/**
29 * In mbigen vector register
30 * bit[21:12]: event id value
31 * bit[11:0]: device id
32 */
33#define IRQ_EVENT_ID_SHIFT 12
34#define IRQ_EVENT_ID_MASK 0x3ff
35
36/* register range of each mbigen node */
37#define MBIGEN_NODE_OFFSET 0x1000
38
39/* offset of vector register in mbigen node */
40#define REG_MBIGEN_VEC_OFFSET 0x200
41
42/**
43 * offset of clear register in mbigen node
44 * This register is used to clear the status
45 * of interrupt
46 */
47#define REG_MBIGEN_CLEAR_OFFSET 0xa000
48
49/**
50 * offset of interrupt type register
51 * This register is used to configure interrupt
52 * trigger type
53 */
54#define REG_MBIGEN_TYPE_OFFSET 0x0
55
56/**
57 * struct mbigen_device - holds the information of mbigen device.
58 *
59 * @pdev: pointer to the platform device structure of mbigen chip.
60 * @base: mapped address of this mbigen chip.
61 */
62struct mbigen_device {
63 struct platform_device *pdev;
64 void __iomem *base;
65};
66
67static inline unsigned int get_mbigen_node_offset(unsigned int nid)
68{
69 unsigned int offset = nid * MBIGEN_NODE_OFFSET;
70
71 /*
72 * To avoid touched clear register in unexpected way, we need to directly
73 * skip clear register when access to more than 10 mbigen nodes.
74 */
75 if (nid >= (REG_MBIGEN_CLEAR_OFFSET / MBIGEN_NODE_OFFSET))
76 offset += MBIGEN_NODE_OFFSET;
77
78 return offset;
79}
80
81static inline unsigned int get_mbigen_vec_reg(irq_hw_number_t hwirq)
82{
83 unsigned int nid, pin;
84
85 hwirq -= RESERVED_IRQ_PER_MBIGEN_CHIP;
86 nid = hwirq / IRQS_PER_MBIGEN_NODE + 1;
87 pin = hwirq % IRQS_PER_MBIGEN_NODE;
88
89 return pin * 4 + get_mbigen_node_offset(nid) + REG_MBIGEN_VEC_OFFSET;
90}
91
92static inline void get_mbigen_type_reg(irq_hw_number_t hwirq,
93 u32 *mask, u32 *addr)
94{
95 unsigned int nid, irq_ofst, ofst;
96
97 hwirq -= RESERVED_IRQ_PER_MBIGEN_CHIP;
98 nid = hwirq / IRQS_PER_MBIGEN_NODE + 1;
99 irq_ofst = hwirq % IRQS_PER_MBIGEN_NODE;
100
101 *mask = 1 << (irq_ofst % 32);
102 ofst = irq_ofst / 32 * 4;
103
104 *addr = ofst + get_mbigen_node_offset(nid) + REG_MBIGEN_TYPE_OFFSET;
105}
106
107static inline void get_mbigen_clear_reg(irq_hw_number_t hwirq,
108 u32 *mask, u32 *addr)
109{
110 unsigned int ofst = (hwirq / 32) * 4;
111
112 *mask = 1 << (hwirq % 32);
113 *addr = ofst + REG_MBIGEN_CLEAR_OFFSET;
114}
115
116static void mbigen_eoi_irq(struct irq_data *data)
117{
118 void __iomem *base = data->chip_data;
119 u32 mask, addr;
120
121 get_mbigen_clear_reg(data->hwirq, &mask, &addr);
122
123 writel_relaxed(mask, base + addr);
124
125 irq_chip_eoi_parent(data);
126}
127
128static int mbigen_set_type(struct irq_data *data, unsigned int type)
129{
130 void __iomem *base = data->chip_data;
131 u32 mask, addr, val;
132
133 if (type != IRQ_TYPE_LEVEL_HIGH && type != IRQ_TYPE_EDGE_RISING)
134 return -EINVAL;
135
136 get_mbigen_type_reg(data->hwirq, &mask, &addr);
137
138 val = readl_relaxed(base + addr);
139
140 if (type == IRQ_TYPE_LEVEL_HIGH)
141 val |= mask;
142 else
143 val &= ~mask;
144
145 writel_relaxed(val, base + addr);
146
147 return 0;
148}
149
150static struct irq_chip mbigen_irq_chip = {
151 .name = "mbigen-v2",
152 .irq_mask = irq_chip_mask_parent,
153 .irq_unmask = irq_chip_unmask_parent,
154 .irq_eoi = mbigen_eoi_irq,
155 .irq_set_type = mbigen_set_type,
156 .irq_set_affinity = irq_chip_set_affinity_parent,
157};
158
159static void mbigen_write_msg(struct msi_desc *desc, struct msi_msg *msg)
160{
161 struct irq_data *d = irq_get_irq_data(desc->irq);
162 void __iomem *base = d->chip_data;
163 u32 val;
164
165 if (!msg->address_lo && !msg->address_hi)
166 return;
167
168 base += get_mbigen_vec_reg(d->hwirq);
169 val = readl_relaxed(base);
170
171 val &= ~(IRQ_EVENT_ID_MASK << IRQ_EVENT_ID_SHIFT);
172 val |= (msg->data << IRQ_EVENT_ID_SHIFT);
173
174 /* The address of doorbell is encoded in mbigen register by default
175 * So,we don't need to program the doorbell address at here
176 */
177 writel_relaxed(val, base);
178}
179
180static int mbigen_domain_translate(struct irq_domain *d,
181 struct irq_fwspec *fwspec,
182 unsigned long *hwirq,
183 unsigned int *type)
184{
185 if (is_of_node(fwspec->fwnode) || is_acpi_device_node(fwspec->fwnode)) {
186 if (fwspec->param_count != 2)
187 return -EINVAL;
188
189 if ((fwspec->param[0] > MAXIMUM_IRQ_PIN_NUM) ||
190 (fwspec->param[0] < RESERVED_IRQ_PER_MBIGEN_CHIP))
191 return -EINVAL;
192 else
193 *hwirq = fwspec->param[0];
194
195 /* If there is no valid irq type, just use the default type */
196 if ((fwspec->param[1] == IRQ_TYPE_EDGE_RISING) ||
197 (fwspec->param[1] == IRQ_TYPE_LEVEL_HIGH))
198 *type = fwspec->param[1];
199 else
200 return -EINVAL;
201
202 return 0;
203 }
204 return -EINVAL;
205}
206
207static int mbigen_irq_domain_alloc(struct irq_domain *domain,
208 unsigned int virq,
209 unsigned int nr_irqs,
210 void *args)
211{
212 struct irq_fwspec *fwspec = args;
213 irq_hw_number_t hwirq;
214 unsigned int type;
215 struct mbigen_device *mgn_chip;
216 int i, err;
217
218 err = mbigen_domain_translate(domain, fwspec, &hwirq, &type);
219 if (err)
220 return err;
221
222 err = platform_msi_domain_alloc(domain, virq, nr_irqs);
223 if (err)
224 return err;
225
226 mgn_chip = platform_msi_get_host_data(domain);
227
228 for (i = 0; i < nr_irqs; i++)
229 irq_domain_set_hwirq_and_chip(domain, virq + i, hwirq + i,
230 &mbigen_irq_chip, mgn_chip->base);
231
232 return 0;
233}
234
235static void mbigen_irq_domain_free(struct irq_domain *domain, unsigned int virq,
236 unsigned int nr_irqs)
237{
238 platform_msi_domain_free(domain, virq, nr_irqs);
239}
240
241static const struct irq_domain_ops mbigen_domain_ops = {
242 .translate = mbigen_domain_translate,
243 .alloc = mbigen_irq_domain_alloc,
244 .free = mbigen_irq_domain_free,
245};
246
247static int mbigen_of_create_domain(struct platform_device *pdev,
248 struct mbigen_device *mgn_chip)
249{
250 struct device *parent;
251 struct platform_device *child;
252 struct irq_domain *domain;
253 struct device_node *np;
254 u32 num_pins;
255
256 for_each_child_of_node(pdev->dev.of_node, np) {
257 if (!of_property_read_bool(np, "interrupt-controller"))
258 continue;
259
260 parent = platform_bus_type.dev_root;
261 child = of_platform_device_create(np, NULL, parent);
262 if (!child) {
263 of_node_put(np);
264 return -ENOMEM;
265 }
266
267 if (of_property_read_u32(child->dev.of_node, "num-pins",
268 &num_pins) < 0) {
269 dev_err(&pdev->dev, "No num-pins property\n");
270 of_node_put(np);
271 return -EINVAL;
272 }
273
274 domain = platform_msi_create_device_domain(&child->dev, num_pins,
275 mbigen_write_msg,
276 &mbigen_domain_ops,
277 mgn_chip);
278 if (!domain) {
279 of_node_put(np);
280 return -ENOMEM;
281 }
282 }
283
284 return 0;
285}
286
287#ifdef CONFIG_ACPI
288static int mbigen_acpi_create_domain(struct platform_device *pdev,
289 struct mbigen_device *mgn_chip)
290{
291 struct irq_domain *domain;
292 u32 num_pins = 0;
293 int ret;
294
295 /*
296 * "num-pins" is the total number of interrupt pins implemented in
297 * this mbigen instance, and mbigen is an interrupt controller
298 * connected to ITS converting wired interrupts into MSI, so we
299 * use "num-pins" to alloc MSI vectors which are needed by client
300 * devices connected to it.
301 *
302 * Here is the DSDT device node used for mbigen in firmware:
303 * Device(MBI0) {
304 * Name(_HID, "HISI0152")
305 * Name(_UID, Zero)
306 * Name(_CRS, ResourceTemplate() {
307 * Memory32Fixed(ReadWrite, 0xa0080000, 0x10000)
308 * })
309 *
310 * Name(_DSD, Package () {
311 * ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
312 * Package () {
313 * Package () {"num-pins", 378}
314 * }
315 * })
316 * }
317 */
318 ret = device_property_read_u32(&pdev->dev, "num-pins", &num_pins);
319 if (ret || num_pins == 0)
320 return -EINVAL;
321
322 domain = platform_msi_create_device_domain(&pdev->dev, num_pins,
323 mbigen_write_msg,
324 &mbigen_domain_ops,
325 mgn_chip);
326 if (!domain)
327 return -ENOMEM;
328
329 return 0;
330}
331#else
332static inline int mbigen_acpi_create_domain(struct platform_device *pdev,
333 struct mbigen_device *mgn_chip)
334{
335 return -ENODEV;
336}
337#endif
338
339static int mbigen_device_probe(struct platform_device *pdev)
340{
341 struct mbigen_device *mgn_chip;
342 struct resource *res;
343 int err;
344
345 mgn_chip = devm_kzalloc(&pdev->dev, sizeof(*mgn_chip), GFP_KERNEL);
346 if (!mgn_chip)
347 return -ENOMEM;
348
349 mgn_chip->pdev = pdev;
350
351 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
352 if (!res)
353 return -EINVAL;
354
355 mgn_chip->base = devm_ioremap(&pdev->dev, res->start,
356 resource_size(res));
357 if (!mgn_chip->base) {
358 dev_err(&pdev->dev, "failed to ioremap %pR\n", res);
359 return -ENOMEM;
360 }
361
362 if (IS_ENABLED(CONFIG_OF) && pdev->dev.of_node)
363 err = mbigen_of_create_domain(pdev, mgn_chip);
364 else if (ACPI_COMPANION(&pdev->dev))
365 err = mbigen_acpi_create_domain(pdev, mgn_chip);
366 else
367 err = -EINVAL;
368
369 if (err) {
370 dev_err(&pdev->dev, "Failed to create mbi-gen irqdomain\n");
371 return err;
372 }
373
374 platform_set_drvdata(pdev, mgn_chip);
375 return 0;
376}
377
378static const struct of_device_id mbigen_of_match[] = {
379 { .compatible = "hisilicon,mbigen-v2" },
380 { /* END */ }
381};
382MODULE_DEVICE_TABLE(of, mbigen_of_match);
383
384static const struct acpi_device_id mbigen_acpi_match[] = {
385 { "HISI0152", 0 },
386 {}
387};
388MODULE_DEVICE_TABLE(acpi, mbigen_acpi_match);
389
390static struct platform_driver mbigen_platform_driver = {
391 .driver = {
392 .name = "Hisilicon MBIGEN-V2",
393 .of_match_table = mbigen_of_match,
394 .acpi_match_table = ACPI_PTR(mbigen_acpi_match),
395 .suppress_bind_attrs = true,
396 },
397 .probe = mbigen_device_probe,
398};
399
400module_platform_driver(mbigen_platform_driver);
401
402MODULE_AUTHOR("Jun Ma <majun258@huawei.com>");
403MODULE_AUTHOR("Yun Wu <wuyun.wu@huawei.com>");
404MODULE_LICENSE("GPL");
405MODULE_DESCRIPTION("Hisilicon MBI Generator driver");