blob: 691ad6b3160a19d3bdeaa5fcabf2aa0f5fe543f6 [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>
Edward O'Callaghan6c992502014-06-20 21:19:06 +100022#include <device/hypertransport.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) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000153 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
154 "read-only ignoring it\n",
155 dev_path(dev), index, value);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000156 }
157 resource->flags = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000158 } else if (attr & PCI_BASE_ADDRESS_SPACE_IO) {
159 /* An I/O mapped base address. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000160 resource->flags |= IORESOURCE_IO;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000161 /* I don't want to deal with 32bit I/O resources. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000162 resource->limit = 0xffff;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000163 } else {
164 /* A Memory mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000165 attr &= PCI_BASE_ADDRESS_MEM_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000166 resource->flags |= IORESOURCE_MEM;
Uwe Hermanne4870472010-11-04 23:23:47 +0000167 if (attr & PCI_BASE_ADDRESS_MEM_PREFETCH)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000168 resource->flags |= IORESOURCE_PREFETCH;
Eric Biederman03acab62004-10-14 21:25:53 +0000169 attr &= PCI_BASE_ADDRESS_MEM_LIMIT_MASK;
170 if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_32) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000171 /* 32bit limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000172 resource->limit = 0xffffffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000173 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_1M) {
174 /* 1MB limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000175 resource->limit = 0x000fffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000176 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_64) {
177 /* 64bit limit. */
Eric Biederman03acab62004-10-14 21:25:53 +0000178 resource->limit = 0xffffffffffffffffULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000179 resource->flags |= IORESOURCE_PCI64;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000180 } else {
181 /* Invalid value. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000182 printk(BIOS_ERR, "Broken BAR with value %lx\n", attr);
183 printk(BIOS_ERR, " on dev %s at index %02lx\n",
Myles Watson29cc9ed2009-07-02 18:56:24 +0000184 dev_path(dev), index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000185 resource->flags = 0;
186 }
187 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000188
Myles Watson29cc9ed2009-07-02 18:56:24 +0000189 /* Don't let the limit exceed which bits can move. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000190 if (resource->limit > limit)
Eric Biederman03acab62004-10-14 21:25:53 +0000191 resource->limit = limit;
Eric Biederman03acab62004-10-14 21:25:53 +0000192
Eric Biederman5cd81732004-03-11 15:01:31 +0000193 return resource;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000194}
195
Myles Watson29cc9ed2009-07-02 18:56:24 +0000196/**
197 * Given a device and an index, read the size of the BAR for that register.
198 *
199 * @param dev Pointer to the device structure.
200 * @param index Address of the PCI configuration register.
201 */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000202static void pci_get_rom_resource(struct device *dev, unsigned long index)
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000203{
204 struct resource *resource;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000205 unsigned long value;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000206 resource_t moving;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000207
Myles Watson29cc9ed2009-07-02 18:56:24 +0000208 /* Initialize the resources to nothing. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000209 resource = new_resource(dev, index);
210
Myles Watson29cc9ed2009-07-02 18:56:24 +0000211 /* Get the initial value. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000212 value = pci_read_config32(dev, index);
213
Myles Watson29cc9ed2009-07-02 18:56:24 +0000214 /* See which bits move. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000215 moving = pci_moving_config32(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000216
217 /* Clear the Enable bit. */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000218 moving = moving & ~PCI_ROM_ADDRESS_ENABLE;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000219
Myles Watson032a9652009-05-11 22:24:53 +0000220 /* Find the resource constraints.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000221 * Start by finding the bits that move. From there:
222 * - Size is the least significant bit of the bits that move.
223 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000224 * See PCI Spec 6.2.5.1.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000225 */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000226 if (moving) {
227 resource->size = 1;
228 resource->align = resource->gran = 0;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000229 while (!(moving & resource->size)) {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000230 resource->size <<= 1;
231 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000232 resource->gran += 1;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000233 }
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000234 resource->limit = moving | (resource->size - 1);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000235 resource->flags |= IORESOURCE_MEM | IORESOURCE_READONLY;
236 } else {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000237 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000238 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
239 "read-only ignoring it\n",
240 dev_path(dev), index, value);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000241 }
242 resource->flags = 0;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000243 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000244 compact_resources(dev);
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000245}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000246
Myles Watson29cc9ed2009-07-02 18:56:24 +0000247/**
Patrick Rudolph4e2f95b2018-05-16 14:56:22 +0200248 * Given a device, read the size of the MSI-X table.
249 *
250 * @param dev Pointer to the device structure.
251 * @return MSI-X table size or 0 if not MSI-X capable device
252 */
253size_t pci_msix_table_size(struct device *dev)
254{
255 const size_t pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
256 if (!pos)
257 return 0;
258
259 const u16 control = pci_read_config16(dev, pos + PCI_MSIX_FLAGS);
260 return (control & PCI_MSIX_FLAGS_QSIZE) + 1;
261}
262
263/**
264 * Given a device, return the table offset and bar the MSI-X tables resides in.
265 *
266 * @param dev Pointer to the device structure.
267 * @param offset Returned value gives the offset in bytes inside the PCI BAR.
268 * @param idx The returned value is the index of the PCI_BASE_ADDRESS register
269 * the MSI-X table is located in.
270 * @return Zero on success
271 */
272int pci_msix_table_bar(struct device *dev, u32 *offset, u8 *idx)
273{
274 const size_t pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
275 if (!pos || !offset || !idx)
276 return 1;
277
278 *offset = pci_read_config32(dev, pos + PCI_MSIX_TABLE);
279 *idx = (u8)(*offset & PCI_MSIX_PBA_BIR);
280 *offset &= PCI_MSIX_PBA_OFFSET;
281
282 return 0;
283}
284
285/**
286 * Given a device, return a msix_entry pointer or NULL if no table was found.
287 *
288 * @param dev Pointer to the device structure.
289 *
290 * @return NULL on error
291 */
292struct msix_entry *pci_msix_get_table(struct device *dev)
293{
294 struct resource *res;
295 u32 offset;
296 u8 idx;
297
298 if (pci_msix_table_bar(dev, &offset, &idx))
299 return NULL;
300
301 if (idx > 5)
302 return NULL;
303
304 res = probe_resource(dev, idx * 4 + PCI_BASE_ADDRESS_0);
305 if (!res || !res->base || offset >= res->size)
306 return NULL;
307
308 if ((res->flags & IORESOURCE_PCI64) &&
309 (uintptr_t)res->base != res->base)
310 return NULL;
311
312 return (struct msix_entry *)((uintptr_t)res->base + offset);
313}
314
315/**
Myles Watson29cc9ed2009-07-02 18:56:24 +0000316 * Read the base address registers for a given device.
317 *
318 * @param dev Pointer to the dev structure.
319 * @param howmany How many registers to read (6 for device, 2 for bridge).
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000320 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000321static void pci_read_bases(struct device *dev, unsigned int howmany)
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000322{
323 unsigned long index;
324
Myles Watson29cc9ed2009-07-02 18:56:24 +0000325 for (index = PCI_BASE_ADDRESS_0;
326 (index < PCI_BASE_ADDRESS_0 + (howmany << 2));) {
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000327 struct resource *resource;
328 resource = pci_get_resource(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000329 index += (resource->flags & IORESOURCE_PCI64) ? 8 : 4;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000330 }
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000331
332 compact_resources(dev);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000333}
334
Myles Watson29cc9ed2009-07-02 18:56:24 +0000335static void pci_record_bridge_resource(struct device *dev, resource_t moving,
Martin Roth38ddbfb2019-10-23 21:41:00 -0600336 unsigned int index, unsigned long type)
Eric Biederman03acab62004-10-14 21:25:53 +0000337{
Eric Biederman03acab62004-10-14 21:25:53 +0000338 struct resource *resource;
Uwe Hermanne4870472010-11-04 23:23:47 +0000339 unsigned long gran;
340 resource_t step;
341
Myles Watson29cc9ed2009-07-02 18:56:24 +0000342 resource = NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000343
344 if (!moving)
345 return;
346
347 /* Initialize the constraints on the current bus. */
348 resource = new_resource(dev, index);
349 resource->size = 0;
350 gran = 0;
351 step = 1;
352 while ((moving & step) == 0) {
353 gran += 1;
354 step <<= 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000355 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000356 resource->gran = gran;
357 resource->align = gran;
358 resource->limit = moving | (step - 1);
359 resource->flags = type | IORESOURCE_PCI_BRIDGE |
360 IORESOURCE_BRIDGE;
Eric Biederman03acab62004-10-14 21:25:53 +0000361}
362
Eric Biederman8ca8d762003-04-22 19:02:15 +0000363static void pci_bridge_read_bases(struct device *dev)
364{
Eric Biederman03acab62004-10-14 21:25:53 +0000365 resource_t moving_base, moving_limit, moving;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000366
Myles Watson29cc9ed2009-07-02 18:56:24 +0000367 /* See if the bridge I/O resources are implemented. */
368 moving_base = ((u32) pci_moving_config8(dev, PCI_IO_BASE)) << 8;
369 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000370 ((u32) pci_moving_config16(dev, PCI_IO_BASE_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000371
Myles Watson29cc9ed2009-07-02 18:56:24 +0000372 moving_limit = ((u32) pci_moving_config8(dev, PCI_IO_LIMIT)) << 8;
373 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000374 ((u32) pci_moving_config16(dev, PCI_IO_LIMIT_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000375
376 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000377
Myles Watson29cc9ed2009-07-02 18:56:24 +0000378 /* Initialize the I/O space constraints on the current bus. */
379 pci_record_bridge_resource(dev, moving, PCI_IO_BASE, IORESOURCE_IO);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000380
Myles Watson29cc9ed2009-07-02 18:56:24 +0000381 /* See if the bridge prefmem resources are implemented. */
382 moving_base =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000383 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_BASE)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000384 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000385 ((resource_t) pci_moving_config32(dev, PCI_PREF_BASE_UPPER32)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000386
Myles Watson29cc9ed2009-07-02 18:56:24 +0000387 moving_limit =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000388 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_LIMIT)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000389 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000390 ((resource_t) pci_moving_config32(dev, PCI_PREF_LIMIT_UPPER32)) << 32;
Myles Watson032a9652009-05-11 22:24:53 +0000391
Eric Biederman03acab62004-10-14 21:25:53 +0000392 moving = moving_base & moving_limit;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000393 /* Initialize the prefetchable memory constraints on the current bus. */
394 pci_record_bridge_resource(dev, moving, PCI_PREF_MEMORY_BASE,
395 IORESOURCE_MEM | IORESOURCE_PREFETCH);
Myles Watson032a9652009-05-11 22:24:53 +0000396
Myles Watson29cc9ed2009-07-02 18:56:24 +0000397 /* See if the bridge mem resources are implemented. */
398 moving_base = ((u32) pci_moving_config16(dev, PCI_MEMORY_BASE)) << 16;
399 moving_limit = ((u32) pci_moving_config16(dev, PCI_MEMORY_LIMIT)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000400
401 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000402
Myles Watson29cc9ed2009-07-02 18:56:24 +0000403 /* Initialize the memory resources on the current bus. */
404 pci_record_bridge_resource(dev, moving, PCI_MEMORY_BASE,
405 IORESOURCE_MEM);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000406
Eric Biederman5cd81732004-03-11 15:01:31 +0000407 compact_resources(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000408}
409
Eric Biederman5899fd82003-04-24 06:25:08 +0000410void pci_dev_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000411{
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000412 pci_read_bases(dev, 6);
413 pci_get_rom_resource(dev, PCI_ROM_ADDRESS);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000414}
415
Eric Biederman5899fd82003-04-24 06:25:08 +0000416void pci_bus_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000417{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000418 pci_bridge_read_bases(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000419 pci_read_bases(dev, 2);
420 pci_get_rom_resource(dev, PCI_ROM_ADDRESS1);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000421}
422
Myles Watson29cc9ed2009-07-02 18:56:24 +0000423void pci_domain_read_resources(struct device *dev)
424{
425 struct resource *res;
426
427 /* Initialize the system-wide I/O space constraints. */
428 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
429 res->limit = 0xffffUL;
430 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
431 IORESOURCE_ASSIGNED;
432
433 /* Initialize the system-wide memory resources constraints. */
434 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
Furquan Shaikh871baf22020-03-12 17:51:24 -0700435 res->limit = (1ULL << cpu_phys_address_size()) - 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000436 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
437 IORESOURCE_ASSIGNED;
438}
439
Raul E Rangel5cb34e22020-05-04 16:41:22 -0600440void pci_domain_set_resources(struct device *dev)
441{
442 assign_resources(dev->link_list);
443}
444
Nico Huber730b2612020-05-20 00:32:50 +0200445static void pci_store_resource(const struct device *const dev,
446 const struct resource *const resource)
447{
448 unsigned long base_lo, base_hi;
449
450 base_lo = resource->base & 0xffffffff;
451 base_hi = (resource->base >> 32) & 0xffffffff;
452
453 /*
454 * Some chipsets allow us to set/clear the I/O bit
455 * (e.g. VIA 82C686A). So set it to be safe.
456 */
457 if (resource->flags & IORESOURCE_IO)
458 base_lo |= PCI_BASE_ADDRESS_SPACE_IO;
459
460 pci_write_config32(dev, resource->index, base_lo);
461 if (resource->flags & IORESOURCE_PCI64)
462 pci_write_config32(dev, resource->index + 4, base_hi);
463}
464
465static void pci_store_bridge_resource(const struct device *const dev,
466 struct resource *const resource)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000467{
Eric Biederman03acab62004-10-14 21:25:53 +0000468 resource_t base, end;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000469
Nico Huber730b2612020-05-20 00:32:50 +0200470 /*
471 * PCI bridges have no enable bit. They are disabled if the base of
472 * the range is greater than the limit. If the size is zero, disable
473 * by setting the base = limit and end = limit - 2^gran.
474 */
475 if (resource->size == 0) {
476 base = resource->limit;
477 end = resource->limit - (1 << resource->gran);
478 resource->base = base;
479 } else {
480 base = resource->base;
481 end = resource_end(resource);
482 }
483
484 if (resource->index == PCI_IO_BASE) {
485 /* Set the I/O ranges. */
486 pci_write_config8(dev, PCI_IO_BASE, base >> 8);
487 pci_write_config16(dev, PCI_IO_BASE_UPPER16, base >> 16);
488 pci_write_config8(dev, PCI_IO_LIMIT, end >> 8);
489 pci_write_config16(dev, PCI_IO_LIMIT_UPPER16, end >> 16);
490 } else if (resource->index == PCI_MEMORY_BASE) {
491 /* Set the memory range. */
492 pci_write_config16(dev, PCI_MEMORY_BASE, base >> 16);
493 pci_write_config16(dev, PCI_MEMORY_LIMIT, end >> 16);
494 } else if (resource->index == PCI_PREF_MEMORY_BASE) {
495 /* Set the prefetchable memory range. */
496 pci_write_config16(dev, PCI_PREF_MEMORY_BASE, base >> 16);
497 pci_write_config32(dev, PCI_PREF_BASE_UPPER32, base >> 32);
498 pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, end >> 16);
499 pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, end >> 32);
500 } else {
501 /* Don't let me think I stored the resource. */
502 resource->flags &= ~IORESOURCE_STORED;
503 printk(BIOS_ERR, "ERROR: invalid resource->index %lx\n", resource->index);
504 }
505}
506
507static void pci_set_resource(struct device *dev, struct resource *resource)
508{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000509 /* Make certain the resource has actually been assigned a value. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000510 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
Nico Huberf5312442020-05-20 01:02:18 +0200511 if (resource->flags & IORESOURCE_BRIDGE) {
512 /* If a bridge resource has no value assigned,
513 we can treat it like an empty resource. */
514 resource->size = 0;
515 } else {
516 printk(BIOS_ERR, "ERROR: %s %02lx %s size: 0x%010llx not "
517 "assigned\n", dev_path(dev), resource->index,
518 resource_type(resource), resource->size);
519 return;
520 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000521 }
522
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000523 /* If this resource is fixed don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000524 if (resource->flags & IORESOURCE_FIXED)
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000525 return;
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000526
Myles Watson29cc9ed2009-07-02 18:56:24 +0000527 /* If I have already stored this resource don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000528 if (resource->flags & IORESOURCE_STORED)
Eric Biederman5cd81732004-03-11 15:01:31 +0000529 return;
Eric Biederman5cd81732004-03-11 15:01:31 +0000530
Myles Watson29cc9ed2009-07-02 18:56:24 +0000531 /* If the resource is subtractive don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000532 if (resource->flags & IORESOURCE_SUBTRACTIVE)
Eric Biederman03acab62004-10-14 21:25:53 +0000533 return;
Eric Biederman03acab62004-10-14 21:25:53 +0000534
Myles Watson29cc9ed2009-07-02 18:56:24 +0000535 /* Only handle PCI memory and I/O resources for now. */
536 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Eric Biederman8ca8d762003-04-22 19:02:15 +0000537 return;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000538
Myles Watson29cc9ed2009-07-02 18:56:24 +0000539 /* Enable the resources in the command register. */
Eric Biederman03acab62004-10-14 21:25:53 +0000540 if (resource->size) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000541 if (resource->flags & IORESOURCE_MEM)
Eric Biederman03acab62004-10-14 21:25:53 +0000542 dev->command |= PCI_COMMAND_MEMORY;
Uwe Hermanne4870472010-11-04 23:23:47 +0000543 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000544 dev->command |= PCI_COMMAND_IO;
Uwe Hermanne4870472010-11-04 23:23:47 +0000545 if (resource->flags & IORESOURCE_PCI_BRIDGE)
Eric Biederman03acab62004-10-14 21:25:53 +0000546 dev->command |= PCI_COMMAND_MASTER;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000547 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000548
Myles Watson29cc9ed2009-07-02 18:56:24 +0000549 /* Now store the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000550 resource->flags |= IORESOURCE_STORED;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000551
Nico Huber730b2612020-05-20 00:32:50 +0200552 if (resource->flags & IORESOURCE_PCI_BRIDGE)
553 pci_store_bridge_resource(dev, resource);
554 else
555 pci_store_resource(dev, resource);
Uwe Hermanne4870472010-11-04 23:23:47 +0000556
Eric Biederman03acab62004-10-14 21:25:53 +0000557 report_resource_stored(dev, resource, "");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000558}
559
Eric Biederman5899fd82003-04-24 06:25:08 +0000560void pci_dev_set_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000561{
Myles Watsonc25cc112010-05-21 14:33:48 +0000562 struct resource *res;
Myles Watson894a3472010-06-09 22:41:35 +0000563 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000564 u8 line;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000565
Uwe Hermanne4870472010-11-04 23:23:47 +0000566 for (res = dev->resource_list; res; res = res->next)
Myles Watsonc25cc112010-05-21 14:33:48 +0000567 pci_set_resource(dev, res);
Uwe Hermanne4870472010-11-04 23:23:47 +0000568
Myles Watson894a3472010-06-09 22:41:35 +0000569 for (bus = dev->link_list; bus; bus = bus->next) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000570 if (bus->children)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000571 assign_resources(bus);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000572 }
573
Myles Watson29cc9ed2009-07-02 18:56:24 +0000574 /* Set a default latency timer. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000575 pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000576
Myles Watson29cc9ed2009-07-02 18:56:24 +0000577 /* Set a default secondary latency timer. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000578 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000579 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000580
Myles Watson29cc9ed2009-07-02 18:56:24 +0000581 /* Zero the IRQ settings. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000582 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Uwe Hermanne4870472010-11-04 23:23:47 +0000583 if (line)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000584 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
Uwe Hermanne4870472010-11-04 23:23:47 +0000585
Myles Watson29cc9ed2009-07-02 18:56:24 +0000586 /* Set the cache line size, so far 64 bytes is good for everyone. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000587 pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000588}
589
Eric Biedermane9a271e32003-09-02 03:36:25 +0000590void pci_dev_enable_resources(struct device *dev)
591{
Kyösti Mälkkicac02312019-06-30 08:40:04 +0300592 const struct pci_operations *ops = NULL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000593 u16 command;
Eric Biederman03acab62004-10-14 21:25:53 +0000594
Uwe Hermanne4870472010-11-04 23:23:47 +0000595 /* Set the subsystem vendor and device ID for mainboard devices. */
Kyösti Mälkkicac02312019-06-30 08:40:04 +0300596 if (dev->ops)
597 ops = dev->ops->ops_pci;
Eric Biedermandbec2d42004-10-21 10:44:08 +0000598 if (dev->on_mainboard && ops && ops->set_subsystem) {
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700599 if (CONFIG_SUBSYSTEM_VENDOR_ID)
600 dev->subsystem_vendor = CONFIG_SUBSYSTEM_VENDOR_ID;
Rizwan Qureshifd891292017-04-26 21:00:37 +0530601 else if (!dev->subsystem_vendor)
602 dev->subsystem_vendor = pci_read_config16(dev,
603 PCI_VENDOR_ID);
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700604 if (CONFIG_SUBSYSTEM_DEVICE_ID)
605 dev->subsystem_device = CONFIG_SUBSYSTEM_DEVICE_ID;
Rizwan Qureshifd891292017-04-26 21:00:37 +0530606 else if (!dev->subsystem_device)
607 dev->subsystem_device = pci_read_config16(dev,
608 PCI_DEVICE_ID);
609
Sven Schnelle91321022011-03-01 19:58:47 +0000610 printk(BIOS_DEBUG, "%s subsystem <- %04x/%04x\n",
611 dev_path(dev), dev->subsystem_vendor,
612 dev->subsystem_device);
613 ops->set_subsystem(dev, dev->subsystem_vendor,
614 dev->subsystem_device);
Eric Biederman03acab62004-10-14 21:25:53 +0000615 }
Eric Biedermane9a271e32003-09-02 03:36:25 +0000616 command = pci_read_config16(dev, PCI_COMMAND);
617 command |= dev->command;
Uwe Hermanne4870472010-11-04 23:23:47 +0000618
Myles Watson29cc9ed2009-07-02 18:56:24 +0000619 /* v3 has
620 * command |= (PCI_COMMAND_PARITY + PCI_COMMAND_SERR); // Error check.
621 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000622
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000623 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000624 pci_write_config16(dev, PCI_COMMAND, command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000625}
626
627void pci_bus_enable_resources(struct device *dev)
628{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000629 u16 ctrl;
630
Uwe Hermanne4870472010-11-04 23:23:47 +0000631 /*
632 * Enable I/O in command register if there is VGA card
Myles Watson29cc9ed2009-07-02 18:56:24 +0000633 * connected with (even it does not claim I/O resource).
634 */
Myles Watson894a3472010-06-09 22:41:35 +0000635 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
Li-Ta Lo515f6c72005-01-11 22:48:54 +0000636 dev->command |= PCI_COMMAND_IO;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000637 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +0000638 ctrl |= dev->link_list->bridge_ctrl;
Kyösti Mälkki382e2162019-09-21 16:19:32 +0300639 ctrl |= (PCI_BRIDGE_CTL_PARITY | PCI_BRIDGE_CTL_SERR); /* Error check. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000640 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000641 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
642
643 pci_dev_enable_resources(dev);
644}
645
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000646void pci_bus_reset(struct bus *bus)
647{
Uwe Hermanne4870472010-11-04 23:23:47 +0000648 u16 ctl;
649
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000650 ctl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
651 ctl |= PCI_BRIDGE_CTL_BUS_RESET;
652 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
653 mdelay(10);
Uwe Hermanne4870472010-11-04 23:23:47 +0000654
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000655 ctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
656 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
657 delay(1);
658}
659
Elyes HAOUAS88030b72018-09-20 17:26:10 +0200660void pci_dev_set_subsystem(struct device *dev, unsigned int vendor,
661 unsigned int device)
Eric Biederman03acab62004-10-14 21:25:53 +0000662{
Subrata Banik9514d472019-03-20 14:56:27 +0530663 uint8_t offset;
664
665 /* Header type */
666 switch (dev->hdr_type & 0x7f) {
667 case PCI_HEADER_TYPE_NORMAL:
668 offset = PCI_SUBSYSTEM_VENDOR_ID;
669 break;
670 case PCI_HEADER_TYPE_BRIDGE:
671 offset = pci_find_capability(dev, PCI_CAP_ID_SSVID);
672 if (!offset)
673 return;
674 offset += 4; /* Vendor ID at offset 4 */
675 break;
676 case PCI_HEADER_TYPE_CARDBUS:
677 offset = PCI_CB_SUBSYSTEM_VENDOR_ID;
678 break;
679 default:
680 return;
681 }
682
Subrata Banik4a0f0712019-03-20 14:29:47 +0530683 if (!vendor || !device) {
Subrata Banik9514d472019-03-20 14:56:27 +0530684 pci_write_config32(dev, offset,
Subrata Banik4a0f0712019-03-20 14:29:47 +0530685 pci_read_config32(dev, PCI_VENDOR_ID));
686 } else {
Subrata Banik9514d472019-03-20 14:56:27 +0530687 pci_write_config32(dev, offset,
Subrata Banik4a0f0712019-03-20 14:29:47 +0530688 ((device & 0xffff) << 16) | (vendor & 0xffff));
689 }
Eric Biederman03acab62004-10-14 21:25:53 +0000690}
691
Frans Hendriksb71181a2019-10-04 14:06:33 +0200692static int should_run_oprom(struct device *dev, struct rom_header *rom)
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300693{
694 static int should_run = -1;
695
Frans Hendriksb71181a2019-10-04 14:06:33 +0200696 if (CONFIG(VENDORCODE_ELTAN_VBOOT))
697 if (rom != NULL)
698 if (!verified_boot_should_run_oprom(rom))
699 return 0;
700
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300701 if (should_run >= 0)
702 return should_run;
703
Julius Wernercd49cce2019-03-05 16:53:33 -0800704 if (CONFIG(ALWAYS_RUN_OPROM)) {
Aaron Durbin10510252018-01-30 10:04:02 -0700705 should_run = 1;
706 return should_run;
707 }
708
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200709 /* Don't run VGA option ROMs, unless we have to print
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300710 * something on the screen before the kernel is loaded.
711 */
Furquan Shaikh0325dc62016-07-25 13:02:36 -0700712 should_run = display_init_required();
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300713
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200714 if (!should_run)
715 printk(BIOS_DEBUG, "Not running VGA Option ROM\n");
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300716 return should_run;
717}
718
719static int should_load_oprom(struct device *dev)
720{
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300721 /* If S3_VGA_ROM_RUN is disabled, skip running VGA option
722 * ROMs when coming out of an S3 resume.
723 */
Julius Wernercd49cce2019-03-05 16:53:33 -0800724 if (!CONFIG(S3_VGA_ROM_RUN) && acpi_is_wakeup_s3() &&
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300725 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
726 return 0;
Julius Wernercd49cce2019-03-05 16:53:33 -0800727 if (CONFIG(ALWAYS_LOAD_OPROM))
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300728 return 1;
Frans Hendriksb71181a2019-10-04 14:06:33 +0200729 if (should_run_oprom(dev, NULL))
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300730 return 1;
731
732 return 0;
733}
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300734
Uwe Hermanne4870472010-11-04 23:23:47 +0000735/** Default handler: only runs the relevant PCI BIOS. */
Li-Ta Lo883b8792005-01-10 23:16:22 +0000736void pci_dev_init(struct device *dev)
737{
738 struct rom_header *rom, *ram;
739
Julius Wernercd49cce2019-03-05 16:53:33 -0800740 if (!CONFIG(VGA_ROM_RUN))
Aaron Durbinfbed9a52018-01-30 09:58:51 -0700741 return;
742
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100743 /* Only execute VGA ROMs. */
744 if (((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
Myles Watson17aeeca2009-10-07 18:41:08 +0000745 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000746
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300747 if (!should_load_oprom(dev))
Stefan Reinauer74a0efe2012-03-30 17:10:49 -0700748 return;
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700749 timestamp_add_now(TS_OPROM_INITIALIZE);
Aaron Durbince872cb2013-03-28 15:59:19 -0500750
751 rom = pci_rom_probe(dev);
752 if (rom == NULL)
753 return;
754
755 ram = pci_rom_load(dev, rom);
756 if (ram == NULL)
757 return;
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700758 timestamp_add_now(TS_OPROM_COPY_END);
Aaron Durbince872cb2013-03-28 15:59:19 -0500759
Frans Hendriksb71181a2019-10-04 14:06:33 +0200760 if (!should_run_oprom(dev, rom))
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300761 return;
762
Stefan Reinauerd98cf5b2008-08-01 11:25:41 +0000763 run_bios(dev, (unsigned long)ram);
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +0200764
Kyösti Mälkkiab56b3b2013-11-28 16:44:51 +0200765 gfx_set_init_done(1);
766 printk(BIOS_DEBUG, "VGA Option ROM was run\n");
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700767 timestamp_add_now(TS_OPROM_END);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000768}
Li-Ta Lo883b8792005-01-10 23:16:22 +0000769
Li-Ta Loe5266692004-03-23 21:28:05 +0000770/** Default device operation for PCI devices */
Subrata Banikffc790b2017-12-11 10:29:49 +0530771struct pci_operations pci_dev_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000772 .set_subsystem = pci_dev_set_subsystem,
773};
774
Eric Biederman8ca8d762003-04-22 19:02:15 +0000775struct device_operations default_pci_ops_dev = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000776 .read_resources = pci_dev_read_resources,
777 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000778 .enable_resources = pci_dev_enable_resources,
Julius Wernercd49cce2019-03-05 16:53:33 -0800779#if CONFIG(HAVE_ACPI_TABLES)
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200780 .write_acpi_tables = pci_rom_write_acpi_tables,
Nico Huber68680dd2020-03-31 17:34:52 +0200781 .acpi_fill_ssdt = pci_rom_ssdt,
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200782#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000783 .init = pci_dev_init,
Uwe Hermanne4870472010-11-04 23:23:47 +0000784 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000785};
Li-Ta Loe5266692004-03-23 21:28:05 +0000786
787/** Default device operations for PCI bridges */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000788struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000789 .read_resources = pci_bus_read_resources,
790 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000791 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000792 .scan_bus = pci_scan_bridge,
Uwe Hermanne4870472010-11-04 23:23:47 +0000793 .reset_bus = pci_bus_reset,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000794};
Li-Ta Loe5266692004-03-23 21:28:05 +0000795
Tim Wawrzynczakdbcf7b12020-05-13 16:15:08 -0600796/** Default device operations for PCI devices marked 'hidden' */
797static struct device_operations default_hidden_pci_ops_dev = {
798 .read_resources = noop_read_resources,
799 .set_resources = noop_set_resources,
800 .scan_bus = scan_static_bus,
801};
802
Li-Ta Loe5266692004-03-23 21:28:05 +0000803/**
Nico Huber061b9052019-09-21 15:58:23 +0200804 * Check for compatibility to route legacy VGA cycles through a bridge.
805 *
806 * Originally, when decoding i/o ports for legacy VGA cycles, bridges
807 * should only consider the 10 least significant bits of the port address.
808 * This means all VGA registers were aliased every 1024 ports!
809 * e.g. 0x3b0 was also decoded as 0x7b0, 0xbb0 etc.
810 *
811 * To avoid this mess, a bridge control bit (VGA16) was introduced in
812 * 2003 to enable decoding of 16-bit port addresses. As we don't want
813 * to make this any more complex for now, we use this bit if possible
814 * and only warn if it's not supported (in set_vga_bridge_bits()).
815 */
816static void pci_bridge_vga_compat(struct bus *const bus)
817{
818 uint16_t bridge_ctrl;
819
820 bridge_ctrl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
821
822 /* Ensure VGA decoding is disabled during probing (it should
823 be by default, but we run blobs nowadays) */
824 bridge_ctrl &= ~PCI_BRIDGE_CTL_VGA;
825 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, bridge_ctrl);
826
827 /* If the upstream bridge doesn't support VGA16, we don't have to check */
828 bus->no_vga16 |= bus->dev->bus->no_vga16;
829 if (bus->no_vga16)
830 return;
831
832 /* Test if we can enable 16-bit decoding */
833 bridge_ctrl |= PCI_BRIDGE_CTL_VGA16;
834 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, bridge_ctrl);
835 bridge_ctrl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
836
837 bus->no_vga16 = !(bridge_ctrl & PCI_BRIDGE_CTL_VGA16);
838}
839
840/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000841 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000842 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000843 * This function is a heuristic to detect which type of bus is downstream
844 * of a PCI-to-PCI bridge. This functions by looking for various capability
845 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
846 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000847 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000848 * When only a PCI-Express capability is found the type is examined to see
849 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000850 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000851 * @param dev Pointer to the device structure of the bridge.
852 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000853 */
Aaron Durbinc30d9132017-08-07 16:55:43 -0600854static struct device_operations *get_pci_bridge_ops(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000855{
Julius Wernercd49cce2019-03-05 16:53:33 -0800856#if CONFIG(PCIX_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800857 unsigned int pcixpos;
858 pcixpos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
859 if (pcixpos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000860 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000861 return &default_pcix_ops_bus;
862 }
863#endif
Julius Wernercd49cce2019-03-05 16:53:33 -0800864#if CONFIG(HYPERTRANSPORT_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800865 unsigned int htpos = 0;
866 while ((htpos = pci_find_next_capability(dev, PCI_CAP_ID_HT, htpos))) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000867 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800868 flags = pci_read_config16(dev, htpos + PCI_CAP_FLAGS);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000869 if ((flags >> 13) == 1) {
870 /* Host or Secondary Interface */
Uwe Hermanne4870472010-11-04 23:23:47 +0000871 printk(BIOS_DEBUG, "%s subordinate bus HT\n",
872 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000873 return &default_ht_ops_bus;
874 }
875 }
876#endif
Julius Wernercd49cce2019-03-05 16:53:33 -0800877#if CONFIG(PCIEXP_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800878 unsigned int pciexpos;
879 pciexpos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
880 if (pciexpos) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000881 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800882 flags = pci_read_config16(dev, pciexpos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000883 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000884 case PCI_EXP_TYPE_ROOT_PORT:
885 case PCI_EXP_TYPE_UPSTREAM:
886 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000887 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000888 dev_path(dev));
Jeremy Sollercf2ac542019-10-09 21:40:36 -0600889#if CONFIG(PCIEXP_HOTPLUG)
890 u16 sltcap;
891 sltcap = pci_read_config16(dev, pciexpos + PCI_EXP_SLTCAP);
892 if (sltcap & PCI_EXP_SLTCAP_HPC) {
893 printk(BIOS_DEBUG, "%s hot-plug capable\n", dev_path(dev));
894 return &default_pciexp_hotplug_ops_bus;
895 }
896#endif /* CONFIG(PCIEXP_HOTPLUG) */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000897 return &default_pciexp_ops_bus;
898 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +0000899 printk(BIOS_DEBUG, "%s subordinate PCI\n",
900 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000901 return &default_pci_ops_bus;
902 default:
903 break;
904 }
905 }
906#endif
907 return &default_pci_ops_bus;
908}
909
910/**
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700911 * Check if a device id matches a PCI driver entry.
912 *
913 * The driver entry can either point at a zero terminated array of acceptable
914 * device IDs, or include a single device ID.
915 *
Martin Roth98b698c2015-01-06 21:02:52 -0700916 * @param driver pointer to the PCI driver entry being checked
917 * @param device_id PCI device ID of the device being matched
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700918 */
919static int device_id_match(struct pci_driver *driver, unsigned short device_id)
920{
921 if (driver->devices) {
922 unsigned short check_id;
923 const unsigned short *device_list = driver->devices;
924 while ((check_id = *device_list++) != 0)
925 if (check_id == device_id)
926 return 1;
927 }
928
929 return (driver->device == device_id);
930}
931
932/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000933 * Set up PCI device operation.
934 *
935 * Check if it already has a driver. If not, use find_device_operations(),
936 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +0000937 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000938 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +0000939 * @see pci_drivers
940 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000941static void set_pci_ops(struct device *dev)
942{
943 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +0000944
Uwe Hermanne4870472010-11-04 23:23:47 +0000945 if (dev->ops)
946 return;
947
948 /*
949 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +0000950 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000951 */
Aaron Durbin03758152015-09-03 17:23:08 -0500952 for (driver = &_pci_drivers[0]; driver != &_epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000953 if ((driver->vendor == dev->vendor) &&
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700954 device_id_match(driver, dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +0000955 dev->ops = (struct device_operations *)driver->ops;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000956 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000957 dev_path(dev), driver->vendor, driver->device,
958 (driver->ops->scan_bus ? "bus " : ""));
Eric Biederman5899fd82003-04-24 06:25:08 +0000959 return;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000960 }
961 }
Li-Ta Loe5266692004-03-23 21:28:05 +0000962
Uwe Hermanne4870472010-11-04 23:23:47 +0000963 /* If I don't have a specific driver use the default operations. */
964 switch (dev->hdr_type & 0x7f) { /* Header type */
965 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +0000966 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
967 goto bad;
968 dev->ops = &default_pci_ops_dev;
969 break;
970 case PCI_HEADER_TYPE_BRIDGE:
971 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
972 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000973 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000974 break;
Julius Wernercd49cce2019-03-05 16:53:33 -0800975#if CONFIG(CARDBUS_PLUGIN_SUPPORT)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000976 case PCI_HEADER_TYPE_CARDBUS:
977 dev->ops = &default_cardbus_ops_bus;
978 break;
979#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000980default:
981bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000982 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000983 printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "
984 "header type %02x, ignoring.\n", dev_path(dev),
985 dev->vendor, dev->device,
986 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +0000987 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000988 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000989}
990
991/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000992 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +0000993 *
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200994 * Given a PCI bus structure and a devfn number, find the device structure
995 * corresponding to the devfn, if present. Then move the device structure
996 * as the last child on the bus.
Li-Ta Loe5266692004-03-23 21:28:05 +0000997 *
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200998 * @param bus Pointer to the bus structure.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000999 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001000 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +00001001 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001002 */
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001003static struct device *pci_scan_get_dev(struct bus *bus, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001004{
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001005 struct device *dev, **prev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001006
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001007 prev = &bus->children;
1008 for (dev = bus->children; dev; dev = dev->sibling) {
Duncan Lauriebf696222020-10-18 15:10:00 -07001009 if (dev->path.type == DEVICE_PATH_PCI && dev->path.pci.devfn == devfn) {
1010 /* Unlink from the list. */
1011 *prev = dev->sibling;
1012 dev->sibling = NULL;
1013 break;
Eric Biedermanad1b35a2003-10-14 02:36:51 +00001014 }
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001015 prev = &dev->sibling;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001016 }
Myles Watson29cc9ed2009-07-02 18:56:24 +00001017
Uwe Hermanne4870472010-11-04 23:23:47 +00001018 /*
1019 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +00001020 * bus. When the list of devices was formed we removed all of the
1021 * parents children, and now we are interleaving static and dynamic
1022 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001023 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001024 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +00001025 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +00001026
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001027 /* Find the last child on the bus. */
1028 for (child = bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +00001029 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +00001030
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001031 /* Place the device as last on the bus. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001032 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +00001033 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001034 else
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001035 bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001036 }
1037
Eric Biederman8ca8d762003-04-22 19:02:15 +00001038 return dev;
1039}
1040
Myles Watson032a9652009-05-11 22:24:53 +00001041/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001042 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +00001043 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001044 * Determine the existence of a given PCI device. Allocate a new struct device
1045 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001046 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001047 * @param dev Pointer to the dev structure.
1048 * @param bus Pointer to the bus structure.
1049 * @param devfn A device/function number to look at.
1050 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001051 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001052struct device *pci_probe_dev(struct device *dev, struct bus *bus,
1053 unsigned int devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001054{
Myles Watson29cc9ed2009-07-02 18:56:24 +00001055 u32 id, class;
1056 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001057
Myles Watson29cc9ed2009-07-02 18:56:24 +00001058 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001059 if (!dev) {
1060 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +00001061
Myles Watson29cc9ed2009-07-02 18:56:24 +00001062 dummy.bus = bus;
1063 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +00001064 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +00001065
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001066 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +00001067 /*
1068 * Have we found something? Some broken boards return 0 if a
1069 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001070 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001071 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +00001072 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +00001073
Stefan Reinauer7355c752010-04-02 16:30:25 +00001074 if ((id == 0x00000000) || (id == 0x0000ffff) ||
1075 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001076 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
1077 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001078 return NULL;
1079 }
1080 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001081 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +00001082 /*
1083 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +00001084 * specific operations this operations we will disable the
1085 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +00001086 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001087 * This is geared toward devices that have subfunctions
1088 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +00001089 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001090 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +00001091 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001092 */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001093 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001094 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001095 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +00001096
Myles Watson29cc9ed2009-07-02 18:56:24 +00001097 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001098 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +00001099
Uwe Hermanne4870472010-11-04 23:23:47 +00001100 /*
1101 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +00001102 * this is because we have already disabled the device. But
1103 * this also handles optional devices that may not always
1104 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001105 */
1106 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001107 if ((id == 0xffffffff) || (id == 0x00000000) ||
1108 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001109 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001110 printk(BIOS_INFO, "PCI: Static device %s not "
1111 "found, disabling it.\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001112 dev->enabled = 0;
1113 }
1114 return dev;
1115 }
1116 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001117
Myles Watson29cc9ed2009-07-02 18:56:24 +00001118 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001119 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
1120 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +00001121
Myles Watson29cc9ed2009-07-02 18:56:24 +00001122 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001123 dev->vendor = id & 0xffff;
1124 dev->device = (id >> 16) & 0xffff;
1125 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001126
1127 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001128 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +00001129
Myles Watson29cc9ed2009-07-02 18:56:24 +00001130 /* Architectural/System devices always need to be bus masters. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001131 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM)
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
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001223 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %02x\n", 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) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001227 printk(BIOS_ERR, "PCI: pci_scan_bus limits devfn %x - "
1228 "devfn %x\n", min_devfn, max_devfn);
1229 printk(BIOS_ERR, "PCI: pci_scan_bus upper limit too big. "
1230 "Using 0xff.\n");
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001231 max_devfn=0xff;
1232 }
1233
Eric Biederman8ca8d762003-04-22 19:02:15 +00001234 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001235
1236 /*
1237 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001238 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001239 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001240 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Ronald G. Minnich466ca2c2019-10-22 02:02:24 +00001241 if (CONFIG(MINIMAL_PCI_SCANNING)) {
1242 dev = pcidev_path_behind(bus, devfn);
1243 if (!dev || !dev->mandatory)
1244 continue;
1245 }
1246
Uwe Hermanne4870472010-11-04 23:23:47 +00001247 /* First thing setup the device structure. */
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001248 dev = pci_scan_get_dev(bus, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001249
Tim Wawrzynczakdbcf7b12020-05-13 16:15:08 -06001250 /* Devices marked 'hidden' do not get probed */
1251 if (dev && dev->hidden) {
1252 pci_scan_hidden_device(dev);
1253
1254 /* Skip pci_probe_dev, go to next devfn */
1255 continue;
1256 }
1257
Myles Watson29cc9ed2009-07-02 18:56:24 +00001258 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001259 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001260
Uwe Hermanne4870472010-11-04 23:23:47 +00001261 /*
1262 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001263 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001264 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001265 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001266 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001267 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001268 devfn += 0x07;
1269 }
1270 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001271
Eric Biederman8ca8d762003-04-22 19:02:15 +00001272 post_code(0x25);
1273
Uwe Hermanne4870472010-11-04 23:23:47 +00001274 /*
1275 * Warn if any leftover static devices are are found.
1276 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001277 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001278
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001279 prev = &bus->children;
1280 for (dev = bus->children; dev; dev = dev->sibling) {
Duncan Lauriebf696222020-10-18 15:10:00 -07001281
1282 /*
1283 * If static device is not PCI then enable it here and don't
1284 * treat it as a leftover device.
1285 */
1286 if (dev->path.type != DEVICE_PATH_PCI) {
1287 enable_static_device(dev);
1288 continue;
1289 }
1290
Tim Wawrzynczakdbcf7b12020-05-13 16:15:08 -06001291 /*
1292 * The device is only considered leftover if it is not hidden
1293 * and it has a Vendor ID of 0 (the default for a device that
1294 * could not be probed).
1295 */
1296 if (dev->vendor != 0 || dev->hidden) {
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001297 prev = &dev->sibling;
1298 continue;
1299 }
1300
1301 /* Unlink it from list. */
1302 *prev = dev->sibling;
1303
1304 if (!once++)
1305 printk(BIOS_WARNING, "PCI: Leftover static devices:\n");
1306 printk(BIOS_WARNING, "%s\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001307 }
1308
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001309 if (once)
1310 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
1311
Uwe Hermanne4870472010-11-04 23:23:47 +00001312 /*
1313 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001314 * scan the bus behind that child.
1315 */
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001316
Kyösti Mälkki2d2367c2015-02-20 21:28:31 +02001317 scan_bridges(bus);
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001318
Uwe Hermanne4870472010-11-04 23:23:47 +00001319 /*
1320 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001321 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001322 * Return how far we've got finding sub-buses.
1323 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001324 post_code(0x55);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001325}
1326
Kyösti Mälkki33452402015-02-23 06:58:26 +02001327typedef enum {
1328 PCI_ROUTE_CLOSE,
1329 PCI_ROUTE_SCAN,
1330 PCI_ROUTE_FINAL,
1331} scan_state;
1332
1333static void pci_bridge_route(struct bus *link, scan_state state)
1334{
1335 struct device *dev = link->dev;
1336 struct bus *parent = dev->bus;
1337 u32 reg, buses = 0;
1338
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001339 if (state == PCI_ROUTE_SCAN) {
1340 link->secondary = parent->subordinate + 1;
Jeremy Sollercf2ac542019-10-09 21:40:36 -06001341 link->subordinate = link->secondary + dev->hotplug_buses;
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001342 }
1343
Kyösti Mälkki33452402015-02-23 06:58:26 +02001344 if (state == PCI_ROUTE_CLOSE) {
1345 buses |= 0xfeff << 8;
1346 } else if (state == PCI_ROUTE_SCAN) {
Timothy Pearson7d8a4782015-10-24 20:34:57 -05001347 buses |= parent->secondary & 0xff;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001348 buses |= ((u32) link->secondary & 0xff) << 8;
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001349 buses |= 0xff << 16; /* MAX PCI_BUS number here */
Kyösti Mälkki33452402015-02-23 06:58:26 +02001350 } else if (state == PCI_ROUTE_FINAL) {
1351 buses |= parent->secondary & 0xff;
1352 buses |= ((u32) link->secondary & 0xff) << 8;
1353 buses |= ((u32) link->subordinate & 0xff) << 16;
1354 }
1355
1356 if (state == PCI_ROUTE_SCAN) {
1357 /* Clear all status bits and turn off memory, I/O and master enables. */
1358 link->bridge_cmd = pci_read_config16(dev, PCI_COMMAND);
1359 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1360 pci_write_config16(dev, PCI_STATUS, 0xffff);
1361 }
1362
1363 /*
1364 * Configure the bus numbers for this bridge: the configuration
1365 * transactions will not be propagated by the bridge if it is not
1366 * correctly configured.
1367 */
1368
1369 reg = pci_read_config32(dev, PCI_PRIMARY_BUS);
1370 reg &= 0xff000000;
1371 reg |= buses;
1372 pci_write_config32(dev, PCI_PRIMARY_BUS, reg);
1373
1374 if (state == PCI_ROUTE_FINAL) {
1375 pci_write_config16(dev, PCI_COMMAND, link->bridge_cmd);
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001376 parent->subordinate = link->subordinate;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001377 }
1378}
1379
Li-Ta Loe5266692004-03-23 21:28:05 +00001380/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001381 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001382 *
1383 * Determine the existence of buses behind the bridge. Set up the bridge
1384 * according to the result of the scan.
1385 *
1386 * This function is the default scan_bus() method for PCI bridge devices.
1387 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001388 * @param dev Pointer to the bridge device.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001389 * @param do_scan_bus TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +00001390 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001391void do_pci_scan_bridge(struct device *dev,
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001392 void (*do_scan_bus) (struct bus * bus,
Martin Roth38ddbfb2019-10-23 21:41:00 -06001393 unsigned int min_devfn,
1394 unsigned int max_devfn))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001395{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001396 struct bus *bus;
Eric Biederman83b991a2003-10-11 06:20:25 +00001397
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001398 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001399
Myles Watson894a3472010-06-09 22:41:35 +00001400 if (dev->link_list == NULL) {
1401 struct bus *link;
1402 link = malloc(sizeof(*link));
1403 if (link == NULL)
1404 die("Couldn't allocate a link!\n");
1405 memset(link, 0, sizeof(*link));
1406 link->dev = dev;
1407 dev->link_list = link;
1408 }
1409
1410 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001411
Nico Huber061b9052019-09-21 15:58:23 +02001412 pci_bridge_vga_compat(bus);
1413
Kyösti Mälkki33452402015-02-23 06:58:26 +02001414 pci_bridge_route(bus, PCI_ROUTE_SCAN);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001415
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001416 do_scan_bus(bus, 0x00, 0xff);
Kyösti Mälkki33452402015-02-23 06:58:26 +02001417
1418 pci_bridge_route(bus, PCI_ROUTE_FINAL);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001419}
Li-Ta Loe5266692004-03-23 21:28:05 +00001420
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001421/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001422 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001423 *
1424 * Determine the existence of buses behind the bridge. Set up the bridge
1425 * according to the result of the scan.
1426 *
1427 * This function is the default scan_bus() method for PCI bridge devices.
1428 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001429 * @param dev Pointer to the bridge device.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001430 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001431void pci_scan_bridge(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001432{
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001433 do_pci_scan_bridge(dev, pci_scan_bus);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001434}
1435
Myles Watson29cc9ed2009-07-02 18:56:24 +00001436/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001437 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001438 *
1439 * This function is the default scan_bus() method for PCI domains.
1440 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001441 * @param dev Pointer to the domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001442 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001443void pci_domain_scan_bus(struct device *dev)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001444{
Kyösti Mälkki6f370172015-03-19 15:26:52 +02001445 struct bus *link = dev->link_list;
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001446 pci_scan_bus(link, PCI_DEVFN(0, 0), 0xff);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001447}
1448
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001449/**
1450 * Take an INT_PIN number (0, 1 - 4) and convert
1451 * it to a string ("NO PIN", "PIN A" - "PIN D")
1452 *
1453 * @param pin PCI Interrupt Pin number (0, 1 - 4)
1454 * @return A string corresponding to the pin number or "Invalid"
1455 */
1456const char *pin_to_str(int pin)
1457{
1458 const char *str[5] = {
1459 "NO PIN",
1460 "PIN A",
1461 "PIN B",
1462 "PIN C",
1463 "PIN D",
1464 };
1465
1466 if (pin >= 0 && pin <= 4)
1467 return str[pin];
1468 else
1469 return "Invalid PIN, not 0 - 4";
1470}
1471
1472/**
1473 * Get the PCI INT_PIN swizzle for a device defined as:
1474 * pin_parent = (pin_child + devn_child) % 4 + 1
1475 * where PIN A = 1 ... PIN_D = 4
1476 *
1477 * Given a PCI device structure 'dev', find the interrupt pin
1478 * that will be triggered on its parent bridge device when
1479 * generating an interrupt. For example: Device 1:3.2 may
1480 * use INT_PIN A but will trigger PIN D on its parent bridge
1481 * device. In this case, this function will return 4 (PIN D).
1482 *
1483 * @param dev A PCI device structure to swizzle interrupt pins for
Martin Roth32bc6b62015-01-04 16:54:35 -07001484 * @param *parent_bridge The PCI device structure for the bridge
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001485 * device 'dev' is attached to
1486 * @return The interrupt pin number (1 - 4) that 'dev' will
1487 * trigger when generating an interrupt
1488 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001489static int swizzle_irq_pins(struct device *dev, struct device **parent_bridge)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001490{
Aaron Durbinc30d9132017-08-07 16:55:43 -06001491 struct device *parent; /* Our current device's parent device */
1492 struct device *child; /* The child device of the parent */
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001493 uint8_t parent_bus = 0; /* Parent Bus number */
1494 uint16_t parent_devfn = 0; /* Parent Device and Function number */
1495 uint16_t child_devfn = 0; /* Child Device and Function number */
1496 uint8_t swizzled_pin = 0; /* Pin swizzled across a bridge */
1497
1498 /* Start with PIN A = 0 ... D = 3 */
1499 swizzled_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN) - 1;
1500
1501 /* While our current device has parent devices */
1502 child = dev;
1503 for (parent = child->bus->dev; parent; parent = parent->bus->dev) {
1504 parent_bus = parent->bus->secondary;
1505 parent_devfn = parent->path.pci.devfn;
1506 child_devfn = child->path.pci.devfn;
1507
1508 /* Swizzle the INT_PIN for any bridges not on root bus */
1509 swizzled_pin = (PCI_SLOT(child_devfn) + swizzled_pin) % 4;
1510 printk(BIOS_SPEW, "\tWith INT_PIN swizzled to %s\n"
1511 "\tAttached to bridge device %01X:%02Xh.%02Xh\n",
1512 pin_to_str(swizzled_pin + 1), parent_bus,
1513 PCI_SLOT(parent_devfn), PCI_FUNC(parent_devfn));
1514
1515 /* Continue until we find the root bus */
1516 if (parent_bus > 0) {
1517 /*
1518 * We will go on to the next parent so this parent
1519 * becomes the child
1520 */
1521 child = parent;
1522 continue;
1523 } else {
1524 /*
1525 * Found the root bridge device,
1526 * fill in the structure and exit
1527 */
1528 *parent_bridge = parent;
1529 break;
1530 }
1531 }
1532
1533 /* End with PIN A = 1 ... D = 4 */
1534 return swizzled_pin + 1;
1535}
1536
1537/**
1538 * Given a device structure 'dev', find its interrupt pin
1539 * and its parent bridge 'parent_bdg' device structure.
1540 * If it is behind a bridge, it will return the interrupt
1541 * pin number (1 - 4) of the parent bridge that the device
1542 * interrupt pin has been swizzled to, otherwise it will
1543 * return the interrupt pin that is programmed into the
1544 * PCI config space of the target device. If 'dev' is
1545 * behind a bridge, it will fill in 'parent_bdg' with the
1546 * device structure of the bridge it is behind, otherwise
1547 * it will copy 'dev' into 'parent_bdg'.
1548 *
1549 * @param dev A PCI device structure to get interrupt pins for.
1550 * @param *parent_bdg The PCI device structure for the bridge
1551 * device 'dev' is attached to.
1552 * @return The interrupt pin number (1 - 4) that 'dev' will
1553 * trigger when generating an interrupt.
1554 * Errors: -1 is returned if the device is not enabled
1555 * -2 is returned if a parent bridge could not be found.
1556 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001557int get_pci_irq_pins(struct device *dev, struct device **parent_bdg)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001558{
1559 uint8_t bus = 0; /* The bus this device is on */
1560 uint16_t devfn = 0; /* This device's device and function numbers */
1561 uint8_t int_pin = 0; /* Interrupt pin used by the device */
1562 uint8_t target_pin = 0; /* Interrupt pin we want to assign an IRQ to */
1563
1564 /* Make sure this device is enabled */
1565 if (!(dev->enabled && (dev->path.type == DEVICE_PATH_PCI)))
1566 return -1;
1567
1568 bus = dev->bus->secondary;
1569 devfn = dev->path.pci.devfn;
1570
1571 /* Get and validate the interrupt pin used. Only 1-4 are allowed */
1572 int_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN);
1573 if (int_pin < 1 || int_pin > 4)
1574 return -1;
1575
1576 printk(BIOS_SPEW, "PCI IRQ: Found device %01X:%02X.%02X using %s\n",
1577 bus, PCI_SLOT(devfn), PCI_FUNC(devfn), pin_to_str(int_pin));
1578
1579 /* If this device is on a bridge, swizzle its INT_PIN */
1580 if (bus) {
1581 /* Swizzle its INT_PINs */
1582 target_pin = swizzle_irq_pins(dev, parent_bdg);
1583
1584 /* Make sure the swizzle returned valid structures */
1585 if (parent_bdg == NULL) {
1586 printk(BIOS_WARNING,
1587 "Warning: Could not find parent bridge for this device!\n");
1588 return -2;
1589 }
1590 } else { /* Device is not behind a bridge */
1591 target_pin = int_pin; /* Return its own interrupt pin */
1592 *parent_bdg = dev; /* Return its own structure */
1593 }
1594
1595 /* Target pin is the interrupt pin we want to assign an IRQ to */
1596 return target_pin;
1597}
1598
Julius Wernercd49cce2019-03-05 16:53:33 -08001599#if CONFIG(PC80_SYSTEM)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001600/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001601 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001602 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001603 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001604 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001605 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001606 *
1607 * This function should be called for each PCI slot in your system.
1608 *
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001609 * @param dev Pointer to dev structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001610 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1611 * of this slot. The particular IRQ #s that are passed in depend on the
1612 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001613 */
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001614void pci_assign_irqs(struct device *dev, const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001615{
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001616 u8 slot, line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001617
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001618 /* Each device may contain up to eight functions. */
1619 slot = dev->path.pci.devfn >> 3;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001620
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001621 for (; dev ; dev = dev->sibling) {
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001622
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001623 if (dev->path.pci.devfn >> 3 != slot)
1624 break;
1625
1626 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001627
Uwe Hermanne4870472010-11-04 23:23:47 +00001628 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001629 if ((line < 1) || (line > 4))
1630 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001631
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001632 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001633
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001634 printk(BIOS_DEBUG, "Assigning IRQ %d to %s\n", irq, dev_path(dev));
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001635
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001636 pci_write_config8(dev, PCI_INTERRUPT_LINE, pIntAtoD[line - 1]);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001637
Julius Wernercd49cce2019-03-05 16:53:33 -08001638#if CONFIG(PC80_SYSTEM)
Uwe Hermanne4870472010-11-04 23:23:47 +00001639 /* Change to level triggered. */
1640 i8259_configure_irq_trigger(pIntAtoD[line - 1],
1641 IRQ_LEVEL_TRIGGERED);
Stefan Reinauer5fb62162010-12-16 23:52:04 +00001642#endif
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001643 }
1644}
John Zhao95b4ece02020-05-04 15:58:48 -07001645
1646void pci_dev_disable_bus_master(const struct device *dev)
1647{
1648 pci_update_config16(dev, PCI_COMMAND, ~PCI_COMMAND_MASTER, 0x0);
1649}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001650#endif
Furquan Shaikh494f3192020-10-03 16:23:55 -07001651
1652bool pci_dev_is_wake_source(const struct device *dev)
1653{
1654 unsigned int pm_cap;
1655 uint16_t pmcs;
1656
1657 if (dev->path.type != DEVICE_PATH_PCI)
1658 return false;
1659
1660 pm_cap = pci_find_capability(dev, PCI_CAP_ID_PM);
1661 if (!pm_cap)
1662 return false;
1663
1664 pmcs = pci_read_config16(dev, pm_cap + PCI_PM_CTRL);
1665
1666 /* PCI Device is a wake source if PME_ENABLE and PME_STATUS are set in PMCS register. */
1667 return (pmcs & PCI_PM_CTRL_PME_ENABLE) && (pmcs & PCI_PM_CTRL_PME_STATUS);
1668}