blob: fda088b0206c6b020196c3f09122d4f58ea76e3f [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>
Tim Wawrzynczak8c93fed2022-01-13 16:45:07 -070022#include <lib.h>
Stefan Reinauer4d933dd2009-07-21 21:36:41 +000023#include <pc80/i8259.h>
Philipp Deppenwiesefea24292017-10-17 17:02:29 +020024#include <security/vboot/vbnv.h>
Martin Roth5dd4a2a2018-03-06 16:10:45 -070025#include <timestamp.h>
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +020026#include <types.h>
27
Myles Watson29cc9ed2009-07-02 18:56:24 +000028u8 pci_moving_config8(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000029{
Myles Watson29cc9ed2009-07-02 18:56:24 +000030 u8 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000031
Eric Biederman03acab62004-10-14 21:25:53 +000032 value = pci_read_config8(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000033
Eric Biederman03acab62004-10-14 21:25:53 +000034 pci_write_config8(dev, reg, 0xff);
35 ones = pci_read_config8(dev, reg);
36
37 pci_write_config8(dev, reg, 0x00);
38 zeroes = pci_read_config8(dev, reg);
39
40 pci_write_config8(dev, reg, value);
41
42 return ones ^ zeroes;
43}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +000044
Uwe Hermanne4870472010-11-04 23:23:47 +000045u16 pci_moving_config16(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000046{
Myles Watson29cc9ed2009-07-02 18:56:24 +000047 u16 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000048
Eric Biederman03acab62004-10-14 21:25:53 +000049 value = pci_read_config16(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000050
Eric Biederman03acab62004-10-14 21:25:53 +000051 pci_write_config16(dev, reg, 0xffff);
52 ones = pci_read_config16(dev, reg);
53
54 pci_write_config16(dev, reg, 0x0000);
55 zeroes = pci_read_config16(dev, reg);
56
57 pci_write_config16(dev, reg, value);
58
59 return ones ^ zeroes;
60}
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +000061
Uwe Hermanne4870472010-11-04 23:23:47 +000062u32 pci_moving_config32(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000063{
Myles Watson29cc9ed2009-07-02 18:56:24 +000064 u32 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000065
Eric Biederman03acab62004-10-14 21:25:53 +000066 value = pci_read_config32(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000067
Eric Biederman03acab62004-10-14 21:25:53 +000068 pci_write_config32(dev, reg, 0xffffffff);
69 ones = pci_read_config32(dev, reg);
70
71 pci_write_config32(dev, reg, 0x00000000);
72 zeroes = pci_read_config32(dev, reg);
73
74 pci_write_config32(dev, reg, value);
75
76 return ones ^ zeroes;
77}
78
Myles Watson29cc9ed2009-07-02 18:56:24 +000079/**
Myles Watson29cc9ed2009-07-02 18:56:24 +000080 * Given a device and register, read the size of the BAR for that register.
81 *
82 * @param dev Pointer to the device structure.
83 * @param index Address of the PCI configuration register.
Uwe Hermannc1ee4292010-10-17 19:01:48 +000084 * @return TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +000085 */
Eric Biederman03acab62004-10-14 21:25:53 +000086struct resource *pci_get_resource(struct device *dev, unsigned long index)
Eric Biederman8ca8d762003-04-22 19:02:15 +000087{
Eric Biederman5cd81732004-03-11 15:01:31 +000088 struct resource *resource;
Eric Biederman03acab62004-10-14 21:25:53 +000089 unsigned long value, attr;
Myles Watson29cc9ed2009-07-02 18:56:24 +000090 resource_t moving, limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +000091
Myles Watson29cc9ed2009-07-02 18:56:24 +000092 /* Initialize the resources to nothing. */
Eric Biederman03acab62004-10-14 21:25:53 +000093 resource = new_resource(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +000094
Myles Watson29cc9ed2009-07-02 18:56:24 +000095 /* Get the initial value. */
Eric Biederman03acab62004-10-14 21:25:53 +000096 value = pci_read_config32(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +000097
Myles Watson29cc9ed2009-07-02 18:56:24 +000098 /* See which bits move. */
Eric Biederman03acab62004-10-14 21:25:53 +000099 moving = pci_moving_config32(dev, index);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000100
Myles Watson29cc9ed2009-07-02 18:56:24 +0000101 /* Initialize attr to the bits that do not move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000102 attr = value & ~moving;
103
Myles Watson29cc9ed2009-07-02 18:56:24 +0000104 /* If it is a 64bit resource look at the high half as well. */
Eric Biederman03acab62004-10-14 21:25:53 +0000105 if (((attr & PCI_BASE_ADDRESS_SPACE_IO) == 0) &&
Myles Watson29cc9ed2009-07-02 18:56:24 +0000106 ((attr & PCI_BASE_ADDRESS_MEM_LIMIT_MASK) ==
107 PCI_BASE_ADDRESS_MEM_LIMIT_64)) {
108 /* Find the high bits that move. */
109 moving |=
110 ((resource_t) pci_moving_config32(dev, index + 4)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000111 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000112
Myles Watson032a9652009-05-11 22:24:53 +0000113 /* Find the resource constraints.
Eric Biederman03acab62004-10-14 21:25:53 +0000114 * Start by finding the bits that move. From there:
115 * - Size is the least significant bit of the bits that move.
116 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000117 * See PCI Spec 6.2.5.1.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000118 */
Eric Biederman03acab62004-10-14 21:25:53 +0000119 limit = 0;
120 if (moving) {
121 resource->size = 1;
122 resource->align = resource->gran = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000123 while (!(moving & resource->size)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000124 resource->size <<= 1;
125 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000126 resource->gran += 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000127 }
128 resource->limit = limit = moving | (resource->size - 1);
Nico Huber8193b062015-10-21 15:43:41 +0200129
130 if (pci_base_address_is_memory_space(attr)) {
131 /* Page-align to allow individual mapping of devices. */
132 if (resource->align < 12)
133 resource->align = 12;
134 }
Eric Biederman03acab62004-10-14 21:25:53 +0000135 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000136
Uwe Hermanne4870472010-11-04 23:23:47 +0000137 /*
138 * Some broken hardware has read-only registers that do not
Eric Biederman03acab62004-10-14 21:25:53 +0000139 * really size correctly.
Uwe Hermanne4870472010-11-04 23:23:47 +0000140 *
141 * Example: the Acer M7229 has BARs 1-4 normally read-only,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000142 * so BAR1 at offset 0x10 reads 0x1f1. If you size that register
Uwe Hermanne4870472010-11-04 23:23:47 +0000143 * by writing 0xffffffff to it, it will read back as 0x1f1 -- which
144 * is a violation of the spec.
145 *
146 * We catch this case and ignore it by observing which bits move.
147 *
148 * This also catches the common case of unimplemented registers
Eric Biederman03acab62004-10-14 21:25:53 +0000149 * that always read back as 0.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000150 */
Eric Biederman03acab62004-10-14 21:25:53 +0000151 if (moving == 0) {
152 if (value != 0) {
Angel Ponsd19cc112021-07-04 11:41:31 +0200153 printk(BIOS_DEBUG, "%s register %02lx(%08lx), read-only ignoring it\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000154 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) {
Angel Ponsd19cc112021-07-04 11:41:31 +0200237 printk(BIOS_DEBUG, "%s register %02lx(%08lx), read-only ignoring it\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000238 dev_path(dev), index, value);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000239 }
240 resource->flags = 0;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000241 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000242 compact_resources(dev);
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000243}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000244
Myles Watson29cc9ed2009-07-02 18:56:24 +0000245/**
Patrick Rudolph4e2f95b2018-05-16 14:56:22 +0200246 * Given a device, read the size of the MSI-X table.
247 *
248 * @param dev Pointer to the device structure.
249 * @return MSI-X table size or 0 if not MSI-X capable device
250 */
251size_t pci_msix_table_size(struct device *dev)
252{
253 const size_t pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
254 if (!pos)
255 return 0;
256
257 const u16 control = pci_read_config16(dev, pos + PCI_MSIX_FLAGS);
258 return (control & PCI_MSIX_FLAGS_QSIZE) + 1;
259}
260
261/**
262 * Given a device, return the table offset and bar the MSI-X tables resides in.
263 *
264 * @param dev Pointer to the device structure.
265 * @param offset Returned value gives the offset in bytes inside the PCI BAR.
266 * @param idx The returned value is the index of the PCI_BASE_ADDRESS register
267 * the MSI-X table is located in.
268 * @return Zero on success
269 */
270int pci_msix_table_bar(struct device *dev, u32 *offset, u8 *idx)
271{
272 const size_t pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
273 if (!pos || !offset || !idx)
274 return 1;
275
276 *offset = pci_read_config32(dev, pos + PCI_MSIX_TABLE);
277 *idx = (u8)(*offset & PCI_MSIX_PBA_BIR);
278 *offset &= PCI_MSIX_PBA_OFFSET;
279
280 return 0;
281}
282
283/**
284 * Given a device, return a msix_entry pointer or NULL if no table was found.
285 *
286 * @param dev Pointer to the device structure.
287 *
288 * @return NULL on error
289 */
290struct msix_entry *pci_msix_get_table(struct device *dev)
291{
292 struct resource *res;
293 u32 offset;
294 u8 idx;
295
296 if (pci_msix_table_bar(dev, &offset, &idx))
297 return NULL;
298
299 if (idx > 5)
300 return NULL;
301
302 res = probe_resource(dev, idx * 4 + PCI_BASE_ADDRESS_0);
303 if (!res || !res->base || offset >= res->size)
304 return NULL;
305
306 if ((res->flags & IORESOURCE_PCI64) &&
307 (uintptr_t)res->base != res->base)
308 return NULL;
309
310 return (struct msix_entry *)((uintptr_t)res->base + offset);
311}
312
Tim Wawrzynczak8c93fed2022-01-13 16:45:07 -0700313static unsigned int get_rebar_offset(const struct device *dev, unsigned long index)
314{
315 uint32_t offset = pciexp_find_extended_cap(dev, PCIE_EXT_CAP_RESIZABLE_BAR);
316 if (!offset)
317 return 0;
318
319 /* Convert PCI_BASE_ADDRESS_0, ..._1, ..._2 into 0, 1, 2... */
320 const unsigned int find_bar_idx = (index - PCI_BASE_ADDRESS_0) /
321 sizeof(uint32_t);
322
323 /* Although all of the Resizable BAR Control Registers contain an
324 "NBARs" field, it is only valid in the Control Register for BAR 0 */
325 const uint32_t rebar_ctrl0 = pci_read_config32(dev, offset + PCI_REBAR_CTRL_OFFSET);
326 const unsigned int nbars = (rebar_ctrl0 & PCI_REBAR_CTRL_NBARS_MASK) >>
327 PCI_REBAR_CTRL_NBARS_SHIFT;
328
329 for (unsigned int i = 0; i < nbars; i++, offset += sizeof(uint64_t)) {
330 const uint32_t rebar_ctrl = pci_read_config32(
331 dev, offset + PCI_REBAR_CTRL_OFFSET);
332 const uint32_t bar_idx = rebar_ctrl & PCI_REBAR_CTRL_IDX_MASK;
333 if (bar_idx == find_bar_idx)
334 return offset;
335 }
336
337 return 0;
338}
339
340/* Bit 20 = 1 MiB, bit 21 = 2 MiB, bit 22 = 4 MiB, ... bit 63 = 8 EiB */
341static uint64_t get_rebar_sizes_mask(const struct device *dev,
342 unsigned long index)
343{
344 uint64_t size_mask = 0ULL;
345 const uint32_t offset = get_rebar_offset(dev, index);
346 if (!offset)
347 return 0;
348
349 /* Get 1 MB - 128 TB support from CAP register */
350 const uint32_t cap = pci_read_config32(dev, offset + PCI_REBAR_CAP_OFFSET);
351 /* Shift the bits from 4-31 to 0-27 (i.e., down by 4 bits) */
352 size_mask |= ((cap & PCI_REBAR_CAP_SIZE_MASK) >> 4);
353
354 /* Get 256 TB - 8 EB support from CTRL register and store it in bits 28-43 */
355 const uint64_t ctrl = pci_read_config32(dev, offset + PCI_REBAR_CTRL_OFFSET);
356 /* Shift ctrl mask from bit 16 to bit 28, so that the two
357 masks (fom cap and ctrl) form a contiguous bitmask when
358 concatenated (i.e., up by 12 bits). */
359 size_mask |= ((ctrl & PCI_REBAR_CTRL_SIZE_MASK) << 12);
360
361 /* Now that the mask occupies bits 0-43, shift it up to 20-63, so they
362 represent the actual powers of 2. */
363 return size_mask << 20;
364}
365
366static void pci_store_rebar_size(const struct device *dev,
367 const struct resource *resource)
368{
369 const unsigned int num_bits = __fls64(resource->size);
370 const uint32_t offset = get_rebar_offset(dev, resource->index);
371 if (!offset)
372 return;
373
374 pci_update_config32(dev, offset + PCI_REBAR_CTRL_OFFSET,
375 ~PCI_REBAR_CTRL_SIZE_MASK,
376 num_bits << PCI_REBAR_CTRL_SIZE_SHIFT);
377}
378
379static void configure_adjustable_base(const struct device *dev,
380 unsigned long index,
381 struct resource *res)
382{
383 /*
384 * Excerpt from an implementation note from the PCIe spec:
385 *
386 * System software uses this capability in place of the above mentioned
387 * method of determining the resource size[0], and prior to assigning
388 * the base address to the BAR. Potential usable resource sizes are
389 * reported by the Function via its Resizable BAR Capability and Control
390 * registers. It is intended that the software allocate the largest of
391 * the reported sizes that it can, since allocating less address space
392 * than the largest reported size can result in lower
393 * performance. Software then writes the size to the Resizable BAR
394 * Control register for the appropriate BAR for the Function. Following
395 * this, the base address is written to the BAR.
396 *
397 * [0] Referring to using the moving bits in the BAR to determine the
398 * requested size of the MMIO region
399 */
400 const uint64_t size_mask = get_rebar_sizes_mask(dev, index);
401 if (!size_mask)
402 return;
403
404 int max_requested_bits = __fls64(size_mask);
405 if (max_requested_bits > CONFIG_PCIEXP_DEFAULT_MAX_RESIZABLE_BAR_BITS) {
406 printk(BIOS_WARNING, "WARNING: Device %s requests a BAR with"
407 "%u bits of address space, which coreboot is not"
408 "configured to hand out, truncating to %u bits\n",
409 dev_path(dev), max_requested_bits,
410 CONFIG_PCIEXP_DEFAULT_MAX_RESIZABLE_BAR_BITS);
411 max_requested_bits = CONFIG_PCIEXP_DEFAULT_MAX_RESIZABLE_BAR_BITS;
412 }
413
414 if (!(res->flags & IORESOURCE_PCI64) && max_requested_bits > 32) {
415 printk(BIOS_ERR, "ERROR: Resizable BAR requested"
416 "above 32 bits, but PCI function reported a"
417 "32-bit BAR.");
418 return;
419 }
420
421 /* Configure the resource parameters for the adjustable BAR */
422 res->size = 1ULL << max_requested_bits;
423 res->align = max_requested_bits;
424 res->gran = max_requested_bits;
425 res->limit = (res->flags & IORESOURCE_PCI64) ? UINT64_MAX : UINT32_MAX;
Tim Wawrzynczak2b83fa72022-05-27 12:27:50 -0600426 res->flags |= (res->flags & IORESOURCE_PCI64) ?
427 IORESOURCE_PCIE_RESIZABLE_BAR | IORESOURCE_ABOVE_4G :
428 IORESOURCE_PCIE_RESIZABLE_BAR;
Tim Wawrzynczak8c93fed2022-01-13 16:45:07 -0700429
430 printk(BIOS_INFO, "%s: Adjusting resource index %lu: base: %llx size: %llx "
431 "align: %d gran: %d limit: %llx\n",
432 dev_path(dev), res->index, res->base, res->size,
433 res->align, res->gran, res->limit);
434}
435
Patrick Rudolph4e2f95b2018-05-16 14:56:22 +0200436/**
Myles Watson29cc9ed2009-07-02 18:56:24 +0000437 * Read the base address registers for a given device.
438 *
439 * @param dev Pointer to the dev structure.
440 * @param howmany How many registers to read (6 for device, 2 for bridge).
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000441 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000442static void pci_read_bases(struct device *dev, unsigned int howmany)
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000443{
444 unsigned long index;
445
Myles Watson29cc9ed2009-07-02 18:56:24 +0000446 for (index = PCI_BASE_ADDRESS_0;
447 (index < PCI_BASE_ADDRESS_0 + (howmany << 2));) {
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000448 struct resource *resource;
449 resource = pci_get_resource(dev, index);
Tim Wawrzynczak8c93fed2022-01-13 16:45:07 -0700450
451 const bool is_pcie = pci_find_capability(dev, PCI_CAP_ID_PCIE) != 0;
452 if (CONFIG(PCIEXP_SUPPORT_RESIZABLE_BARS) && is_pcie)
453 configure_adjustable_base(dev, index, resource);
454
Myles Watson29cc9ed2009-07-02 18:56:24 +0000455 index += (resource->flags & IORESOURCE_PCI64) ? 8 : 4;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000456 }
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000457
458 compact_resources(dev);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000459}
460
Myles Watson29cc9ed2009-07-02 18:56:24 +0000461static void pci_record_bridge_resource(struct device *dev, resource_t moving,
Martin Roth38ddbfb2019-10-23 21:41:00 -0600462 unsigned int index, unsigned long type)
Eric Biederman03acab62004-10-14 21:25:53 +0000463{
Eric Biederman03acab62004-10-14 21:25:53 +0000464 struct resource *resource;
Uwe Hermanne4870472010-11-04 23:23:47 +0000465 unsigned long gran;
466 resource_t step;
467
Myles Watson29cc9ed2009-07-02 18:56:24 +0000468 resource = NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000469
470 if (!moving)
471 return;
472
473 /* Initialize the constraints on the current bus. */
474 resource = new_resource(dev, index);
475 resource->size = 0;
476 gran = 0;
477 step = 1;
478 while ((moving & step) == 0) {
479 gran += 1;
480 step <<= 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000481 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000482 resource->gran = gran;
483 resource->align = gran;
484 resource->limit = moving | (step - 1);
485 resource->flags = type | IORESOURCE_PCI_BRIDGE |
486 IORESOURCE_BRIDGE;
Eric Biederman03acab62004-10-14 21:25:53 +0000487}
488
Eric Biederman8ca8d762003-04-22 19:02:15 +0000489static void pci_bridge_read_bases(struct device *dev)
490{
Eric Biederman03acab62004-10-14 21:25:53 +0000491 resource_t moving_base, moving_limit, moving;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000492
Myles Watson29cc9ed2009-07-02 18:56:24 +0000493 /* See if the bridge I/O resources are implemented. */
494 moving_base = ((u32) pci_moving_config8(dev, PCI_IO_BASE)) << 8;
495 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000496 ((u32) pci_moving_config16(dev, PCI_IO_BASE_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000497
Myles Watson29cc9ed2009-07-02 18:56:24 +0000498 moving_limit = ((u32) pci_moving_config8(dev, PCI_IO_LIMIT)) << 8;
499 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000500 ((u32) pci_moving_config16(dev, PCI_IO_LIMIT_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000501
502 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000503
Myles Watson29cc9ed2009-07-02 18:56:24 +0000504 /* Initialize the I/O space constraints on the current bus. */
505 pci_record_bridge_resource(dev, moving, PCI_IO_BASE, IORESOURCE_IO);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000506
Myles Watson29cc9ed2009-07-02 18:56:24 +0000507 /* See if the bridge prefmem resources are implemented. */
508 moving_base =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000509 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_BASE)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000510 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000511 ((resource_t) pci_moving_config32(dev, PCI_PREF_BASE_UPPER32)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000512
Myles Watson29cc9ed2009-07-02 18:56:24 +0000513 moving_limit =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000514 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_LIMIT)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000515 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000516 ((resource_t) pci_moving_config32(dev, PCI_PREF_LIMIT_UPPER32)) << 32;
Myles Watson032a9652009-05-11 22:24:53 +0000517
Eric Biederman03acab62004-10-14 21:25:53 +0000518 moving = moving_base & moving_limit;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000519 /* Initialize the prefetchable memory constraints on the current bus. */
520 pci_record_bridge_resource(dev, moving, PCI_PREF_MEMORY_BASE,
521 IORESOURCE_MEM | IORESOURCE_PREFETCH);
Myles Watson032a9652009-05-11 22:24:53 +0000522
Myles Watson29cc9ed2009-07-02 18:56:24 +0000523 /* See if the bridge mem resources are implemented. */
524 moving_base = ((u32) pci_moving_config16(dev, PCI_MEMORY_BASE)) << 16;
525 moving_limit = ((u32) pci_moving_config16(dev, PCI_MEMORY_LIMIT)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000526
527 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000528
Myles Watson29cc9ed2009-07-02 18:56:24 +0000529 /* Initialize the memory resources on the current bus. */
530 pci_record_bridge_resource(dev, moving, PCI_MEMORY_BASE,
531 IORESOURCE_MEM);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000532
Eric Biederman5cd81732004-03-11 15:01:31 +0000533 compact_resources(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000534}
535
Eric Biederman5899fd82003-04-24 06:25:08 +0000536void pci_dev_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000537{
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000538 pci_read_bases(dev, 6);
539 pci_get_rom_resource(dev, PCI_ROM_ADDRESS);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000540}
541
Eric Biederman5899fd82003-04-24 06:25:08 +0000542void pci_bus_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000543{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000544 pci_bridge_read_bases(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000545 pci_read_bases(dev, 2);
546 pci_get_rom_resource(dev, PCI_ROM_ADDRESS1);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000547}
548
Myles Watson29cc9ed2009-07-02 18:56:24 +0000549void pci_domain_read_resources(struct device *dev)
550{
551 struct resource *res;
552
553 /* Initialize the system-wide I/O space constraints. */
554 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
555 res->limit = 0xffffUL;
556 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
557 IORESOURCE_ASSIGNED;
558
559 /* Initialize the system-wide memory resources constraints. */
560 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
Furquan Shaikh871baf22020-03-12 17:51:24 -0700561 res->limit = (1ULL << cpu_phys_address_size()) - 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000562 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
563 IORESOURCE_ASSIGNED;
564}
565
Raul E Rangel5cb34e22020-05-04 16:41:22 -0600566void pci_domain_set_resources(struct device *dev)
567{
568 assign_resources(dev->link_list);
569}
570
Nico Huber730b2612020-05-20 00:32:50 +0200571static void pci_store_resource(const struct device *const dev,
572 const struct resource *const resource)
573{
574 unsigned long base_lo, base_hi;
575
576 base_lo = resource->base & 0xffffffff;
577 base_hi = (resource->base >> 32) & 0xffffffff;
578
579 /*
580 * Some chipsets allow us to set/clear the I/O bit
581 * (e.g. VIA 82C686A). So set it to be safe.
582 */
583 if (resource->flags & IORESOURCE_IO)
584 base_lo |= PCI_BASE_ADDRESS_SPACE_IO;
585
586 pci_write_config32(dev, resource->index, base_lo);
587 if (resource->flags & IORESOURCE_PCI64)
588 pci_write_config32(dev, resource->index + 4, base_hi);
589}
590
591static void pci_store_bridge_resource(const struct device *const dev,
592 struct resource *const resource)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000593{
Eric Biederman03acab62004-10-14 21:25:53 +0000594 resource_t base, end;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000595
Nico Huber730b2612020-05-20 00:32:50 +0200596 /*
597 * PCI bridges have no enable bit. They are disabled if the base of
598 * the range is greater than the limit. If the size is zero, disable
599 * by setting the base = limit and end = limit - 2^gran.
600 */
601 if (resource->size == 0) {
602 base = resource->limit;
603 end = resource->limit - (1 << resource->gran);
604 resource->base = base;
605 } else {
606 base = resource->base;
607 end = resource_end(resource);
608 }
609
610 if (resource->index == PCI_IO_BASE) {
611 /* Set the I/O ranges. */
612 pci_write_config8(dev, PCI_IO_BASE, base >> 8);
613 pci_write_config16(dev, PCI_IO_BASE_UPPER16, base >> 16);
614 pci_write_config8(dev, PCI_IO_LIMIT, end >> 8);
615 pci_write_config16(dev, PCI_IO_LIMIT_UPPER16, end >> 16);
616 } else if (resource->index == PCI_MEMORY_BASE) {
617 /* Set the memory range. */
618 pci_write_config16(dev, PCI_MEMORY_BASE, base >> 16);
619 pci_write_config16(dev, PCI_MEMORY_LIMIT, end >> 16);
620 } else if (resource->index == PCI_PREF_MEMORY_BASE) {
621 /* Set the prefetchable memory range. */
622 pci_write_config16(dev, PCI_PREF_MEMORY_BASE, base >> 16);
623 pci_write_config32(dev, PCI_PREF_BASE_UPPER32, base >> 32);
624 pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, end >> 16);
625 pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, end >> 32);
626 } else {
627 /* Don't let me think I stored the resource. */
628 resource->flags &= ~IORESOURCE_STORED;
Julius Wernere9665952022-01-21 17:06:20 -0800629 printk(BIOS_ERR, "invalid resource->index %lx\n", resource->index);
Nico Huber730b2612020-05-20 00:32:50 +0200630 }
631}
632
633static void pci_set_resource(struct device *dev, struct resource *resource)
634{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000635 /* Make certain the resource has actually been assigned a value. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000636 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
Nico Huberf5312442020-05-20 01:02:18 +0200637 if (resource->flags & IORESOURCE_BRIDGE) {
638 /* If a bridge resource has no value assigned,
639 we can treat it like an empty resource. */
640 resource->size = 0;
641 } else {
Julius Wernere9665952022-01-21 17:06:20 -0800642 printk(BIOS_ERR, "%s %02lx %s size: 0x%010llx not assigned\n",
Angel Ponsd19cc112021-07-04 11:41:31 +0200643 dev_path(dev), resource->index,
Nico Huberf5312442020-05-20 01:02:18 +0200644 resource_type(resource), resource->size);
645 return;
646 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000647 }
648
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000649 /* If this resource is fixed don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000650 if (resource->flags & IORESOURCE_FIXED)
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000651 return;
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000652
Myles Watson29cc9ed2009-07-02 18:56:24 +0000653 /* If I have already stored this resource don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000654 if (resource->flags & IORESOURCE_STORED)
Eric Biederman5cd81732004-03-11 15:01:31 +0000655 return;
Eric Biederman5cd81732004-03-11 15:01:31 +0000656
Myles Watson29cc9ed2009-07-02 18:56:24 +0000657 /* If the resource is subtractive don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000658 if (resource->flags & IORESOURCE_SUBTRACTIVE)
Eric Biederman03acab62004-10-14 21:25:53 +0000659 return;
Eric Biederman03acab62004-10-14 21:25:53 +0000660
Myles Watson29cc9ed2009-07-02 18:56:24 +0000661 /* Only handle PCI memory and I/O resources for now. */
662 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Eric Biederman8ca8d762003-04-22 19:02:15 +0000663 return;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000664
Myles Watson29cc9ed2009-07-02 18:56:24 +0000665 /* Enable the resources in the command register. */
Eric Biederman03acab62004-10-14 21:25:53 +0000666 if (resource->size) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000667 if (resource->flags & IORESOURCE_MEM)
Eric Biederman03acab62004-10-14 21:25:53 +0000668 dev->command |= PCI_COMMAND_MEMORY;
Uwe Hermanne4870472010-11-04 23:23:47 +0000669 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000670 dev->command |= PCI_COMMAND_IO;
Felix Singer205b53e2020-09-07 15:21:21 +0200671 if (resource->flags & IORESOURCE_PCI_BRIDGE &&
672 CONFIG(PCI_SET_BUS_MASTER_PCI_BRIDGES))
Eric Biederman03acab62004-10-14 21:25:53 +0000673 dev->command |= PCI_COMMAND_MASTER;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000674 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000675
Myles Watson29cc9ed2009-07-02 18:56:24 +0000676 /* Now store the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000677 resource->flags |= IORESOURCE_STORED;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000678
Tim Wawrzynczak8c93fed2022-01-13 16:45:07 -0700679 if (!(resource->flags & IORESOURCE_PCI_BRIDGE)) {
680 if (CONFIG(PCIEXP_SUPPORT_RESIZABLE_BARS) &&
681 (resource->flags & IORESOURCE_PCIE_RESIZABLE_BAR))
682 pci_store_rebar_size(dev, resource);
683
Nico Huber730b2612020-05-20 00:32:50 +0200684 pci_store_resource(dev, resource);
Uwe Hermanne4870472010-11-04 23:23:47 +0000685
Tim Wawrzynczak8c93fed2022-01-13 16:45:07 -0700686 } else {
687 pci_store_bridge_resource(dev, resource);
688 }
689
Eric Biederman03acab62004-10-14 21:25:53 +0000690 report_resource_stored(dev, resource, "");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000691}
692
Eric Biederman5899fd82003-04-24 06:25:08 +0000693void pci_dev_set_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000694{
Myles Watsonc25cc112010-05-21 14:33:48 +0000695 struct resource *res;
Myles Watson894a3472010-06-09 22:41:35 +0000696 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000697 u8 line;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000698
Uwe Hermanne4870472010-11-04 23:23:47 +0000699 for (res = dev->resource_list; res; res = res->next)
Myles Watsonc25cc112010-05-21 14:33:48 +0000700 pci_set_resource(dev, res);
Uwe Hermanne4870472010-11-04 23:23:47 +0000701
Myles Watson894a3472010-06-09 22:41:35 +0000702 for (bus = dev->link_list; bus; bus = bus->next) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000703 if (bus->children)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000704 assign_resources(bus);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000705 }
706
Myles Watson29cc9ed2009-07-02 18:56:24 +0000707 /* Set a default latency timer. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000708 pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000709
Myles Watson29cc9ed2009-07-02 18:56:24 +0000710 /* Set a default secondary latency timer. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000711 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000712 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000713
Myles Watson29cc9ed2009-07-02 18:56:24 +0000714 /* Zero the IRQ settings. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000715 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Uwe Hermanne4870472010-11-04 23:23:47 +0000716 if (line)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000717 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
Uwe Hermanne4870472010-11-04 23:23:47 +0000718
Myles Watson29cc9ed2009-07-02 18:56:24 +0000719 /* Set the cache line size, so far 64 bytes is good for everyone. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000720 pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000721}
722
Eric Biedermane9a271e32003-09-02 03:36:25 +0000723void pci_dev_enable_resources(struct device *dev)
724{
Kyösti Mälkkicac02312019-06-30 08:40:04 +0300725 const struct pci_operations *ops = NULL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000726 u16 command;
Eric Biederman03acab62004-10-14 21:25:53 +0000727
Uwe Hermanne4870472010-11-04 23:23:47 +0000728 /* Set the subsystem vendor and device ID for mainboard devices. */
Kyösti Mälkkicac02312019-06-30 08:40:04 +0300729 if (dev->ops)
730 ops = dev->ops->ops_pci;
Eric Biedermandbec2d42004-10-21 10:44:08 +0000731 if (dev->on_mainboard && ops && ops->set_subsystem) {
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700732 if (CONFIG_SUBSYSTEM_VENDOR_ID)
733 dev->subsystem_vendor = CONFIG_SUBSYSTEM_VENDOR_ID;
Rizwan Qureshifd891292017-04-26 21:00:37 +0530734 else if (!dev->subsystem_vendor)
735 dev->subsystem_vendor = pci_read_config16(dev,
736 PCI_VENDOR_ID);
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700737 if (CONFIG_SUBSYSTEM_DEVICE_ID)
738 dev->subsystem_device = CONFIG_SUBSYSTEM_DEVICE_ID;
Rizwan Qureshifd891292017-04-26 21:00:37 +0530739 else if (!dev->subsystem_device)
740 dev->subsystem_device = pci_read_config16(dev,
741 PCI_DEVICE_ID);
742
Sven Schnelle91321022011-03-01 19:58:47 +0000743 printk(BIOS_DEBUG, "%s subsystem <- %04x/%04x\n",
744 dev_path(dev), dev->subsystem_vendor,
745 dev->subsystem_device);
746 ops->set_subsystem(dev, dev->subsystem_vendor,
747 dev->subsystem_device);
Eric Biederman03acab62004-10-14 21:25:53 +0000748 }
Eric Biedermane9a271e32003-09-02 03:36:25 +0000749 command = pci_read_config16(dev, PCI_COMMAND);
750 command |= dev->command;
Uwe Hermanne4870472010-11-04 23:23:47 +0000751
Myles Watson29cc9ed2009-07-02 18:56:24 +0000752 /* v3 has
753 * command |= (PCI_COMMAND_PARITY + PCI_COMMAND_SERR); // Error check.
754 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000755
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000756 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000757 pci_write_config16(dev, PCI_COMMAND, command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000758}
759
760void pci_bus_enable_resources(struct device *dev)
761{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000762 u16 ctrl;
763
Uwe Hermanne4870472010-11-04 23:23:47 +0000764 /*
765 * Enable I/O in command register if there is VGA card
Myles Watson29cc9ed2009-07-02 18:56:24 +0000766 * connected with (even it does not claim I/O resource).
767 */
Myles Watson894a3472010-06-09 22:41:35 +0000768 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
Li-Ta Lo515f6c72005-01-11 22:48:54 +0000769 dev->command |= PCI_COMMAND_IO;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000770 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +0000771 ctrl |= dev->link_list->bridge_ctrl;
Kyösti Mälkki382e2162019-09-21 16:19:32 +0300772 ctrl |= (PCI_BRIDGE_CTL_PARITY | PCI_BRIDGE_CTL_SERR); /* Error check. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000773 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000774 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
775
776 pci_dev_enable_resources(dev);
777}
778
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000779void pci_bus_reset(struct bus *bus)
780{
Uwe Hermanne4870472010-11-04 23:23:47 +0000781 u16 ctl;
782
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000783 ctl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
784 ctl |= PCI_BRIDGE_CTL_BUS_RESET;
785 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
786 mdelay(10);
Uwe Hermanne4870472010-11-04 23:23:47 +0000787
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000788 ctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
789 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
790 delay(1);
791}
792
Elyes HAOUAS88030b72018-09-20 17:26:10 +0200793void pci_dev_set_subsystem(struct device *dev, unsigned int vendor,
794 unsigned int device)
Eric Biederman03acab62004-10-14 21:25:53 +0000795{
Subrata Banik9514d472019-03-20 14:56:27 +0530796 uint8_t offset;
797
798 /* Header type */
799 switch (dev->hdr_type & 0x7f) {
800 case PCI_HEADER_TYPE_NORMAL:
801 offset = PCI_SUBSYSTEM_VENDOR_ID;
802 break;
803 case PCI_HEADER_TYPE_BRIDGE:
804 offset = pci_find_capability(dev, PCI_CAP_ID_SSVID);
805 if (!offset)
806 return;
807 offset += 4; /* Vendor ID at offset 4 */
808 break;
809 case PCI_HEADER_TYPE_CARDBUS:
810 offset = PCI_CB_SUBSYSTEM_VENDOR_ID;
811 break;
812 default:
813 return;
814 }
815
Subrata Banik4a0f0712019-03-20 14:29:47 +0530816 if (!vendor || !device) {
Subrata Banik9514d472019-03-20 14:56:27 +0530817 pci_write_config32(dev, offset,
Subrata Banik4a0f0712019-03-20 14:29:47 +0530818 pci_read_config32(dev, PCI_VENDOR_ID));
819 } else {
Subrata Banik9514d472019-03-20 14:56:27 +0530820 pci_write_config32(dev, offset,
Subrata Banik4a0f0712019-03-20 14:29:47 +0530821 ((device & 0xffff) << 16) | (vendor & 0xffff));
822 }
Eric Biederman03acab62004-10-14 21:25:53 +0000823}
824
Frans Hendriksb71181a2019-10-04 14:06:33 +0200825static int should_run_oprom(struct device *dev, struct rom_header *rom)
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300826{
827 static int should_run = -1;
828
Frans Hendriksb71181a2019-10-04 14:06:33 +0200829 if (CONFIG(VENDORCODE_ELTAN_VBOOT))
830 if (rom != NULL)
831 if (!verified_boot_should_run_oprom(rom))
832 return 0;
833
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300834 if (should_run >= 0)
835 return should_run;
836
Julius Wernercd49cce2019-03-05 16:53:33 -0800837 if (CONFIG(ALWAYS_RUN_OPROM)) {
Aaron Durbin10510252018-01-30 10:04:02 -0700838 should_run = 1;
839 return should_run;
840 }
841
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200842 /* Don't run VGA option ROMs, unless we have to print
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300843 * something on the screen before the kernel is loaded.
844 */
Furquan Shaikh0325dc62016-07-25 13:02:36 -0700845 should_run = display_init_required();
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300846
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200847 if (!should_run)
848 printk(BIOS_DEBUG, "Not running VGA Option ROM\n");
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300849 return should_run;
850}
851
852static int should_load_oprom(struct device *dev)
853{
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300854 /* If S3_VGA_ROM_RUN is disabled, skip running VGA option
855 * ROMs when coming out of an S3 resume.
856 */
Julius Wernercd49cce2019-03-05 16:53:33 -0800857 if (!CONFIG(S3_VGA_ROM_RUN) && acpi_is_wakeup_s3() &&
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300858 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
859 return 0;
Julius Wernercd49cce2019-03-05 16:53:33 -0800860 if (CONFIG(ALWAYS_LOAD_OPROM))
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300861 return 1;
Frans Hendriksb71181a2019-10-04 14:06:33 +0200862 if (should_run_oprom(dev, NULL))
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300863 return 1;
864
865 return 0;
866}
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300867
Kyösti Mälkki0f300632020-12-19 23:43:56 +0200868static void oprom_pre_graphics_stall(void)
869{
Paul Menzelc4062c72021-02-11 10:43:14 +0100870 if (CONFIG_PRE_GRAPHICS_DELAY_MS)
871 mdelay(CONFIG_PRE_GRAPHICS_DELAY_MS);
Kyösti Mälkki0f300632020-12-19 23:43:56 +0200872}
873
Uwe Hermanne4870472010-11-04 23:23:47 +0000874/** Default handler: only runs the relevant PCI BIOS. */
Li-Ta Lo883b8792005-01-10 23:16:22 +0000875void pci_dev_init(struct device *dev)
876{
877 struct rom_header *rom, *ram;
878
Julius Wernercd49cce2019-03-05 16:53:33 -0800879 if (!CONFIG(VGA_ROM_RUN))
Aaron Durbinfbed9a52018-01-30 09:58:51 -0700880 return;
881
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100882 /* Only execute VGA ROMs. */
883 if (((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
Myles Watson17aeeca2009-10-07 18:41:08 +0000884 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000885
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300886 if (!should_load_oprom(dev))
Stefan Reinauer74a0efe2012-03-30 17:10:49 -0700887 return;
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700888 timestamp_add_now(TS_OPROM_INITIALIZE);
Aaron Durbince872cb2013-03-28 15:59:19 -0500889
890 rom = pci_rom_probe(dev);
891 if (rom == NULL)
892 return;
893
894 ram = pci_rom_load(dev, rom);
895 if (ram == NULL)
896 return;
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700897 timestamp_add_now(TS_OPROM_COPY_END);
Aaron Durbince872cb2013-03-28 15:59:19 -0500898
Frans Hendriksb71181a2019-10-04 14:06:33 +0200899 if (!should_run_oprom(dev, rom))
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300900 return;
901
Kyösti Mälkki0f300632020-12-19 23:43:56 +0200902 /* Wait for any configured pre-graphics delay */
903 oprom_pre_graphics_stall();
904
Stefan Reinauerd98cf5b2008-08-01 11:25:41 +0000905 run_bios(dev, (unsigned long)ram);
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +0200906
Kyösti Mälkkiab56b3b2013-11-28 16:44:51 +0200907 gfx_set_init_done(1);
908 printk(BIOS_DEBUG, "VGA Option ROM was run\n");
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700909 timestamp_add_now(TS_OPROM_END);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000910}
Li-Ta Lo883b8792005-01-10 23:16:22 +0000911
Li-Ta Loe5266692004-03-23 21:28:05 +0000912/** Default device operation for PCI devices */
Subrata Banikffc790b2017-12-11 10:29:49 +0530913struct pci_operations pci_dev_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000914 .set_subsystem = pci_dev_set_subsystem,
915};
916
Eric Biederman8ca8d762003-04-22 19:02:15 +0000917struct device_operations default_pci_ops_dev = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000918 .read_resources = pci_dev_read_resources,
919 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000920 .enable_resources = pci_dev_enable_resources,
Julius Wernercd49cce2019-03-05 16:53:33 -0800921#if CONFIG(HAVE_ACPI_TABLES)
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200922 .write_acpi_tables = pci_rom_write_acpi_tables,
Nico Huber68680dd2020-03-31 17:34:52 +0200923 .acpi_fill_ssdt = pci_rom_ssdt,
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200924#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000925 .init = pci_dev_init,
Uwe Hermanne4870472010-11-04 23:23:47 +0000926 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000927};
Li-Ta Loe5266692004-03-23 21:28:05 +0000928
929/** Default device operations for PCI bridges */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000930struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000931 .read_resources = pci_bus_read_resources,
932 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000933 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000934 .scan_bus = pci_scan_bridge,
Uwe Hermanne4870472010-11-04 23:23:47 +0000935 .reset_bus = pci_bus_reset,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000936};
Li-Ta Loe5266692004-03-23 21:28:05 +0000937
Tim Wawrzynczakdbcf7b12020-05-13 16:15:08 -0600938/** Default device operations for PCI devices marked 'hidden' */
939static struct device_operations default_hidden_pci_ops_dev = {
940 .read_resources = noop_read_resources,
941 .set_resources = noop_set_resources,
942 .scan_bus = scan_static_bus,
943};
944
Li-Ta Loe5266692004-03-23 21:28:05 +0000945/**
Nico Huber061b9052019-09-21 15:58:23 +0200946 * Check for compatibility to route legacy VGA cycles through a bridge.
947 *
948 * Originally, when decoding i/o ports for legacy VGA cycles, bridges
949 * should only consider the 10 least significant bits of the port address.
950 * This means all VGA registers were aliased every 1024 ports!
951 * e.g. 0x3b0 was also decoded as 0x7b0, 0xbb0 etc.
952 *
953 * To avoid this mess, a bridge control bit (VGA16) was introduced in
954 * 2003 to enable decoding of 16-bit port addresses. As we don't want
955 * to make this any more complex for now, we use this bit if possible
956 * and only warn if it's not supported (in set_vga_bridge_bits()).
957 */
958static void pci_bridge_vga_compat(struct bus *const bus)
959{
960 uint16_t bridge_ctrl;
961
962 bridge_ctrl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
963
964 /* Ensure VGA decoding is disabled during probing (it should
965 be by default, but we run blobs nowadays) */
966 bridge_ctrl &= ~PCI_BRIDGE_CTL_VGA;
967 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, bridge_ctrl);
968
969 /* If the upstream bridge doesn't support VGA16, we don't have to check */
970 bus->no_vga16 |= bus->dev->bus->no_vga16;
971 if (bus->no_vga16)
972 return;
973
974 /* Test if we can enable 16-bit decoding */
975 bridge_ctrl |= PCI_BRIDGE_CTL_VGA16;
976 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, bridge_ctrl);
977 bridge_ctrl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
978
979 bus->no_vga16 = !(bridge_ctrl & PCI_BRIDGE_CTL_VGA16);
980}
981
982/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000983 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000984 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000985 * This function is a heuristic to detect which type of bus is downstream
986 * of a PCI-to-PCI bridge. This functions by looking for various capability
987 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
988 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000989 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000990 * When only a PCI-Express capability is found the type is examined to see
991 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000992 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000993 * @param dev Pointer to the device structure of the bridge.
994 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000995 */
Aaron Durbinc30d9132017-08-07 16:55:43 -0600996static struct device_operations *get_pci_bridge_ops(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000997{
Julius Wernercd49cce2019-03-05 16:53:33 -0800998#if CONFIG(PCIX_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800999 unsigned int pcixpos;
1000 pcixpos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
1001 if (pcixpos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001002 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001003 return &default_pcix_ops_bus;
1004 }
1005#endif
Julius Wernercd49cce2019-03-05 16:53:33 -08001006#if CONFIG(PCIEXP_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -08001007 unsigned int pciexpos;
1008 pciexpos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
1009 if (pciexpos) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001010 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -08001011 flags = pci_read_config16(dev, pciexpos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001012 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001013 case PCI_EXP_TYPE_ROOT_PORT:
1014 case PCI_EXP_TYPE_UPSTREAM:
1015 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001016 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001017 dev_path(dev));
Arthur Heymans24837e72021-03-11 20:34:05 +01001018 if (CONFIG(PCIEXP_HOTPLUG)) {
1019 u16 sltcap;
1020 sltcap = pci_read_config16(dev, pciexpos + PCI_EXP_SLTCAP);
1021 if (sltcap & PCI_EXP_SLTCAP_HPC) {
1022 printk(BIOS_DEBUG, "%s hot-plug capable\n",
1023 dev_path(dev));
1024 return &default_pciexp_hotplug_ops_bus;
1025 }
Jeremy Sollercf2ac542019-10-09 21:40:36 -06001026 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001027 return &default_pciexp_ops_bus;
1028 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +00001029 printk(BIOS_DEBUG, "%s subordinate PCI\n",
1030 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001031 return &default_pci_ops_bus;
1032 default:
1033 break;
1034 }
1035 }
1036#endif
1037 return &default_pci_ops_bus;
1038}
1039
1040/**
Vadim Bendebury8049fc92012-04-24 12:53:19 -07001041 * Check if a device id matches a PCI driver entry.
1042 *
1043 * The driver entry can either point at a zero terminated array of acceptable
1044 * device IDs, or include a single device ID.
1045 *
Martin Roth98b698c2015-01-06 21:02:52 -07001046 * @param driver pointer to the PCI driver entry being checked
1047 * @param device_id PCI device ID of the device being matched
Vadim Bendebury8049fc92012-04-24 12:53:19 -07001048 */
1049static int device_id_match(struct pci_driver *driver, unsigned short device_id)
1050{
1051 if (driver->devices) {
1052 unsigned short check_id;
1053 const unsigned short *device_list = driver->devices;
1054 while ((check_id = *device_list++) != 0)
1055 if (check_id == device_id)
1056 return 1;
1057 }
1058
1059 return (driver->device == device_id);
1060}
1061
1062/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001063 * Set up PCI device operation.
1064 *
1065 * Check if it already has a driver. If not, use find_device_operations(),
1066 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +00001067 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001068 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +00001069 * @see pci_drivers
1070 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001071static void set_pci_ops(struct device *dev)
1072{
1073 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +00001074
Uwe Hermanne4870472010-11-04 23:23:47 +00001075 if (dev->ops)
1076 return;
1077
1078 /*
1079 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001080 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001081 */
Aaron Durbin03758152015-09-03 17:23:08 -05001082 for (driver = &_pci_drivers[0]; driver != &_epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001083 if ((driver->vendor == dev->vendor) &&
Vadim Bendebury8049fc92012-04-24 12:53:19 -07001084 device_id_match(driver, dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +00001085 dev->ops = (struct device_operations *)driver->ops;
Nico Huber7e3e1ea2020-10-12 16:25:40 +02001086 break;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001087 }
1088 }
Li-Ta Loe5266692004-03-23 21:28:05 +00001089
Nico Huber7e3e1ea2020-10-12 16:25:40 +02001090 if (dev->ops) {
1091 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n", dev_path(dev),
1092 driver->vendor, driver->device, (driver->ops->scan_bus ? "bus " : ""));
1093 return;
1094 }
1095
Uwe Hermanne4870472010-11-04 23:23:47 +00001096 /* If I don't have a specific driver use the default operations. */
1097 switch (dev->hdr_type & 0x7f) { /* Header type */
1098 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +00001099 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
1100 goto bad;
1101 dev->ops = &default_pci_ops_dev;
1102 break;
1103 case PCI_HEADER_TYPE_BRIDGE:
1104 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
1105 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001106 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001107 break;
Julius Wernercd49cce2019-03-05 16:53:33 -08001108#if CONFIG(CARDBUS_PLUGIN_SUPPORT)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001109 case PCI_HEADER_TYPE_CARDBUS:
1110 dev->ops = &default_cardbus_ops_bus;
1111 break;
1112#endif
Felix Singerc96ee7e2021-01-07 06:14:27 +00001113 default:
Uwe Hermanne4870472010-11-04 23:23:47 +00001114bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +00001115 if (dev->enabled) {
Angel Ponsd19cc112021-07-04 11:41:31 +02001116 printk(BIOS_ERR,
1117 "%s [%04x/%04x/%06x] has unknown header type %02x, ignoring.\n",
1118 dev_path(dev), dev->vendor, dev->device,
Uwe Hermanne4870472010-11-04 23:23:47 +00001119 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +00001120 }
Eric Biederman8ca8d762003-04-22 19:02:15 +00001121 }
Eric Biederman8ca8d762003-04-22 19:02:15 +00001122}
1123
1124/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001125 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +00001126 *
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001127 * Given a PCI bus structure and a devfn number, find the device structure
1128 * corresponding to the devfn, if present. Then move the device structure
1129 * as the last child on the bus.
Li-Ta Loe5266692004-03-23 21:28:05 +00001130 *
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001131 * @param bus Pointer to the bus structure.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001132 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001133 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +00001134 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001135 */
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001136static struct device *pci_scan_get_dev(struct bus *bus, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001137{
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001138 struct device *dev, **prev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001139
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001140 prev = &bus->children;
1141 for (dev = bus->children; dev; dev = dev->sibling) {
Duncan Lauriebf696222020-10-18 15:10:00 -07001142 if (dev->path.type == DEVICE_PATH_PCI && dev->path.pci.devfn == devfn) {
1143 /* Unlink from the list. */
1144 *prev = dev->sibling;
1145 dev->sibling = NULL;
1146 break;
Eric Biedermanad1b35a2003-10-14 02:36:51 +00001147 }
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001148 prev = &dev->sibling;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001149 }
Myles Watson29cc9ed2009-07-02 18:56:24 +00001150
Uwe Hermanne4870472010-11-04 23:23:47 +00001151 /*
1152 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +00001153 * bus. When the list of devices was formed we removed all of the
1154 * parents children, and now we are interleaving static and dynamic
1155 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001156 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001157 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +00001158 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +00001159
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001160 /* Find the last child on the bus. */
1161 for (child = bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +00001162 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +00001163
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001164 /* Place the device as last on the bus. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001165 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +00001166 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001167 else
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001168 bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001169 }
1170
Eric Biederman8ca8d762003-04-22 19:02:15 +00001171 return dev;
1172}
1173
Myles Watson032a9652009-05-11 22:24:53 +00001174/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001175 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +00001176 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001177 * Determine the existence of a given PCI device. Allocate a new struct device
1178 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001179 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001180 * @param dev Pointer to the dev structure.
1181 * @param bus Pointer to the bus structure.
1182 * @param devfn A device/function number to look at.
1183 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001184 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001185struct device *pci_probe_dev(struct device *dev, struct bus *bus,
1186 unsigned int devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001187{
Myles Watson29cc9ed2009-07-02 18:56:24 +00001188 u32 id, class;
1189 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001190
Myles Watson29cc9ed2009-07-02 18:56:24 +00001191 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001192 if (!dev) {
1193 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +00001194
Myles Watson29cc9ed2009-07-02 18:56:24 +00001195 dummy.bus = bus;
1196 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +00001197 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +00001198
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001199 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +00001200 /*
1201 * Have we found something? Some broken boards return 0 if a
1202 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001203 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001204 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +00001205 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +00001206
Stefan Reinauer7355c752010-04-02 16:30:25 +00001207 if ((id == 0x00000000) || (id == 0x0000ffff) ||
1208 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001209 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
1210 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001211 return NULL;
1212 }
1213 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001214 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +00001215 /*
1216 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +00001217 * specific operations this operations we will disable the
1218 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +00001219 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001220 * This is geared toward devices that have subfunctions
1221 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +00001222 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001223 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +00001224 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001225 */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001226 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001227 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001228 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +00001229
Myles Watson29cc9ed2009-07-02 18:56:24 +00001230 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001231 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +00001232
Uwe Hermanne4870472010-11-04 23:23:47 +00001233 /*
1234 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +00001235 * this is because we have already disabled the device. But
1236 * this also handles optional devices that may not always
1237 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001238 */
1239 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001240 if ((id == 0xffffffff) || (id == 0x00000000) ||
1241 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001242 if (dev->enabled) {
Angel Ponsd19cc112021-07-04 11:41:31 +02001243 printk(BIOS_INFO,
1244 "PCI: Static device %s not found, disabling it.\n",
1245 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001246 dev->enabled = 0;
1247 }
1248 return dev;
1249 }
1250 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001251
Myles Watson29cc9ed2009-07-02 18:56:24 +00001252 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001253 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
1254 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +00001255
Myles Watson29cc9ed2009-07-02 18:56:24 +00001256 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001257 dev->vendor = id & 0xffff;
1258 dev->device = (id >> 16) & 0xffff;
1259 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001260
1261 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001262 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +00001263
Myles Watson29cc9ed2009-07-02 18:56:24 +00001264 /* Architectural/System devices always need to be bus masters. */
Felix Singerd3d0fd72020-09-07 16:15:14 +02001265 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM &&
1266 CONFIG(PCI_ALLOW_BUS_MASTER_ANY_DEVICE))
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001267 dev->command |= PCI_COMMAND_MASTER;
Uwe Hermanne4870472010-11-04 23:23:47 +00001268
1269 /*
1270 * Look at the vendor and device ID, or at least the header type and
Myles Watson29cc9ed2009-07-02 18:56:24 +00001271 * class and figure out which set of configuration methods to use.
1272 * Unless we already have some PCI ops.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001273 */
1274 set_pci_ops(dev);
1275
Myles Watson29cc9ed2009-07-02 18:56:24 +00001276 /* Now run the magic enable/disable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001277 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001278 dev->ops->enable(dev);
Myles Watson032a9652009-05-11 22:24:53 +00001279
Myles Watson29cc9ed2009-07-02 18:56:24 +00001280 /* Display the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001281 printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
1282 dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
1283 dev->ops ? "" : " No operations");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001284
1285 return dev;
1286}
1287
Myles Watson032a9652009-05-11 22:24:53 +00001288/**
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001289 * Test for match between romstage and ramstage device instance.
1290 *
1291 * @param dev Pointer to the device structure.
1292 * @param sdev Simple device model identifier, created with PCI_DEV().
1293 * @return Non-zero if bus:dev.fn of device matches.
1294 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001295unsigned int pci_match_simple_dev(struct device *dev, pci_devfn_t sdev)
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001296{
1297 return dev->bus->secondary == PCI_DEV2SEGBUS(sdev) &&
1298 dev->path.pci.devfn == PCI_DEV2DEVFN(sdev);
1299}
1300
1301/**
Tim Wawrzynczakdbcf7b12020-05-13 16:15:08 -06001302 * PCI devices that are marked as "hidden" do not get probed. However, the same
1303 * initialization logic is still performed as if it were. This is useful when
1304 * devices would like to be described in the devicetree.cb file, and/or present
1305 * static PCI resources to the allocator, but the platform firmware hides the
1306 * device (makes the device invisible to PCI enumeration) before PCI enumeration
1307 * takes place.
1308 *
1309 * The expected semantics of PCI devices marked as 'hidden':
1310 * 1) The device is actually present under the specified BDF
1311 * 2) The device config space can still be accessed somehow, but the Vendor ID
1312 * indicates there is no device there (it reads as 0xffffffff).
1313 * 3) The device may still consume PCI resources. Typically, these would have
1314 * been hardcoded elsewhere.
1315 *
1316 * @param dev Pointer to the device structure.
1317 */
1318static void pci_scan_hidden_device(struct device *dev)
1319{
1320 if (dev->chip_ops && dev->chip_ops->enable_dev)
1321 dev->chip_ops->enable_dev(dev);
1322
1323 /*
1324 * If chip_ops->enable_dev did not set dev->ops, then set to a default
1325 * .ops, because PCI enumeration is effectively being skipped, therefore
1326 * no PCI driver will bind to this device. However, children may want to
1327 * be enumerated, so this provides scan_static_bus for the .scan_bus
1328 * callback.
1329 */
1330 if (dev->ops == NULL)
1331 dev->ops = &default_hidden_pci_ops_dev;
1332
1333 if (dev->ops->enable)
1334 dev->ops->enable(dev);
1335
1336 /* Display the device almost as if it were probed normally */
1337 printk(BIOS_DEBUG, "%s [0000/%04x] hidden%s\n", dev_path(dev),
1338 dev->device, dev->ops ? "" : " No operations");
1339}
1340
1341/**
Jianjun Wang777ffff2021-07-24 14:50:36 +08001342 * A PCIe Downstream Port normally leads to a Link with only Device 0 on it
1343 * (PCIe spec r5.0, sec 7.3.1). As an optimization, scan only for Device 0 in
1344 * that situation.
1345 *
1346 * @param bus Pointer to the bus structure.
1347 */
1348static bool pci_bus_only_one_child(struct bus *bus)
1349{
1350 struct device *bridge = bus->dev;
1351 u16 pcie_pos, pcie_flags_reg;
1352 int pcie_type;
1353
Arthur Heymansdb199cc2022-01-06 20:56:01 +01001354 if (!bridge)
1355 return false;
1356
Nico Huberf514b8a2022-02-25 14:25:57 +01001357 if (bridge->path.type != DEVICE_PATH_PCI)
1358 return false;
1359
Jianjun Wang777ffff2021-07-24 14:50:36 +08001360 pcie_pos = pci_find_capability(bridge, PCI_CAP_ID_PCIE);
1361 if (!pcie_pos)
1362 return false;
1363
1364 pcie_flags_reg = pci_read_config16(bridge, pcie_pos + PCI_EXP_FLAGS);
1365
1366 pcie_type = (pcie_flags_reg & PCI_EXP_FLAGS_TYPE) >> 4;
1367
1368 return pciexp_is_downstream_port(pcie_type);
1369}
1370
1371/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001372 * Scan a PCI bus.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001373 *
Li-Ta Loe5266692004-03-23 21:28:05 +00001374 * Determine the existence of devices and bridges on a PCI bus. If there are
1375 * bridges on the bus, recursively scan the buses behind the bridges.
1376 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001377 * @param bus Pointer to the bus structure.
1378 * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1379 * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001380 */
Martin Roth38ddbfb2019-10-23 21:41:00 -06001381void pci_scan_bus(struct bus *bus, unsigned int min_devfn,
1382 unsigned int max_devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001383{
1384 unsigned int devfn;
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001385 struct device *dev, **prev;
1386 int once = 0;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001387
Elyes HAOUASf984aec2021-01-16 17:29:17 +01001388 printk(BIOS_DEBUG, "PCI: %s for bus %02x\n", __func__, bus->secondary);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001389
Uwe Hermanne4870472010-11-04 23:23:47 +00001390 /* Maximum sane devfn is 0xFF. */
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001391 if (max_devfn > 0xff) {
Elyes HAOUASf984aec2021-01-16 17:29:17 +01001392 printk(BIOS_ERR, "PCI: %s limits devfn %x - devfn %x\n",
1393 __func__, min_devfn, max_devfn);
1394 printk(BIOS_ERR, "PCI: %s upper limit too big. Using 0xff.\n", __func__);
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001395 max_devfn=0xff;
1396 }
1397
Eric Biederman8ca8d762003-04-22 19:02:15 +00001398 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001399
Jianjun Wang777ffff2021-07-24 14:50:36 +08001400 if (pci_bus_only_one_child(bus))
1401 max_devfn = MIN(max_devfn, 0x07);
1402
Uwe Hermanne4870472010-11-04 23:23:47 +00001403 /*
1404 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001405 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001406 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001407 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Ronald G. Minnich466ca2c2019-10-22 02:02:24 +00001408 if (CONFIG(MINIMAL_PCI_SCANNING)) {
1409 dev = pcidev_path_behind(bus, devfn);
1410 if (!dev || !dev->mandatory)
1411 continue;
1412 }
1413
Uwe Hermanne4870472010-11-04 23:23:47 +00001414 /* First thing setup the device structure. */
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001415 dev = pci_scan_get_dev(bus, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001416
Tim Wawrzynczakdbcf7b12020-05-13 16:15:08 -06001417 /* Devices marked 'hidden' do not get probed */
1418 if (dev && dev->hidden) {
1419 pci_scan_hidden_device(dev);
1420
1421 /* Skip pci_probe_dev, go to next devfn */
1422 continue;
1423 }
1424
Myles Watson29cc9ed2009-07-02 18:56:24 +00001425 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001426 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001427
Uwe Hermanne4870472010-11-04 23:23:47 +00001428 /*
1429 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001430 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001431 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001432 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001433 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001434 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001435 devfn += 0x07;
1436 }
1437 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001438
Eric Biederman8ca8d762003-04-22 19:02:15 +00001439 post_code(0x25);
1440
Uwe Hermanne4870472010-11-04 23:23:47 +00001441 /*
Elyes HAOUAS0ce74162021-01-16 14:43:49 +01001442 * Warn if any leftover static devices are found.
Uwe Hermanne4870472010-11-04 23:23:47 +00001443 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001444 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001445
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001446 prev = &bus->children;
1447 for (dev = bus->children; dev; dev = dev->sibling) {
Duncan Lauriebf696222020-10-18 15:10:00 -07001448
1449 /*
1450 * If static device is not PCI then enable it here and don't
1451 * treat it as a leftover device.
1452 */
1453 if (dev->path.type != DEVICE_PATH_PCI) {
1454 enable_static_device(dev);
1455 continue;
1456 }
1457
Tim Wawrzynczakdbcf7b12020-05-13 16:15:08 -06001458 /*
1459 * The device is only considered leftover if it is not hidden
1460 * and it has a Vendor ID of 0 (the default for a device that
1461 * could not be probed).
1462 */
1463 if (dev->vendor != 0 || dev->hidden) {
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001464 prev = &dev->sibling;
1465 continue;
1466 }
1467
1468 /* Unlink it from list. */
1469 *prev = dev->sibling;
1470
1471 if (!once++)
1472 printk(BIOS_WARNING, "PCI: Leftover static devices:\n");
1473 printk(BIOS_WARNING, "%s\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001474 }
1475
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001476 if (once)
1477 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
1478
Uwe Hermanne4870472010-11-04 23:23:47 +00001479 /*
1480 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001481 * scan the bus behind that child.
1482 */
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001483
Kyösti Mälkki2d2367c2015-02-20 21:28:31 +02001484 scan_bridges(bus);
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001485
Uwe Hermanne4870472010-11-04 23:23:47 +00001486 /*
1487 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001488 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001489 * Return how far we've got finding sub-buses.
1490 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001491 post_code(0x55);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001492}
1493
Kyösti Mälkki33452402015-02-23 06:58:26 +02001494typedef enum {
1495 PCI_ROUTE_CLOSE,
1496 PCI_ROUTE_SCAN,
1497 PCI_ROUTE_FINAL,
1498} scan_state;
1499
1500static void pci_bridge_route(struct bus *link, scan_state state)
1501{
1502 struct device *dev = link->dev;
1503 struct bus *parent = dev->bus;
Arthur Heymansf879d362021-11-10 22:09:58 +01001504 uint8_t primary, secondary, subordinate;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001505
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001506 if (state == PCI_ROUTE_SCAN) {
1507 link->secondary = parent->subordinate + 1;
Jeremy Sollercf2ac542019-10-09 21:40:36 -06001508 link->subordinate = link->secondary + dev->hotplug_buses;
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001509 }
1510
Kyösti Mälkki33452402015-02-23 06:58:26 +02001511 if (state == PCI_ROUTE_CLOSE) {
Arthur Heymansf879d362021-11-10 22:09:58 +01001512 primary = 0;
1513 secondary = 0xff;
1514 subordinate = 0xfe;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001515 } else if (state == PCI_ROUTE_SCAN) {
Arthur Heymansf879d362021-11-10 22:09:58 +01001516 primary = parent->secondary;
1517 secondary = link->secondary;
1518 subordinate = 0xff; /* MAX PCI_BUS number here */
Kyösti Mälkki33452402015-02-23 06:58:26 +02001519 } else if (state == PCI_ROUTE_FINAL) {
Arthur Heymansf879d362021-11-10 22:09:58 +01001520 primary = parent->secondary;
1521 secondary = link->secondary;
1522 subordinate = link->subordinate;
Arthur Heymans4a3331d2022-03-23 17:58:46 +01001523 } else {
1524 return;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001525 }
1526
1527 if (state == PCI_ROUTE_SCAN) {
1528 /* Clear all status bits and turn off memory, I/O and master enables. */
1529 link->bridge_cmd = pci_read_config16(dev, PCI_COMMAND);
1530 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1531 pci_write_config16(dev, PCI_STATUS, 0xffff);
1532 }
1533
1534 /*
1535 * Configure the bus numbers for this bridge: the configuration
1536 * transactions will not be propagated by the bridge if it is not
1537 * correctly configured.
1538 */
Arthur Heymansf879d362021-11-10 22:09:58 +01001539 pci_write_config8(dev, PCI_PRIMARY_BUS, primary);
1540 pci_write_config8(dev, PCI_SECONDARY_BUS, secondary);
1541 pci_write_config8(dev, PCI_SUBORDINATE_BUS, subordinate);
Kyösti Mälkki33452402015-02-23 06:58:26 +02001542
1543 if (state == PCI_ROUTE_FINAL) {
1544 pci_write_config16(dev, PCI_COMMAND, link->bridge_cmd);
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001545 parent->subordinate = link->subordinate;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001546 }
1547}
1548
Li-Ta Loe5266692004-03-23 21:28:05 +00001549/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001550 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001551 *
1552 * Determine the existence of buses behind the bridge. Set up the bridge
1553 * according to the result of the scan.
1554 *
1555 * This function is the default scan_bus() method for PCI bridge devices.
1556 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001557 * @param dev Pointer to the bridge device.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001558 * @param do_scan_bus TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +00001559 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001560void do_pci_scan_bridge(struct device *dev,
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001561 void (*do_scan_bus) (struct bus * bus,
Martin Roth38ddbfb2019-10-23 21:41:00 -06001562 unsigned int min_devfn,
1563 unsigned int max_devfn))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001564{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001565 struct bus *bus;
Eric Biederman83b991a2003-10-11 06:20:25 +00001566
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001567 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001568
Myles Watson894a3472010-06-09 22:41:35 +00001569 if (dev->link_list == NULL) {
1570 struct bus *link;
1571 link = malloc(sizeof(*link));
1572 if (link == NULL)
1573 die("Couldn't allocate a link!\n");
1574 memset(link, 0, sizeof(*link));
1575 link->dev = dev;
1576 dev->link_list = link;
1577 }
1578
1579 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001580
Nico Huber061b9052019-09-21 15:58:23 +02001581 pci_bridge_vga_compat(bus);
1582
Kyösti Mälkki33452402015-02-23 06:58:26 +02001583 pci_bridge_route(bus, PCI_ROUTE_SCAN);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001584
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001585 do_scan_bus(bus, 0x00, 0xff);
Kyösti Mälkki33452402015-02-23 06:58:26 +02001586
1587 pci_bridge_route(bus, PCI_ROUTE_FINAL);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001588}
Li-Ta Loe5266692004-03-23 21:28:05 +00001589
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001590/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001591 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001592 *
1593 * Determine the existence of buses behind the bridge. Set up the bridge
1594 * according to the result of the scan.
1595 *
1596 * This function is the default scan_bus() method for PCI bridge devices.
1597 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001598 * @param dev Pointer to the bridge device.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001599 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001600void pci_scan_bridge(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001601{
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001602 do_pci_scan_bridge(dev, pci_scan_bus);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001603}
1604
Myles Watson29cc9ed2009-07-02 18:56:24 +00001605/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001606 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001607 *
1608 * This function is the default scan_bus() method for PCI domains.
1609 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001610 * @param dev Pointer to the domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001611 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001612void pci_domain_scan_bus(struct device *dev)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001613{
Kyösti Mälkki6f370172015-03-19 15:26:52 +02001614 struct bus *link = dev->link_list;
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001615 pci_scan_bus(link, PCI_DEVFN(0, 0), 0xff);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001616}
1617
Angel Ponsb6519812021-12-31 13:33:50 +01001618void pci_dev_disable_bus_master(const struct device *dev)
1619{
1620 pci_update_config16(dev, PCI_COMMAND, ~PCI_COMMAND_MASTER, 0x0);
1621}
1622
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001623/**
1624 * Take an INT_PIN number (0, 1 - 4) and convert
1625 * it to a string ("NO PIN", "PIN A" - "PIN D")
1626 *
1627 * @param pin PCI Interrupt Pin number (0, 1 - 4)
1628 * @return A string corresponding to the pin number or "Invalid"
1629 */
1630const char *pin_to_str(int pin)
1631{
1632 const char *str[5] = {
1633 "NO PIN",
1634 "PIN A",
1635 "PIN B",
1636 "PIN C",
1637 "PIN D",
1638 };
1639
1640 if (pin >= 0 && pin <= 4)
1641 return str[pin];
1642 else
1643 return "Invalid PIN, not 0 - 4";
1644}
1645
1646/**
1647 * Get the PCI INT_PIN swizzle for a device defined as:
1648 * pin_parent = (pin_child + devn_child) % 4 + 1
1649 * where PIN A = 1 ... PIN_D = 4
1650 *
1651 * Given a PCI device structure 'dev', find the interrupt pin
1652 * that will be triggered on its parent bridge device when
1653 * generating an interrupt. For example: Device 1:3.2 may
1654 * use INT_PIN A but will trigger PIN D on its parent bridge
1655 * device. In this case, this function will return 4 (PIN D).
1656 *
1657 * @param dev A PCI device structure to swizzle interrupt pins for
Martin Roth32bc6b62015-01-04 16:54:35 -07001658 * @param *parent_bridge The PCI device structure for the bridge
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001659 * device 'dev' is attached to
1660 * @return The interrupt pin number (1 - 4) that 'dev' will
1661 * trigger when generating an interrupt
1662 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001663static int swizzle_irq_pins(struct device *dev, struct device **parent_bridge)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001664{
Aaron Durbinc30d9132017-08-07 16:55:43 -06001665 struct device *parent; /* Our current device's parent device */
1666 struct device *child; /* The child device of the parent */
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001667 uint8_t parent_bus = 0; /* Parent Bus number */
1668 uint16_t parent_devfn = 0; /* Parent Device and Function number */
1669 uint16_t child_devfn = 0; /* Child Device and Function number */
1670 uint8_t swizzled_pin = 0; /* Pin swizzled across a bridge */
1671
1672 /* Start with PIN A = 0 ... D = 3 */
1673 swizzled_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN) - 1;
1674
1675 /* While our current device has parent devices */
1676 child = dev;
1677 for (parent = child->bus->dev; parent; parent = parent->bus->dev) {
1678 parent_bus = parent->bus->secondary;
1679 parent_devfn = parent->path.pci.devfn;
1680 child_devfn = child->path.pci.devfn;
1681
1682 /* Swizzle the INT_PIN for any bridges not on root bus */
1683 swizzled_pin = (PCI_SLOT(child_devfn) + swizzled_pin) % 4;
1684 printk(BIOS_SPEW, "\tWith INT_PIN swizzled to %s\n"
1685 "\tAttached to bridge device %01X:%02Xh.%02Xh\n",
1686 pin_to_str(swizzled_pin + 1), parent_bus,
1687 PCI_SLOT(parent_devfn), PCI_FUNC(parent_devfn));
1688
1689 /* Continue until we find the root bus */
1690 if (parent_bus > 0) {
1691 /*
1692 * We will go on to the next parent so this parent
1693 * becomes the child
1694 */
1695 child = parent;
1696 continue;
1697 } else {
1698 /*
1699 * Found the root bridge device,
1700 * fill in the structure and exit
1701 */
1702 *parent_bridge = parent;
1703 break;
1704 }
1705 }
1706
1707 /* End with PIN A = 1 ... D = 4 */
1708 return swizzled_pin + 1;
1709}
1710
1711/**
1712 * Given a device structure 'dev', find its interrupt pin
1713 * and its parent bridge 'parent_bdg' device structure.
1714 * If it is behind a bridge, it will return the interrupt
1715 * pin number (1 - 4) of the parent bridge that the device
1716 * interrupt pin has been swizzled to, otherwise it will
1717 * return the interrupt pin that is programmed into the
1718 * PCI config space of the target device. If 'dev' is
1719 * behind a bridge, it will fill in 'parent_bdg' with the
1720 * device structure of the bridge it is behind, otherwise
1721 * it will copy 'dev' into 'parent_bdg'.
1722 *
1723 * @param dev A PCI device structure to get interrupt pins for.
1724 * @param *parent_bdg The PCI device structure for the bridge
1725 * device 'dev' is attached to.
1726 * @return The interrupt pin number (1 - 4) that 'dev' will
1727 * trigger when generating an interrupt.
1728 * Errors: -1 is returned if the device is not enabled
1729 * -2 is returned if a parent bridge could not be found.
1730 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001731int get_pci_irq_pins(struct device *dev, struct device **parent_bdg)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001732{
1733 uint8_t bus = 0; /* The bus this device is on */
1734 uint16_t devfn = 0; /* This device's device and function numbers */
1735 uint8_t int_pin = 0; /* Interrupt pin used by the device */
1736 uint8_t target_pin = 0; /* Interrupt pin we want to assign an IRQ to */
1737
1738 /* Make sure this device is enabled */
1739 if (!(dev->enabled && (dev->path.type == DEVICE_PATH_PCI)))
1740 return -1;
1741
1742 bus = dev->bus->secondary;
1743 devfn = dev->path.pci.devfn;
1744
1745 /* Get and validate the interrupt pin used. Only 1-4 are allowed */
1746 int_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN);
1747 if (int_pin < 1 || int_pin > 4)
1748 return -1;
1749
1750 printk(BIOS_SPEW, "PCI IRQ: Found device %01X:%02X.%02X using %s\n",
1751 bus, PCI_SLOT(devfn), PCI_FUNC(devfn), pin_to_str(int_pin));
1752
1753 /* If this device is on a bridge, swizzle its INT_PIN */
1754 if (bus) {
1755 /* Swizzle its INT_PINs */
1756 target_pin = swizzle_irq_pins(dev, parent_bdg);
1757
1758 /* Make sure the swizzle returned valid structures */
1759 if (parent_bdg == NULL) {
Julius Wernere9665952022-01-21 17:06:20 -08001760 printk(BIOS_WARNING, "Could not find parent bridge for this device!\n");
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001761 return -2;
1762 }
1763 } else { /* Device is not behind a bridge */
1764 target_pin = int_pin; /* Return its own interrupt pin */
1765 *parent_bdg = dev; /* Return its own structure */
1766 }
1767
1768 /* Target pin is the interrupt pin we want to assign an IRQ to */
1769 return target_pin;
1770}
1771
Julius Wernercd49cce2019-03-05 16:53:33 -08001772#if CONFIG(PC80_SYSTEM)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001773/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001774 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001775 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001776 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001777 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001778 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001779 *
1780 * This function should be called for each PCI slot in your system.
1781 *
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001782 * @param dev Pointer to dev structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001783 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1784 * of this slot. The particular IRQ #s that are passed in depend on the
1785 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001786 */
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001787void pci_assign_irqs(struct device *dev, const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001788{
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001789 u8 slot, line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001790
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001791 /* Each device may contain up to eight functions. */
1792 slot = dev->path.pci.devfn >> 3;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001793
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001794 for (; dev ; dev = dev->sibling) {
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001795
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001796 if (dev->path.pci.devfn >> 3 != slot)
1797 break;
1798
1799 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001800
Uwe Hermanne4870472010-11-04 23:23:47 +00001801 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001802 if ((line < 1) || (line > 4))
1803 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001804
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001805 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001806
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001807 printk(BIOS_DEBUG, "Assigning IRQ %d to %s\n", irq, dev_path(dev));
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001808
Angel Ponsceca5de2021-06-28 11:59:33 +02001809 pci_write_config8(dev, PCI_INTERRUPT_LINE, irq);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001810
Uwe Hermanne4870472010-11-04 23:23:47 +00001811 /* Change to level triggered. */
Angel Ponsceca5de2021-06-28 11:59:33 +02001812 i8259_configure_irq_trigger(irq, IRQ_LEVEL_TRIGGERED);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001813 }
1814}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001815#endif