blob: 9036f53f3b9e3f41f382f1243c735796e8e0d3ab [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>
12#include <stdlib.h>
13#include <stdint.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
Eric Biederman03acab62004-10-14 21:25:53 +000028
Myles Watson29cc9ed2009-07-02 18:56:24 +000029u8 pci_moving_config8(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000030{
Myles Watson29cc9ed2009-07-02 18:56:24 +000031 u8 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000032
Eric Biederman03acab62004-10-14 21:25:53 +000033 value = pci_read_config8(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000034
Eric Biederman03acab62004-10-14 21:25:53 +000035 pci_write_config8(dev, reg, 0xff);
36 ones = pci_read_config8(dev, reg);
37
38 pci_write_config8(dev, reg, 0x00);
39 zeroes = pci_read_config8(dev, reg);
40
41 pci_write_config8(dev, reg, value);
42
43 return ones ^ zeroes;
44}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +000045
Uwe Hermanne4870472010-11-04 23:23:47 +000046u16 pci_moving_config16(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000047{
Myles Watson29cc9ed2009-07-02 18:56:24 +000048 u16 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000049
Eric Biederman03acab62004-10-14 21:25:53 +000050 value = pci_read_config16(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000051
Eric Biederman03acab62004-10-14 21:25:53 +000052 pci_write_config16(dev, reg, 0xffff);
53 ones = pci_read_config16(dev, reg);
54
55 pci_write_config16(dev, reg, 0x0000);
56 zeroes = pci_read_config16(dev, reg);
57
58 pci_write_config16(dev, reg, value);
59
60 return ones ^ zeroes;
61}
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +000062
Uwe Hermanne4870472010-11-04 23:23:47 +000063u32 pci_moving_config32(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000064{
Myles Watson29cc9ed2009-07-02 18:56:24 +000065 u32 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000066
Eric Biederman03acab62004-10-14 21:25:53 +000067 value = pci_read_config32(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000068
Eric Biederman03acab62004-10-14 21:25:53 +000069 pci_write_config32(dev, reg, 0xffffffff);
70 ones = pci_read_config32(dev, reg);
71
72 pci_write_config32(dev, reg, 0x00000000);
73 zeroes = pci_read_config32(dev, reg);
74
75 pci_write_config32(dev, reg, value);
76
77 return ones ^ zeroes;
78}
79
Myles Watson29cc9ed2009-07-02 18:56:24 +000080/**
Myles Watson29cc9ed2009-07-02 18:56:24 +000081 * Given a device and register, read the size of the BAR for that register.
82 *
83 * @param dev Pointer to the device structure.
84 * @param index Address of the PCI configuration register.
Uwe Hermannc1ee4292010-10-17 19:01:48 +000085 * @return TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +000086 */
Eric Biederman03acab62004-10-14 21:25:53 +000087struct resource *pci_get_resource(struct device *dev, unsigned long index)
Eric Biederman8ca8d762003-04-22 19:02:15 +000088{
Eric Biederman5cd81732004-03-11 15:01:31 +000089 struct resource *resource;
Eric Biederman03acab62004-10-14 21:25:53 +000090 unsigned long value, attr;
Myles Watson29cc9ed2009-07-02 18:56:24 +000091 resource_t moving, limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +000092
Myles Watson29cc9ed2009-07-02 18:56:24 +000093 /* Initialize the resources to nothing. */
Eric Biederman03acab62004-10-14 21:25:53 +000094 resource = new_resource(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +000095
Myles Watson29cc9ed2009-07-02 18:56:24 +000096 /* Get the initial value. */
Eric Biederman03acab62004-10-14 21:25:53 +000097 value = pci_read_config32(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +000098
Myles Watson29cc9ed2009-07-02 18:56:24 +000099 /* See which bits move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000100 moving = pci_moving_config32(dev, index);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000101
Myles Watson29cc9ed2009-07-02 18:56:24 +0000102 /* Initialize attr to the bits that do not move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000103 attr = value & ~moving;
104
Myles Watson29cc9ed2009-07-02 18:56:24 +0000105 /* If it is a 64bit resource look at the high half as well. */
Eric Biederman03acab62004-10-14 21:25:53 +0000106 if (((attr & PCI_BASE_ADDRESS_SPACE_IO) == 0) &&
Myles Watson29cc9ed2009-07-02 18:56:24 +0000107 ((attr & PCI_BASE_ADDRESS_MEM_LIMIT_MASK) ==
108 PCI_BASE_ADDRESS_MEM_LIMIT_64)) {
109 /* Find the high bits that move. */
110 moving |=
111 ((resource_t) pci_moving_config32(dev, index + 4)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000112 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000113
Myles Watson032a9652009-05-11 22:24:53 +0000114 /* Find the resource constraints.
Eric Biederman03acab62004-10-14 21:25:53 +0000115 * Start by finding the bits that move. From there:
116 * - Size is the least significant bit of the bits that move.
117 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000118 * See PCI Spec 6.2.5.1.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000119 */
Eric Biederman03acab62004-10-14 21:25:53 +0000120 limit = 0;
121 if (moving) {
122 resource->size = 1;
123 resource->align = resource->gran = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000124 while (!(moving & resource->size)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000125 resource->size <<= 1;
126 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000127 resource->gran += 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000128 }
129 resource->limit = limit = moving | (resource->size - 1);
Nico Huber8193b062015-10-21 15:43:41 +0200130
131 if (pci_base_address_is_memory_space(attr)) {
132 /* Page-align to allow individual mapping of devices. */
133 if (resource->align < 12)
134 resource->align = 12;
135 }
Eric Biederman03acab62004-10-14 21:25:53 +0000136 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000137
Uwe Hermanne4870472010-11-04 23:23:47 +0000138 /*
139 * Some broken hardware has read-only registers that do not
Eric Biederman03acab62004-10-14 21:25:53 +0000140 * really size correctly.
Uwe Hermanne4870472010-11-04 23:23:47 +0000141 *
142 * Example: the Acer M7229 has BARs 1-4 normally read-only,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000143 * so BAR1 at offset 0x10 reads 0x1f1. If you size that register
Uwe Hermanne4870472010-11-04 23:23:47 +0000144 * by writing 0xffffffff to it, it will read back as 0x1f1 -- which
145 * is a violation of the spec.
146 *
147 * We catch this case and ignore it by observing which bits move.
148 *
149 * This also catches the common case of unimplemented registers
Eric Biederman03acab62004-10-14 21:25:53 +0000150 * that always read back as 0.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000151 */
Eric Biederman03acab62004-10-14 21:25:53 +0000152 if (moving == 0) {
153 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000154 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
155 "read-only ignoring it\n",
156 dev_path(dev), index, value);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000157 }
158 resource->flags = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000159 } else if (attr & PCI_BASE_ADDRESS_SPACE_IO) {
160 /* An I/O mapped base address. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000161 resource->flags |= IORESOURCE_IO;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000162 /* I don't want to deal with 32bit I/O resources. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000163 resource->limit = 0xffff;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000164 } else {
165 /* A Memory mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000166 attr &= PCI_BASE_ADDRESS_MEM_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000167 resource->flags |= IORESOURCE_MEM;
Uwe Hermanne4870472010-11-04 23:23:47 +0000168 if (attr & PCI_BASE_ADDRESS_MEM_PREFETCH)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000169 resource->flags |= IORESOURCE_PREFETCH;
Eric Biederman03acab62004-10-14 21:25:53 +0000170 attr &= PCI_BASE_ADDRESS_MEM_LIMIT_MASK;
171 if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_32) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000172 /* 32bit limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000173 resource->limit = 0xffffffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000174 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_1M) {
175 /* 1MB limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000176 resource->limit = 0x000fffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000177 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_64) {
178 /* 64bit limit. */
Eric Biederman03acab62004-10-14 21:25:53 +0000179 resource->limit = 0xffffffffffffffffULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000180 resource->flags |= IORESOURCE_PCI64;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000181 } else {
182 /* Invalid value. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000183 printk(BIOS_ERR, "Broken BAR with value %lx\n", attr);
184 printk(BIOS_ERR, " on dev %s at index %02lx\n",
Myles Watson29cc9ed2009-07-02 18:56:24 +0000185 dev_path(dev), index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000186 resource->flags = 0;
187 }
188 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000189
Myles Watson29cc9ed2009-07-02 18:56:24 +0000190 /* Don't let the limit exceed which bits can move. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000191 if (resource->limit > limit)
Eric Biederman03acab62004-10-14 21:25:53 +0000192 resource->limit = limit;
Eric Biederman03acab62004-10-14 21:25:53 +0000193
Eric Biederman5cd81732004-03-11 15:01:31 +0000194 return resource;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000195}
196
Myles Watson29cc9ed2009-07-02 18:56:24 +0000197/**
198 * Given a device and an index, read the size of the BAR for that register.
199 *
200 * @param dev Pointer to the device structure.
201 * @param index Address of the PCI configuration register.
202 */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000203static void pci_get_rom_resource(struct device *dev, unsigned long index)
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000204{
205 struct resource *resource;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000206 unsigned long value;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000207 resource_t moving;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000208
Myles Watson29cc9ed2009-07-02 18:56:24 +0000209 /* Initialize the resources to nothing. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000210 resource = new_resource(dev, index);
211
Myles Watson29cc9ed2009-07-02 18:56:24 +0000212 /* Get the initial value. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000213 value = pci_read_config32(dev, index);
214
Myles Watson29cc9ed2009-07-02 18:56:24 +0000215 /* See which bits move. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000216 moving = pci_moving_config32(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000217
218 /* Clear the Enable bit. */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000219 moving = moving & ~PCI_ROM_ADDRESS_ENABLE;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000220
Myles Watson032a9652009-05-11 22:24:53 +0000221 /* Find the resource constraints.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000222 * Start by finding the bits that move. From there:
223 * - Size is the least significant bit of the bits that move.
224 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000225 * See PCI Spec 6.2.5.1.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000226 */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000227 if (moving) {
228 resource->size = 1;
229 resource->align = resource->gran = 0;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000230 while (!(moving & resource->size)) {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000231 resource->size <<= 1;
232 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000233 resource->gran += 1;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000234 }
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000235 resource->limit = moving | (resource->size - 1);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000236 resource->flags |= IORESOURCE_MEM | IORESOURCE_READONLY;
237 } else {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000238 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000239 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
240 "read-only ignoring it\n",
241 dev_path(dev), index, value);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000242 }
243 resource->flags = 0;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000244 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000245 compact_resources(dev);
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000246}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000247
Myles Watson29cc9ed2009-07-02 18:56:24 +0000248/**
Patrick Rudolph4e2f95b2018-05-16 14:56:22 +0200249 * Given a device, read the size of the MSI-X table.
250 *
251 * @param dev Pointer to the device structure.
252 * @return MSI-X table size or 0 if not MSI-X capable device
253 */
254size_t pci_msix_table_size(struct device *dev)
255{
256 const size_t pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
257 if (!pos)
258 return 0;
259
260 const u16 control = pci_read_config16(dev, pos + PCI_MSIX_FLAGS);
261 return (control & PCI_MSIX_FLAGS_QSIZE) + 1;
262}
263
264/**
265 * Given a device, return the table offset and bar the MSI-X tables resides in.
266 *
267 * @param dev Pointer to the device structure.
268 * @param offset Returned value gives the offset in bytes inside the PCI BAR.
269 * @param idx The returned value is the index of the PCI_BASE_ADDRESS register
270 * the MSI-X table is located in.
271 * @return Zero on success
272 */
273int pci_msix_table_bar(struct device *dev, u32 *offset, u8 *idx)
274{
275 const size_t pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
276 if (!pos || !offset || !idx)
277 return 1;
278
279 *offset = pci_read_config32(dev, pos + PCI_MSIX_TABLE);
280 *idx = (u8)(*offset & PCI_MSIX_PBA_BIR);
281 *offset &= PCI_MSIX_PBA_OFFSET;
282
283 return 0;
284}
285
286/**
287 * Given a device, return a msix_entry pointer or NULL if no table was found.
288 *
289 * @param dev Pointer to the device structure.
290 *
291 * @return NULL on error
292 */
293struct msix_entry *pci_msix_get_table(struct device *dev)
294{
295 struct resource *res;
296 u32 offset;
297 u8 idx;
298
299 if (pci_msix_table_bar(dev, &offset, &idx))
300 return NULL;
301
302 if (idx > 5)
303 return NULL;
304
305 res = probe_resource(dev, idx * 4 + PCI_BASE_ADDRESS_0);
306 if (!res || !res->base || offset >= res->size)
307 return NULL;
308
309 if ((res->flags & IORESOURCE_PCI64) &&
310 (uintptr_t)res->base != res->base)
311 return NULL;
312
313 return (struct msix_entry *)((uintptr_t)res->base + offset);
314}
315
316/**
Myles Watson29cc9ed2009-07-02 18:56:24 +0000317 * Read the base address registers for a given device.
318 *
319 * @param dev Pointer to the dev structure.
320 * @param howmany How many registers to read (6 for device, 2 for bridge).
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000321 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000322static void pci_read_bases(struct device *dev, unsigned int howmany)
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000323{
324 unsigned long index;
325
Myles Watson29cc9ed2009-07-02 18:56:24 +0000326 for (index = PCI_BASE_ADDRESS_0;
327 (index < PCI_BASE_ADDRESS_0 + (howmany << 2));) {
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000328 struct resource *resource;
329 resource = pci_get_resource(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000330 index += (resource->flags & IORESOURCE_PCI64) ? 8 : 4;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000331 }
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000332
333 compact_resources(dev);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000334}
335
Myles Watson29cc9ed2009-07-02 18:56:24 +0000336static void pci_record_bridge_resource(struct device *dev, resource_t moving,
Martin Roth38ddbfb2019-10-23 21:41:00 -0600337 unsigned int index, unsigned long type)
Eric Biederman03acab62004-10-14 21:25:53 +0000338{
Eric Biederman03acab62004-10-14 21:25:53 +0000339 struct resource *resource;
Uwe Hermanne4870472010-11-04 23:23:47 +0000340 unsigned long gran;
341 resource_t step;
342
Myles Watson29cc9ed2009-07-02 18:56:24 +0000343 resource = NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000344
345 if (!moving)
346 return;
347
348 /* Initialize the constraints on the current bus. */
349 resource = new_resource(dev, index);
350 resource->size = 0;
351 gran = 0;
352 step = 1;
353 while ((moving & step) == 0) {
354 gran += 1;
355 step <<= 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000356 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000357 resource->gran = gran;
358 resource->align = gran;
359 resource->limit = moving | (step - 1);
360 resource->flags = type | IORESOURCE_PCI_BRIDGE |
361 IORESOURCE_BRIDGE;
Eric Biederman03acab62004-10-14 21:25:53 +0000362}
363
Eric Biederman8ca8d762003-04-22 19:02:15 +0000364static void pci_bridge_read_bases(struct device *dev)
365{
Eric Biederman03acab62004-10-14 21:25:53 +0000366 resource_t moving_base, moving_limit, moving;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000367
Myles Watson29cc9ed2009-07-02 18:56:24 +0000368 /* See if the bridge I/O resources are implemented. */
369 moving_base = ((u32) pci_moving_config8(dev, PCI_IO_BASE)) << 8;
370 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000371 ((u32) pci_moving_config16(dev, PCI_IO_BASE_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000372
Myles Watson29cc9ed2009-07-02 18:56:24 +0000373 moving_limit = ((u32) pci_moving_config8(dev, PCI_IO_LIMIT)) << 8;
374 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000375 ((u32) pci_moving_config16(dev, PCI_IO_LIMIT_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000376
377 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000378
Myles Watson29cc9ed2009-07-02 18:56:24 +0000379 /* Initialize the I/O space constraints on the current bus. */
380 pci_record_bridge_resource(dev, moving, PCI_IO_BASE, IORESOURCE_IO);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000381
Myles Watson29cc9ed2009-07-02 18:56:24 +0000382 /* See if the bridge prefmem resources are implemented. */
383 moving_base =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000384 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_BASE)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000385 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000386 ((resource_t) pci_moving_config32(dev, PCI_PREF_BASE_UPPER32)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000387
Myles Watson29cc9ed2009-07-02 18:56:24 +0000388 moving_limit =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000389 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_LIMIT)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000390 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000391 ((resource_t) pci_moving_config32(dev, PCI_PREF_LIMIT_UPPER32)) << 32;
Myles Watson032a9652009-05-11 22:24:53 +0000392
Eric Biederman03acab62004-10-14 21:25:53 +0000393 moving = moving_base & moving_limit;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000394 /* Initialize the prefetchable memory constraints on the current bus. */
395 pci_record_bridge_resource(dev, moving, PCI_PREF_MEMORY_BASE,
396 IORESOURCE_MEM | IORESOURCE_PREFETCH);
Myles Watson032a9652009-05-11 22:24:53 +0000397
Myles Watson29cc9ed2009-07-02 18:56:24 +0000398 /* See if the bridge mem resources are implemented. */
399 moving_base = ((u32) pci_moving_config16(dev, PCI_MEMORY_BASE)) << 16;
400 moving_limit = ((u32) pci_moving_config16(dev, PCI_MEMORY_LIMIT)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000401
402 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000403
Myles Watson29cc9ed2009-07-02 18:56:24 +0000404 /* Initialize the memory resources on the current bus. */
405 pci_record_bridge_resource(dev, moving, PCI_MEMORY_BASE,
406 IORESOURCE_MEM);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000407
Eric Biederman5cd81732004-03-11 15:01:31 +0000408 compact_resources(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000409}
410
Eric Biederman5899fd82003-04-24 06:25:08 +0000411void pci_dev_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000412{
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000413 pci_read_bases(dev, 6);
414 pci_get_rom_resource(dev, PCI_ROM_ADDRESS);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000415}
416
Eric Biederman5899fd82003-04-24 06:25:08 +0000417void pci_bus_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000418{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000419 pci_bridge_read_bases(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000420 pci_read_bases(dev, 2);
421 pci_get_rom_resource(dev, PCI_ROM_ADDRESS1);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000422}
423
Myles Watson29cc9ed2009-07-02 18:56:24 +0000424void pci_domain_read_resources(struct device *dev)
425{
426 struct resource *res;
427
428 /* Initialize the system-wide I/O space constraints. */
429 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
430 res->limit = 0xffffUL;
431 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
432 IORESOURCE_ASSIGNED;
433
434 /* Initialize the system-wide memory resources constraints. */
435 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
436 res->limit = 0xffffffffULL;
437 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
438 IORESOURCE_ASSIGNED;
439}
440
Eric Biederman8ca8d762003-04-22 19:02:15 +0000441static void pci_set_resource(struct device *dev, struct resource *resource)
442{
Eric Biederman03acab62004-10-14 21:25:53 +0000443 resource_t base, end;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000444
Myles Watson29cc9ed2009-07-02 18:56:24 +0000445 /* Make certain the resource has actually been assigned a value. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000446 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000447 printk(BIOS_ERR, "ERROR: %s %02lx %s size: 0x%010llx not "
448 "assigned\n", dev_path(dev), resource->index,
449 resource_type(resource), resource->size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000450 return;
451 }
452
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000453 /* If this resource is fixed don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000454 if (resource->flags & IORESOURCE_FIXED)
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000455 return;
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000456
Myles Watson29cc9ed2009-07-02 18:56:24 +0000457 /* If I have already stored this resource don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000458 if (resource->flags & IORESOURCE_STORED)
Eric Biederman5cd81732004-03-11 15:01:31 +0000459 return;
Eric Biederman5cd81732004-03-11 15:01:31 +0000460
Myles Watson29cc9ed2009-07-02 18:56:24 +0000461 /* If the resource is subtractive don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000462 if (resource->flags & IORESOURCE_SUBTRACTIVE)
Eric Biederman03acab62004-10-14 21:25:53 +0000463 return;
Eric Biederman03acab62004-10-14 21:25:53 +0000464
Myles Watson29cc9ed2009-07-02 18:56:24 +0000465 /* Only handle PCI memory and I/O resources for now. */
466 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Eric Biederman8ca8d762003-04-22 19:02:15 +0000467 return;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000468
Myles Watson29cc9ed2009-07-02 18:56:24 +0000469 /* Enable the resources in the command register. */
Eric Biederman03acab62004-10-14 21:25:53 +0000470 if (resource->size) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000471 if (resource->flags & IORESOURCE_MEM)
Eric Biederman03acab62004-10-14 21:25:53 +0000472 dev->command |= PCI_COMMAND_MEMORY;
Uwe Hermanne4870472010-11-04 23:23:47 +0000473 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000474 dev->command |= PCI_COMMAND_IO;
Uwe Hermanne4870472010-11-04 23:23:47 +0000475 if (resource->flags & IORESOURCE_PCI_BRIDGE)
Eric Biederman03acab62004-10-14 21:25:53 +0000476 dev->command |= PCI_COMMAND_MASTER;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000477 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000478
Myles Watson29cc9ed2009-07-02 18:56:24 +0000479 /* Get the base address. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000480 base = resource->base;
Eric Biederman5cd81732004-03-11 15:01:31 +0000481
Myles Watson29cc9ed2009-07-02 18:56:24 +0000482 /* Get the end. */
Eric Biederman03acab62004-10-14 21:25:53 +0000483 end = resource_end(resource);
Myles Watson032a9652009-05-11 22:24:53 +0000484
Myles Watson29cc9ed2009-07-02 18:56:24 +0000485 /* Now store the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000486 resource->flags |= IORESOURCE_STORED;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000487
Uwe Hermanne4870472010-11-04 23:23:47 +0000488 /*
489 * PCI bridges have no enable bit. They are disabled if the base of
490 * the range is greater than the limit. If the size is zero, disable
Myles Watson29cc9ed2009-07-02 18:56:24 +0000491 * by setting the base = limit and end = limit - 2^gran.
492 */
493 if (resource->size == 0 && (resource->flags & IORESOURCE_PCI_BRIDGE)) {
494 base = resource->limit;
495 end = resource->limit - (1 << resource->gran);
496 resource->base = base;
497 }
498
Eric Biederman8ca8d762003-04-22 19:02:15 +0000499 if (!(resource->flags & IORESOURCE_PCI_BRIDGE)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000500 unsigned long base_lo, base_hi;
Uwe Hermanne4870472010-11-04 23:23:47 +0000501
502 /*
503 * Some chipsets allow us to set/clear the I/O bit
504 * (e.g. VIA 82C686A). So set it to be safe.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000505 */
Eric Biederman03acab62004-10-14 21:25:53 +0000506 base_lo = base & 0xffffffff;
507 base_hi = (base >> 32) & 0xffffffff;
Uwe Hermanne4870472010-11-04 23:23:47 +0000508 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000509 base_lo |= PCI_BASE_ADDRESS_SPACE_IO;
Eric Biederman03acab62004-10-14 21:25:53 +0000510 pci_write_config32(dev, resource->index, base_lo);
Uwe Hermanne4870472010-11-04 23:23:47 +0000511 if (resource->flags & IORESOURCE_PCI64)
Eric Biederman03acab62004-10-14 21:25:53 +0000512 pci_write_config32(dev, resource->index + 4, base_hi);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000513 } else if (resource->index == PCI_IO_BASE) {
514 /* Set the I/O ranges. */
515 pci_write_config8(dev, PCI_IO_BASE, base >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000516 pci_write_config16(dev, PCI_IO_BASE_UPPER16, base >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000517 pci_write_config8(dev, PCI_IO_LIMIT, end >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000518 pci_write_config16(dev, PCI_IO_LIMIT_UPPER16, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000519 } else if (resource->index == PCI_MEMORY_BASE) {
520 /* Set the memory range. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000521 pci_write_config16(dev, PCI_MEMORY_BASE, base >> 16);
Eric Biederman03acab62004-10-14 21:25:53 +0000522 pci_write_config16(dev, PCI_MEMORY_LIMIT, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000523 } else if (resource->index == PCI_PREF_MEMORY_BASE) {
524 /* Set the prefetchable memory range. */
Eric Biederman03acab62004-10-14 21:25:53 +0000525 pci_write_config16(dev, PCI_PREF_MEMORY_BASE, base >> 16);
526 pci_write_config32(dev, PCI_PREF_BASE_UPPER32, base >> 32);
527 pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, end >> 16);
528 pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, end >> 32);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000529 } else {
530 /* Don't let me think I stored the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000531 resource->flags &= ~IORESOURCE_STORED;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000532 printk(BIOS_ERR, "ERROR: invalid resource->index %lx\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000533 resource->index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000534 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000535
Eric Biederman03acab62004-10-14 21:25:53 +0000536 report_resource_stored(dev, resource, "");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000537}
538
Eric Biederman5899fd82003-04-24 06:25:08 +0000539void pci_dev_set_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000540{
Myles Watsonc25cc112010-05-21 14:33:48 +0000541 struct resource *res;
Myles Watson894a3472010-06-09 22:41:35 +0000542 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000543 u8 line;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000544
Uwe Hermanne4870472010-11-04 23:23:47 +0000545 for (res = dev->resource_list; res; res = res->next)
Myles Watsonc25cc112010-05-21 14:33:48 +0000546 pci_set_resource(dev, res);
Uwe Hermanne4870472010-11-04 23:23:47 +0000547
Myles Watson894a3472010-06-09 22:41:35 +0000548 for (bus = dev->link_list; bus; bus = bus->next) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000549 if (bus->children)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000550 assign_resources(bus);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000551 }
552
Myles Watson29cc9ed2009-07-02 18:56:24 +0000553 /* Set a default latency timer. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000554 pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000555
Myles Watson29cc9ed2009-07-02 18:56:24 +0000556 /* Set a default secondary latency timer. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000557 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000558 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000559
Myles Watson29cc9ed2009-07-02 18:56:24 +0000560 /* Zero the IRQ settings. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000561 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Uwe Hermanne4870472010-11-04 23:23:47 +0000562 if (line)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000563 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
Uwe Hermanne4870472010-11-04 23:23:47 +0000564
Myles Watson29cc9ed2009-07-02 18:56:24 +0000565 /* Set the cache line size, so far 64 bytes is good for everyone. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000566 pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000567}
568
Eric Biedermane9a271e32003-09-02 03:36:25 +0000569void pci_dev_enable_resources(struct device *dev)
570{
Kyösti Mälkkicac02312019-06-30 08:40:04 +0300571 const struct pci_operations *ops = NULL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000572 u16 command;
Eric Biederman03acab62004-10-14 21:25:53 +0000573
Uwe Hermanne4870472010-11-04 23:23:47 +0000574 /* Set the subsystem vendor and device ID for mainboard devices. */
Kyösti Mälkkicac02312019-06-30 08:40:04 +0300575 if (dev->ops)
576 ops = dev->ops->ops_pci;
Eric Biedermandbec2d42004-10-21 10:44:08 +0000577 if (dev->on_mainboard && ops && ops->set_subsystem) {
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700578 if (CONFIG_SUBSYSTEM_VENDOR_ID)
579 dev->subsystem_vendor = CONFIG_SUBSYSTEM_VENDOR_ID;
Rizwan Qureshifd891292017-04-26 21:00:37 +0530580 else if (!dev->subsystem_vendor)
581 dev->subsystem_vendor = pci_read_config16(dev,
582 PCI_VENDOR_ID);
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700583 if (CONFIG_SUBSYSTEM_DEVICE_ID)
584 dev->subsystem_device = CONFIG_SUBSYSTEM_DEVICE_ID;
Rizwan Qureshifd891292017-04-26 21:00:37 +0530585 else if (!dev->subsystem_device)
586 dev->subsystem_device = pci_read_config16(dev,
587 PCI_DEVICE_ID);
588
Sven Schnelle91321022011-03-01 19:58:47 +0000589 printk(BIOS_DEBUG, "%s subsystem <- %04x/%04x\n",
590 dev_path(dev), dev->subsystem_vendor,
591 dev->subsystem_device);
592 ops->set_subsystem(dev, dev->subsystem_vendor,
593 dev->subsystem_device);
Eric Biederman03acab62004-10-14 21:25:53 +0000594 }
Eric Biedermane9a271e32003-09-02 03:36:25 +0000595 command = pci_read_config16(dev, PCI_COMMAND);
596 command |= dev->command;
Uwe Hermanne4870472010-11-04 23:23:47 +0000597
Myles Watson29cc9ed2009-07-02 18:56:24 +0000598 /* v3 has
599 * command |= (PCI_COMMAND_PARITY + PCI_COMMAND_SERR); // Error check.
600 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000601
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000602 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000603 pci_write_config16(dev, PCI_COMMAND, command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000604}
605
606void pci_bus_enable_resources(struct device *dev)
607{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000608 u16 ctrl;
609
Uwe Hermanne4870472010-11-04 23:23:47 +0000610 /*
611 * Enable I/O in command register if there is VGA card
Myles Watson29cc9ed2009-07-02 18:56:24 +0000612 * connected with (even it does not claim I/O resource).
613 */
Myles Watson894a3472010-06-09 22:41:35 +0000614 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
Li-Ta Lo515f6c72005-01-11 22:48:54 +0000615 dev->command |= PCI_COMMAND_IO;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000616 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +0000617 ctrl |= dev->link_list->bridge_ctrl;
Kyösti Mälkki382e2162019-09-21 16:19:32 +0300618 ctrl |= (PCI_BRIDGE_CTL_PARITY | PCI_BRIDGE_CTL_SERR); /* Error check. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000619 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000620 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
621
622 pci_dev_enable_resources(dev);
623}
624
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000625void pci_bus_reset(struct bus *bus)
626{
Uwe Hermanne4870472010-11-04 23:23:47 +0000627 u16 ctl;
628
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000629 ctl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
630 ctl |= PCI_BRIDGE_CTL_BUS_RESET;
631 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
632 mdelay(10);
Uwe Hermanne4870472010-11-04 23:23:47 +0000633
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000634 ctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
635 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
636 delay(1);
637}
638
Elyes HAOUAS88030b72018-09-20 17:26:10 +0200639void pci_dev_set_subsystem(struct device *dev, unsigned int vendor,
640 unsigned int device)
Eric Biederman03acab62004-10-14 21:25:53 +0000641{
Subrata Banik9514d472019-03-20 14:56:27 +0530642 uint8_t offset;
643
644 /* Header type */
645 switch (dev->hdr_type & 0x7f) {
646 case PCI_HEADER_TYPE_NORMAL:
647 offset = PCI_SUBSYSTEM_VENDOR_ID;
648 break;
649 case PCI_HEADER_TYPE_BRIDGE:
650 offset = pci_find_capability(dev, PCI_CAP_ID_SSVID);
651 if (!offset)
652 return;
653 offset += 4; /* Vendor ID at offset 4 */
654 break;
655 case PCI_HEADER_TYPE_CARDBUS:
656 offset = PCI_CB_SUBSYSTEM_VENDOR_ID;
657 break;
658 default:
659 return;
660 }
661
Subrata Banik4a0f0712019-03-20 14:29:47 +0530662 if (!vendor || !device) {
Subrata Banik9514d472019-03-20 14:56:27 +0530663 pci_write_config32(dev, offset,
Subrata Banik4a0f0712019-03-20 14:29:47 +0530664 pci_read_config32(dev, PCI_VENDOR_ID));
665 } else {
Subrata Banik9514d472019-03-20 14:56:27 +0530666 pci_write_config32(dev, offset,
Subrata Banik4a0f0712019-03-20 14:29:47 +0530667 ((device & 0xffff) << 16) | (vendor & 0xffff));
668 }
Eric Biederman03acab62004-10-14 21:25:53 +0000669}
670
Frans Hendriksb71181a2019-10-04 14:06:33 +0200671static int should_run_oprom(struct device *dev, struct rom_header *rom)
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300672{
673 static int should_run = -1;
674
Frans Hendriksb71181a2019-10-04 14:06:33 +0200675 if (CONFIG(VENDORCODE_ELTAN_VBOOT))
676 if (rom != NULL)
677 if (!verified_boot_should_run_oprom(rom))
678 return 0;
679
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300680 if (should_run >= 0)
681 return should_run;
682
Julius Wernercd49cce2019-03-05 16:53:33 -0800683 if (CONFIG(ALWAYS_RUN_OPROM)) {
Aaron Durbin10510252018-01-30 10:04:02 -0700684 should_run = 1;
685 return should_run;
686 }
687
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200688 /* Don't run VGA option ROMs, unless we have to print
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300689 * something on the screen before the kernel is loaded.
690 */
Furquan Shaikh0325dc62016-07-25 13:02:36 -0700691 should_run = display_init_required();
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300692
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200693 if (!should_run)
694 printk(BIOS_DEBUG, "Not running VGA Option ROM\n");
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300695 return should_run;
696}
697
698static int should_load_oprom(struct device *dev)
699{
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300700 /* If S3_VGA_ROM_RUN is disabled, skip running VGA option
701 * ROMs when coming out of an S3 resume.
702 */
Julius Wernercd49cce2019-03-05 16:53:33 -0800703 if (!CONFIG(S3_VGA_ROM_RUN) && acpi_is_wakeup_s3() &&
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300704 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
705 return 0;
Julius Wernercd49cce2019-03-05 16:53:33 -0800706 if (CONFIG(ALWAYS_LOAD_OPROM))
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300707 return 1;
Frans Hendriksb71181a2019-10-04 14:06:33 +0200708 if (should_run_oprom(dev, NULL))
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300709 return 1;
710
711 return 0;
712}
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300713
Uwe Hermanne4870472010-11-04 23:23:47 +0000714/** Default handler: only runs the relevant PCI BIOS. */
Li-Ta Lo883b8792005-01-10 23:16:22 +0000715void pci_dev_init(struct device *dev)
716{
717 struct rom_header *rom, *ram;
718
Julius Wernercd49cce2019-03-05 16:53:33 -0800719 if (!CONFIG(VGA_ROM_RUN))
Aaron Durbinfbed9a52018-01-30 09:58:51 -0700720 return;
721
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100722 /* Only execute VGA ROMs. */
723 if (((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
Myles Watson17aeeca2009-10-07 18:41:08 +0000724 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000725
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300726 if (!should_load_oprom(dev))
Stefan Reinauer74a0efe2012-03-30 17:10:49 -0700727 return;
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700728 timestamp_add_now(TS_OPROM_INITIALIZE);
Aaron Durbince872cb2013-03-28 15:59:19 -0500729
730 rom = pci_rom_probe(dev);
731 if (rom == NULL)
732 return;
733
734 ram = pci_rom_load(dev, rom);
735 if (ram == NULL)
736 return;
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700737 timestamp_add_now(TS_OPROM_COPY_END);
Aaron Durbince872cb2013-03-28 15:59:19 -0500738
Frans Hendriksb71181a2019-10-04 14:06:33 +0200739 if (!should_run_oprom(dev, rom))
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300740 return;
741
Stefan Reinauerd98cf5b2008-08-01 11:25:41 +0000742 run_bios(dev, (unsigned long)ram);
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +0200743
Kyösti Mälkkiab56b3b2013-11-28 16:44:51 +0200744 gfx_set_init_done(1);
745 printk(BIOS_DEBUG, "VGA Option ROM was run\n");
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700746 timestamp_add_now(TS_OPROM_END);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000747}
Li-Ta Lo883b8792005-01-10 23:16:22 +0000748
Li-Ta Loe5266692004-03-23 21:28:05 +0000749/** Default device operation for PCI devices */
Subrata Banikffc790b2017-12-11 10:29:49 +0530750struct pci_operations pci_dev_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000751 .set_subsystem = pci_dev_set_subsystem,
752};
753
Eric Biederman8ca8d762003-04-22 19:02:15 +0000754struct device_operations default_pci_ops_dev = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000755 .read_resources = pci_dev_read_resources,
756 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000757 .enable_resources = pci_dev_enable_resources,
Julius Wernercd49cce2019-03-05 16:53:33 -0800758#if CONFIG(HAVE_ACPI_TABLES)
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200759 .write_acpi_tables = pci_rom_write_acpi_tables,
Nico Huber68680dd2020-03-31 17:34:52 +0200760 .acpi_fill_ssdt = pci_rom_ssdt,
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200761#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000762 .init = pci_dev_init,
Uwe Hermanne4870472010-11-04 23:23:47 +0000763 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000764};
Li-Ta Loe5266692004-03-23 21:28:05 +0000765
766/** Default device operations for PCI bridges */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000767static struct pci_operations pci_bus_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000768 .set_subsystem = 0,
769};
Li-Ta Lo883b8792005-01-10 23:16:22 +0000770
Eric Biederman8ca8d762003-04-22 19:02:15 +0000771struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000772 .read_resources = pci_bus_read_resources,
773 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000774 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000775 .scan_bus = pci_scan_bridge,
Uwe Hermanne4870472010-11-04 23:23:47 +0000776 .reset_bus = pci_bus_reset,
777 .ops_pci = &pci_bus_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000778};
Li-Ta Loe5266692004-03-23 21:28:05 +0000779
780/**
Nico Huber061b9052019-09-21 15:58:23 +0200781 * Check for compatibility to route legacy VGA cycles through a bridge.
782 *
783 * Originally, when decoding i/o ports for legacy VGA cycles, bridges
784 * should only consider the 10 least significant bits of the port address.
785 * This means all VGA registers were aliased every 1024 ports!
786 * e.g. 0x3b0 was also decoded as 0x7b0, 0xbb0 etc.
787 *
788 * To avoid this mess, a bridge control bit (VGA16) was introduced in
789 * 2003 to enable decoding of 16-bit port addresses. As we don't want
790 * to make this any more complex for now, we use this bit if possible
791 * and only warn if it's not supported (in set_vga_bridge_bits()).
792 */
793static void pci_bridge_vga_compat(struct bus *const bus)
794{
795 uint16_t bridge_ctrl;
796
797 bridge_ctrl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
798
799 /* Ensure VGA decoding is disabled during probing (it should
800 be by default, but we run blobs nowadays) */
801 bridge_ctrl &= ~PCI_BRIDGE_CTL_VGA;
802 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, bridge_ctrl);
803
804 /* If the upstream bridge doesn't support VGA16, we don't have to check */
805 bus->no_vga16 |= bus->dev->bus->no_vga16;
806 if (bus->no_vga16)
807 return;
808
809 /* Test if we can enable 16-bit decoding */
810 bridge_ctrl |= PCI_BRIDGE_CTL_VGA16;
811 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, bridge_ctrl);
812 bridge_ctrl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
813
814 bus->no_vga16 = !(bridge_ctrl & PCI_BRIDGE_CTL_VGA16);
815}
816
817/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000818 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000819 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000820 * This function is a heuristic to detect which type of bus is downstream
821 * of a PCI-to-PCI bridge. This functions by looking for various capability
822 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
823 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000824 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000825 * When only a PCI-Express capability is found the type is examined to see
826 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000827 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000828 * @param dev Pointer to the device structure of the bridge.
829 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000830 */
Aaron Durbinc30d9132017-08-07 16:55:43 -0600831static struct device_operations *get_pci_bridge_ops(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000832{
Julius Wernercd49cce2019-03-05 16:53:33 -0800833#if CONFIG(PCIX_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800834 unsigned int pcixpos;
835 pcixpos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
836 if (pcixpos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000837 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000838 return &default_pcix_ops_bus;
839 }
840#endif
Julius Wernercd49cce2019-03-05 16:53:33 -0800841#if CONFIG(HYPERTRANSPORT_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800842 unsigned int htpos = 0;
843 while ((htpos = pci_find_next_capability(dev, PCI_CAP_ID_HT, htpos))) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000844 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800845 flags = pci_read_config16(dev, htpos + PCI_CAP_FLAGS);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000846 if ((flags >> 13) == 1) {
847 /* Host or Secondary Interface */
Uwe Hermanne4870472010-11-04 23:23:47 +0000848 printk(BIOS_DEBUG, "%s subordinate bus HT\n",
849 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000850 return &default_ht_ops_bus;
851 }
852 }
853#endif
Julius Wernercd49cce2019-03-05 16:53:33 -0800854#if CONFIG(PCIEXP_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800855 unsigned int pciexpos;
856 pciexpos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
857 if (pciexpos) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000858 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800859 flags = pci_read_config16(dev, pciexpos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000860 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000861 case PCI_EXP_TYPE_ROOT_PORT:
862 case PCI_EXP_TYPE_UPSTREAM:
863 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000864 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000865 dev_path(dev));
Jeremy Sollercf2ac542019-10-09 21:40:36 -0600866#if CONFIG(PCIEXP_HOTPLUG)
867 u16 sltcap;
868 sltcap = pci_read_config16(dev, pciexpos + PCI_EXP_SLTCAP);
869 if (sltcap & PCI_EXP_SLTCAP_HPC) {
870 printk(BIOS_DEBUG, "%s hot-plug capable\n", dev_path(dev));
871 return &default_pciexp_hotplug_ops_bus;
872 }
873#endif /* CONFIG(PCIEXP_HOTPLUG) */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000874 return &default_pciexp_ops_bus;
875 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +0000876 printk(BIOS_DEBUG, "%s subordinate PCI\n",
877 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000878 return &default_pci_ops_bus;
879 default:
880 break;
881 }
882 }
883#endif
884 return &default_pci_ops_bus;
885}
886
887/**
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700888 * Check if a device id matches a PCI driver entry.
889 *
890 * The driver entry can either point at a zero terminated array of acceptable
891 * device IDs, or include a single device ID.
892 *
Martin Roth98b698c2015-01-06 21:02:52 -0700893 * @param driver pointer to the PCI driver entry being checked
894 * @param device_id PCI device ID of the device being matched
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700895 */
896static int device_id_match(struct pci_driver *driver, unsigned short device_id)
897{
898 if (driver->devices) {
899 unsigned short check_id;
900 const unsigned short *device_list = driver->devices;
901 while ((check_id = *device_list++) != 0)
902 if (check_id == device_id)
903 return 1;
904 }
905
906 return (driver->device == device_id);
907}
908
909/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000910 * Set up PCI device operation.
911 *
912 * Check if it already has a driver. If not, use find_device_operations(),
913 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +0000914 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000915 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +0000916 * @see pci_drivers
917 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000918static void set_pci_ops(struct device *dev)
919{
920 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +0000921
Uwe Hermanne4870472010-11-04 23:23:47 +0000922 if (dev->ops)
923 return;
924
925 /*
926 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +0000927 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000928 */
Aaron Durbin03758152015-09-03 17:23:08 -0500929 for (driver = &_pci_drivers[0]; driver != &_epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000930 if ((driver->vendor == dev->vendor) &&
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700931 device_id_match(driver, dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +0000932 dev->ops = (struct device_operations *)driver->ops;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000933 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000934 dev_path(dev), driver->vendor, driver->device,
935 (driver->ops->scan_bus ? "bus " : ""));
Eric Biederman5899fd82003-04-24 06:25:08 +0000936 return;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000937 }
938 }
Li-Ta Loe5266692004-03-23 21:28:05 +0000939
Uwe Hermanne4870472010-11-04 23:23:47 +0000940 /* If I don't have a specific driver use the default operations. */
941 switch (dev->hdr_type & 0x7f) { /* Header type */
942 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +0000943 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
944 goto bad;
945 dev->ops = &default_pci_ops_dev;
946 break;
947 case PCI_HEADER_TYPE_BRIDGE:
948 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
949 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000950 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000951 break;
Julius Wernercd49cce2019-03-05 16:53:33 -0800952#if CONFIG(CARDBUS_PLUGIN_SUPPORT)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000953 case PCI_HEADER_TYPE_CARDBUS:
954 dev->ops = &default_cardbus_ops_bus;
955 break;
956#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000957default:
958bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000959 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000960 printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "
961 "header type %02x, ignoring.\n", dev_path(dev),
962 dev->vendor, dev->device,
963 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +0000964 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000965 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000966}
967
968/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000969 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +0000970 *
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200971 * Given a PCI bus structure and a devfn number, find the device structure
972 * corresponding to the devfn, if present. Then move the device structure
973 * as the last child on the bus.
Li-Ta Loe5266692004-03-23 21:28:05 +0000974 *
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200975 * @param bus Pointer to the bus structure.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000976 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000977 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +0000978 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000979 */
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200980static struct device *pci_scan_get_dev(struct bus *bus, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000981{
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200982 struct device *dev, **prev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000983
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200984 prev = &bus->children;
985 for (dev = bus->children; dev; dev = dev->sibling) {
986 if (dev->path.type == DEVICE_PATH_PCI) {
987 if (dev->path.pci.devfn == devfn) {
988 /* Unlink from the list. */
989 *prev = dev->sibling;
990 dev->sibling = NULL;
991 break;
992 }
993 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +0000994 printk(BIOS_ERR, "child %s not a PCI device\n",
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200995 dev_path(dev));
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000996 }
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200997 prev = &dev->sibling;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000998 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000999
Uwe Hermanne4870472010-11-04 23:23:47 +00001000 /*
1001 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +00001002 * bus. When the list of devices was formed we removed all of the
1003 * parents children, and now we are interleaving static and dynamic
1004 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001005 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001006 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +00001007 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +00001008
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001009 /* Find the last child on the bus. */
1010 for (child = bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +00001011 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +00001012
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001013 /* Place the device as last on the bus. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001014 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +00001015 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001016 else
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001017 bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001018 }
1019
Eric Biederman8ca8d762003-04-22 19:02:15 +00001020 return dev;
1021}
1022
Myles Watson032a9652009-05-11 22:24:53 +00001023/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001024 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +00001025 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001026 * Determine the existence of a given PCI device. Allocate a new struct device
1027 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001028 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001029 * @param dev Pointer to the dev structure.
1030 * @param bus Pointer to the bus structure.
1031 * @param devfn A device/function number to look at.
1032 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001033 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001034struct device *pci_probe_dev(struct device *dev, struct bus *bus,
1035 unsigned int devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001036{
Myles Watson29cc9ed2009-07-02 18:56:24 +00001037 u32 id, class;
1038 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001039
Myles Watson29cc9ed2009-07-02 18:56:24 +00001040 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001041 if (!dev) {
1042 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +00001043
Myles Watson29cc9ed2009-07-02 18:56:24 +00001044 dummy.bus = bus;
1045 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +00001046 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +00001047
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001048 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +00001049 /*
1050 * Have we found something? Some broken boards return 0 if a
1051 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001052 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001053 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +00001054 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +00001055
Stefan Reinauer7355c752010-04-02 16:30:25 +00001056 if ((id == 0x00000000) || (id == 0x0000ffff) ||
1057 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001058 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
1059 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001060 return NULL;
1061 }
1062 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001063 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +00001064 /*
1065 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +00001066 * specific operations this operations we will disable the
1067 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +00001068 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001069 * This is geared toward devices that have subfunctions
1070 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +00001071 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001072 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +00001073 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001074 */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001075 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001076 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001077 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +00001078
Myles Watson29cc9ed2009-07-02 18:56:24 +00001079 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001080 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +00001081
Uwe Hermanne4870472010-11-04 23:23:47 +00001082 /*
1083 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +00001084 * this is because we have already disabled the device. But
1085 * this also handles optional devices that may not always
1086 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001087 */
1088 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001089 if ((id == 0xffffffff) || (id == 0x00000000) ||
1090 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001091 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001092 printk(BIOS_INFO, "PCI: Static device %s not "
1093 "found, disabling it.\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001094 dev->enabled = 0;
1095 }
1096 return dev;
1097 }
1098 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001099
Myles Watson29cc9ed2009-07-02 18:56:24 +00001100 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001101 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
1102 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +00001103
Myles Watson29cc9ed2009-07-02 18:56:24 +00001104 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001105 dev->vendor = id & 0xffff;
1106 dev->device = (id >> 16) & 0xffff;
1107 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001108
1109 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001110 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +00001111
Myles Watson29cc9ed2009-07-02 18:56:24 +00001112 /* Architectural/System devices always need to be bus masters. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001113 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001114 dev->command |= PCI_COMMAND_MASTER;
Uwe Hermanne4870472010-11-04 23:23:47 +00001115
1116 /*
1117 * Look at the vendor and device ID, or at least the header type and
Myles Watson29cc9ed2009-07-02 18:56:24 +00001118 * class and figure out which set of configuration methods to use.
1119 * Unless we already have some PCI ops.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001120 */
1121 set_pci_ops(dev);
1122
Myles Watson29cc9ed2009-07-02 18:56:24 +00001123 /* Now run the magic enable/disable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001124 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001125 dev->ops->enable(dev);
Myles Watson032a9652009-05-11 22:24:53 +00001126
Myles Watson29cc9ed2009-07-02 18:56:24 +00001127 /* Display the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001128 printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
1129 dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
1130 dev->ops ? "" : " No operations");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001131
1132 return dev;
1133}
1134
Myles Watson032a9652009-05-11 22:24:53 +00001135/**
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001136 * Test for match between romstage and ramstage device instance.
1137 *
1138 * @param dev Pointer to the device structure.
1139 * @param sdev Simple device model identifier, created with PCI_DEV().
1140 * @return Non-zero if bus:dev.fn of device matches.
1141 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001142unsigned int pci_match_simple_dev(struct device *dev, pci_devfn_t sdev)
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001143{
1144 return dev->bus->secondary == PCI_DEV2SEGBUS(sdev) &&
1145 dev->path.pci.devfn == PCI_DEV2DEVFN(sdev);
1146}
1147
1148/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001149 * Scan a PCI bus.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001150 *
Li-Ta Loe5266692004-03-23 21:28:05 +00001151 * Determine the existence of devices and bridges on a PCI bus. If there are
1152 * bridges on the bus, recursively scan the buses behind the bridges.
1153 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001154 * @param bus Pointer to the bus structure.
1155 * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1156 * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001157 */
Martin Roth38ddbfb2019-10-23 21:41:00 -06001158void pci_scan_bus(struct bus *bus, unsigned int min_devfn,
1159 unsigned int max_devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001160{
1161 unsigned int devfn;
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001162 struct device *dev, **prev;
1163 int once = 0;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001164
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001165 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %02x\n", bus->secondary);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001166
Uwe Hermanne4870472010-11-04 23:23:47 +00001167 /* Maximum sane devfn is 0xFF. */
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001168 if (max_devfn > 0xff) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001169 printk(BIOS_ERR, "PCI: pci_scan_bus limits devfn %x - "
1170 "devfn %x\n", min_devfn, max_devfn);
1171 printk(BIOS_ERR, "PCI: pci_scan_bus upper limit too big. "
1172 "Using 0xff.\n");
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001173 max_devfn=0xff;
1174 }
1175
Eric Biederman8ca8d762003-04-22 19:02:15 +00001176 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001177
1178 /*
1179 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001180 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001181 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001182 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Ronald G. Minnich466ca2c2019-10-22 02:02:24 +00001183 if (CONFIG(MINIMAL_PCI_SCANNING)) {
1184 dev = pcidev_path_behind(bus, devfn);
1185 if (!dev || !dev->mandatory)
1186 continue;
1187 }
1188
Uwe Hermanne4870472010-11-04 23:23:47 +00001189 /* First thing setup the device structure. */
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001190 dev = pci_scan_get_dev(bus, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001191
Myles Watson29cc9ed2009-07-02 18:56:24 +00001192 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001193 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001194
Uwe Hermanne4870472010-11-04 23:23:47 +00001195 /*
1196 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001197 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001198 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001199 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001200 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001201 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001202 devfn += 0x07;
1203 }
1204 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001205
Eric Biederman8ca8d762003-04-22 19:02:15 +00001206 post_code(0x25);
1207
Uwe Hermanne4870472010-11-04 23:23:47 +00001208 /*
1209 * Warn if any leftover static devices are are found.
1210 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001211 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001212
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001213 prev = &bus->children;
1214 for (dev = bus->children; dev; dev = dev->sibling) {
1215 /* If we read valid vendor id, it is not leftover device. */
1216 if (dev->vendor != 0) {
1217 prev = &dev->sibling;
1218 continue;
1219 }
1220
1221 /* Unlink it from list. */
1222 *prev = dev->sibling;
1223
1224 if (!once++)
1225 printk(BIOS_WARNING, "PCI: Leftover static devices:\n");
1226 printk(BIOS_WARNING, "%s\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001227 }
1228
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001229 if (once)
1230 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
1231
Uwe Hermanne4870472010-11-04 23:23:47 +00001232 /*
1233 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001234 * scan the bus behind that child.
1235 */
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001236
Kyösti Mälkki2d2367c2015-02-20 21:28:31 +02001237 scan_bridges(bus);
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001238
Uwe Hermanne4870472010-11-04 23:23:47 +00001239 /*
1240 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001241 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001242 * Return how far we've got finding sub-buses.
1243 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001244 post_code(0x55);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001245}
1246
Kyösti Mälkki33452402015-02-23 06:58:26 +02001247typedef enum {
1248 PCI_ROUTE_CLOSE,
1249 PCI_ROUTE_SCAN,
1250 PCI_ROUTE_FINAL,
1251} scan_state;
1252
1253static void pci_bridge_route(struct bus *link, scan_state state)
1254{
1255 struct device *dev = link->dev;
1256 struct bus *parent = dev->bus;
1257 u32 reg, buses = 0;
1258
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001259 if (state == PCI_ROUTE_SCAN) {
1260 link->secondary = parent->subordinate + 1;
Jeremy Sollercf2ac542019-10-09 21:40:36 -06001261 link->subordinate = link->secondary + dev->hotplug_buses;
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001262 }
1263
Kyösti Mälkki33452402015-02-23 06:58:26 +02001264 if (state == PCI_ROUTE_CLOSE) {
1265 buses |= 0xfeff << 8;
1266 } else if (state == PCI_ROUTE_SCAN) {
Timothy Pearson7d8a4782015-10-24 20:34:57 -05001267 buses |= parent->secondary & 0xff;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001268 buses |= ((u32) link->secondary & 0xff) << 8;
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001269 buses |= 0xff << 16; /* MAX PCI_BUS number here */
Kyösti Mälkki33452402015-02-23 06:58:26 +02001270 } else if (state == PCI_ROUTE_FINAL) {
1271 buses |= parent->secondary & 0xff;
1272 buses |= ((u32) link->secondary & 0xff) << 8;
1273 buses |= ((u32) link->subordinate & 0xff) << 16;
1274 }
1275
1276 if (state == PCI_ROUTE_SCAN) {
1277 /* Clear all status bits and turn off memory, I/O and master enables. */
1278 link->bridge_cmd = pci_read_config16(dev, PCI_COMMAND);
1279 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1280 pci_write_config16(dev, PCI_STATUS, 0xffff);
1281 }
1282
1283 /*
1284 * Configure the bus numbers for this bridge: the configuration
1285 * transactions will not be propagated by the bridge if it is not
1286 * correctly configured.
1287 */
1288
1289 reg = pci_read_config32(dev, PCI_PRIMARY_BUS);
1290 reg &= 0xff000000;
1291 reg |= buses;
1292 pci_write_config32(dev, PCI_PRIMARY_BUS, reg);
1293
1294 if (state == PCI_ROUTE_FINAL) {
1295 pci_write_config16(dev, PCI_COMMAND, link->bridge_cmd);
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001296 parent->subordinate = link->subordinate;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001297 }
1298}
1299
Li-Ta Loe5266692004-03-23 21:28:05 +00001300/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001301 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001302 *
1303 * Determine the existence of buses behind the bridge. Set up the bridge
1304 * according to the result of the scan.
1305 *
1306 * This function is the default scan_bus() method for PCI bridge devices.
1307 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001308 * @param dev Pointer to the bridge device.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001309 * @param do_scan_bus TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +00001310 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001311void do_pci_scan_bridge(struct device *dev,
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001312 void (*do_scan_bus) (struct bus * bus,
Martin Roth38ddbfb2019-10-23 21:41:00 -06001313 unsigned int min_devfn,
1314 unsigned int max_devfn))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001315{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001316 struct bus *bus;
Eric Biederman83b991a2003-10-11 06:20:25 +00001317
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001318 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001319
Myles Watson894a3472010-06-09 22:41:35 +00001320 if (dev->link_list == NULL) {
1321 struct bus *link;
1322 link = malloc(sizeof(*link));
1323 if (link == NULL)
1324 die("Couldn't allocate a link!\n");
1325 memset(link, 0, sizeof(*link));
1326 link->dev = dev;
1327 dev->link_list = link;
1328 }
1329
1330 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001331
Nico Huber061b9052019-09-21 15:58:23 +02001332 pci_bridge_vga_compat(bus);
1333
Kyösti Mälkki33452402015-02-23 06:58:26 +02001334 pci_bridge_route(bus, PCI_ROUTE_SCAN);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001335
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001336 do_scan_bus(bus, 0x00, 0xff);
Kyösti Mälkki33452402015-02-23 06:58:26 +02001337
1338 pci_bridge_route(bus, PCI_ROUTE_FINAL);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001339}
Li-Ta Loe5266692004-03-23 21:28:05 +00001340
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001341/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001342 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001343 *
1344 * Determine the existence of buses behind the bridge. Set up the bridge
1345 * according to the result of the scan.
1346 *
1347 * This function is the default scan_bus() method for PCI bridge devices.
1348 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001349 * @param dev Pointer to the bridge device.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001350 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001351void pci_scan_bridge(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001352{
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001353 do_pci_scan_bridge(dev, pci_scan_bus);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001354}
1355
Myles Watson29cc9ed2009-07-02 18:56:24 +00001356/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001357 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001358 *
1359 * This function is the default scan_bus() method for PCI domains.
1360 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001361 * @param dev Pointer to the domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001362 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001363void pci_domain_scan_bus(struct device *dev)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001364{
Kyösti Mälkki6f370172015-03-19 15:26:52 +02001365 struct bus *link = dev->link_list;
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001366 pci_scan_bus(link, PCI_DEVFN(0, 0), 0xff);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001367}
1368
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001369/**
1370 * Take an INT_PIN number (0, 1 - 4) and convert
1371 * it to a string ("NO PIN", "PIN A" - "PIN D")
1372 *
1373 * @param pin PCI Interrupt Pin number (0, 1 - 4)
1374 * @return A string corresponding to the pin number or "Invalid"
1375 */
1376const char *pin_to_str(int pin)
1377{
1378 const char *str[5] = {
1379 "NO PIN",
1380 "PIN A",
1381 "PIN B",
1382 "PIN C",
1383 "PIN D",
1384 };
1385
1386 if (pin >= 0 && pin <= 4)
1387 return str[pin];
1388 else
1389 return "Invalid PIN, not 0 - 4";
1390}
1391
1392/**
1393 * Get the PCI INT_PIN swizzle for a device defined as:
1394 * pin_parent = (pin_child + devn_child) % 4 + 1
1395 * where PIN A = 1 ... PIN_D = 4
1396 *
1397 * Given a PCI device structure 'dev', find the interrupt pin
1398 * that will be triggered on its parent bridge device when
1399 * generating an interrupt. For example: Device 1:3.2 may
1400 * use INT_PIN A but will trigger PIN D on its parent bridge
1401 * device. In this case, this function will return 4 (PIN D).
1402 *
1403 * @param dev A PCI device structure to swizzle interrupt pins for
Martin Roth32bc6b62015-01-04 16:54:35 -07001404 * @param *parent_bridge The PCI device structure for the bridge
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001405 * device 'dev' is attached to
1406 * @return The interrupt pin number (1 - 4) that 'dev' will
1407 * trigger when generating an interrupt
1408 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001409static int swizzle_irq_pins(struct device *dev, struct device **parent_bridge)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001410{
Aaron Durbinc30d9132017-08-07 16:55:43 -06001411 struct device *parent; /* Our current device's parent device */
1412 struct device *child; /* The child device of the parent */
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001413 uint8_t parent_bus = 0; /* Parent Bus number */
1414 uint16_t parent_devfn = 0; /* Parent Device and Function number */
1415 uint16_t child_devfn = 0; /* Child Device and Function number */
1416 uint8_t swizzled_pin = 0; /* Pin swizzled across a bridge */
1417
1418 /* Start with PIN A = 0 ... D = 3 */
1419 swizzled_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN) - 1;
1420
1421 /* While our current device has parent devices */
1422 child = dev;
1423 for (parent = child->bus->dev; parent; parent = parent->bus->dev) {
1424 parent_bus = parent->bus->secondary;
1425 parent_devfn = parent->path.pci.devfn;
1426 child_devfn = child->path.pci.devfn;
1427
1428 /* Swizzle the INT_PIN for any bridges not on root bus */
1429 swizzled_pin = (PCI_SLOT(child_devfn) + swizzled_pin) % 4;
1430 printk(BIOS_SPEW, "\tWith INT_PIN swizzled to %s\n"
1431 "\tAttached to bridge device %01X:%02Xh.%02Xh\n",
1432 pin_to_str(swizzled_pin + 1), parent_bus,
1433 PCI_SLOT(parent_devfn), PCI_FUNC(parent_devfn));
1434
1435 /* Continue until we find the root bus */
1436 if (parent_bus > 0) {
1437 /*
1438 * We will go on to the next parent so this parent
1439 * becomes the child
1440 */
1441 child = parent;
1442 continue;
1443 } else {
1444 /*
1445 * Found the root bridge device,
1446 * fill in the structure and exit
1447 */
1448 *parent_bridge = parent;
1449 break;
1450 }
1451 }
1452
1453 /* End with PIN A = 1 ... D = 4 */
1454 return swizzled_pin + 1;
1455}
1456
1457/**
1458 * Given a device structure 'dev', find its interrupt pin
1459 * and its parent bridge 'parent_bdg' device structure.
1460 * If it is behind a bridge, it will return the interrupt
1461 * pin number (1 - 4) of the parent bridge that the device
1462 * interrupt pin has been swizzled to, otherwise it will
1463 * return the interrupt pin that is programmed into the
1464 * PCI config space of the target device. If 'dev' is
1465 * behind a bridge, it will fill in 'parent_bdg' with the
1466 * device structure of the bridge it is behind, otherwise
1467 * it will copy 'dev' into 'parent_bdg'.
1468 *
1469 * @param dev A PCI device structure to get interrupt pins for.
1470 * @param *parent_bdg The PCI device structure for the bridge
1471 * device 'dev' is attached to.
1472 * @return The interrupt pin number (1 - 4) that 'dev' will
1473 * trigger when generating an interrupt.
1474 * Errors: -1 is returned if the device is not enabled
1475 * -2 is returned if a parent bridge could not be found.
1476 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001477int get_pci_irq_pins(struct device *dev, struct device **parent_bdg)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001478{
1479 uint8_t bus = 0; /* The bus this device is on */
1480 uint16_t devfn = 0; /* This device's device and function numbers */
1481 uint8_t int_pin = 0; /* Interrupt pin used by the device */
1482 uint8_t target_pin = 0; /* Interrupt pin we want to assign an IRQ to */
1483
1484 /* Make sure this device is enabled */
1485 if (!(dev->enabled && (dev->path.type == DEVICE_PATH_PCI)))
1486 return -1;
1487
1488 bus = dev->bus->secondary;
1489 devfn = dev->path.pci.devfn;
1490
1491 /* Get and validate the interrupt pin used. Only 1-4 are allowed */
1492 int_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN);
1493 if (int_pin < 1 || int_pin > 4)
1494 return -1;
1495
1496 printk(BIOS_SPEW, "PCI IRQ: Found device %01X:%02X.%02X using %s\n",
1497 bus, PCI_SLOT(devfn), PCI_FUNC(devfn), pin_to_str(int_pin));
1498
1499 /* If this device is on a bridge, swizzle its INT_PIN */
1500 if (bus) {
1501 /* Swizzle its INT_PINs */
1502 target_pin = swizzle_irq_pins(dev, parent_bdg);
1503
1504 /* Make sure the swizzle returned valid structures */
1505 if (parent_bdg == NULL) {
1506 printk(BIOS_WARNING,
1507 "Warning: Could not find parent bridge for this device!\n");
1508 return -2;
1509 }
1510 } else { /* Device is not behind a bridge */
1511 target_pin = int_pin; /* Return its own interrupt pin */
1512 *parent_bdg = dev; /* Return its own structure */
1513 }
1514
1515 /* Target pin is the interrupt pin we want to assign an IRQ to */
1516 return target_pin;
1517}
1518
Julius Wernercd49cce2019-03-05 16:53:33 -08001519#if CONFIG(PC80_SYSTEM)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001520/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001521 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001522 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001523 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001524 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001525 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001526 *
1527 * This function should be called for each PCI slot in your system.
1528 *
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001529 * @param dev Pointer to dev structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001530 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1531 * of this slot. The particular IRQ #s that are passed in depend on the
1532 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001533 */
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001534void pci_assign_irqs(struct device *dev, const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001535{
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001536 u8 slot, line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001537
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001538 /* Each device may contain up to eight functions. */
1539 slot = dev->path.pci.devfn >> 3;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001540
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001541 for (; dev ; dev = dev->sibling) {
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001542
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001543 if (dev->path.pci.devfn >> 3 != slot)
1544 break;
1545
1546 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001547
Uwe Hermanne4870472010-11-04 23:23:47 +00001548 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001549 if ((line < 1) || (line > 4))
1550 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001551
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001552 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001553
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001554 printk(BIOS_DEBUG, "Assigning IRQ %d to %s\n", irq, dev_path(dev));
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001555
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001556 pci_write_config8(dev, PCI_INTERRUPT_LINE, pIntAtoD[line - 1]);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001557
1558#ifdef PARANOID_IRQ_ASSIGNMENTS
Myles Watson17aeeca2009-10-07 18:41:08 +00001559 irq = pci_read_config8(pdev, PCI_INTERRUPT_LINE);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001560 printk(BIOS_DEBUG, " Readback = %d\n", irq);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001561#endif
1562
Julius Wernercd49cce2019-03-05 16:53:33 -08001563#if CONFIG(PC80_SYSTEM)
Uwe Hermanne4870472010-11-04 23:23:47 +00001564 /* Change to level triggered. */
1565 i8259_configure_irq_trigger(pIntAtoD[line - 1],
1566 IRQ_LEVEL_TRIGGERED);
Stefan Reinauer5fb62162010-12-16 23:52:04 +00001567#endif
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001568 }
1569}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001570#endif