net: ipv6: Use passed in table for nexthop lookups
[linux-2.6/btrfs-unstable.git] / drivers / irqchip / irq-mbigen.c
blobd67baa231c1324af4f970aefd399d8b78fdf79b4
1 /*
2 * Copyright (C) 2015 Hisilicon Limited, All Rights Reserved.
3 * Author: Jun Ma <majun258@huawei.com>
4 * Author: Yun Wu <wuyun.wu@huawei.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #include <linux/interrupt.h>
20 #include <linux/irqchip.h>
21 #include <linux/module.h>
22 #include <linux/msi.h>
23 #include <linux/of_address.h>
24 #include <linux/of_irq.h>
25 #include <linux/of_platform.h>
26 #include <linux/platform_device.h>
27 #include <linux/slab.h>
29 /* Interrupt numbers per mbigen node supported */
30 #define IRQS_PER_MBIGEN_NODE 128
32 /* 64 irqs (Pin0-pin63) are reserved for each mbigen chip */
33 #define RESERVED_IRQ_PER_MBIGEN_CHIP 64
35 /* The maximum IRQ pin number of mbigen chip(start from 0) */
36 #define MAXIMUM_IRQ_PIN_NUM 1407
38 /**
39 * In mbigen vector register
40 * bit[21:12]: event id value
41 * bit[11:0]: device id
43 #define IRQ_EVENT_ID_SHIFT 12
44 #define IRQ_EVENT_ID_MASK 0x3ff
46 /* register range of each mbigen node */
47 #define MBIGEN_NODE_OFFSET 0x1000
49 /* offset of vector register in mbigen node */
50 #define REG_MBIGEN_VEC_OFFSET 0x200
52 /**
53 * offset of clear register in mbigen node
54 * This register is used to clear the status
55 * of interrupt
57 #define REG_MBIGEN_CLEAR_OFFSET 0xa000
59 /**
60 * offset of interrupt type register
61 * This register is used to configure interrupt
62 * trigger type
64 #define REG_MBIGEN_TYPE_OFFSET 0x0
66 /**
67 * struct mbigen_device - holds the information of mbigen device.
69 * @pdev: pointer to the platform device structure of mbigen chip.
70 * @base: mapped address of this mbigen chip.
72 struct mbigen_device {
73 struct platform_device *pdev;
74 void __iomem *base;
77 static inline unsigned int get_mbigen_vec_reg(irq_hw_number_t hwirq)
79 unsigned int nid, pin;
81 hwirq -= RESERVED_IRQ_PER_MBIGEN_CHIP;
82 nid = hwirq / IRQS_PER_MBIGEN_NODE + 1;
83 pin = hwirq % IRQS_PER_MBIGEN_NODE;
85 return pin * 4 + nid * MBIGEN_NODE_OFFSET
86 + REG_MBIGEN_VEC_OFFSET;
89 static inline void get_mbigen_type_reg(irq_hw_number_t hwirq,
90 u32 *mask, u32 *addr)
92 unsigned int nid, irq_ofst, ofst;
94 hwirq -= RESERVED_IRQ_PER_MBIGEN_CHIP;
95 nid = hwirq / IRQS_PER_MBIGEN_NODE + 1;
96 irq_ofst = hwirq % IRQS_PER_MBIGEN_NODE;
98 *mask = 1 << (irq_ofst % 32);
99 ofst = irq_ofst / 32 * 4;
101 *addr = ofst + nid * MBIGEN_NODE_OFFSET
102 + REG_MBIGEN_TYPE_OFFSET;
105 static inline void get_mbigen_clear_reg(irq_hw_number_t hwirq,
106 u32 *mask, u32 *addr)
108 unsigned int ofst;
110 hwirq -= RESERVED_IRQ_PER_MBIGEN_CHIP;
111 ofst = hwirq / 32 * 4;
113 *mask = 1 << (hwirq % 32);
114 *addr = ofst + REG_MBIGEN_CLEAR_OFFSET;
117 static void mbigen_eoi_irq(struct irq_data *data)
119 void __iomem *base = data->chip_data;
120 u32 mask, addr;
122 get_mbigen_clear_reg(data->hwirq, &mask, &addr);
124 writel_relaxed(mask, base + addr);
126 irq_chip_eoi_parent(data);
129 static int mbigen_set_type(struct irq_data *data, unsigned int type)
131 void __iomem *base = data->chip_data;
132 u32 mask, addr, val;
134 if (type != IRQ_TYPE_LEVEL_HIGH && type != IRQ_TYPE_EDGE_RISING)
135 return -EINVAL;
137 get_mbigen_type_reg(data->hwirq, &mask, &addr);
139 val = readl_relaxed(base + addr);
141 if (type == IRQ_TYPE_LEVEL_HIGH)
142 val |= mask;
143 else
144 val &= ~mask;
146 writel_relaxed(val, base + addr);
148 return 0;
151 static struct irq_chip mbigen_irq_chip = {
152 .name = "mbigen-v2",
153 .irq_mask = irq_chip_mask_parent,
154 .irq_unmask = irq_chip_unmask_parent,
155 .irq_eoi = mbigen_eoi_irq,
156 .irq_set_type = mbigen_set_type,
157 .irq_set_affinity = irq_chip_set_affinity_parent,
160 static void mbigen_write_msg(struct msi_desc *desc, struct msi_msg *msg)
162 struct irq_data *d = irq_get_irq_data(desc->irq);
163 void __iomem *base = d->chip_data;
164 u32 val;
166 base += get_mbigen_vec_reg(d->hwirq);
167 val = readl_relaxed(base);
169 val &= ~(IRQ_EVENT_ID_MASK << IRQ_EVENT_ID_SHIFT);
170 val |= (msg->data << IRQ_EVENT_ID_SHIFT);
172 /* The address of doorbell is encoded in mbigen register by default
173 * So,we don't need to program the doorbell address at here
175 writel_relaxed(val, base);
178 static int mbigen_domain_translate(struct irq_domain *d,
179 struct irq_fwspec *fwspec,
180 unsigned long *hwirq,
181 unsigned int *type)
183 if (is_of_node(fwspec->fwnode)) {
184 if (fwspec->param_count != 2)
185 return -EINVAL;
187 if ((fwspec->param[0] > MAXIMUM_IRQ_PIN_NUM) ||
188 (fwspec->param[0] < RESERVED_IRQ_PER_MBIGEN_CHIP))
189 return -EINVAL;
190 else
191 *hwirq = fwspec->param[0];
193 /* If there is no valid irq type, just use the default type */
194 if ((fwspec->param[1] == IRQ_TYPE_EDGE_RISING) ||
195 (fwspec->param[1] == IRQ_TYPE_LEVEL_HIGH))
196 *type = fwspec->param[1];
197 else
198 return -EINVAL;
200 return 0;
202 return -EINVAL;
205 static int mbigen_irq_domain_alloc(struct irq_domain *domain,
206 unsigned int virq,
207 unsigned int nr_irqs,
208 void *args)
210 struct irq_fwspec *fwspec = args;
211 irq_hw_number_t hwirq;
212 unsigned int type;
213 struct mbigen_device *mgn_chip;
214 int i, err;
216 err = mbigen_domain_translate(domain, fwspec, &hwirq, &type);
217 if (err)
218 return err;
220 err = platform_msi_domain_alloc(domain, virq, nr_irqs);
221 if (err)
222 return err;
224 mgn_chip = platform_msi_get_host_data(domain);
226 for (i = 0; i < nr_irqs; i++)
227 irq_domain_set_hwirq_and_chip(domain, virq + i, hwirq + i,
228 &mbigen_irq_chip, mgn_chip->base);
230 return 0;
233 static struct irq_domain_ops mbigen_domain_ops = {
234 .translate = mbigen_domain_translate,
235 .alloc = mbigen_irq_domain_alloc,
236 .free = irq_domain_free_irqs_common,
239 static int mbigen_device_probe(struct platform_device *pdev)
241 struct mbigen_device *mgn_chip;
242 struct platform_device *child;
243 struct irq_domain *domain;
244 struct device_node *np;
245 struct device *parent;
246 struct resource *res;
247 u32 num_pins;
249 mgn_chip = devm_kzalloc(&pdev->dev, sizeof(*mgn_chip), GFP_KERNEL);
250 if (!mgn_chip)
251 return -ENOMEM;
253 mgn_chip->pdev = pdev;
255 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
256 mgn_chip->base = devm_ioremap_resource(&pdev->dev, res);
257 if (IS_ERR(mgn_chip->base))
258 return PTR_ERR(mgn_chip->base);
260 for_each_child_of_node(pdev->dev.of_node, np) {
261 if (!of_property_read_bool(np, "interrupt-controller"))
262 continue;
264 parent = platform_bus_type.dev_root;
265 child = of_platform_device_create(np, NULL, parent);
266 if (IS_ERR(child))
267 return PTR_ERR(child);
269 if (of_property_read_u32(child->dev.of_node, "num-pins",
270 &num_pins) < 0) {
271 dev_err(&pdev->dev, "No num-pins property\n");
272 return -EINVAL;
275 domain = platform_msi_create_device_domain(&child->dev, num_pins,
276 mbigen_write_msg,
277 &mbigen_domain_ops,
278 mgn_chip);
279 if (!domain)
280 return -ENOMEM;
283 platform_set_drvdata(pdev, mgn_chip);
284 return 0;
287 static const struct of_device_id mbigen_of_match[] = {
288 { .compatible = "hisilicon,mbigen-v2" },
289 { /* END */ }
291 MODULE_DEVICE_TABLE(of, mbigen_of_match);
293 static struct platform_driver mbigen_platform_driver = {
294 .driver = {
295 .name = "Hisilicon MBIGEN-V2",
296 .owner = THIS_MODULE,
297 .of_match_table = mbigen_of_match,
299 .probe = mbigen_device_probe,
302 module_platform_driver(mbigen_platform_driver);
304 MODULE_AUTHOR("Jun Ma <majun258@huawei.com>");
305 MODULE_AUTHOR("Yun Wu <wuyun.wu@huawei.com>");
306 MODULE_LICENSE("GPL");
307 MODULE_DESCRIPTION("Hisilicon MBI Generator driver");