xref: /rk3399_rockchip-uboot/arch/x86/cpu/irq.c (revision 07ac84eaaa5daeae4a56ff70649a3e50fc470db5)
1 /*
2  * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
3  *
4  * SPDX-License-Identifier:	GPL-2.0+
5  */
6 
7 #include <common.h>
8 #include <dm.h>
9 #include <errno.h>
10 #include <fdtdec.h>
11 #include <malloc.h>
12 #include <asm/io.h>
13 #include <asm/irq.h>
14 #include <asm/pci.h>
15 #include <asm/pirq_routing.h>
16 
17 DECLARE_GLOBAL_DATA_PTR;
18 
19 static struct irq_routing_table *pirq_routing_table;
20 
21 bool pirq_check_irq_routed(struct udevice *dev, int link, u8 irq)
22 {
23 	struct irq_router *priv = dev_get_priv(dev);
24 	u8 pirq;
25 	int base = priv->link_base;
26 
27 	if (priv->config == PIRQ_VIA_PCI)
28 		dm_pci_read_config8(dev->parent, LINK_N2V(link, base), &pirq);
29 	else
30 		pirq = readb(priv->ibase + LINK_N2V(link, base));
31 
32 	pirq &= 0xf;
33 
34 	/* IRQ# 0/1/2/8/13 are reserved */
35 	if (pirq < 3 || pirq == 8 || pirq == 13)
36 		return false;
37 
38 	return pirq == irq ? true : false;
39 }
40 
41 int pirq_translate_link(struct udevice *dev, int link)
42 {
43 	struct irq_router *priv = dev_get_priv(dev);
44 
45 	return LINK_V2N(link, priv->link_base);
46 }
47 
48 void pirq_assign_irq(struct udevice *dev, int link, u8 irq)
49 {
50 	struct irq_router *priv = dev_get_priv(dev);
51 	int base = priv->link_base;
52 
53 	/* IRQ# 0/1/2/8/13 are reserved */
54 	if (irq < 3 || irq == 8 || irq == 13)
55 		return;
56 
57 	if (priv->config == PIRQ_VIA_PCI)
58 		dm_pci_write_config8(dev->parent, LINK_N2V(link, base), irq);
59 	else
60 		writeb(irq, priv->ibase + LINK_N2V(link, base));
61 }
62 
63 static struct irq_info *check_dup_entry(struct irq_info *slot_base,
64 					int entry_num, int bus, int device)
65 {
66 	struct irq_info *slot = slot_base;
67 	int i;
68 
69 	for (i = 0; i < entry_num; i++) {
70 		if (slot->bus == bus && slot->devfn == (device << 3))
71 			break;
72 		slot++;
73 	}
74 
75 	return (i == entry_num) ? NULL : slot;
76 }
77 
78 static inline void fill_irq_info(struct irq_router *priv, struct irq_info *slot,
79 				 int bus, int device, int pin, int pirq)
80 {
81 	slot->bus = bus;
82 	slot->devfn = (device << 3) | 0;
83 	slot->irq[pin - 1].link = LINK_N2V(pirq, priv->link_base);
84 	slot->irq[pin - 1].bitmap = priv->irq_mask;
85 }
86 
87 static int create_pirq_routing_table(struct udevice *dev)
88 {
89 	struct irq_router *priv = dev_get_priv(dev);
90 	const void *blob = gd->fdt_blob;
91 	int node;
92 	int len, count;
93 	const u32 *cell;
94 	struct irq_routing_table *rt;
95 	struct irq_info *slot, *slot_base;
96 	int irq_entries = 0;
97 	int i;
98 	int ret;
99 
100 	node = dev->of_offset;
101 
102 	/* extract the bdf from fdt_pci_addr */
103 	priv->bdf = dm_pci_get_bdf(dev->parent);
104 
105 	ret = fdt_find_string(blob, node, "intel,pirq-config", "pci");
106 	if (!ret) {
107 		priv->config = PIRQ_VIA_PCI;
108 	} else {
109 		ret = fdt_find_string(blob, node, "intel,pirq-config", "ibase");
110 		if (!ret)
111 			priv->config = PIRQ_VIA_IBASE;
112 		else
113 			return -EINVAL;
114 	}
115 
116 	ret = fdtdec_get_int(blob, node, "intel,pirq-link", -1);
117 	if (ret == -1)
118 		return ret;
119 	priv->link_base = ret;
120 
121 	priv->irq_mask = fdtdec_get_int(blob, node,
122 					"intel,pirq-mask", PIRQ_BITMAP);
123 
124 	if (IS_ENABLED(CONFIG_GENERATE_ACPI_TABLE)) {
125 		/* Reserve IRQ9 for SCI */
126 		priv->irq_mask &= ~(1 << 9);
127 	}
128 
129 	if (priv->config == PIRQ_VIA_IBASE) {
130 		int ibase_off;
131 
132 		ibase_off = fdtdec_get_int(blob, node, "intel,ibase-offset", 0);
133 		if (!ibase_off)
134 			return -EINVAL;
135 
136 		/*
137 		 * Here we assume that the IBASE register has already been
138 		 * properly configured by U-Boot before.
139 		 *
140 		 * By 'valid' we mean:
141 		 *   1) a valid memory space carved within system memory space
142 		 *      assigned to IBASE register block.
143 		 *   2) memory range decoding is enabled.
144 		 * Hence we don't do any santify test here.
145 		 */
146 		dm_pci_read_config32(dev->parent, ibase_off, &priv->ibase);
147 		priv->ibase &= ~0xf;
148 	}
149 
150 	cell = fdt_getprop(blob, node, "intel,pirq-routing", &len);
151 	if (!cell || len % sizeof(struct pirq_routing))
152 		return -EINVAL;
153 	count = len / sizeof(struct pirq_routing);
154 
155 	rt = calloc(1, sizeof(struct irq_routing_table));
156 	if (!rt)
157 		return -ENOMEM;
158 
159 	/* Populate the PIRQ table fields */
160 	rt->signature = PIRQ_SIGNATURE;
161 	rt->version = PIRQ_VERSION;
162 	rt->rtr_bus = PCI_BUS(priv->bdf);
163 	rt->rtr_devfn = (PCI_DEV(priv->bdf) << 3) | PCI_FUNC(priv->bdf);
164 	rt->rtr_vendor = PCI_VENDOR_ID_INTEL;
165 	rt->rtr_device = PCI_DEVICE_ID_INTEL_ICH7_31;
166 
167 	slot_base = rt->slots;
168 
169 	/* Now fill in the irq_info entries in the PIRQ table */
170 	for (i = 0; i < count;
171 	     i++, cell += sizeof(struct pirq_routing) / sizeof(u32)) {
172 		struct pirq_routing pr;
173 
174 		pr.bdf = fdt_addr_to_cpu(cell[0]);
175 		pr.pin = fdt_addr_to_cpu(cell[1]);
176 		pr.pirq = fdt_addr_to_cpu(cell[2]);
177 
178 		debug("irq_info %d: b.d.f %x.%x.%x INT%c PIRQ%c\n",
179 		      i, PCI_BUS(pr.bdf), PCI_DEV(pr.bdf),
180 		      PCI_FUNC(pr.bdf), 'A' + pr.pin - 1,
181 		      'A' + pr.pirq);
182 
183 		slot = check_dup_entry(slot_base, irq_entries,
184 				       PCI_BUS(pr.bdf), PCI_DEV(pr.bdf));
185 		if (slot) {
186 			debug("found entry for bus %d device %d, ",
187 			      PCI_BUS(pr.bdf), PCI_DEV(pr.bdf));
188 
189 			if (slot->irq[pr.pin - 1].link) {
190 				debug("skipping\n");
191 
192 				/*
193 				 * Sanity test on the routed PIRQ pin
194 				 *
195 				 * If they don't match, show a warning to tell
196 				 * there might be something wrong with the PIRQ
197 				 * routing information in the device tree.
198 				 */
199 				if (slot->irq[pr.pin - 1].link !=
200 					LINK_N2V(pr.pirq, priv->link_base))
201 					debug("WARNING: Inconsistent PIRQ routing information\n");
202 				continue;
203 			}
204 		} else {
205 			slot = slot_base + irq_entries++;
206 		}
207 		debug("writing INT%c\n", 'A' + pr.pin - 1);
208 		fill_irq_info(priv, slot, PCI_BUS(pr.bdf), PCI_DEV(pr.bdf),
209 			      pr.pin, pr.pirq);
210 	}
211 
212 	rt->size = irq_entries * sizeof(struct irq_info) + 32;
213 
214 	pirq_routing_table = rt;
215 
216 	return 0;
217 }
218 
219 int irq_router_common_init(struct udevice *dev)
220 {
221 	int ret;
222 
223 	ret = create_pirq_routing_table(dev);
224 	if (ret) {
225 		debug("Failed to create pirq routing table\n");
226 		return ret;
227 	}
228 	/* Route PIRQ */
229 	pirq_route_irqs(dev, pirq_routing_table->slots,
230 			get_irq_slot_count(pirq_routing_table));
231 
232 	return 0;
233 }
234 
235 int irq_router_probe(struct udevice *dev)
236 {
237 	return irq_router_common_init(dev);
238 }
239 
240 u32 write_pirq_routing_table(u32 addr)
241 {
242 	if (!pirq_routing_table)
243 		return addr;
244 
245 	return copy_pirq_routing_table(addr, pirq_routing_table);
246 }
247 
248 static const struct udevice_id irq_router_ids[] = {
249 	{ .compatible = "intel,irq-router" },
250 	{ }
251 };
252 
253 U_BOOT_DRIVER(irq_router_drv) = {
254 	.name		= "intel_irq",
255 	.id		= UCLASS_IRQ,
256 	.of_match	= irq_router_ids,
257 	.probe		= irq_router_probe,
258 	.priv_auto_alloc_size = sizeof(struct irq_router),
259 };
260 
261 UCLASS_DRIVER(irq) = {
262 	.id		= UCLASS_IRQ,
263 	.name		= "irq",
264 };
265