blob: 4b5e73b80617f3b0882cd3986c6131ad9de0d390 [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) {
Angel Ponsd19cc112021-07-04 11:41:31 +0200152 printk(BIOS_DEBUG, "%s register %02lx(%08lx), read-only ignoring it\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000153 dev_path(dev), index, value);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000154 }
155 resource->flags = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000156 } else if (attr & PCI_BASE_ADDRESS_SPACE_IO) {
157 /* An I/O mapped base address. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000158 resource->flags |= IORESOURCE_IO;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000159 /* I don't want to deal with 32bit I/O resources. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000160 resource->limit = 0xffff;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000161 } else {
162 /* A Memory mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000163 attr &= PCI_BASE_ADDRESS_MEM_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000164 resource->flags |= IORESOURCE_MEM;
Uwe Hermanne4870472010-11-04 23:23:47 +0000165 if (attr & PCI_BASE_ADDRESS_MEM_PREFETCH)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000166 resource->flags |= IORESOURCE_PREFETCH;
Eric Biederman03acab62004-10-14 21:25:53 +0000167 attr &= PCI_BASE_ADDRESS_MEM_LIMIT_MASK;
168 if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_32) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000169 /* 32bit limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000170 resource->limit = 0xffffffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000171 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_1M) {
172 /* 1MB limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000173 resource->limit = 0x000fffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000174 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_64) {
175 /* 64bit limit. */
Eric Biederman03acab62004-10-14 21:25:53 +0000176 resource->limit = 0xffffffffffffffffULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000177 resource->flags |= IORESOURCE_PCI64;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000178 } else {
179 /* Invalid value. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000180 printk(BIOS_ERR, "Broken BAR with value %lx\n", attr);
181 printk(BIOS_ERR, " on dev %s at index %02lx\n",
Myles Watson29cc9ed2009-07-02 18:56:24 +0000182 dev_path(dev), index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000183 resource->flags = 0;
184 }
185 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000186
Myles Watson29cc9ed2009-07-02 18:56:24 +0000187 /* Don't let the limit exceed which bits can move. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000188 if (resource->limit > limit)
Eric Biederman03acab62004-10-14 21:25:53 +0000189 resource->limit = limit;
Eric Biederman03acab62004-10-14 21:25:53 +0000190
Eric Biederman5cd81732004-03-11 15:01:31 +0000191 return resource;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000192}
193
Myles Watson29cc9ed2009-07-02 18:56:24 +0000194/**
195 * Given a device and an index, read the size of the BAR for that register.
196 *
197 * @param dev Pointer to the device structure.
198 * @param index Address of the PCI configuration register.
199 */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000200static void pci_get_rom_resource(struct device *dev, unsigned long index)
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000201{
202 struct resource *resource;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000203 unsigned long value;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000204 resource_t moving;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000205
Myles Watson29cc9ed2009-07-02 18:56:24 +0000206 /* Initialize the resources to nothing. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000207 resource = new_resource(dev, index);
208
Myles Watson29cc9ed2009-07-02 18:56:24 +0000209 /* Get the initial value. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000210 value = pci_read_config32(dev, index);
211
Myles Watson29cc9ed2009-07-02 18:56:24 +0000212 /* See which bits move. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000213 moving = pci_moving_config32(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000214
215 /* Clear the Enable bit. */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000216 moving = moving & ~PCI_ROM_ADDRESS_ENABLE;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000217
Myles Watson032a9652009-05-11 22:24:53 +0000218 /* Find the resource constraints.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000219 * Start by finding the bits that move. From there:
220 * - Size is the least significant bit of the bits that move.
221 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000222 * See PCI Spec 6.2.5.1.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000223 */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000224 if (moving) {
225 resource->size = 1;
226 resource->align = resource->gran = 0;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000227 while (!(moving & resource->size)) {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000228 resource->size <<= 1;
229 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000230 resource->gran += 1;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000231 }
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000232 resource->limit = moving | (resource->size - 1);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000233 resource->flags |= IORESOURCE_MEM | IORESOURCE_READONLY;
234 } else {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000235 if (value != 0) {
Angel Ponsd19cc112021-07-04 11:41:31 +0200236 printk(BIOS_DEBUG, "%s register %02lx(%08lx), read-only ignoring it\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000237 dev_path(dev), index, value);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000238 }
239 resource->flags = 0;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000240 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000241 compact_resources(dev);
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000242}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000243
Myles Watson29cc9ed2009-07-02 18:56:24 +0000244/**
Patrick Rudolph4e2f95b2018-05-16 14:56:22 +0200245 * Given a device, read the size of the MSI-X table.
246 *
247 * @param dev Pointer to the device structure.
248 * @return MSI-X table size or 0 if not MSI-X capable device
249 */
250size_t pci_msix_table_size(struct device *dev)
251{
252 const size_t pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
253 if (!pos)
254 return 0;
255
256 const u16 control = pci_read_config16(dev, pos + PCI_MSIX_FLAGS);
257 return (control & PCI_MSIX_FLAGS_QSIZE) + 1;
258}
259
260/**
261 * Given a device, return the table offset and bar the MSI-X tables resides in.
262 *
263 * @param dev Pointer to the device structure.
264 * @param offset Returned value gives the offset in bytes inside the PCI BAR.
265 * @param idx The returned value is the index of the PCI_BASE_ADDRESS register
266 * the MSI-X table is located in.
267 * @return Zero on success
268 */
269int pci_msix_table_bar(struct device *dev, u32 *offset, u8 *idx)
270{
271 const size_t pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
272 if (!pos || !offset || !idx)
273 return 1;
274
275 *offset = pci_read_config32(dev, pos + PCI_MSIX_TABLE);
276 *idx = (u8)(*offset & PCI_MSIX_PBA_BIR);
277 *offset &= PCI_MSIX_PBA_OFFSET;
278
279 return 0;
280}
281
282/**
283 * Given a device, return a msix_entry pointer or NULL if no table was found.
284 *
285 * @param dev Pointer to the device structure.
286 *
287 * @return NULL on error
288 */
289struct msix_entry *pci_msix_get_table(struct device *dev)
290{
291 struct resource *res;
292 u32 offset;
293 u8 idx;
294
295 if (pci_msix_table_bar(dev, &offset, &idx))
296 return NULL;
297
298 if (idx > 5)
299 return NULL;
300
301 res = probe_resource(dev, idx * 4 + PCI_BASE_ADDRESS_0);
302 if (!res || !res->base || offset >= res->size)
303 return NULL;
304
305 if ((res->flags & IORESOURCE_PCI64) &&
306 (uintptr_t)res->base != res->base)
307 return NULL;
308
309 return (struct msix_entry *)((uintptr_t)res->base + offset);
310}
311
312/**
Myles Watson29cc9ed2009-07-02 18:56:24 +0000313 * Read the base address registers for a given device.
314 *
315 * @param dev Pointer to the dev structure.
316 * @param howmany How many registers to read (6 for device, 2 for bridge).
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000317 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000318static void pci_read_bases(struct device *dev, unsigned int howmany)
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000319{
320 unsigned long index;
321
Myles Watson29cc9ed2009-07-02 18:56:24 +0000322 for (index = PCI_BASE_ADDRESS_0;
323 (index < PCI_BASE_ADDRESS_0 + (howmany << 2));) {
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000324 struct resource *resource;
325 resource = pci_get_resource(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000326 index += (resource->flags & IORESOURCE_PCI64) ? 8 : 4;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000327 }
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000328
329 compact_resources(dev);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000330}
331
Myles Watson29cc9ed2009-07-02 18:56:24 +0000332static void pci_record_bridge_resource(struct device *dev, resource_t moving,
Martin Roth38ddbfb2019-10-23 21:41:00 -0600333 unsigned int index, unsigned long type)
Eric Biederman03acab62004-10-14 21:25:53 +0000334{
Eric Biederman03acab62004-10-14 21:25:53 +0000335 struct resource *resource;
Uwe Hermanne4870472010-11-04 23:23:47 +0000336 unsigned long gran;
337 resource_t step;
338
Myles Watson29cc9ed2009-07-02 18:56:24 +0000339 resource = NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000340
341 if (!moving)
342 return;
343
344 /* Initialize the constraints on the current bus. */
345 resource = new_resource(dev, index);
346 resource->size = 0;
347 gran = 0;
348 step = 1;
349 while ((moving & step) == 0) {
350 gran += 1;
351 step <<= 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000352 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000353 resource->gran = gran;
354 resource->align = gran;
355 resource->limit = moving | (step - 1);
356 resource->flags = type | IORESOURCE_PCI_BRIDGE |
357 IORESOURCE_BRIDGE;
Eric Biederman03acab62004-10-14 21:25:53 +0000358}
359
Eric Biederman8ca8d762003-04-22 19:02:15 +0000360static void pci_bridge_read_bases(struct device *dev)
361{
Eric Biederman03acab62004-10-14 21:25:53 +0000362 resource_t moving_base, moving_limit, moving;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000363
Myles Watson29cc9ed2009-07-02 18:56:24 +0000364 /* See if the bridge I/O resources are implemented. */
365 moving_base = ((u32) pci_moving_config8(dev, PCI_IO_BASE)) << 8;
366 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000367 ((u32) pci_moving_config16(dev, PCI_IO_BASE_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000368
Myles Watson29cc9ed2009-07-02 18:56:24 +0000369 moving_limit = ((u32) pci_moving_config8(dev, PCI_IO_LIMIT)) << 8;
370 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000371 ((u32) pci_moving_config16(dev, PCI_IO_LIMIT_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000372
373 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000374
Myles Watson29cc9ed2009-07-02 18:56:24 +0000375 /* Initialize the I/O space constraints on the current bus. */
376 pci_record_bridge_resource(dev, moving, PCI_IO_BASE, IORESOURCE_IO);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000377
Myles Watson29cc9ed2009-07-02 18:56:24 +0000378 /* See if the bridge prefmem resources are implemented. */
379 moving_base =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000380 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_BASE)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000381 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000382 ((resource_t) pci_moving_config32(dev, PCI_PREF_BASE_UPPER32)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000383
Myles Watson29cc9ed2009-07-02 18:56:24 +0000384 moving_limit =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000385 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_LIMIT)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000386 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000387 ((resource_t) pci_moving_config32(dev, PCI_PREF_LIMIT_UPPER32)) << 32;
Myles Watson032a9652009-05-11 22:24:53 +0000388
Eric Biederman03acab62004-10-14 21:25:53 +0000389 moving = moving_base & moving_limit;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000390 /* Initialize the prefetchable memory constraints on the current bus. */
391 pci_record_bridge_resource(dev, moving, PCI_PREF_MEMORY_BASE,
392 IORESOURCE_MEM | IORESOURCE_PREFETCH);
Myles Watson032a9652009-05-11 22:24:53 +0000393
Myles Watson29cc9ed2009-07-02 18:56:24 +0000394 /* See if the bridge mem resources are implemented. */
395 moving_base = ((u32) pci_moving_config16(dev, PCI_MEMORY_BASE)) << 16;
396 moving_limit = ((u32) pci_moving_config16(dev, PCI_MEMORY_LIMIT)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000397
398 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000399
Myles Watson29cc9ed2009-07-02 18:56:24 +0000400 /* Initialize the memory resources on the current bus. */
401 pci_record_bridge_resource(dev, moving, PCI_MEMORY_BASE,
402 IORESOURCE_MEM);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000403
Eric Biederman5cd81732004-03-11 15:01:31 +0000404 compact_resources(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000405}
406
Eric Biederman5899fd82003-04-24 06:25:08 +0000407void pci_dev_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000408{
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000409 pci_read_bases(dev, 6);
410 pci_get_rom_resource(dev, PCI_ROM_ADDRESS);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000411}
412
Eric Biederman5899fd82003-04-24 06:25:08 +0000413void pci_bus_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000414{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000415 pci_bridge_read_bases(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000416 pci_read_bases(dev, 2);
417 pci_get_rom_resource(dev, PCI_ROM_ADDRESS1);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000418}
419
Myles Watson29cc9ed2009-07-02 18:56:24 +0000420void pci_domain_read_resources(struct device *dev)
421{
422 struct resource *res;
423
424 /* Initialize the system-wide I/O space constraints. */
425 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
426 res->limit = 0xffffUL;
427 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
428 IORESOURCE_ASSIGNED;
429
430 /* Initialize the system-wide memory resources constraints. */
431 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
Furquan Shaikh871baf22020-03-12 17:51:24 -0700432 res->limit = (1ULL << cpu_phys_address_size()) - 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000433 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
434 IORESOURCE_ASSIGNED;
435}
436
Raul E Rangel5cb34e22020-05-04 16:41:22 -0600437void pci_domain_set_resources(struct device *dev)
438{
439 assign_resources(dev->link_list);
440}
441
Nico Huber730b2612020-05-20 00:32:50 +0200442static void pci_store_resource(const struct device *const dev,
443 const struct resource *const resource)
444{
445 unsigned long base_lo, base_hi;
446
447 base_lo = resource->base & 0xffffffff;
448 base_hi = (resource->base >> 32) & 0xffffffff;
449
450 /*
451 * Some chipsets allow us to set/clear the I/O bit
452 * (e.g. VIA 82C686A). So set it to be safe.
453 */
454 if (resource->flags & IORESOURCE_IO)
455 base_lo |= PCI_BASE_ADDRESS_SPACE_IO;
456
457 pci_write_config32(dev, resource->index, base_lo);
458 if (resource->flags & IORESOURCE_PCI64)
459 pci_write_config32(dev, resource->index + 4, base_hi);
460}
461
462static void pci_store_bridge_resource(const struct device *const dev,
463 struct resource *const resource)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000464{
Eric Biederman03acab62004-10-14 21:25:53 +0000465 resource_t base, end;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000466
Nico Huber730b2612020-05-20 00:32:50 +0200467 /*
468 * PCI bridges have no enable bit. They are disabled if the base of
469 * the range is greater than the limit. If the size is zero, disable
470 * by setting the base = limit and end = limit - 2^gran.
471 */
472 if (resource->size == 0) {
473 base = resource->limit;
474 end = resource->limit - (1 << resource->gran);
475 resource->base = base;
476 } else {
477 base = resource->base;
478 end = resource_end(resource);
479 }
480
481 if (resource->index == PCI_IO_BASE) {
482 /* Set the I/O ranges. */
483 pci_write_config8(dev, PCI_IO_BASE, base >> 8);
484 pci_write_config16(dev, PCI_IO_BASE_UPPER16, base >> 16);
485 pci_write_config8(dev, PCI_IO_LIMIT, end >> 8);
486 pci_write_config16(dev, PCI_IO_LIMIT_UPPER16, end >> 16);
487 } else if (resource->index == PCI_MEMORY_BASE) {
488 /* Set the memory range. */
489 pci_write_config16(dev, PCI_MEMORY_BASE, base >> 16);
490 pci_write_config16(dev, PCI_MEMORY_LIMIT, end >> 16);
491 } else if (resource->index == PCI_PREF_MEMORY_BASE) {
492 /* Set the prefetchable memory range. */
493 pci_write_config16(dev, PCI_PREF_MEMORY_BASE, base >> 16);
494 pci_write_config32(dev, PCI_PREF_BASE_UPPER32, base >> 32);
495 pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, end >> 16);
496 pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, end >> 32);
497 } else {
498 /* Don't let me think I stored the resource. */
499 resource->flags &= ~IORESOURCE_STORED;
500 printk(BIOS_ERR, "ERROR: invalid resource->index %lx\n", resource->index);
501 }
502}
503
504static void pci_set_resource(struct device *dev, struct resource *resource)
505{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000506 /* Make certain the resource has actually been assigned a value. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000507 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
Nico Huberf5312442020-05-20 01:02:18 +0200508 if (resource->flags & IORESOURCE_BRIDGE) {
509 /* If a bridge resource has no value assigned,
510 we can treat it like an empty resource. */
511 resource->size = 0;
512 } else {
Angel Ponsd19cc112021-07-04 11:41:31 +0200513 printk(BIOS_ERR, "ERROR: %s %02lx %s size: 0x%010llx not assigned\n",
514 dev_path(dev), resource->index,
Nico Huberf5312442020-05-20 01:02:18 +0200515 resource_type(resource), resource->size);
516 return;
517 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000518 }
519
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000520 /* If this resource is fixed don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000521 if (resource->flags & IORESOURCE_FIXED)
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000522 return;
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000523
Myles Watson29cc9ed2009-07-02 18:56:24 +0000524 /* If I have already stored this resource don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000525 if (resource->flags & IORESOURCE_STORED)
Eric Biederman5cd81732004-03-11 15:01:31 +0000526 return;
Eric Biederman5cd81732004-03-11 15:01:31 +0000527
Myles Watson29cc9ed2009-07-02 18:56:24 +0000528 /* If the resource is subtractive don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000529 if (resource->flags & IORESOURCE_SUBTRACTIVE)
Eric Biederman03acab62004-10-14 21:25:53 +0000530 return;
Eric Biederman03acab62004-10-14 21:25:53 +0000531
Myles Watson29cc9ed2009-07-02 18:56:24 +0000532 /* Only handle PCI memory and I/O resources for now. */
533 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Eric Biederman8ca8d762003-04-22 19:02:15 +0000534 return;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000535
Myles Watson29cc9ed2009-07-02 18:56:24 +0000536 /* Enable the resources in the command register. */
Eric Biederman03acab62004-10-14 21:25:53 +0000537 if (resource->size) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000538 if (resource->flags & IORESOURCE_MEM)
Eric Biederman03acab62004-10-14 21:25:53 +0000539 dev->command |= PCI_COMMAND_MEMORY;
Uwe Hermanne4870472010-11-04 23:23:47 +0000540 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000541 dev->command |= PCI_COMMAND_IO;
Felix Singer205b53e2020-09-07 15:21:21 +0200542 if (resource->flags & IORESOURCE_PCI_BRIDGE &&
543 CONFIG(PCI_SET_BUS_MASTER_PCI_BRIDGES))
Eric Biederman03acab62004-10-14 21:25:53 +0000544 dev->command |= PCI_COMMAND_MASTER;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000545 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000546
Myles Watson29cc9ed2009-07-02 18:56:24 +0000547 /* Now store the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000548 resource->flags |= IORESOURCE_STORED;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000549
Nico Huber730b2612020-05-20 00:32:50 +0200550 if (resource->flags & IORESOURCE_PCI_BRIDGE)
551 pci_store_bridge_resource(dev, resource);
552 else
553 pci_store_resource(dev, resource);
Uwe Hermanne4870472010-11-04 23:23:47 +0000554
Eric Biederman03acab62004-10-14 21:25:53 +0000555 report_resource_stored(dev, resource, "");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000556}
557
Eric Biederman5899fd82003-04-24 06:25:08 +0000558void pci_dev_set_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000559{
Myles Watsonc25cc112010-05-21 14:33:48 +0000560 struct resource *res;
Myles Watson894a3472010-06-09 22:41:35 +0000561 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000562 u8 line;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000563
Uwe Hermanne4870472010-11-04 23:23:47 +0000564 for (res = dev->resource_list; res; res = res->next)
Myles Watsonc25cc112010-05-21 14:33:48 +0000565 pci_set_resource(dev, res);
Uwe Hermanne4870472010-11-04 23:23:47 +0000566
Myles Watson894a3472010-06-09 22:41:35 +0000567 for (bus = dev->link_list; bus; bus = bus->next) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000568 if (bus->children)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000569 assign_resources(bus);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000570 }
571
Myles Watson29cc9ed2009-07-02 18:56:24 +0000572 /* Set a default latency timer. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000573 pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000574
Myles Watson29cc9ed2009-07-02 18:56:24 +0000575 /* Set a default secondary latency timer. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000576 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000577 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000578
Myles Watson29cc9ed2009-07-02 18:56:24 +0000579 /* Zero the IRQ settings. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000580 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Uwe Hermanne4870472010-11-04 23:23:47 +0000581 if (line)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000582 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
Uwe Hermanne4870472010-11-04 23:23:47 +0000583
Myles Watson29cc9ed2009-07-02 18:56:24 +0000584 /* Set the cache line size, so far 64 bytes is good for everyone. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000585 pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000586}
587
Eric Biedermane9a271e32003-09-02 03:36:25 +0000588void pci_dev_enable_resources(struct device *dev)
589{
Kyösti Mälkkicac02312019-06-30 08:40:04 +0300590 const struct pci_operations *ops = NULL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000591 u16 command;
Eric Biederman03acab62004-10-14 21:25:53 +0000592
Uwe Hermanne4870472010-11-04 23:23:47 +0000593 /* Set the subsystem vendor and device ID for mainboard devices. */
Kyösti Mälkkicac02312019-06-30 08:40:04 +0300594 if (dev->ops)
595 ops = dev->ops->ops_pci;
Eric Biedermandbec2d42004-10-21 10:44:08 +0000596 if (dev->on_mainboard && ops && ops->set_subsystem) {
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700597 if (CONFIG_SUBSYSTEM_VENDOR_ID)
598 dev->subsystem_vendor = CONFIG_SUBSYSTEM_VENDOR_ID;
Rizwan Qureshifd891292017-04-26 21:00:37 +0530599 else if (!dev->subsystem_vendor)
600 dev->subsystem_vendor = pci_read_config16(dev,
601 PCI_VENDOR_ID);
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700602 if (CONFIG_SUBSYSTEM_DEVICE_ID)
603 dev->subsystem_device = CONFIG_SUBSYSTEM_DEVICE_ID;
Rizwan Qureshifd891292017-04-26 21:00:37 +0530604 else if (!dev->subsystem_device)
605 dev->subsystem_device = pci_read_config16(dev,
606 PCI_DEVICE_ID);
607
Sven Schnelle91321022011-03-01 19:58:47 +0000608 printk(BIOS_DEBUG, "%s subsystem <- %04x/%04x\n",
609 dev_path(dev), dev->subsystem_vendor,
610 dev->subsystem_device);
611 ops->set_subsystem(dev, dev->subsystem_vendor,
612 dev->subsystem_device);
Eric Biederman03acab62004-10-14 21:25:53 +0000613 }
Eric Biedermane9a271e32003-09-02 03:36:25 +0000614 command = pci_read_config16(dev, PCI_COMMAND);
615 command |= dev->command;
Uwe Hermanne4870472010-11-04 23:23:47 +0000616
Myles Watson29cc9ed2009-07-02 18:56:24 +0000617 /* v3 has
618 * command |= (PCI_COMMAND_PARITY + PCI_COMMAND_SERR); // Error check.
619 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000620
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000621 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000622 pci_write_config16(dev, PCI_COMMAND, command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000623}
624
625void pci_bus_enable_resources(struct device *dev)
626{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000627 u16 ctrl;
628
Uwe Hermanne4870472010-11-04 23:23:47 +0000629 /*
630 * Enable I/O in command register if there is VGA card
Myles Watson29cc9ed2009-07-02 18:56:24 +0000631 * connected with (even it does not claim I/O resource).
632 */
Myles Watson894a3472010-06-09 22:41:35 +0000633 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
Li-Ta Lo515f6c72005-01-11 22:48:54 +0000634 dev->command |= PCI_COMMAND_IO;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000635 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +0000636 ctrl |= dev->link_list->bridge_ctrl;
Kyösti Mälkki382e2162019-09-21 16:19:32 +0300637 ctrl |= (PCI_BRIDGE_CTL_PARITY | PCI_BRIDGE_CTL_SERR); /* Error check. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000638 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000639 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
640
641 pci_dev_enable_resources(dev);
642}
643
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000644void pci_bus_reset(struct bus *bus)
645{
Uwe Hermanne4870472010-11-04 23:23:47 +0000646 u16 ctl;
647
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000648 ctl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
649 ctl |= PCI_BRIDGE_CTL_BUS_RESET;
650 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
651 mdelay(10);
Uwe Hermanne4870472010-11-04 23:23:47 +0000652
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000653 ctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
654 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
655 delay(1);
656}
657
Elyes HAOUAS88030b72018-09-20 17:26:10 +0200658void pci_dev_set_subsystem(struct device *dev, unsigned int vendor,
659 unsigned int device)
Eric Biederman03acab62004-10-14 21:25:53 +0000660{
Subrata Banik9514d472019-03-20 14:56:27 +0530661 uint8_t offset;
662
663 /* Header type */
664 switch (dev->hdr_type & 0x7f) {
665 case PCI_HEADER_TYPE_NORMAL:
666 offset = PCI_SUBSYSTEM_VENDOR_ID;
667 break;
668 case PCI_HEADER_TYPE_BRIDGE:
669 offset = pci_find_capability(dev, PCI_CAP_ID_SSVID);
670 if (!offset)
671 return;
672 offset += 4; /* Vendor ID at offset 4 */
673 break;
674 case PCI_HEADER_TYPE_CARDBUS:
675 offset = PCI_CB_SUBSYSTEM_VENDOR_ID;
676 break;
677 default:
678 return;
679 }
680
Subrata Banik4a0f0712019-03-20 14:29:47 +0530681 if (!vendor || !device) {
Subrata Banik9514d472019-03-20 14:56:27 +0530682 pci_write_config32(dev, offset,
Subrata Banik4a0f0712019-03-20 14:29:47 +0530683 pci_read_config32(dev, PCI_VENDOR_ID));
684 } else {
Subrata Banik9514d472019-03-20 14:56:27 +0530685 pci_write_config32(dev, offset,
Subrata Banik4a0f0712019-03-20 14:29:47 +0530686 ((device & 0xffff) << 16) | (vendor & 0xffff));
687 }
Eric Biederman03acab62004-10-14 21:25:53 +0000688}
689
Frans Hendriksb71181a2019-10-04 14:06:33 +0200690static int should_run_oprom(struct device *dev, struct rom_header *rom)
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300691{
692 static int should_run = -1;
693
Frans Hendriksb71181a2019-10-04 14:06:33 +0200694 if (CONFIG(VENDORCODE_ELTAN_VBOOT))
695 if (rom != NULL)
696 if (!verified_boot_should_run_oprom(rom))
697 return 0;
698
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300699 if (should_run >= 0)
700 return should_run;
701
Julius Wernercd49cce2019-03-05 16:53:33 -0800702 if (CONFIG(ALWAYS_RUN_OPROM)) {
Aaron Durbin10510252018-01-30 10:04:02 -0700703 should_run = 1;
704 return should_run;
705 }
706
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200707 /* Don't run VGA option ROMs, unless we have to print
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300708 * something on the screen before the kernel is loaded.
709 */
Furquan Shaikh0325dc62016-07-25 13:02:36 -0700710 should_run = display_init_required();
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300711
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200712 if (!should_run)
713 printk(BIOS_DEBUG, "Not running VGA Option ROM\n");
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300714 return should_run;
715}
716
717static int should_load_oprom(struct device *dev)
718{
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300719 /* If S3_VGA_ROM_RUN is disabled, skip running VGA option
720 * ROMs when coming out of an S3 resume.
721 */
Julius Wernercd49cce2019-03-05 16:53:33 -0800722 if (!CONFIG(S3_VGA_ROM_RUN) && acpi_is_wakeup_s3() &&
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300723 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
724 return 0;
Julius Wernercd49cce2019-03-05 16:53:33 -0800725 if (CONFIG(ALWAYS_LOAD_OPROM))
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300726 return 1;
Frans Hendriksb71181a2019-10-04 14:06:33 +0200727 if (should_run_oprom(dev, NULL))
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300728 return 1;
729
730 return 0;
731}
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300732
Kyösti Mälkki0f300632020-12-19 23:43:56 +0200733static void oprom_pre_graphics_stall(void)
734{
Paul Menzelc4062c72021-02-11 10:43:14 +0100735 if (CONFIG_PRE_GRAPHICS_DELAY_MS)
736 mdelay(CONFIG_PRE_GRAPHICS_DELAY_MS);
Kyösti Mälkki0f300632020-12-19 23:43:56 +0200737}
738
Uwe Hermanne4870472010-11-04 23:23:47 +0000739/** Default handler: only runs the relevant PCI BIOS. */
Li-Ta Lo883b8792005-01-10 23:16:22 +0000740void pci_dev_init(struct device *dev)
741{
742 struct rom_header *rom, *ram;
743
Julius Wernercd49cce2019-03-05 16:53:33 -0800744 if (!CONFIG(VGA_ROM_RUN))
Aaron Durbinfbed9a52018-01-30 09:58:51 -0700745 return;
746
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100747 /* Only execute VGA ROMs. */
748 if (((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
Myles Watson17aeeca2009-10-07 18:41:08 +0000749 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000750
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300751 if (!should_load_oprom(dev))
Stefan Reinauer74a0efe2012-03-30 17:10:49 -0700752 return;
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700753 timestamp_add_now(TS_OPROM_INITIALIZE);
Aaron Durbince872cb2013-03-28 15:59:19 -0500754
755 rom = pci_rom_probe(dev);
756 if (rom == NULL)
757 return;
758
759 ram = pci_rom_load(dev, rom);
760 if (ram == NULL)
761 return;
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700762 timestamp_add_now(TS_OPROM_COPY_END);
Aaron Durbince872cb2013-03-28 15:59:19 -0500763
Frans Hendriksb71181a2019-10-04 14:06:33 +0200764 if (!should_run_oprom(dev, rom))
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300765 return;
766
Kyösti Mälkki0f300632020-12-19 23:43:56 +0200767 /* Wait for any configured pre-graphics delay */
768 oprom_pre_graphics_stall();
769
Stefan Reinauerd98cf5b2008-08-01 11:25:41 +0000770 run_bios(dev, (unsigned long)ram);
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +0200771
Kyösti Mälkkiab56b3b2013-11-28 16:44:51 +0200772 gfx_set_init_done(1);
773 printk(BIOS_DEBUG, "VGA Option ROM was run\n");
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700774 timestamp_add_now(TS_OPROM_END);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000775}
Li-Ta Lo883b8792005-01-10 23:16:22 +0000776
Li-Ta Loe5266692004-03-23 21:28:05 +0000777/** Default device operation for PCI devices */
Subrata Banikffc790b2017-12-11 10:29:49 +0530778struct pci_operations pci_dev_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000779 .set_subsystem = pci_dev_set_subsystem,
780};
781
Eric Biederman8ca8d762003-04-22 19:02:15 +0000782struct device_operations default_pci_ops_dev = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000783 .read_resources = pci_dev_read_resources,
784 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000785 .enable_resources = pci_dev_enable_resources,
Julius Wernercd49cce2019-03-05 16:53:33 -0800786#if CONFIG(HAVE_ACPI_TABLES)
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200787 .write_acpi_tables = pci_rom_write_acpi_tables,
Nico Huber68680dd2020-03-31 17:34:52 +0200788 .acpi_fill_ssdt = pci_rom_ssdt,
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200789#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000790 .init = pci_dev_init,
Uwe Hermanne4870472010-11-04 23:23:47 +0000791 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000792};
Li-Ta Loe5266692004-03-23 21:28:05 +0000793
794/** Default device operations for PCI bridges */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000795struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000796 .read_resources = pci_bus_read_resources,
797 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000798 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000799 .scan_bus = pci_scan_bridge,
Uwe Hermanne4870472010-11-04 23:23:47 +0000800 .reset_bus = pci_bus_reset,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000801};
Li-Ta Loe5266692004-03-23 21:28:05 +0000802
Tim Wawrzynczakdbcf7b12020-05-13 16:15:08 -0600803/** Default device operations for PCI devices marked 'hidden' */
804static struct device_operations default_hidden_pci_ops_dev = {
805 .read_resources = noop_read_resources,
806 .set_resources = noop_set_resources,
807 .scan_bus = scan_static_bus,
808};
809
Li-Ta Loe5266692004-03-23 21:28:05 +0000810/**
Nico Huber061b9052019-09-21 15:58:23 +0200811 * Check for compatibility to route legacy VGA cycles through a bridge.
812 *
813 * Originally, when decoding i/o ports for legacy VGA cycles, bridges
814 * should only consider the 10 least significant bits of the port address.
815 * This means all VGA registers were aliased every 1024 ports!
816 * e.g. 0x3b0 was also decoded as 0x7b0, 0xbb0 etc.
817 *
818 * To avoid this mess, a bridge control bit (VGA16) was introduced in
819 * 2003 to enable decoding of 16-bit port addresses. As we don't want
820 * to make this any more complex for now, we use this bit if possible
821 * and only warn if it's not supported (in set_vga_bridge_bits()).
822 */
823static void pci_bridge_vga_compat(struct bus *const bus)
824{
825 uint16_t bridge_ctrl;
826
827 bridge_ctrl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
828
829 /* Ensure VGA decoding is disabled during probing (it should
830 be by default, but we run blobs nowadays) */
831 bridge_ctrl &= ~PCI_BRIDGE_CTL_VGA;
832 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, bridge_ctrl);
833
834 /* If the upstream bridge doesn't support VGA16, we don't have to check */
835 bus->no_vga16 |= bus->dev->bus->no_vga16;
836 if (bus->no_vga16)
837 return;
838
839 /* Test if we can enable 16-bit decoding */
840 bridge_ctrl |= PCI_BRIDGE_CTL_VGA16;
841 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, bridge_ctrl);
842 bridge_ctrl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
843
844 bus->no_vga16 = !(bridge_ctrl & PCI_BRIDGE_CTL_VGA16);
845}
846
847/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000848 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000849 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000850 * This function is a heuristic to detect which type of bus is downstream
851 * of a PCI-to-PCI bridge. This functions by looking for various capability
852 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
853 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000854 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000855 * When only a PCI-Express capability is found the type is examined to see
856 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000857 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000858 * @param dev Pointer to the device structure of the bridge.
859 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000860 */
Aaron Durbinc30d9132017-08-07 16:55:43 -0600861static struct device_operations *get_pci_bridge_ops(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000862{
Julius Wernercd49cce2019-03-05 16:53:33 -0800863#if CONFIG(PCIX_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800864 unsigned int pcixpos;
865 pcixpos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
866 if (pcixpos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000867 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000868 return &default_pcix_ops_bus;
869 }
870#endif
Julius Wernercd49cce2019-03-05 16:53:33 -0800871#if CONFIG(PCIEXP_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800872 unsigned int pciexpos;
873 pciexpos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
874 if (pciexpos) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000875 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800876 flags = pci_read_config16(dev, pciexpos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000877 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000878 case PCI_EXP_TYPE_ROOT_PORT:
879 case PCI_EXP_TYPE_UPSTREAM:
880 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000881 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000882 dev_path(dev));
Arthur Heymans24837e72021-03-11 20:34:05 +0100883 if (CONFIG(PCIEXP_HOTPLUG)) {
884 u16 sltcap;
885 sltcap = pci_read_config16(dev, pciexpos + PCI_EXP_SLTCAP);
886 if (sltcap & PCI_EXP_SLTCAP_HPC) {
887 printk(BIOS_DEBUG, "%s hot-plug capable\n",
888 dev_path(dev));
889 return &default_pciexp_hotplug_ops_bus;
890 }
Jeremy Sollercf2ac542019-10-09 21:40:36 -0600891 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000892 return &default_pciexp_ops_bus;
893 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +0000894 printk(BIOS_DEBUG, "%s subordinate PCI\n",
895 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000896 return &default_pci_ops_bus;
897 default:
898 break;
899 }
900 }
901#endif
902 return &default_pci_ops_bus;
903}
904
905/**
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700906 * Check if a device id matches a PCI driver entry.
907 *
908 * The driver entry can either point at a zero terminated array of acceptable
909 * device IDs, or include a single device ID.
910 *
Martin Roth98b698c2015-01-06 21:02:52 -0700911 * @param driver pointer to the PCI driver entry being checked
912 * @param device_id PCI device ID of the device being matched
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700913 */
914static int device_id_match(struct pci_driver *driver, unsigned short device_id)
915{
916 if (driver->devices) {
917 unsigned short check_id;
918 const unsigned short *device_list = driver->devices;
919 while ((check_id = *device_list++) != 0)
920 if (check_id == device_id)
921 return 1;
922 }
923
924 return (driver->device == device_id);
925}
926
927/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000928 * Set up PCI device operation.
929 *
930 * Check if it already has a driver. If not, use find_device_operations(),
931 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +0000932 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000933 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +0000934 * @see pci_drivers
935 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000936static void set_pci_ops(struct device *dev)
937{
938 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +0000939
Uwe Hermanne4870472010-11-04 23:23:47 +0000940 if (dev->ops)
941 return;
942
943 /*
944 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +0000945 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000946 */
Aaron Durbin03758152015-09-03 17:23:08 -0500947 for (driver = &_pci_drivers[0]; driver != &_epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000948 if ((driver->vendor == dev->vendor) &&
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700949 device_id_match(driver, dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +0000950 dev->ops = (struct device_operations *)driver->ops;
Nico Huber7e3e1ea2020-10-12 16:25:40 +0200951 break;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000952 }
953 }
Li-Ta Loe5266692004-03-23 21:28:05 +0000954
Nico Huber7e3e1ea2020-10-12 16:25:40 +0200955 if (dev->ops) {
956 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n", dev_path(dev),
957 driver->vendor, driver->device, (driver->ops->scan_bus ? "bus " : ""));
958 return;
959 }
960
Uwe Hermanne4870472010-11-04 23:23:47 +0000961 /* If I don't have a specific driver use the default operations. */
962 switch (dev->hdr_type & 0x7f) { /* Header type */
963 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +0000964 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
965 goto bad;
966 dev->ops = &default_pci_ops_dev;
967 break;
968 case PCI_HEADER_TYPE_BRIDGE:
969 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
970 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000971 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000972 break;
Julius Wernercd49cce2019-03-05 16:53:33 -0800973#if CONFIG(CARDBUS_PLUGIN_SUPPORT)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000974 case PCI_HEADER_TYPE_CARDBUS:
975 dev->ops = &default_cardbus_ops_bus;
976 break;
977#endif
Felix Singerc96ee7e2021-01-07 06:14:27 +0000978 default:
Uwe Hermanne4870472010-11-04 23:23:47 +0000979bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000980 if (dev->enabled) {
Angel Ponsd19cc112021-07-04 11:41:31 +0200981 printk(BIOS_ERR,
982 "%s [%04x/%04x/%06x] has unknown header type %02x, ignoring.\n",
983 dev_path(dev), dev->vendor, dev->device,
Uwe Hermanne4870472010-11-04 23:23:47 +0000984 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +0000985 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000986 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000987}
988
989/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000990 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +0000991 *
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200992 * Given a PCI bus structure and a devfn number, find the device structure
993 * corresponding to the devfn, if present. Then move the device structure
994 * as the last child on the bus.
Li-Ta Loe5266692004-03-23 21:28:05 +0000995 *
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200996 * @param bus Pointer to the bus structure.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000997 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000998 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +0000999 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001000 */
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001001static struct device *pci_scan_get_dev(struct bus *bus, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001002{
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001003 struct device *dev, **prev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001004
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001005 prev = &bus->children;
1006 for (dev = bus->children; dev; dev = dev->sibling) {
Duncan Lauriebf696222020-10-18 15:10:00 -07001007 if (dev->path.type == DEVICE_PATH_PCI && dev->path.pci.devfn == devfn) {
1008 /* Unlink from the list. */
1009 *prev = dev->sibling;
1010 dev->sibling = NULL;
1011 break;
Eric Biedermanad1b35a2003-10-14 02:36:51 +00001012 }
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001013 prev = &dev->sibling;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001014 }
Myles Watson29cc9ed2009-07-02 18:56:24 +00001015
Uwe Hermanne4870472010-11-04 23:23:47 +00001016 /*
1017 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +00001018 * bus. When the list of devices was formed we removed all of the
1019 * parents children, and now we are interleaving static and dynamic
1020 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001021 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001022 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +00001023 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +00001024
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001025 /* Find the last child on the bus. */
1026 for (child = bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +00001027 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +00001028
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001029 /* Place the device as last on the bus. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001030 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +00001031 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001032 else
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001033 bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001034 }
1035
Eric Biederman8ca8d762003-04-22 19:02:15 +00001036 return dev;
1037}
1038
Myles Watson032a9652009-05-11 22:24:53 +00001039/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001040 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +00001041 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001042 * Determine the existence of a given PCI device. Allocate a new struct device
1043 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001044 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001045 * @param dev Pointer to the dev structure.
1046 * @param bus Pointer to the bus structure.
1047 * @param devfn A device/function number to look at.
1048 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001049 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001050struct device *pci_probe_dev(struct device *dev, struct bus *bus,
1051 unsigned int devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001052{
Myles Watson29cc9ed2009-07-02 18:56:24 +00001053 u32 id, class;
1054 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001055
Myles Watson29cc9ed2009-07-02 18:56:24 +00001056 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001057 if (!dev) {
1058 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +00001059
Myles Watson29cc9ed2009-07-02 18:56:24 +00001060 dummy.bus = bus;
1061 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +00001062 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +00001063
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001064 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +00001065 /*
1066 * Have we found something? Some broken boards return 0 if a
1067 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001068 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001069 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +00001070 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +00001071
Stefan Reinauer7355c752010-04-02 16:30:25 +00001072 if ((id == 0x00000000) || (id == 0x0000ffff) ||
1073 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001074 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
1075 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001076 return NULL;
1077 }
1078 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001079 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +00001080 /*
1081 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +00001082 * specific operations this operations we will disable the
1083 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +00001084 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001085 * This is geared toward devices that have subfunctions
1086 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +00001087 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001088 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +00001089 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001090 */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001091 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001092 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001093 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +00001094
Myles Watson29cc9ed2009-07-02 18:56:24 +00001095 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001096 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +00001097
Uwe Hermanne4870472010-11-04 23:23:47 +00001098 /*
1099 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +00001100 * this is because we have already disabled the device. But
1101 * this also handles optional devices that may not always
1102 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001103 */
1104 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001105 if ((id == 0xffffffff) || (id == 0x00000000) ||
1106 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001107 if (dev->enabled) {
Angel Ponsd19cc112021-07-04 11:41:31 +02001108 printk(BIOS_INFO,
1109 "PCI: Static device %s not found, disabling it.\n",
1110 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001111 dev->enabled = 0;
1112 }
1113 return dev;
1114 }
1115 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001116
Myles Watson29cc9ed2009-07-02 18:56:24 +00001117 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001118 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
1119 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +00001120
Myles Watson29cc9ed2009-07-02 18:56:24 +00001121 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001122 dev->vendor = id & 0xffff;
1123 dev->device = (id >> 16) & 0xffff;
1124 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001125
1126 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001127 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +00001128
Myles Watson29cc9ed2009-07-02 18:56:24 +00001129 /* Architectural/System devices always need to be bus masters. */
Felix Singerd3d0fd72020-09-07 16:15:14 +02001130 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM &&
1131 CONFIG(PCI_ALLOW_BUS_MASTER_ANY_DEVICE))
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001132 dev->command |= PCI_COMMAND_MASTER;
Uwe Hermanne4870472010-11-04 23:23:47 +00001133
1134 /*
1135 * Look at the vendor and device ID, or at least the header type and
Myles Watson29cc9ed2009-07-02 18:56:24 +00001136 * class and figure out which set of configuration methods to use.
1137 * Unless we already have some PCI ops.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001138 */
1139 set_pci_ops(dev);
1140
Myles Watson29cc9ed2009-07-02 18:56:24 +00001141 /* Now run the magic enable/disable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001142 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001143 dev->ops->enable(dev);
Myles Watson032a9652009-05-11 22:24:53 +00001144
Myles Watson29cc9ed2009-07-02 18:56:24 +00001145 /* Display the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001146 printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
1147 dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
1148 dev->ops ? "" : " No operations");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001149
1150 return dev;
1151}
1152
Myles Watson032a9652009-05-11 22:24:53 +00001153/**
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001154 * Test for match between romstage and ramstage device instance.
1155 *
1156 * @param dev Pointer to the device structure.
1157 * @param sdev Simple device model identifier, created with PCI_DEV().
1158 * @return Non-zero if bus:dev.fn of device matches.
1159 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001160unsigned int pci_match_simple_dev(struct device *dev, pci_devfn_t sdev)
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001161{
1162 return dev->bus->secondary == PCI_DEV2SEGBUS(sdev) &&
1163 dev->path.pci.devfn == PCI_DEV2DEVFN(sdev);
1164}
1165
1166/**
Tim Wawrzynczakdbcf7b12020-05-13 16:15:08 -06001167 * PCI devices that are marked as "hidden" do not get probed. However, the same
1168 * initialization logic is still performed as if it were. This is useful when
1169 * devices would like to be described in the devicetree.cb file, and/or present
1170 * static PCI resources to the allocator, but the platform firmware hides the
1171 * device (makes the device invisible to PCI enumeration) before PCI enumeration
1172 * takes place.
1173 *
1174 * The expected semantics of PCI devices marked as 'hidden':
1175 * 1) The device is actually present under the specified BDF
1176 * 2) The device config space can still be accessed somehow, but the Vendor ID
1177 * indicates there is no device there (it reads as 0xffffffff).
1178 * 3) The device may still consume PCI resources. Typically, these would have
1179 * been hardcoded elsewhere.
1180 *
1181 * @param dev Pointer to the device structure.
1182 */
1183static void pci_scan_hidden_device(struct device *dev)
1184{
1185 if (dev->chip_ops && dev->chip_ops->enable_dev)
1186 dev->chip_ops->enable_dev(dev);
1187
1188 /*
1189 * If chip_ops->enable_dev did not set dev->ops, then set to a default
1190 * .ops, because PCI enumeration is effectively being skipped, therefore
1191 * no PCI driver will bind to this device. However, children may want to
1192 * be enumerated, so this provides scan_static_bus for the .scan_bus
1193 * callback.
1194 */
1195 if (dev->ops == NULL)
1196 dev->ops = &default_hidden_pci_ops_dev;
1197
1198 if (dev->ops->enable)
1199 dev->ops->enable(dev);
1200
1201 /* Display the device almost as if it were probed normally */
1202 printk(BIOS_DEBUG, "%s [0000/%04x] hidden%s\n", dev_path(dev),
1203 dev->device, dev->ops ? "" : " No operations");
1204}
1205
1206/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001207 * Scan a PCI bus.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001208 *
Li-Ta Loe5266692004-03-23 21:28:05 +00001209 * Determine the existence of devices and bridges on a PCI bus. If there are
1210 * bridges on the bus, recursively scan the buses behind the bridges.
1211 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001212 * @param bus Pointer to the bus structure.
1213 * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1214 * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001215 */
Martin Roth38ddbfb2019-10-23 21:41:00 -06001216void pci_scan_bus(struct bus *bus, unsigned int min_devfn,
1217 unsigned int max_devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001218{
1219 unsigned int devfn;
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001220 struct device *dev, **prev;
1221 int once = 0;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001222
Elyes HAOUASf984aec2021-01-16 17:29:17 +01001223 printk(BIOS_DEBUG, "PCI: %s for bus %02x\n", __func__, bus->secondary);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001224
Uwe Hermanne4870472010-11-04 23:23:47 +00001225 /* Maximum sane devfn is 0xFF. */
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001226 if (max_devfn > 0xff) {
Elyes HAOUASf984aec2021-01-16 17:29:17 +01001227 printk(BIOS_ERR, "PCI: %s limits devfn %x - devfn %x\n",
1228 __func__, min_devfn, max_devfn);
1229 printk(BIOS_ERR, "PCI: %s upper limit too big. Using 0xff.\n", __func__);
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001230 max_devfn=0xff;
1231 }
1232
Eric Biederman8ca8d762003-04-22 19:02:15 +00001233 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001234
1235 /*
1236 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001237 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001238 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001239 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Ronald G. Minnich466ca2c2019-10-22 02:02:24 +00001240 if (CONFIG(MINIMAL_PCI_SCANNING)) {
1241 dev = pcidev_path_behind(bus, devfn);
1242 if (!dev || !dev->mandatory)
1243 continue;
1244 }
1245
Uwe Hermanne4870472010-11-04 23:23:47 +00001246 /* First thing setup the device structure. */
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001247 dev = pci_scan_get_dev(bus, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001248
Tim Wawrzynczakdbcf7b12020-05-13 16:15:08 -06001249 /* Devices marked 'hidden' do not get probed */
1250 if (dev && dev->hidden) {
1251 pci_scan_hidden_device(dev);
1252
1253 /* Skip pci_probe_dev, go to next devfn */
1254 continue;
1255 }
1256
Myles Watson29cc9ed2009-07-02 18:56:24 +00001257 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001258 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001259
Uwe Hermanne4870472010-11-04 23:23:47 +00001260 /*
1261 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001262 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001263 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001264 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001265 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001266 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001267 devfn += 0x07;
1268 }
1269 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001270
Eric Biederman8ca8d762003-04-22 19:02:15 +00001271 post_code(0x25);
1272
Uwe Hermanne4870472010-11-04 23:23:47 +00001273 /*
Elyes HAOUAS0ce74162021-01-16 14:43:49 +01001274 * Warn if any leftover static devices are found.
Uwe Hermanne4870472010-11-04 23:23:47 +00001275 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001276 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001277
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001278 prev = &bus->children;
1279 for (dev = bus->children; dev; dev = dev->sibling) {
Duncan Lauriebf696222020-10-18 15:10:00 -07001280
1281 /*
1282 * If static device is not PCI then enable it here and don't
1283 * treat it as a leftover device.
1284 */
1285 if (dev->path.type != DEVICE_PATH_PCI) {
1286 enable_static_device(dev);
1287 continue;
1288 }
1289
Tim Wawrzynczakdbcf7b12020-05-13 16:15:08 -06001290 /*
1291 * The device is only considered leftover if it is not hidden
1292 * and it has a Vendor ID of 0 (the default for a device that
1293 * could not be probed).
1294 */
1295 if (dev->vendor != 0 || dev->hidden) {
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001296 prev = &dev->sibling;
1297 continue;
1298 }
1299
1300 /* Unlink it from list. */
1301 *prev = dev->sibling;
1302
1303 if (!once++)
1304 printk(BIOS_WARNING, "PCI: Leftover static devices:\n");
1305 printk(BIOS_WARNING, "%s\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001306 }
1307
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001308 if (once)
1309 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
1310
Uwe Hermanne4870472010-11-04 23:23:47 +00001311 /*
1312 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001313 * scan the bus behind that child.
1314 */
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001315
Kyösti Mälkki2d2367c2015-02-20 21:28:31 +02001316 scan_bridges(bus);
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001317
Uwe Hermanne4870472010-11-04 23:23:47 +00001318 /*
1319 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001320 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001321 * Return how far we've got finding sub-buses.
1322 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001323 post_code(0x55);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001324}
1325
Kyösti Mälkki33452402015-02-23 06:58:26 +02001326typedef enum {
1327 PCI_ROUTE_CLOSE,
1328 PCI_ROUTE_SCAN,
1329 PCI_ROUTE_FINAL,
1330} scan_state;
1331
1332static void pci_bridge_route(struct bus *link, scan_state state)
1333{
1334 struct device *dev = link->dev;
1335 struct bus *parent = dev->bus;
1336 u32 reg, buses = 0;
1337
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001338 if (state == PCI_ROUTE_SCAN) {
1339 link->secondary = parent->subordinate + 1;
Jeremy Sollercf2ac542019-10-09 21:40:36 -06001340 link->subordinate = link->secondary + dev->hotplug_buses;
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001341 }
1342
Kyösti Mälkki33452402015-02-23 06:58:26 +02001343 if (state == PCI_ROUTE_CLOSE) {
1344 buses |= 0xfeff << 8;
1345 } else if (state == PCI_ROUTE_SCAN) {
Timothy Pearson7d8a4782015-10-24 20:34:57 -05001346 buses |= parent->secondary & 0xff;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001347 buses |= ((u32) link->secondary & 0xff) << 8;
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001348 buses |= 0xff << 16; /* MAX PCI_BUS number here */
Kyösti Mälkki33452402015-02-23 06:58:26 +02001349 } else if (state == PCI_ROUTE_FINAL) {
1350 buses |= parent->secondary & 0xff;
1351 buses |= ((u32) link->secondary & 0xff) << 8;
1352 buses |= ((u32) link->subordinate & 0xff) << 16;
1353 }
1354
1355 if (state == PCI_ROUTE_SCAN) {
1356 /* Clear all status bits and turn off memory, I/O and master enables. */
1357 link->bridge_cmd = pci_read_config16(dev, PCI_COMMAND);
1358 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1359 pci_write_config16(dev, PCI_STATUS, 0xffff);
1360 }
1361
1362 /*
1363 * Configure the bus numbers for this bridge: the configuration
1364 * transactions will not be propagated by the bridge if it is not
1365 * correctly configured.
1366 */
1367
1368 reg = pci_read_config32(dev, PCI_PRIMARY_BUS);
1369 reg &= 0xff000000;
1370 reg |= buses;
1371 pci_write_config32(dev, PCI_PRIMARY_BUS, reg);
1372
1373 if (state == PCI_ROUTE_FINAL) {
1374 pci_write_config16(dev, PCI_COMMAND, link->bridge_cmd);
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001375 parent->subordinate = link->subordinate;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001376 }
1377}
1378
Li-Ta Loe5266692004-03-23 21:28:05 +00001379/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001380 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001381 *
1382 * Determine the existence of buses behind the bridge. Set up the bridge
1383 * according to the result of the scan.
1384 *
1385 * This function is the default scan_bus() method for PCI bridge devices.
1386 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001387 * @param dev Pointer to the bridge device.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001388 * @param do_scan_bus TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +00001389 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001390void do_pci_scan_bridge(struct device *dev,
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001391 void (*do_scan_bus) (struct bus * bus,
Martin Roth38ddbfb2019-10-23 21:41:00 -06001392 unsigned int min_devfn,
1393 unsigned int max_devfn))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001394{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001395 struct bus *bus;
Eric Biederman83b991a2003-10-11 06:20:25 +00001396
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001397 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001398
Myles Watson894a3472010-06-09 22:41:35 +00001399 if (dev->link_list == NULL) {
1400 struct bus *link;
1401 link = malloc(sizeof(*link));
1402 if (link == NULL)
1403 die("Couldn't allocate a link!\n");
1404 memset(link, 0, sizeof(*link));
1405 link->dev = dev;
1406 dev->link_list = link;
1407 }
1408
1409 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001410
Nico Huber061b9052019-09-21 15:58:23 +02001411 pci_bridge_vga_compat(bus);
1412
Kyösti Mälkki33452402015-02-23 06:58:26 +02001413 pci_bridge_route(bus, PCI_ROUTE_SCAN);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001414
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001415 do_scan_bus(bus, 0x00, 0xff);
Kyösti Mälkki33452402015-02-23 06:58:26 +02001416
1417 pci_bridge_route(bus, PCI_ROUTE_FINAL);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001418}
Li-Ta Loe5266692004-03-23 21:28:05 +00001419
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001420/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001421 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001422 *
1423 * Determine the existence of buses behind the bridge. Set up the bridge
1424 * according to the result of the scan.
1425 *
1426 * This function is the default scan_bus() method for PCI bridge devices.
1427 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001428 * @param dev Pointer to the bridge device.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001429 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001430void pci_scan_bridge(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001431{
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001432 do_pci_scan_bridge(dev, pci_scan_bus);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001433}
1434
Myles Watson29cc9ed2009-07-02 18:56:24 +00001435/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001436 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001437 *
1438 * This function is the default scan_bus() method for PCI domains.
1439 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001440 * @param dev Pointer to the domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001441 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001442void pci_domain_scan_bus(struct device *dev)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001443{
Kyösti Mälkki6f370172015-03-19 15:26:52 +02001444 struct bus *link = dev->link_list;
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001445 pci_scan_bus(link, PCI_DEVFN(0, 0), 0xff);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001446}
1447
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001448/**
1449 * Take an INT_PIN number (0, 1 - 4) and convert
1450 * it to a string ("NO PIN", "PIN A" - "PIN D")
1451 *
1452 * @param pin PCI Interrupt Pin number (0, 1 - 4)
1453 * @return A string corresponding to the pin number or "Invalid"
1454 */
1455const char *pin_to_str(int pin)
1456{
1457 const char *str[5] = {
1458 "NO PIN",
1459 "PIN A",
1460 "PIN B",
1461 "PIN C",
1462 "PIN D",
1463 };
1464
1465 if (pin >= 0 && pin <= 4)
1466 return str[pin];
1467 else
1468 return "Invalid PIN, not 0 - 4";
1469}
1470
1471/**
1472 * Get the PCI INT_PIN swizzle for a device defined as:
1473 * pin_parent = (pin_child + devn_child) % 4 + 1
1474 * where PIN A = 1 ... PIN_D = 4
1475 *
1476 * Given a PCI device structure 'dev', find the interrupt pin
1477 * that will be triggered on its parent bridge device when
1478 * generating an interrupt. For example: Device 1:3.2 may
1479 * use INT_PIN A but will trigger PIN D on its parent bridge
1480 * device. In this case, this function will return 4 (PIN D).
1481 *
1482 * @param dev A PCI device structure to swizzle interrupt pins for
Martin Roth32bc6b62015-01-04 16:54:35 -07001483 * @param *parent_bridge The PCI device structure for the bridge
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001484 * device 'dev' is attached to
1485 * @return The interrupt pin number (1 - 4) that 'dev' will
1486 * trigger when generating an interrupt
1487 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001488static int swizzle_irq_pins(struct device *dev, struct device **parent_bridge)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001489{
Aaron Durbinc30d9132017-08-07 16:55:43 -06001490 struct device *parent; /* Our current device's parent device */
1491 struct device *child; /* The child device of the parent */
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001492 uint8_t parent_bus = 0; /* Parent Bus number */
1493 uint16_t parent_devfn = 0; /* Parent Device and Function number */
1494 uint16_t child_devfn = 0; /* Child Device and Function number */
1495 uint8_t swizzled_pin = 0; /* Pin swizzled across a bridge */
1496
1497 /* Start with PIN A = 0 ... D = 3 */
1498 swizzled_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN) - 1;
1499
1500 /* While our current device has parent devices */
1501 child = dev;
1502 for (parent = child->bus->dev; parent; parent = parent->bus->dev) {
1503 parent_bus = parent->bus->secondary;
1504 parent_devfn = parent->path.pci.devfn;
1505 child_devfn = child->path.pci.devfn;
1506
1507 /* Swizzle the INT_PIN for any bridges not on root bus */
1508 swizzled_pin = (PCI_SLOT(child_devfn) + swizzled_pin) % 4;
1509 printk(BIOS_SPEW, "\tWith INT_PIN swizzled to %s\n"
1510 "\tAttached to bridge device %01X:%02Xh.%02Xh\n",
1511 pin_to_str(swizzled_pin + 1), parent_bus,
1512 PCI_SLOT(parent_devfn), PCI_FUNC(parent_devfn));
1513
1514 /* Continue until we find the root bus */
1515 if (parent_bus > 0) {
1516 /*
1517 * We will go on to the next parent so this parent
1518 * becomes the child
1519 */
1520 child = parent;
1521 continue;
1522 } else {
1523 /*
1524 * Found the root bridge device,
1525 * fill in the structure and exit
1526 */
1527 *parent_bridge = parent;
1528 break;
1529 }
1530 }
1531
1532 /* End with PIN A = 1 ... D = 4 */
1533 return swizzled_pin + 1;
1534}
1535
1536/**
1537 * Given a device structure 'dev', find its interrupt pin
1538 * and its parent bridge 'parent_bdg' device structure.
1539 * If it is behind a bridge, it will return the interrupt
1540 * pin number (1 - 4) of the parent bridge that the device
1541 * interrupt pin has been swizzled to, otherwise it will
1542 * return the interrupt pin that is programmed into the
1543 * PCI config space of the target device. If 'dev' is
1544 * behind a bridge, it will fill in 'parent_bdg' with the
1545 * device structure of the bridge it is behind, otherwise
1546 * it will copy 'dev' into 'parent_bdg'.
1547 *
1548 * @param dev A PCI device structure to get interrupt pins for.
1549 * @param *parent_bdg The PCI device structure for the bridge
1550 * device 'dev' is attached to.
1551 * @return The interrupt pin number (1 - 4) that 'dev' will
1552 * trigger when generating an interrupt.
1553 * Errors: -1 is returned if the device is not enabled
1554 * -2 is returned if a parent bridge could not be found.
1555 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001556int get_pci_irq_pins(struct device *dev, struct device **parent_bdg)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001557{
1558 uint8_t bus = 0; /* The bus this device is on */
1559 uint16_t devfn = 0; /* This device's device and function numbers */
1560 uint8_t int_pin = 0; /* Interrupt pin used by the device */
1561 uint8_t target_pin = 0; /* Interrupt pin we want to assign an IRQ to */
1562
1563 /* Make sure this device is enabled */
1564 if (!(dev->enabled && (dev->path.type == DEVICE_PATH_PCI)))
1565 return -1;
1566
1567 bus = dev->bus->secondary;
1568 devfn = dev->path.pci.devfn;
1569
1570 /* Get and validate the interrupt pin used. Only 1-4 are allowed */
1571 int_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN);
1572 if (int_pin < 1 || int_pin > 4)
1573 return -1;
1574
1575 printk(BIOS_SPEW, "PCI IRQ: Found device %01X:%02X.%02X using %s\n",
1576 bus, PCI_SLOT(devfn), PCI_FUNC(devfn), pin_to_str(int_pin));
1577
1578 /* If this device is on a bridge, swizzle its INT_PIN */
1579 if (bus) {
1580 /* Swizzle its INT_PINs */
1581 target_pin = swizzle_irq_pins(dev, parent_bdg);
1582
1583 /* Make sure the swizzle returned valid structures */
1584 if (parent_bdg == NULL) {
1585 printk(BIOS_WARNING,
1586 "Warning: Could not find parent bridge for this device!\n");
1587 return -2;
1588 }
1589 } else { /* Device is not behind a bridge */
1590 target_pin = int_pin; /* Return its own interrupt pin */
1591 *parent_bdg = dev; /* Return its own structure */
1592 }
1593
1594 /* Target pin is the interrupt pin we want to assign an IRQ to */
1595 return target_pin;
1596}
1597
Julius Wernercd49cce2019-03-05 16:53:33 -08001598#if CONFIG(PC80_SYSTEM)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001599/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001600 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001601 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001602 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001603 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001604 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001605 *
1606 * This function should be called for each PCI slot in your system.
1607 *
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001608 * @param dev Pointer to dev structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001609 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1610 * of this slot. The particular IRQ #s that are passed in depend on the
1611 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001612 */
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001613void pci_assign_irqs(struct device *dev, const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001614{
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001615 u8 slot, line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001616
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001617 /* Each device may contain up to eight functions. */
1618 slot = dev->path.pci.devfn >> 3;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001619
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001620 for (; dev ; dev = dev->sibling) {
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001621
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001622 if (dev->path.pci.devfn >> 3 != slot)
1623 break;
1624
1625 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001626
Uwe Hermanne4870472010-11-04 23:23:47 +00001627 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001628 if ((line < 1) || (line > 4))
1629 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001630
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001631 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001632
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001633 printk(BIOS_DEBUG, "Assigning IRQ %d to %s\n", irq, dev_path(dev));
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001634
Angel Ponsceca5de2021-06-28 11:59:33 +02001635 pci_write_config8(dev, PCI_INTERRUPT_LINE, irq);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001636
Uwe Hermanne4870472010-11-04 23:23:47 +00001637 /* Change to level triggered. */
Angel Ponsceca5de2021-06-28 11:59:33 +02001638 i8259_configure_irq_trigger(irq, IRQ_LEVEL_TRIGGERED);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001639 }
1640}
John Zhao95b4ece02020-05-04 15:58:48 -07001641
1642void pci_dev_disable_bus_master(const struct device *dev)
1643{
1644 pci_update_config16(dev, PCI_COMMAND, ~PCI_COMMAND_MASTER, 0x0);
1645}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001646#endif