blob: 63c1dc522af17b77d1777c18b058bcbdec4ac7a6 [file] [log] [blame]
Angel Ponsc74dae92020-04-02 23:48:16 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Uwe Hermannb80dbf02007-04-22 19:08:13 +00002
3/*
Martin Roth99f83bb2019-09-15 20:57:18 -07004 * Originally based on the Linux kernel (drivers/pci/pci.c).
Myles Watson29cc9ed2009-07-02 18:56:24 +00005 * PCI Bus Services, see include/linux/pci.h for further explanation.
Eric Biederman8ca8d762003-04-22 19:02:15 +00006 */
7
Furquan Shaikh76cedd22020-05-02 10:24:23 -07008#include <acpi/acpi.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02009#include <device/pci_ops.h>
Edward O'Callaghan6c992502014-06-20 21:19:06 +100010#include <bootmode.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000011#include <console/console.h>
Furquan Shaikh871baf22020-03-12 17:51:24 -070012#include <cpu/cpu.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000013#include <stdlib.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000014#include <string.h>
Edward O'Callaghan6c992502014-06-20 21:19:06 +100015#include <delay.h>
Edward O'Callaghan6c992502014-06-20 21:19:06 +100016#include <device/cardbus.h>
Eric Biederman5899fd82003-04-24 06:25:08 +000017#include <device/device.h>
18#include <device/pci.h>
19#include <device/pci_ids.h>
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000020#include <device/pcix.h>
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000021#include <device/pciexp.h>
Stefan Reinauer4d933dd2009-07-21 21:36:41 +000022#include <pc80/i8259.h>
Philipp Deppenwiesefea24292017-10-17 17:02:29 +020023#include <security/vboot/vbnv.h>
Martin Roth5dd4a2a2018-03-06 16:10:45 -070024#include <timestamp.h>
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +020025#include <types.h>
26
Myles Watson29cc9ed2009-07-02 18:56:24 +000027u8 pci_moving_config8(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000028{
Myles Watson29cc9ed2009-07-02 18:56:24 +000029 u8 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000030
Eric Biederman03acab62004-10-14 21:25:53 +000031 value = pci_read_config8(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000032
Eric Biederman03acab62004-10-14 21:25:53 +000033 pci_write_config8(dev, reg, 0xff);
34 ones = pci_read_config8(dev, reg);
35
36 pci_write_config8(dev, reg, 0x00);
37 zeroes = pci_read_config8(dev, reg);
38
39 pci_write_config8(dev, reg, value);
40
41 return ones ^ zeroes;
42}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +000043
Uwe Hermanne4870472010-11-04 23:23:47 +000044u16 pci_moving_config16(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000045{
Myles Watson29cc9ed2009-07-02 18:56:24 +000046 u16 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000047
Eric Biederman03acab62004-10-14 21:25:53 +000048 value = pci_read_config16(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000049
Eric Biederman03acab62004-10-14 21:25:53 +000050 pci_write_config16(dev, reg, 0xffff);
51 ones = pci_read_config16(dev, reg);
52
53 pci_write_config16(dev, reg, 0x0000);
54 zeroes = pci_read_config16(dev, reg);
55
56 pci_write_config16(dev, reg, value);
57
58 return ones ^ zeroes;
59}
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +000060
Uwe Hermanne4870472010-11-04 23:23:47 +000061u32 pci_moving_config32(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000062{
Myles Watson29cc9ed2009-07-02 18:56:24 +000063 u32 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000064
Eric Biederman03acab62004-10-14 21:25:53 +000065 value = pci_read_config32(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000066
Eric Biederman03acab62004-10-14 21:25:53 +000067 pci_write_config32(dev, reg, 0xffffffff);
68 ones = pci_read_config32(dev, reg);
69
70 pci_write_config32(dev, reg, 0x00000000);
71 zeroes = pci_read_config32(dev, reg);
72
73 pci_write_config32(dev, reg, value);
74
75 return ones ^ zeroes;
76}
77
Myles Watson29cc9ed2009-07-02 18:56:24 +000078/**
Myles Watson29cc9ed2009-07-02 18:56:24 +000079 * Given a device and register, read the size of the BAR for that register.
80 *
81 * @param dev Pointer to the device structure.
82 * @param index Address of the PCI configuration register.
Uwe Hermannc1ee4292010-10-17 19:01:48 +000083 * @return TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +000084 */
Eric Biederman03acab62004-10-14 21:25:53 +000085struct resource *pci_get_resource(struct device *dev, unsigned long index)
Eric Biederman8ca8d762003-04-22 19:02:15 +000086{
Eric Biederman5cd81732004-03-11 15:01:31 +000087 struct resource *resource;
Eric Biederman03acab62004-10-14 21:25:53 +000088 unsigned long value, attr;
Myles Watson29cc9ed2009-07-02 18:56:24 +000089 resource_t moving, limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +000090
Myles Watson29cc9ed2009-07-02 18:56:24 +000091 /* Initialize the resources to nothing. */
Eric Biederman03acab62004-10-14 21:25:53 +000092 resource = new_resource(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +000093
Myles Watson29cc9ed2009-07-02 18:56:24 +000094 /* Get the initial value. */
Eric Biederman03acab62004-10-14 21:25:53 +000095 value = pci_read_config32(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +000096
Myles Watson29cc9ed2009-07-02 18:56:24 +000097 /* See which bits move. */
Eric Biederman03acab62004-10-14 21:25:53 +000098 moving = pci_moving_config32(dev, index);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +000099
Myles Watson29cc9ed2009-07-02 18:56:24 +0000100 /* Initialize attr to the bits that do not move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000101 attr = value & ~moving;
102
Myles Watson29cc9ed2009-07-02 18:56:24 +0000103 /* If it is a 64bit resource look at the high half as well. */
Eric Biederman03acab62004-10-14 21:25:53 +0000104 if (((attr & PCI_BASE_ADDRESS_SPACE_IO) == 0) &&
Myles Watson29cc9ed2009-07-02 18:56:24 +0000105 ((attr & PCI_BASE_ADDRESS_MEM_LIMIT_MASK) ==
106 PCI_BASE_ADDRESS_MEM_LIMIT_64)) {
107 /* Find the high bits that move. */
108 moving |=
109 ((resource_t) pci_moving_config32(dev, index + 4)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000110 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000111
Myles Watson032a9652009-05-11 22:24:53 +0000112 /* Find the resource constraints.
Eric Biederman03acab62004-10-14 21:25:53 +0000113 * Start by finding the bits that move. From there:
114 * - Size is the least significant bit of the bits that move.
115 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000116 * See PCI Spec 6.2.5.1.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000117 */
Eric Biederman03acab62004-10-14 21:25:53 +0000118 limit = 0;
119 if (moving) {
120 resource->size = 1;
121 resource->align = resource->gran = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000122 while (!(moving & resource->size)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000123 resource->size <<= 1;
124 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000125 resource->gran += 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000126 }
127 resource->limit = limit = moving | (resource->size - 1);
Nico Huber8193b062015-10-21 15:43:41 +0200128
129 if (pci_base_address_is_memory_space(attr)) {
130 /* Page-align to allow individual mapping of devices. */
131 if (resource->align < 12)
132 resource->align = 12;
133 }
Eric Biederman03acab62004-10-14 21:25:53 +0000134 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000135
Uwe Hermanne4870472010-11-04 23:23:47 +0000136 /*
137 * Some broken hardware has read-only registers that do not
Eric Biederman03acab62004-10-14 21:25:53 +0000138 * really size correctly.
Uwe Hermanne4870472010-11-04 23:23:47 +0000139 *
140 * Example: the Acer M7229 has BARs 1-4 normally read-only,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000141 * so BAR1 at offset 0x10 reads 0x1f1. If you size that register
Uwe Hermanne4870472010-11-04 23:23:47 +0000142 * by writing 0xffffffff to it, it will read back as 0x1f1 -- which
143 * is a violation of the spec.
144 *
145 * We catch this case and ignore it by observing which bits move.
146 *
147 * This also catches the common case of unimplemented registers
Eric Biederman03acab62004-10-14 21:25:53 +0000148 * that always read back as 0.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000149 */
Eric Biederman03acab62004-10-14 21:25:53 +0000150 if (moving == 0) {
151 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000152 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
153 "read-only ignoring it\n",
154 dev_path(dev), index, value);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000155 }
156 resource->flags = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000157 } else if (attr & PCI_BASE_ADDRESS_SPACE_IO) {
158 /* An I/O mapped base address. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000159 resource->flags |= IORESOURCE_IO;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000160 /* I don't want to deal with 32bit I/O resources. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000161 resource->limit = 0xffff;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000162 } else {
163 /* A Memory mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000164 attr &= PCI_BASE_ADDRESS_MEM_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000165 resource->flags |= IORESOURCE_MEM;
Uwe Hermanne4870472010-11-04 23:23:47 +0000166 if (attr & PCI_BASE_ADDRESS_MEM_PREFETCH)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000167 resource->flags |= IORESOURCE_PREFETCH;
Eric Biederman03acab62004-10-14 21:25:53 +0000168 attr &= PCI_BASE_ADDRESS_MEM_LIMIT_MASK;
169 if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_32) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000170 /* 32bit limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000171 resource->limit = 0xffffffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000172 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_1M) {
173 /* 1MB limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000174 resource->limit = 0x000fffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000175 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_64) {
176 /* 64bit limit. */
Eric Biederman03acab62004-10-14 21:25:53 +0000177 resource->limit = 0xffffffffffffffffULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000178 resource->flags |= IORESOURCE_PCI64;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000179 } else {
180 /* Invalid value. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000181 printk(BIOS_ERR, "Broken BAR with value %lx\n", attr);
182 printk(BIOS_ERR, " on dev %s at index %02lx\n",
Myles Watson29cc9ed2009-07-02 18:56:24 +0000183 dev_path(dev), index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000184 resource->flags = 0;
185 }
186 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000187
Myles Watson29cc9ed2009-07-02 18:56:24 +0000188 /* Don't let the limit exceed which bits can move. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000189 if (resource->limit > limit)
Eric Biederman03acab62004-10-14 21:25:53 +0000190 resource->limit = limit;
Eric Biederman03acab62004-10-14 21:25:53 +0000191
Eric Biederman5cd81732004-03-11 15:01:31 +0000192 return resource;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000193}
194
Myles Watson29cc9ed2009-07-02 18:56:24 +0000195/**
196 * Given a device and an index, read the size of the BAR for that register.
197 *
198 * @param dev Pointer to the device structure.
199 * @param index Address of the PCI configuration register.
200 */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000201static void pci_get_rom_resource(struct device *dev, unsigned long index)
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000202{
203 struct resource *resource;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000204 unsigned long value;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000205 resource_t moving;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000206
Myles Watson29cc9ed2009-07-02 18:56:24 +0000207 /* Initialize the resources to nothing. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000208 resource = new_resource(dev, index);
209
Myles Watson29cc9ed2009-07-02 18:56:24 +0000210 /* Get the initial value. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000211 value = pci_read_config32(dev, index);
212
Myles Watson29cc9ed2009-07-02 18:56:24 +0000213 /* See which bits move. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000214 moving = pci_moving_config32(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000215
216 /* Clear the Enable bit. */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000217 moving = moving & ~PCI_ROM_ADDRESS_ENABLE;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000218
Myles Watson032a9652009-05-11 22:24:53 +0000219 /* Find the resource constraints.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000220 * Start by finding the bits that move. From there:
221 * - Size is the least significant bit of the bits that move.
222 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000223 * See PCI Spec 6.2.5.1.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000224 */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000225 if (moving) {
226 resource->size = 1;
227 resource->align = resource->gran = 0;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000228 while (!(moving & resource->size)) {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000229 resource->size <<= 1;
230 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000231 resource->gran += 1;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000232 }
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000233 resource->limit = moving | (resource->size - 1);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000234 resource->flags |= IORESOURCE_MEM | IORESOURCE_READONLY;
235 } else {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000236 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000237 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
238 "read-only ignoring it\n",
239 dev_path(dev), index, value);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000240 }
241 resource->flags = 0;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000242 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000243 compact_resources(dev);
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000244}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000245
Myles Watson29cc9ed2009-07-02 18:56:24 +0000246/**
Patrick Rudolph4e2f95b2018-05-16 14:56:22 +0200247 * Given a device, read the size of the MSI-X table.
248 *
249 * @param dev Pointer to the device structure.
250 * @return MSI-X table size or 0 if not MSI-X capable device
251 */
252size_t pci_msix_table_size(struct device *dev)
253{
254 const size_t pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
255 if (!pos)
256 return 0;
257
258 const u16 control = pci_read_config16(dev, pos + PCI_MSIX_FLAGS);
259 return (control & PCI_MSIX_FLAGS_QSIZE) + 1;
260}
261
262/**
263 * Given a device, return the table offset and bar the MSI-X tables resides in.
264 *
265 * @param dev Pointer to the device structure.
266 * @param offset Returned value gives the offset in bytes inside the PCI BAR.
267 * @param idx The returned value is the index of the PCI_BASE_ADDRESS register
268 * the MSI-X table is located in.
269 * @return Zero on success
270 */
271int pci_msix_table_bar(struct device *dev, u32 *offset, u8 *idx)
272{
273 const size_t pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
274 if (!pos || !offset || !idx)
275 return 1;
276
277 *offset = pci_read_config32(dev, pos + PCI_MSIX_TABLE);
278 *idx = (u8)(*offset & PCI_MSIX_PBA_BIR);
279 *offset &= PCI_MSIX_PBA_OFFSET;
280
281 return 0;
282}
283
284/**
285 * Given a device, return a msix_entry pointer or NULL if no table was found.
286 *
287 * @param dev Pointer to the device structure.
288 *
289 * @return NULL on error
290 */
291struct msix_entry *pci_msix_get_table(struct device *dev)
292{
293 struct resource *res;
294 u32 offset;
295 u8 idx;
296
297 if (pci_msix_table_bar(dev, &offset, &idx))
298 return NULL;
299
300 if (idx > 5)
301 return NULL;
302
303 res = probe_resource(dev, idx * 4 + PCI_BASE_ADDRESS_0);
304 if (!res || !res->base || offset >= res->size)
305 return NULL;
306
307 if ((res->flags & IORESOURCE_PCI64) &&
308 (uintptr_t)res->base != res->base)
309 return NULL;
310
311 return (struct msix_entry *)((uintptr_t)res->base + offset);
312}
313
314/**
Myles Watson29cc9ed2009-07-02 18:56:24 +0000315 * Read the base address registers for a given device.
316 *
317 * @param dev Pointer to the dev structure.
318 * @param howmany How many registers to read (6 for device, 2 for bridge).
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000319 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000320static void pci_read_bases(struct device *dev, unsigned int howmany)
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000321{
322 unsigned long index;
323
Myles Watson29cc9ed2009-07-02 18:56:24 +0000324 for (index = PCI_BASE_ADDRESS_0;
325 (index < PCI_BASE_ADDRESS_0 + (howmany << 2));) {
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000326 struct resource *resource;
327 resource = pci_get_resource(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000328 index += (resource->flags & IORESOURCE_PCI64) ? 8 : 4;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000329 }
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000330
331 compact_resources(dev);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000332}
333
Myles Watson29cc9ed2009-07-02 18:56:24 +0000334static void pci_record_bridge_resource(struct device *dev, resource_t moving,
Martin Roth38ddbfb2019-10-23 21:41:00 -0600335 unsigned int index, unsigned long type)
Eric Biederman03acab62004-10-14 21:25:53 +0000336{
Eric Biederman03acab62004-10-14 21:25:53 +0000337 struct resource *resource;
Uwe Hermanne4870472010-11-04 23:23:47 +0000338 unsigned long gran;
339 resource_t step;
340
Myles Watson29cc9ed2009-07-02 18:56:24 +0000341 resource = NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000342
343 if (!moving)
344 return;
345
346 /* Initialize the constraints on the current bus. */
347 resource = new_resource(dev, index);
348 resource->size = 0;
349 gran = 0;
350 step = 1;
351 while ((moving & step) == 0) {
352 gran += 1;
353 step <<= 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000354 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000355 resource->gran = gran;
356 resource->align = gran;
357 resource->limit = moving | (step - 1);
358 resource->flags = type | IORESOURCE_PCI_BRIDGE |
359 IORESOURCE_BRIDGE;
Eric Biederman03acab62004-10-14 21:25:53 +0000360}
361
Eric Biederman8ca8d762003-04-22 19:02:15 +0000362static void pci_bridge_read_bases(struct device *dev)
363{
Eric Biederman03acab62004-10-14 21:25:53 +0000364 resource_t moving_base, moving_limit, moving;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000365
Myles Watson29cc9ed2009-07-02 18:56:24 +0000366 /* See if the bridge I/O resources are implemented. */
367 moving_base = ((u32) pci_moving_config8(dev, PCI_IO_BASE)) << 8;
368 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000369 ((u32) pci_moving_config16(dev, PCI_IO_BASE_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000370
Myles Watson29cc9ed2009-07-02 18:56:24 +0000371 moving_limit = ((u32) pci_moving_config8(dev, PCI_IO_LIMIT)) << 8;
372 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000373 ((u32) pci_moving_config16(dev, PCI_IO_LIMIT_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000374
375 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000376
Myles Watson29cc9ed2009-07-02 18:56:24 +0000377 /* Initialize the I/O space constraints on the current bus. */
378 pci_record_bridge_resource(dev, moving, PCI_IO_BASE, IORESOURCE_IO);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000379
Myles Watson29cc9ed2009-07-02 18:56:24 +0000380 /* See if the bridge prefmem resources are implemented. */
381 moving_base =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000382 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_BASE)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000383 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000384 ((resource_t) pci_moving_config32(dev, PCI_PREF_BASE_UPPER32)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000385
Myles Watson29cc9ed2009-07-02 18:56:24 +0000386 moving_limit =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000387 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_LIMIT)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000388 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000389 ((resource_t) pci_moving_config32(dev, PCI_PREF_LIMIT_UPPER32)) << 32;
Myles Watson032a9652009-05-11 22:24:53 +0000390
Eric Biederman03acab62004-10-14 21:25:53 +0000391 moving = moving_base & moving_limit;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000392 /* Initialize the prefetchable memory constraints on the current bus. */
393 pci_record_bridge_resource(dev, moving, PCI_PREF_MEMORY_BASE,
394 IORESOURCE_MEM | IORESOURCE_PREFETCH);
Myles Watson032a9652009-05-11 22:24:53 +0000395
Myles Watson29cc9ed2009-07-02 18:56:24 +0000396 /* See if the bridge mem resources are implemented. */
397 moving_base = ((u32) pci_moving_config16(dev, PCI_MEMORY_BASE)) << 16;
398 moving_limit = ((u32) pci_moving_config16(dev, PCI_MEMORY_LIMIT)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000399
400 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000401
Myles Watson29cc9ed2009-07-02 18:56:24 +0000402 /* Initialize the memory resources on the current bus. */
403 pci_record_bridge_resource(dev, moving, PCI_MEMORY_BASE,
404 IORESOURCE_MEM);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000405
Eric Biederman5cd81732004-03-11 15:01:31 +0000406 compact_resources(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000407}
408
Eric Biederman5899fd82003-04-24 06:25:08 +0000409void pci_dev_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000410{
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000411 pci_read_bases(dev, 6);
412 pci_get_rom_resource(dev, PCI_ROM_ADDRESS);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000413}
414
Eric Biederman5899fd82003-04-24 06:25:08 +0000415void pci_bus_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000416{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000417 pci_bridge_read_bases(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000418 pci_read_bases(dev, 2);
419 pci_get_rom_resource(dev, PCI_ROM_ADDRESS1);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000420}
421
Myles Watson29cc9ed2009-07-02 18:56:24 +0000422void pci_domain_read_resources(struct device *dev)
423{
424 struct resource *res;
425
426 /* Initialize the system-wide I/O space constraints. */
427 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
428 res->limit = 0xffffUL;
429 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
430 IORESOURCE_ASSIGNED;
431
432 /* Initialize the system-wide memory resources constraints. */
433 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
Furquan Shaikh871baf22020-03-12 17:51:24 -0700434 res->limit = (1ULL << cpu_phys_address_size()) - 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000435 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
436 IORESOURCE_ASSIGNED;
437}
438
Raul E Rangel5cb34e22020-05-04 16:41:22 -0600439void pci_domain_set_resources(struct device *dev)
440{
441 assign_resources(dev->link_list);
442}
443
Nico Huber730b2612020-05-20 00:32:50 +0200444static void pci_store_resource(const struct device *const dev,
445 const struct resource *const resource)
446{
447 unsigned long base_lo, base_hi;
448
449 base_lo = resource->base & 0xffffffff;
450 base_hi = (resource->base >> 32) & 0xffffffff;
451
452 /*
453 * Some chipsets allow us to set/clear the I/O bit
454 * (e.g. VIA 82C686A). So set it to be safe.
455 */
456 if (resource->flags & IORESOURCE_IO)
457 base_lo |= PCI_BASE_ADDRESS_SPACE_IO;
458
459 pci_write_config32(dev, resource->index, base_lo);
460 if (resource->flags & IORESOURCE_PCI64)
461 pci_write_config32(dev, resource->index + 4, base_hi);
462}
463
464static void pci_store_bridge_resource(const struct device *const dev,
465 struct resource *const resource)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000466{
Eric Biederman03acab62004-10-14 21:25:53 +0000467 resource_t base, end;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000468
Nico Huber730b2612020-05-20 00:32:50 +0200469 /*
470 * PCI bridges have no enable bit. They are disabled if the base of
471 * the range is greater than the limit. If the size is zero, disable
472 * by setting the base = limit and end = limit - 2^gran.
473 */
474 if (resource->size == 0) {
475 base = resource->limit;
476 end = resource->limit - (1 << resource->gran);
477 resource->base = base;
478 } else {
479 base = resource->base;
480 end = resource_end(resource);
481 }
482
483 if (resource->index == PCI_IO_BASE) {
484 /* Set the I/O ranges. */
485 pci_write_config8(dev, PCI_IO_BASE, base >> 8);
486 pci_write_config16(dev, PCI_IO_BASE_UPPER16, base >> 16);
487 pci_write_config8(dev, PCI_IO_LIMIT, end >> 8);
488 pci_write_config16(dev, PCI_IO_LIMIT_UPPER16, end >> 16);
489 } else if (resource->index == PCI_MEMORY_BASE) {
490 /* Set the memory range. */
491 pci_write_config16(dev, PCI_MEMORY_BASE, base >> 16);
492 pci_write_config16(dev, PCI_MEMORY_LIMIT, end >> 16);
493 } else if (resource->index == PCI_PREF_MEMORY_BASE) {
494 /* Set the prefetchable memory range. */
495 pci_write_config16(dev, PCI_PREF_MEMORY_BASE, base >> 16);
496 pci_write_config32(dev, PCI_PREF_BASE_UPPER32, base >> 32);
497 pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, end >> 16);
498 pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, end >> 32);
499 } else {
500 /* Don't let me think I stored the resource. */
501 resource->flags &= ~IORESOURCE_STORED;
502 printk(BIOS_ERR, "ERROR: invalid resource->index %lx\n", resource->index);
503 }
504}
505
506static void pci_set_resource(struct device *dev, struct resource *resource)
507{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000508 /* Make certain the resource has actually been assigned a value. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000509 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
Nico Huberf5312442020-05-20 01:02:18 +0200510 if (resource->flags & IORESOURCE_BRIDGE) {
511 /* If a bridge resource has no value assigned,
512 we can treat it like an empty resource. */
513 resource->size = 0;
514 } else {
515 printk(BIOS_ERR, "ERROR: %s %02lx %s size: 0x%010llx not "
516 "assigned\n", dev_path(dev), resource->index,
517 resource_type(resource), resource->size);
518 return;
519 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000520 }
521
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000522 /* If this resource is fixed don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000523 if (resource->flags & IORESOURCE_FIXED)
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000524 return;
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000525
Myles Watson29cc9ed2009-07-02 18:56:24 +0000526 /* If I have already stored this resource don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000527 if (resource->flags & IORESOURCE_STORED)
Eric Biederman5cd81732004-03-11 15:01:31 +0000528 return;
Eric Biederman5cd81732004-03-11 15:01:31 +0000529
Myles Watson29cc9ed2009-07-02 18:56:24 +0000530 /* If the resource is subtractive don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000531 if (resource->flags & IORESOURCE_SUBTRACTIVE)
Eric Biederman03acab62004-10-14 21:25:53 +0000532 return;
Eric Biederman03acab62004-10-14 21:25:53 +0000533
Myles Watson29cc9ed2009-07-02 18:56:24 +0000534 /* Only handle PCI memory and I/O resources for now. */
535 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Eric Biederman8ca8d762003-04-22 19:02:15 +0000536 return;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000537
Myles Watson29cc9ed2009-07-02 18:56:24 +0000538 /* Enable the resources in the command register. */
Eric Biederman03acab62004-10-14 21:25:53 +0000539 if (resource->size) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000540 if (resource->flags & IORESOURCE_MEM)
Eric Biederman03acab62004-10-14 21:25:53 +0000541 dev->command |= PCI_COMMAND_MEMORY;
Uwe Hermanne4870472010-11-04 23:23:47 +0000542 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000543 dev->command |= PCI_COMMAND_IO;
Felix Singer205b53e2020-09-07 15:21:21 +0200544 if (resource->flags & IORESOURCE_PCI_BRIDGE &&
545 CONFIG(PCI_SET_BUS_MASTER_PCI_BRIDGES))
Eric Biederman03acab62004-10-14 21:25:53 +0000546 dev->command |= PCI_COMMAND_MASTER;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000547 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000548
Myles Watson29cc9ed2009-07-02 18:56:24 +0000549 /* Now store the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000550 resource->flags |= IORESOURCE_STORED;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000551
Nico Huber730b2612020-05-20 00:32:50 +0200552 if (resource->flags & IORESOURCE_PCI_BRIDGE)
553 pci_store_bridge_resource(dev, resource);
554 else
555 pci_store_resource(dev, resource);
Uwe Hermanne4870472010-11-04 23:23:47 +0000556
Eric Biederman03acab62004-10-14 21:25:53 +0000557 report_resource_stored(dev, resource, "");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000558}
559
Eric Biederman5899fd82003-04-24 06:25:08 +0000560void pci_dev_set_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000561{
Myles Watsonc25cc112010-05-21 14:33:48 +0000562 struct resource *res;
Myles Watson894a3472010-06-09 22:41:35 +0000563 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000564 u8 line;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000565
Uwe Hermanne4870472010-11-04 23:23:47 +0000566 for (res = dev->resource_list; res; res = res->next)
Myles Watsonc25cc112010-05-21 14:33:48 +0000567 pci_set_resource(dev, res);
Uwe Hermanne4870472010-11-04 23:23:47 +0000568
Myles Watson894a3472010-06-09 22:41:35 +0000569 for (bus = dev->link_list; bus; bus = bus->next) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000570 if (bus->children)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000571 assign_resources(bus);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000572 }
573
Myles Watson29cc9ed2009-07-02 18:56:24 +0000574 /* Set a default latency timer. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000575 pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000576
Myles Watson29cc9ed2009-07-02 18:56:24 +0000577 /* Set a default secondary latency timer. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000578 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000579 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000580
Myles Watson29cc9ed2009-07-02 18:56:24 +0000581 /* Zero the IRQ settings. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000582 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Uwe Hermanne4870472010-11-04 23:23:47 +0000583 if (line)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000584 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
Uwe Hermanne4870472010-11-04 23:23:47 +0000585
Myles Watson29cc9ed2009-07-02 18:56:24 +0000586 /* Set the cache line size, so far 64 bytes is good for everyone. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000587 pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000588}
589
Eric Biedermane9a271e32003-09-02 03:36:25 +0000590void pci_dev_enable_resources(struct device *dev)
591{
Kyösti Mälkkicac02312019-06-30 08:40:04 +0300592 const struct pci_operations *ops = NULL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000593 u16 command;
Eric Biederman03acab62004-10-14 21:25:53 +0000594
Uwe Hermanne4870472010-11-04 23:23:47 +0000595 /* Set the subsystem vendor and device ID for mainboard devices. */
Kyösti Mälkkicac02312019-06-30 08:40:04 +0300596 if (dev->ops)
597 ops = dev->ops->ops_pci;
Eric Biedermandbec2d42004-10-21 10:44:08 +0000598 if (dev->on_mainboard && ops && ops->set_subsystem) {
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700599 if (CONFIG_SUBSYSTEM_VENDOR_ID)
600 dev->subsystem_vendor = CONFIG_SUBSYSTEM_VENDOR_ID;
Rizwan Qureshifd891292017-04-26 21:00:37 +0530601 else if (!dev->subsystem_vendor)
602 dev->subsystem_vendor = pci_read_config16(dev,
603 PCI_VENDOR_ID);
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700604 if (CONFIG_SUBSYSTEM_DEVICE_ID)
605 dev->subsystem_device = CONFIG_SUBSYSTEM_DEVICE_ID;
Rizwan Qureshifd891292017-04-26 21:00:37 +0530606 else if (!dev->subsystem_device)
607 dev->subsystem_device = pci_read_config16(dev,
608 PCI_DEVICE_ID);
609
Sven Schnelle91321022011-03-01 19:58:47 +0000610 printk(BIOS_DEBUG, "%s subsystem <- %04x/%04x\n",
611 dev_path(dev), dev->subsystem_vendor,
612 dev->subsystem_device);
613 ops->set_subsystem(dev, dev->subsystem_vendor,
614 dev->subsystem_device);
Eric Biederman03acab62004-10-14 21:25:53 +0000615 }
Eric Biedermane9a271e32003-09-02 03:36:25 +0000616 command = pci_read_config16(dev, PCI_COMMAND);
617 command |= dev->command;
Uwe Hermanne4870472010-11-04 23:23:47 +0000618
Myles Watson29cc9ed2009-07-02 18:56:24 +0000619 /* v3 has
620 * command |= (PCI_COMMAND_PARITY + PCI_COMMAND_SERR); // Error check.
621 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000622
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000623 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000624 pci_write_config16(dev, PCI_COMMAND, command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000625}
626
627void pci_bus_enable_resources(struct device *dev)
628{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000629 u16 ctrl;
630
Uwe Hermanne4870472010-11-04 23:23:47 +0000631 /*
632 * Enable I/O in command register if there is VGA card
Myles Watson29cc9ed2009-07-02 18:56:24 +0000633 * connected with (even it does not claim I/O resource).
634 */
Myles Watson894a3472010-06-09 22:41:35 +0000635 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
Li-Ta Lo515f6c72005-01-11 22:48:54 +0000636 dev->command |= PCI_COMMAND_IO;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000637 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +0000638 ctrl |= dev->link_list->bridge_ctrl;
Kyösti Mälkki382e2162019-09-21 16:19:32 +0300639 ctrl |= (PCI_BRIDGE_CTL_PARITY | PCI_BRIDGE_CTL_SERR); /* Error check. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000640 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000641 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
642
643 pci_dev_enable_resources(dev);
644}
645
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000646void pci_bus_reset(struct bus *bus)
647{
Uwe Hermanne4870472010-11-04 23:23:47 +0000648 u16 ctl;
649
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000650 ctl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
651 ctl |= PCI_BRIDGE_CTL_BUS_RESET;
652 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
653 mdelay(10);
Uwe Hermanne4870472010-11-04 23:23:47 +0000654
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000655 ctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
656 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
657 delay(1);
658}
659
Elyes HAOUAS88030b72018-09-20 17:26:10 +0200660void pci_dev_set_subsystem(struct device *dev, unsigned int vendor,
661 unsigned int device)
Eric Biederman03acab62004-10-14 21:25:53 +0000662{
Subrata Banik9514d472019-03-20 14:56:27 +0530663 uint8_t offset;
664
665 /* Header type */
666 switch (dev->hdr_type & 0x7f) {
667 case PCI_HEADER_TYPE_NORMAL:
668 offset = PCI_SUBSYSTEM_VENDOR_ID;
669 break;
670 case PCI_HEADER_TYPE_BRIDGE:
671 offset = pci_find_capability(dev, PCI_CAP_ID_SSVID);
672 if (!offset)
673 return;
674 offset += 4; /* Vendor ID at offset 4 */
675 break;
676 case PCI_HEADER_TYPE_CARDBUS:
677 offset = PCI_CB_SUBSYSTEM_VENDOR_ID;
678 break;
679 default:
680 return;
681 }
682
Subrata Banik4a0f0712019-03-20 14:29:47 +0530683 if (!vendor || !device) {
Subrata Banik9514d472019-03-20 14:56:27 +0530684 pci_write_config32(dev, offset,
Subrata Banik4a0f0712019-03-20 14:29:47 +0530685 pci_read_config32(dev, PCI_VENDOR_ID));
686 } else {
Subrata Banik9514d472019-03-20 14:56:27 +0530687 pci_write_config32(dev, offset,
Subrata Banik4a0f0712019-03-20 14:29:47 +0530688 ((device & 0xffff) << 16) | (vendor & 0xffff));
689 }
Eric Biederman03acab62004-10-14 21:25:53 +0000690}
691
Frans Hendriksb71181a2019-10-04 14:06:33 +0200692static int should_run_oprom(struct device *dev, struct rom_header *rom)
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300693{
694 static int should_run = -1;
695
Frans Hendriksb71181a2019-10-04 14:06:33 +0200696 if (CONFIG(VENDORCODE_ELTAN_VBOOT))
697 if (rom != NULL)
698 if (!verified_boot_should_run_oprom(rom))
699 return 0;
700
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300701 if (should_run >= 0)
702 return should_run;
703
Julius Wernercd49cce2019-03-05 16:53:33 -0800704 if (CONFIG(ALWAYS_RUN_OPROM)) {
Aaron Durbin10510252018-01-30 10:04:02 -0700705 should_run = 1;
706 return should_run;
707 }
708
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200709 /* Don't run VGA option ROMs, unless we have to print
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300710 * something on the screen before the kernel is loaded.
711 */
Furquan Shaikh0325dc62016-07-25 13:02:36 -0700712 should_run = display_init_required();
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300713
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200714 if (!should_run)
715 printk(BIOS_DEBUG, "Not running VGA Option ROM\n");
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300716 return should_run;
717}
718
719static int should_load_oprom(struct device *dev)
720{
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300721 /* If S3_VGA_ROM_RUN is disabled, skip running VGA option
722 * ROMs when coming out of an S3 resume.
723 */
Julius Wernercd49cce2019-03-05 16:53:33 -0800724 if (!CONFIG(S3_VGA_ROM_RUN) && acpi_is_wakeup_s3() &&
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300725 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
726 return 0;
Julius Wernercd49cce2019-03-05 16:53:33 -0800727 if (CONFIG(ALWAYS_LOAD_OPROM))
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300728 return 1;
Frans Hendriksb71181a2019-10-04 14:06:33 +0200729 if (should_run_oprom(dev, NULL))
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300730 return 1;
731
732 return 0;
733}
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300734
Kyösti Mälkki0f300632020-12-19 23:43:56 +0200735static void oprom_pre_graphics_stall(void)
736{
Paul Menzelc4062c72021-02-11 10:43:14 +0100737 if (CONFIG_PRE_GRAPHICS_DELAY_MS)
738 mdelay(CONFIG_PRE_GRAPHICS_DELAY_MS);
Kyösti Mälkki0f300632020-12-19 23:43:56 +0200739}
740
Uwe Hermanne4870472010-11-04 23:23:47 +0000741/** Default handler: only runs the relevant PCI BIOS. */
Li-Ta Lo883b8792005-01-10 23:16:22 +0000742void pci_dev_init(struct device *dev)
743{
744 struct rom_header *rom, *ram;
745
Julius Wernercd49cce2019-03-05 16:53:33 -0800746 if (!CONFIG(VGA_ROM_RUN))
Aaron Durbinfbed9a52018-01-30 09:58:51 -0700747 return;
748
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100749 /* Only execute VGA ROMs. */
750 if (((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
Myles Watson17aeeca2009-10-07 18:41:08 +0000751 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000752
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300753 if (!should_load_oprom(dev))
Stefan Reinauer74a0efe2012-03-30 17:10:49 -0700754 return;
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700755 timestamp_add_now(TS_OPROM_INITIALIZE);
Aaron Durbince872cb2013-03-28 15:59:19 -0500756
757 rom = pci_rom_probe(dev);
758 if (rom == NULL)
759 return;
760
761 ram = pci_rom_load(dev, rom);
762 if (ram == NULL)
763 return;
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700764 timestamp_add_now(TS_OPROM_COPY_END);
Aaron Durbince872cb2013-03-28 15:59:19 -0500765
Frans Hendriksb71181a2019-10-04 14:06:33 +0200766 if (!should_run_oprom(dev, rom))
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300767 return;
768
Kyösti Mälkki0f300632020-12-19 23:43:56 +0200769 /* Wait for any configured pre-graphics delay */
770 oprom_pre_graphics_stall();
771
Stefan Reinauerd98cf5b2008-08-01 11:25:41 +0000772 run_bios(dev, (unsigned long)ram);
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +0200773
Kyösti Mälkkiab56b3b2013-11-28 16:44:51 +0200774 gfx_set_init_done(1);
775 printk(BIOS_DEBUG, "VGA Option ROM was run\n");
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700776 timestamp_add_now(TS_OPROM_END);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000777}
Li-Ta Lo883b8792005-01-10 23:16:22 +0000778
Li-Ta Loe5266692004-03-23 21:28:05 +0000779/** Default device operation for PCI devices */
Subrata Banikffc790b2017-12-11 10:29:49 +0530780struct pci_operations pci_dev_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000781 .set_subsystem = pci_dev_set_subsystem,
782};
783
Eric Biederman8ca8d762003-04-22 19:02:15 +0000784struct device_operations default_pci_ops_dev = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000785 .read_resources = pci_dev_read_resources,
786 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000787 .enable_resources = pci_dev_enable_resources,
Julius Wernercd49cce2019-03-05 16:53:33 -0800788#if CONFIG(HAVE_ACPI_TABLES)
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200789 .write_acpi_tables = pci_rom_write_acpi_tables,
Nico Huber68680dd2020-03-31 17:34:52 +0200790 .acpi_fill_ssdt = pci_rom_ssdt,
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200791#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000792 .init = pci_dev_init,
Uwe Hermanne4870472010-11-04 23:23:47 +0000793 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000794};
Li-Ta Loe5266692004-03-23 21:28:05 +0000795
796/** Default device operations for PCI bridges */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000797struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000798 .read_resources = pci_bus_read_resources,
799 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000800 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000801 .scan_bus = pci_scan_bridge,
Uwe Hermanne4870472010-11-04 23:23:47 +0000802 .reset_bus = pci_bus_reset,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000803};
Li-Ta Loe5266692004-03-23 21:28:05 +0000804
Tim Wawrzynczakdbcf7b12020-05-13 16:15:08 -0600805/** Default device operations for PCI devices marked 'hidden' */
806static struct device_operations default_hidden_pci_ops_dev = {
807 .read_resources = noop_read_resources,
808 .set_resources = noop_set_resources,
809 .scan_bus = scan_static_bus,
810};
811
Li-Ta Loe5266692004-03-23 21:28:05 +0000812/**
Nico Huber061b9052019-09-21 15:58:23 +0200813 * Check for compatibility to route legacy VGA cycles through a bridge.
814 *
815 * Originally, when decoding i/o ports for legacy VGA cycles, bridges
816 * should only consider the 10 least significant bits of the port address.
817 * This means all VGA registers were aliased every 1024 ports!
818 * e.g. 0x3b0 was also decoded as 0x7b0, 0xbb0 etc.
819 *
820 * To avoid this mess, a bridge control bit (VGA16) was introduced in
821 * 2003 to enable decoding of 16-bit port addresses. As we don't want
822 * to make this any more complex for now, we use this bit if possible
823 * and only warn if it's not supported (in set_vga_bridge_bits()).
824 */
825static void pci_bridge_vga_compat(struct bus *const bus)
826{
827 uint16_t bridge_ctrl;
828
829 bridge_ctrl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
830
831 /* Ensure VGA decoding is disabled during probing (it should
832 be by default, but we run blobs nowadays) */
833 bridge_ctrl &= ~PCI_BRIDGE_CTL_VGA;
834 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, bridge_ctrl);
835
836 /* If the upstream bridge doesn't support VGA16, we don't have to check */
837 bus->no_vga16 |= bus->dev->bus->no_vga16;
838 if (bus->no_vga16)
839 return;
840
841 /* Test if we can enable 16-bit decoding */
842 bridge_ctrl |= PCI_BRIDGE_CTL_VGA16;
843 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, bridge_ctrl);
844 bridge_ctrl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
845
846 bus->no_vga16 = !(bridge_ctrl & PCI_BRIDGE_CTL_VGA16);
847}
848
849/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000850 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000851 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000852 * This function is a heuristic to detect which type of bus is downstream
853 * of a PCI-to-PCI bridge. This functions by looking for various capability
854 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
855 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000856 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000857 * When only a PCI-Express capability is found the type is examined to see
858 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000859 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000860 * @param dev Pointer to the device structure of the bridge.
861 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000862 */
Aaron Durbinc30d9132017-08-07 16:55:43 -0600863static struct device_operations *get_pci_bridge_ops(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000864{
Julius Wernercd49cce2019-03-05 16:53:33 -0800865#if CONFIG(PCIX_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800866 unsigned int pcixpos;
867 pcixpos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
868 if (pcixpos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000869 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000870 return &default_pcix_ops_bus;
871 }
872#endif
Julius Wernercd49cce2019-03-05 16:53:33 -0800873#if CONFIG(PCIEXP_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800874 unsigned int pciexpos;
875 pciexpos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
876 if (pciexpos) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000877 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800878 flags = pci_read_config16(dev, pciexpos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000879 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000880 case PCI_EXP_TYPE_ROOT_PORT:
881 case PCI_EXP_TYPE_UPSTREAM:
882 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000883 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000884 dev_path(dev));
Arthur Heymans24837e72021-03-11 20:34:05 +0100885 if (CONFIG(PCIEXP_HOTPLUG)) {
886 u16 sltcap;
887 sltcap = pci_read_config16(dev, pciexpos + PCI_EXP_SLTCAP);
888 if (sltcap & PCI_EXP_SLTCAP_HPC) {
889 printk(BIOS_DEBUG, "%s hot-plug capable\n",
890 dev_path(dev));
891 return &default_pciexp_hotplug_ops_bus;
892 }
Jeremy Sollercf2ac542019-10-09 21:40:36 -0600893 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000894 return &default_pciexp_ops_bus;
895 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +0000896 printk(BIOS_DEBUG, "%s subordinate PCI\n",
897 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000898 return &default_pci_ops_bus;
899 default:
900 break;
901 }
902 }
903#endif
904 return &default_pci_ops_bus;
905}
906
907/**
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700908 * Check if a device id matches a PCI driver entry.
909 *
910 * The driver entry can either point at a zero terminated array of acceptable
911 * device IDs, or include a single device ID.
912 *
Martin Roth98b698c2015-01-06 21:02:52 -0700913 * @param driver pointer to the PCI driver entry being checked
914 * @param device_id PCI device ID of the device being matched
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700915 */
916static int device_id_match(struct pci_driver *driver, unsigned short device_id)
917{
918 if (driver->devices) {
919 unsigned short check_id;
920 const unsigned short *device_list = driver->devices;
921 while ((check_id = *device_list++) != 0)
922 if (check_id == device_id)
923 return 1;
924 }
925
926 return (driver->device == device_id);
927}
928
929/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000930 * Set up PCI device operation.
931 *
932 * Check if it already has a driver. If not, use find_device_operations(),
933 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +0000934 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000935 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +0000936 * @see pci_drivers
937 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000938static void set_pci_ops(struct device *dev)
939{
940 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +0000941
Uwe Hermanne4870472010-11-04 23:23:47 +0000942 if (dev->ops)
943 return;
944
945 /*
946 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +0000947 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000948 */
Aaron Durbin03758152015-09-03 17:23:08 -0500949 for (driver = &_pci_drivers[0]; driver != &_epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000950 if ((driver->vendor == dev->vendor) &&
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700951 device_id_match(driver, dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +0000952 dev->ops = (struct device_operations *)driver->ops;
Nico Huber7e3e1ea2020-10-12 16:25:40 +0200953 break;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000954 }
955 }
Li-Ta Loe5266692004-03-23 21:28:05 +0000956
Nico Huber7e3e1ea2020-10-12 16:25:40 +0200957 if (dev->ops) {
958 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n", dev_path(dev),
959 driver->vendor, driver->device, (driver->ops->scan_bus ? "bus " : ""));
960 return;
961 }
962
Uwe Hermanne4870472010-11-04 23:23:47 +0000963 /* If I don't have a specific driver use the default operations. */
964 switch (dev->hdr_type & 0x7f) { /* Header type */
965 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +0000966 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
967 goto bad;
968 dev->ops = &default_pci_ops_dev;
969 break;
970 case PCI_HEADER_TYPE_BRIDGE:
971 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
972 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000973 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000974 break;
Julius Wernercd49cce2019-03-05 16:53:33 -0800975#if CONFIG(CARDBUS_PLUGIN_SUPPORT)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000976 case PCI_HEADER_TYPE_CARDBUS:
977 dev->ops = &default_cardbus_ops_bus;
978 break;
979#endif
Felix Singerc96ee7e2021-01-07 06:14:27 +0000980 default:
Uwe Hermanne4870472010-11-04 23:23:47 +0000981bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000982 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000983 printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "
984 "header type %02x, ignoring.\n", dev_path(dev),
985 dev->vendor, dev->device,
986 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +0000987 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000988 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000989}
990
991/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000992 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +0000993 *
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200994 * Given a PCI bus structure and a devfn number, find the device structure
995 * corresponding to the devfn, if present. Then move the device structure
996 * as the last child on the bus.
Li-Ta Loe5266692004-03-23 21:28:05 +0000997 *
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200998 * @param bus Pointer to the bus structure.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000999 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001000 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +00001001 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001002 */
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001003static struct device *pci_scan_get_dev(struct bus *bus, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001004{
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001005 struct device *dev, **prev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001006
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001007 prev = &bus->children;
1008 for (dev = bus->children; dev; dev = dev->sibling) {
Duncan Lauriebf696222020-10-18 15:10:00 -07001009 if (dev->path.type == DEVICE_PATH_PCI && dev->path.pci.devfn == devfn) {
1010 /* Unlink from the list. */
1011 *prev = dev->sibling;
1012 dev->sibling = NULL;
1013 break;
Eric Biedermanad1b35a2003-10-14 02:36:51 +00001014 }
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001015 prev = &dev->sibling;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001016 }
Myles Watson29cc9ed2009-07-02 18:56:24 +00001017
Uwe Hermanne4870472010-11-04 23:23:47 +00001018 /*
1019 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +00001020 * bus. When the list of devices was formed we removed all of the
1021 * parents children, and now we are interleaving static and dynamic
1022 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001023 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001024 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +00001025 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +00001026
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001027 /* Find the last child on the bus. */
1028 for (child = bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +00001029 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +00001030
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001031 /* Place the device as last on the bus. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001032 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +00001033 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001034 else
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001035 bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001036 }
1037
Eric Biederman8ca8d762003-04-22 19:02:15 +00001038 return dev;
1039}
1040
Myles Watson032a9652009-05-11 22:24:53 +00001041/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001042 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +00001043 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001044 * Determine the existence of a given PCI device. Allocate a new struct device
1045 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001046 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001047 * @param dev Pointer to the dev structure.
1048 * @param bus Pointer to the bus structure.
1049 * @param devfn A device/function number to look at.
1050 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001051 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001052struct device *pci_probe_dev(struct device *dev, struct bus *bus,
1053 unsigned int devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001054{
Myles Watson29cc9ed2009-07-02 18:56:24 +00001055 u32 id, class;
1056 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001057
Myles Watson29cc9ed2009-07-02 18:56:24 +00001058 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001059 if (!dev) {
1060 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +00001061
Myles Watson29cc9ed2009-07-02 18:56:24 +00001062 dummy.bus = bus;
1063 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +00001064 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +00001065
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001066 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +00001067 /*
1068 * Have we found something? Some broken boards return 0 if a
1069 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001070 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001071 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +00001072 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +00001073
Stefan Reinauer7355c752010-04-02 16:30:25 +00001074 if ((id == 0x00000000) || (id == 0x0000ffff) ||
1075 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001076 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
1077 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001078 return NULL;
1079 }
1080 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001081 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +00001082 /*
1083 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +00001084 * specific operations this operations we will disable the
1085 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +00001086 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001087 * This is geared toward devices that have subfunctions
1088 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +00001089 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001090 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +00001091 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001092 */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001093 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001094 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001095 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +00001096
Myles Watson29cc9ed2009-07-02 18:56:24 +00001097 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001098 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +00001099
Uwe Hermanne4870472010-11-04 23:23:47 +00001100 /*
1101 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +00001102 * this is because we have already disabled the device. But
1103 * this also handles optional devices that may not always
1104 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001105 */
1106 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001107 if ((id == 0xffffffff) || (id == 0x00000000) ||
1108 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001109 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001110 printk(BIOS_INFO, "PCI: Static device %s not "
1111 "found, disabling it.\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001112 dev->enabled = 0;
1113 }
1114 return dev;
1115 }
1116 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001117
Myles Watson29cc9ed2009-07-02 18:56:24 +00001118 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001119 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
1120 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +00001121
Myles Watson29cc9ed2009-07-02 18:56:24 +00001122 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001123 dev->vendor = id & 0xffff;
1124 dev->device = (id >> 16) & 0xffff;
1125 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001126
1127 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001128 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +00001129
Myles Watson29cc9ed2009-07-02 18:56:24 +00001130 /* Architectural/System devices always need to be bus masters. */
Felix Singerd3d0fd72020-09-07 16:15:14 +02001131 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM &&
1132 CONFIG(PCI_ALLOW_BUS_MASTER_ANY_DEVICE))
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001133 dev->command |= PCI_COMMAND_MASTER;
Uwe Hermanne4870472010-11-04 23:23:47 +00001134
1135 /*
1136 * Look at the vendor and device ID, or at least the header type and
Myles Watson29cc9ed2009-07-02 18:56:24 +00001137 * class and figure out which set of configuration methods to use.
1138 * Unless we already have some PCI ops.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001139 */
1140 set_pci_ops(dev);
1141
Myles Watson29cc9ed2009-07-02 18:56:24 +00001142 /* Now run the magic enable/disable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001143 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001144 dev->ops->enable(dev);
Myles Watson032a9652009-05-11 22:24:53 +00001145
Myles Watson29cc9ed2009-07-02 18:56:24 +00001146 /* Display the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001147 printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
1148 dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
1149 dev->ops ? "" : " No operations");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001150
1151 return dev;
1152}
1153
Myles Watson032a9652009-05-11 22:24:53 +00001154/**
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001155 * Test for match between romstage and ramstage device instance.
1156 *
1157 * @param dev Pointer to the device structure.
1158 * @param sdev Simple device model identifier, created with PCI_DEV().
1159 * @return Non-zero if bus:dev.fn of device matches.
1160 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001161unsigned int pci_match_simple_dev(struct device *dev, pci_devfn_t sdev)
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001162{
1163 return dev->bus->secondary == PCI_DEV2SEGBUS(sdev) &&
1164 dev->path.pci.devfn == PCI_DEV2DEVFN(sdev);
1165}
1166
1167/**
Tim Wawrzynczakdbcf7b12020-05-13 16:15:08 -06001168 * PCI devices that are marked as "hidden" do not get probed. However, the same
1169 * initialization logic is still performed as if it were. This is useful when
1170 * devices would like to be described in the devicetree.cb file, and/or present
1171 * static PCI resources to the allocator, but the platform firmware hides the
1172 * device (makes the device invisible to PCI enumeration) before PCI enumeration
1173 * takes place.
1174 *
1175 * The expected semantics of PCI devices marked as 'hidden':
1176 * 1) The device is actually present under the specified BDF
1177 * 2) The device config space can still be accessed somehow, but the Vendor ID
1178 * indicates there is no device there (it reads as 0xffffffff).
1179 * 3) The device may still consume PCI resources. Typically, these would have
1180 * been hardcoded elsewhere.
1181 *
1182 * @param dev Pointer to the device structure.
1183 */
1184static void pci_scan_hidden_device(struct device *dev)
1185{
1186 if (dev->chip_ops && dev->chip_ops->enable_dev)
1187 dev->chip_ops->enable_dev(dev);
1188
1189 /*
1190 * If chip_ops->enable_dev did not set dev->ops, then set to a default
1191 * .ops, because PCI enumeration is effectively being skipped, therefore
1192 * no PCI driver will bind to this device. However, children may want to
1193 * be enumerated, so this provides scan_static_bus for the .scan_bus
1194 * callback.
1195 */
1196 if (dev->ops == NULL)
1197 dev->ops = &default_hidden_pci_ops_dev;
1198
1199 if (dev->ops->enable)
1200 dev->ops->enable(dev);
1201
1202 /* Display the device almost as if it were probed normally */
1203 printk(BIOS_DEBUG, "%s [0000/%04x] hidden%s\n", dev_path(dev),
1204 dev->device, dev->ops ? "" : " No operations");
1205}
1206
1207/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001208 * Scan a PCI bus.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001209 *
Li-Ta Loe5266692004-03-23 21:28:05 +00001210 * Determine the existence of devices and bridges on a PCI bus. If there are
1211 * bridges on the bus, recursively scan the buses behind the bridges.
1212 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001213 * @param bus Pointer to the bus structure.
1214 * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1215 * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001216 */
Martin Roth38ddbfb2019-10-23 21:41:00 -06001217void pci_scan_bus(struct bus *bus, unsigned int min_devfn,
1218 unsigned int max_devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001219{
1220 unsigned int devfn;
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001221 struct device *dev, **prev;
1222 int once = 0;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001223
Elyes HAOUASf984aec2021-01-16 17:29:17 +01001224 printk(BIOS_DEBUG, "PCI: %s for bus %02x\n", __func__, bus->secondary);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001225
Uwe Hermanne4870472010-11-04 23:23:47 +00001226 /* Maximum sane devfn is 0xFF. */
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001227 if (max_devfn > 0xff) {
Elyes HAOUASf984aec2021-01-16 17:29:17 +01001228 printk(BIOS_ERR, "PCI: %s limits devfn %x - devfn %x\n",
1229 __func__, min_devfn, max_devfn);
1230 printk(BIOS_ERR, "PCI: %s upper limit too big. Using 0xff.\n", __func__);
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001231 max_devfn=0xff;
1232 }
1233
Eric Biederman8ca8d762003-04-22 19:02:15 +00001234 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001235
1236 /*
1237 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001238 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001239 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001240 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Ronald G. Minnich466ca2c2019-10-22 02:02:24 +00001241 if (CONFIG(MINIMAL_PCI_SCANNING)) {
1242 dev = pcidev_path_behind(bus, devfn);
1243 if (!dev || !dev->mandatory)
1244 continue;
1245 }
1246
Uwe Hermanne4870472010-11-04 23:23:47 +00001247 /* First thing setup the device structure. */
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001248 dev = pci_scan_get_dev(bus, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001249
Tim Wawrzynczakdbcf7b12020-05-13 16:15:08 -06001250 /* Devices marked 'hidden' do not get probed */
1251 if (dev && dev->hidden) {
1252 pci_scan_hidden_device(dev);
1253
1254 /* Skip pci_probe_dev, go to next devfn */
1255 continue;
1256 }
1257
Myles Watson29cc9ed2009-07-02 18:56:24 +00001258 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001259 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001260
Uwe Hermanne4870472010-11-04 23:23:47 +00001261 /*
1262 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001263 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001264 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001265 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001266 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001267 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001268 devfn += 0x07;
1269 }
1270 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001271
Eric Biederman8ca8d762003-04-22 19:02:15 +00001272 post_code(0x25);
1273
Uwe Hermanne4870472010-11-04 23:23:47 +00001274 /*
Elyes HAOUAS0ce74162021-01-16 14:43:49 +01001275 * Warn if any leftover static devices are found.
Uwe Hermanne4870472010-11-04 23:23:47 +00001276 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001277 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001278
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001279 prev = &bus->children;
1280 for (dev = bus->children; dev; dev = dev->sibling) {
Duncan Lauriebf696222020-10-18 15:10:00 -07001281
1282 /*
1283 * If static device is not PCI then enable it here and don't
1284 * treat it as a leftover device.
1285 */
1286 if (dev->path.type != DEVICE_PATH_PCI) {
1287 enable_static_device(dev);
1288 continue;
1289 }
1290
Tim Wawrzynczakdbcf7b12020-05-13 16:15:08 -06001291 /*
1292 * The device is only considered leftover if it is not hidden
1293 * and it has a Vendor ID of 0 (the default for a device that
1294 * could not be probed).
1295 */
1296 if (dev->vendor != 0 || dev->hidden) {
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001297 prev = &dev->sibling;
1298 continue;
1299 }
1300
1301 /* Unlink it from list. */
1302 *prev = dev->sibling;
1303
1304 if (!once++)
1305 printk(BIOS_WARNING, "PCI: Leftover static devices:\n");
1306 printk(BIOS_WARNING, "%s\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001307 }
1308
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001309 if (once)
1310 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
1311
Uwe Hermanne4870472010-11-04 23:23:47 +00001312 /*
1313 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001314 * scan the bus behind that child.
1315 */
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001316
Kyösti Mälkki2d2367c2015-02-20 21:28:31 +02001317 scan_bridges(bus);
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001318
Uwe Hermanne4870472010-11-04 23:23:47 +00001319 /*
1320 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001321 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001322 * Return how far we've got finding sub-buses.
1323 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001324 post_code(0x55);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001325}
1326
Kyösti Mälkki33452402015-02-23 06:58:26 +02001327typedef enum {
1328 PCI_ROUTE_CLOSE,
1329 PCI_ROUTE_SCAN,
1330 PCI_ROUTE_FINAL,
1331} scan_state;
1332
1333static void pci_bridge_route(struct bus *link, scan_state state)
1334{
1335 struct device *dev = link->dev;
1336 struct bus *parent = dev->bus;
1337 u32 reg, buses = 0;
1338
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001339 if (state == PCI_ROUTE_SCAN) {
1340 link->secondary = parent->subordinate + 1;
Jeremy Sollercf2ac542019-10-09 21:40:36 -06001341 link->subordinate = link->secondary + dev->hotplug_buses;
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001342 }
1343
Kyösti Mälkki33452402015-02-23 06:58:26 +02001344 if (state == PCI_ROUTE_CLOSE) {
1345 buses |= 0xfeff << 8;
1346 } else if (state == PCI_ROUTE_SCAN) {
Timothy Pearson7d8a4782015-10-24 20:34:57 -05001347 buses |= parent->secondary & 0xff;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001348 buses |= ((u32) link->secondary & 0xff) << 8;
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001349 buses |= 0xff << 16; /* MAX PCI_BUS number here */
Kyösti Mälkki33452402015-02-23 06:58:26 +02001350 } else if (state == PCI_ROUTE_FINAL) {
1351 buses |= parent->secondary & 0xff;
1352 buses |= ((u32) link->secondary & 0xff) << 8;
1353 buses |= ((u32) link->subordinate & 0xff) << 16;
1354 }
1355
1356 if (state == PCI_ROUTE_SCAN) {
1357 /* Clear all status bits and turn off memory, I/O and master enables. */
1358 link->bridge_cmd = pci_read_config16(dev, PCI_COMMAND);
1359 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1360 pci_write_config16(dev, PCI_STATUS, 0xffff);
1361 }
1362
1363 /*
1364 * Configure the bus numbers for this bridge: the configuration
1365 * transactions will not be propagated by the bridge if it is not
1366 * correctly configured.
1367 */
1368
1369 reg = pci_read_config32(dev, PCI_PRIMARY_BUS);
1370 reg &= 0xff000000;
1371 reg |= buses;
1372 pci_write_config32(dev, PCI_PRIMARY_BUS, reg);
1373
1374 if (state == PCI_ROUTE_FINAL) {
1375 pci_write_config16(dev, PCI_COMMAND, link->bridge_cmd);
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001376 parent->subordinate = link->subordinate;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001377 }
1378}
1379
Li-Ta Loe5266692004-03-23 21:28:05 +00001380/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001381 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001382 *
1383 * Determine the existence of buses behind the bridge. Set up the bridge
1384 * according to the result of the scan.
1385 *
1386 * This function is the default scan_bus() method for PCI bridge devices.
1387 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001388 * @param dev Pointer to the bridge device.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001389 * @param do_scan_bus TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +00001390 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001391void do_pci_scan_bridge(struct device *dev,
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001392 void (*do_scan_bus) (struct bus * bus,
Martin Roth38ddbfb2019-10-23 21:41:00 -06001393 unsigned int min_devfn,
1394 unsigned int max_devfn))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001395{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001396 struct bus *bus;
Eric Biederman83b991a2003-10-11 06:20:25 +00001397
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001398 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001399
Myles Watson894a3472010-06-09 22:41:35 +00001400 if (dev->link_list == NULL) {
1401 struct bus *link;
1402 link = malloc(sizeof(*link));
1403 if (link == NULL)
1404 die("Couldn't allocate a link!\n");
1405 memset(link, 0, sizeof(*link));
1406 link->dev = dev;
1407 dev->link_list = link;
1408 }
1409
1410 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001411
Nico Huber061b9052019-09-21 15:58:23 +02001412 pci_bridge_vga_compat(bus);
1413
Kyösti Mälkki33452402015-02-23 06:58:26 +02001414 pci_bridge_route(bus, PCI_ROUTE_SCAN);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001415
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001416 do_scan_bus(bus, 0x00, 0xff);
Kyösti Mälkki33452402015-02-23 06:58:26 +02001417
1418 pci_bridge_route(bus, PCI_ROUTE_FINAL);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001419}
Li-Ta Loe5266692004-03-23 21:28:05 +00001420
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001421/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001422 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001423 *
1424 * Determine the existence of buses behind the bridge. Set up the bridge
1425 * according to the result of the scan.
1426 *
1427 * This function is the default scan_bus() method for PCI bridge devices.
1428 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001429 * @param dev Pointer to the bridge device.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001430 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001431void pci_scan_bridge(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001432{
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001433 do_pci_scan_bridge(dev, pci_scan_bus);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001434}
1435
Myles Watson29cc9ed2009-07-02 18:56:24 +00001436/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001437 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001438 *
1439 * This function is the default scan_bus() method for PCI domains.
1440 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001441 * @param dev Pointer to the domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001442 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001443void pci_domain_scan_bus(struct device *dev)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001444{
Kyösti Mälkki6f370172015-03-19 15:26:52 +02001445 struct bus *link = dev->link_list;
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001446 pci_scan_bus(link, PCI_DEVFN(0, 0), 0xff);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001447}
1448
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001449/**
1450 * Take an INT_PIN number (0, 1 - 4) and convert
1451 * it to a string ("NO PIN", "PIN A" - "PIN D")
1452 *
1453 * @param pin PCI Interrupt Pin number (0, 1 - 4)
1454 * @return A string corresponding to the pin number or "Invalid"
1455 */
1456const char *pin_to_str(int pin)
1457{
1458 const char *str[5] = {
1459 "NO PIN",
1460 "PIN A",
1461 "PIN B",
1462 "PIN C",
1463 "PIN D",
1464 };
1465
1466 if (pin >= 0 && pin <= 4)
1467 return str[pin];
1468 else
1469 return "Invalid PIN, not 0 - 4";
1470}
1471
1472/**
1473 * Get the PCI INT_PIN swizzle for a device defined as:
1474 * pin_parent = (pin_child + devn_child) % 4 + 1
1475 * where PIN A = 1 ... PIN_D = 4
1476 *
1477 * Given a PCI device structure 'dev', find the interrupt pin
1478 * that will be triggered on its parent bridge device when
1479 * generating an interrupt. For example: Device 1:3.2 may
1480 * use INT_PIN A but will trigger PIN D on its parent bridge
1481 * device. In this case, this function will return 4 (PIN D).
1482 *
1483 * @param dev A PCI device structure to swizzle interrupt pins for
Martin Roth32bc6b62015-01-04 16:54:35 -07001484 * @param *parent_bridge The PCI device structure for the bridge
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001485 * device 'dev' is attached to
1486 * @return The interrupt pin number (1 - 4) that 'dev' will
1487 * trigger when generating an interrupt
1488 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001489static int swizzle_irq_pins(struct device *dev, struct device **parent_bridge)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001490{
Aaron Durbinc30d9132017-08-07 16:55:43 -06001491 struct device *parent; /* Our current device's parent device */
1492 struct device *child; /* The child device of the parent */
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001493 uint8_t parent_bus = 0; /* Parent Bus number */
1494 uint16_t parent_devfn = 0; /* Parent Device and Function number */
1495 uint16_t child_devfn = 0; /* Child Device and Function number */
1496 uint8_t swizzled_pin = 0; /* Pin swizzled across a bridge */
1497
1498 /* Start with PIN A = 0 ... D = 3 */
1499 swizzled_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN) - 1;
1500
1501 /* While our current device has parent devices */
1502 child = dev;
1503 for (parent = child->bus->dev; parent; parent = parent->bus->dev) {
1504 parent_bus = parent->bus->secondary;
1505 parent_devfn = parent->path.pci.devfn;
1506 child_devfn = child->path.pci.devfn;
1507
1508 /* Swizzle the INT_PIN for any bridges not on root bus */
1509 swizzled_pin = (PCI_SLOT(child_devfn) + swizzled_pin) % 4;
1510 printk(BIOS_SPEW, "\tWith INT_PIN swizzled to %s\n"
1511 "\tAttached to bridge device %01X:%02Xh.%02Xh\n",
1512 pin_to_str(swizzled_pin + 1), parent_bus,
1513 PCI_SLOT(parent_devfn), PCI_FUNC(parent_devfn));
1514
1515 /* Continue until we find the root bus */
1516 if (parent_bus > 0) {
1517 /*
1518 * We will go on to the next parent so this parent
1519 * becomes the child
1520 */
1521 child = parent;
1522 continue;
1523 } else {
1524 /*
1525 * Found the root bridge device,
1526 * fill in the structure and exit
1527 */
1528 *parent_bridge = parent;
1529 break;
1530 }
1531 }
1532
1533 /* End with PIN A = 1 ... D = 4 */
1534 return swizzled_pin + 1;
1535}
1536
1537/**
1538 * Given a device structure 'dev', find its interrupt pin
1539 * and its parent bridge 'parent_bdg' device structure.
1540 * If it is behind a bridge, it will return the interrupt
1541 * pin number (1 - 4) of the parent bridge that the device
1542 * interrupt pin has been swizzled to, otherwise it will
1543 * return the interrupt pin that is programmed into the
1544 * PCI config space of the target device. If 'dev' is
1545 * behind a bridge, it will fill in 'parent_bdg' with the
1546 * device structure of the bridge it is behind, otherwise
1547 * it will copy 'dev' into 'parent_bdg'.
1548 *
1549 * @param dev A PCI device structure to get interrupt pins for.
1550 * @param *parent_bdg The PCI device structure for the bridge
1551 * device 'dev' is attached to.
1552 * @return The interrupt pin number (1 - 4) that 'dev' will
1553 * trigger when generating an interrupt.
1554 * Errors: -1 is returned if the device is not enabled
1555 * -2 is returned if a parent bridge could not be found.
1556 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001557int get_pci_irq_pins(struct device *dev, struct device **parent_bdg)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001558{
1559 uint8_t bus = 0; /* The bus this device is on */
1560 uint16_t devfn = 0; /* This device's device and function numbers */
1561 uint8_t int_pin = 0; /* Interrupt pin used by the device */
1562 uint8_t target_pin = 0; /* Interrupt pin we want to assign an IRQ to */
1563
1564 /* Make sure this device is enabled */
1565 if (!(dev->enabled && (dev->path.type == DEVICE_PATH_PCI)))
1566 return -1;
1567
1568 bus = dev->bus->secondary;
1569 devfn = dev->path.pci.devfn;
1570
1571 /* Get and validate the interrupt pin used. Only 1-4 are allowed */
1572 int_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN);
1573 if (int_pin < 1 || int_pin > 4)
1574 return -1;
1575
1576 printk(BIOS_SPEW, "PCI IRQ: Found device %01X:%02X.%02X using %s\n",
1577 bus, PCI_SLOT(devfn), PCI_FUNC(devfn), pin_to_str(int_pin));
1578
1579 /* If this device is on a bridge, swizzle its INT_PIN */
1580 if (bus) {
1581 /* Swizzle its INT_PINs */
1582 target_pin = swizzle_irq_pins(dev, parent_bdg);
1583
1584 /* Make sure the swizzle returned valid structures */
1585 if (parent_bdg == NULL) {
1586 printk(BIOS_WARNING,
1587 "Warning: Could not find parent bridge for this device!\n");
1588 return -2;
1589 }
1590 } else { /* Device is not behind a bridge */
1591 target_pin = int_pin; /* Return its own interrupt pin */
1592 *parent_bdg = dev; /* Return its own structure */
1593 }
1594
1595 /* Target pin is the interrupt pin we want to assign an IRQ to */
1596 return target_pin;
1597}
1598
Julius Wernercd49cce2019-03-05 16:53:33 -08001599#if CONFIG(PC80_SYSTEM)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001600/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001601 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001602 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001603 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001604 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001605 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001606 *
1607 * This function should be called for each PCI slot in your system.
1608 *
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001609 * @param dev Pointer to dev structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001610 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1611 * of this slot. The particular IRQ #s that are passed in depend on the
1612 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001613 */
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001614void pci_assign_irqs(struct device *dev, const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001615{
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001616 u8 slot, line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001617
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001618 /* Each device may contain up to eight functions. */
1619 slot = dev->path.pci.devfn >> 3;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001620
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001621 for (; dev ; dev = dev->sibling) {
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001622
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001623 if (dev->path.pci.devfn >> 3 != slot)
1624 break;
1625
1626 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001627
Uwe Hermanne4870472010-11-04 23:23:47 +00001628 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001629 if ((line < 1) || (line > 4))
1630 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001631
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001632 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001633
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001634 printk(BIOS_DEBUG, "Assigning IRQ %d to %s\n", irq, dev_path(dev));
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001635
Angel Ponsceca5de2021-06-28 11:59:33 +02001636 pci_write_config8(dev, PCI_INTERRUPT_LINE, irq);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001637
Uwe Hermanne4870472010-11-04 23:23:47 +00001638 /* Change to level triggered. */
Angel Ponsceca5de2021-06-28 11:59:33 +02001639 i8259_configure_irq_trigger(irq, IRQ_LEVEL_TRIGGERED);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001640 }
1641}
John Zhao95b4ece02020-05-04 15:58:48 -07001642
1643void pci_dev_disable_bus_master(const struct device *dev)
1644{
1645 pci_update_config16(dev, PCI_COMMAND, ~PCI_COMMAND_MASTER, 0x0);
1646}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001647#endif