x86: irq: Enable SCI on IRQ9
[oweals/u-boot.git] / arch / x86 / cpu / irq.c
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         priv->actl_8bit = fdtdec_get_bool(blob, node, "intel,actl-8bit");
151         priv->actl_addr = fdtdec_get_int(blob, node, "intel,actl-addr", 0);
152
153         cell = fdt_getprop(blob, node, "intel,pirq-routing", &len);
154         if (!cell || len % sizeof(struct pirq_routing))
155                 return -EINVAL;
156         count = len / sizeof(struct pirq_routing);
157
158         rt = calloc(1, sizeof(struct irq_routing_table));
159         if (!rt)
160                 return -ENOMEM;
161
162         /* Populate the PIRQ table fields */
163         rt->signature = PIRQ_SIGNATURE;
164         rt->version = PIRQ_VERSION;
165         rt->rtr_bus = PCI_BUS(priv->bdf);
166         rt->rtr_devfn = (PCI_DEV(priv->bdf) << 3) | PCI_FUNC(priv->bdf);
167         rt->rtr_vendor = PCI_VENDOR_ID_INTEL;
168         rt->rtr_device = PCI_DEVICE_ID_INTEL_ICH7_31;
169
170         slot_base = rt->slots;
171
172         /* Now fill in the irq_info entries in the PIRQ table */
173         for (i = 0; i < count;
174              i++, cell += sizeof(struct pirq_routing) / sizeof(u32)) {
175                 struct pirq_routing pr;
176
177                 pr.bdf = fdt_addr_to_cpu(cell[0]);
178                 pr.pin = fdt_addr_to_cpu(cell[1]);
179                 pr.pirq = fdt_addr_to_cpu(cell[2]);
180
181                 debug("irq_info %d: b.d.f %x.%x.%x INT%c PIRQ%c\n",
182                       i, PCI_BUS(pr.bdf), PCI_DEV(pr.bdf),
183                       PCI_FUNC(pr.bdf), 'A' + pr.pin - 1,
184                       'A' + pr.pirq);
185
186                 slot = check_dup_entry(slot_base, irq_entries,
187                                        PCI_BUS(pr.bdf), PCI_DEV(pr.bdf));
188                 if (slot) {
189                         debug("found entry for bus %d device %d, ",
190                               PCI_BUS(pr.bdf), PCI_DEV(pr.bdf));
191
192                         if (slot->irq[pr.pin - 1].link) {
193                                 debug("skipping\n");
194
195                                 /*
196                                  * Sanity test on the routed PIRQ pin
197                                  *
198                                  * If they don't match, show a warning to tell
199                                  * there might be something wrong with the PIRQ
200                                  * routing information in the device tree.
201                                  */
202                                 if (slot->irq[pr.pin - 1].link !=
203                                         LINK_N2V(pr.pirq, priv->link_base))
204                                         debug("WARNING: Inconsistent PIRQ routing information\n");
205                                 continue;
206                         }
207                 } else {
208                         slot = slot_base + irq_entries++;
209                 }
210                 debug("writing INT%c\n", 'A' + pr.pin - 1);
211                 fill_irq_info(priv, slot, PCI_BUS(pr.bdf), PCI_DEV(pr.bdf),
212                               pr.pin, pr.pirq);
213         }
214
215         rt->size = irq_entries * sizeof(struct irq_info) + 32;
216
217         pirq_routing_table = rt;
218
219         return 0;
220 }
221
222 static void irq_enable_sci(struct udevice *dev)
223 {
224         struct irq_router *priv = dev_get_priv(dev);
225
226         if (priv->actl_8bit) {
227                 /* Bit7 must be turned on to enable ACPI */
228                 dm_pci_write_config8(dev->parent, priv->actl_addr, 0x80);
229         } else {
230                 /* Write 0 to enable SCI on IRQ9 */
231                 if (priv->config == PIRQ_VIA_PCI)
232                         dm_pci_write_config32(dev->parent, priv->actl_addr, 0);
233                 else
234                         writel(0, priv->ibase + priv->actl_addr);
235         }
236 }
237
238 int irq_router_common_init(struct udevice *dev)
239 {
240         int ret;
241
242         ret = create_pirq_routing_table(dev);
243         if (ret) {
244                 debug("Failed to create pirq routing table\n");
245                 return ret;
246         }
247         /* Route PIRQ */
248         pirq_route_irqs(dev, pirq_routing_table->slots,
249                         get_irq_slot_count(pirq_routing_table));
250
251         if (IS_ENABLED(CONFIG_GENERATE_ACPI_TABLE))
252                 irq_enable_sci(dev);
253
254         return 0;
255 }
256
257 int irq_router_probe(struct udevice *dev)
258 {
259         return irq_router_common_init(dev);
260 }
261
262 u32 write_pirq_routing_table(u32 addr)
263 {
264         if (!pirq_routing_table)
265                 return addr;
266
267         return copy_pirq_routing_table(addr, pirq_routing_table);
268 }
269
270 static const struct udevice_id irq_router_ids[] = {
271         { .compatible = "intel,irq-router" },
272         { }
273 };
274
275 U_BOOT_DRIVER(irq_router_drv) = {
276         .name           = "intel_irq",
277         .id             = UCLASS_IRQ,
278         .of_match       = irq_router_ids,
279         .probe          = irq_router_probe,
280         .priv_auto_alloc_size = sizeof(struct irq_router),
281 };
282
283 UCLASS_DRIVER(irq) = {
284         .id             = UCLASS_IRQ,
285         .name           = "irq",
286 };