blob: 84fc82cbe0a0392b0022143e3e33c60222fd2717 [file] [log] [blame]
Eric Biederman8ca8d762003-04-22 19:02:15 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Uwe Hermannb80dbf02007-04-22 19:08:13 +00003 *
4 * It was originally based on the Linux kernel (drivers/pci/pci.c).
Martin Rothbb5953d2016-04-11 20:53:39 -06005 * Copyright 1993 -- 1997 Drew Eckhardt, Frederic Potter,
6 * David Mosberger-Tang
Uwe Hermannb80dbf02007-04-22 19:08:13 +00007 *
Martin Rothbb5953d2016-04-11 20:53:39 -06008 * Copyright 1997 -- 1999 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
9 *
Uwe Hermannb80dbf02007-04-22 19:08:13 +000010 * Copyright (C) 2003-2004 Linux Networx
11 * (Written by Eric Biederman <ebiederman@lnxi.com> for Linux Networx)
12 * Copyright (C) 2003-2006 Ronald G. Minnich <rminnich@gmail.com>
13 * Copyright (C) 2004-2005 Li-Ta Lo <ollie@lanl.gov>
14 * Copyright (C) 2005-2006 Tyan
15 * (Written by Yinghai Lu <yhlu@tyan.com> for Tyan)
Patrick Georgi16cdbb22009-04-21 20:14:31 +000016 * Copyright (C) 2005-2009 coresystems GmbH
17 * (Written by Stefan Reinauer <stepan@coresystems.de> for coresystems GmbH)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -060018 * Copyright (C) 2014 Sage Electronic Engineering, LLC.
Martin Rothbb5953d2016-04-11 20:53:39 -060019 *
20 * This program is free software; you can redistribute it and/or modify
21 * it under the terms of the GNU General Public License as published by
22 * the Free Software Foundation; version 2 of the License.
23 *
24 * This program is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
Uwe Hermannb80dbf02007-04-22 19:08:13 +000028 */
29
30/*
Myles Watson29cc9ed2009-07-02 18:56:24 +000031 * PCI Bus Services, see include/linux/pci.h for further explanation.
Eric Biederman8ca8d762003-04-22 19:02:15 +000032 */
33
Edward O'Callaghan6c992502014-06-20 21:19:06 +100034#include <arch/acpi.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020035#include <device/pci_ops.h>
Edward O'Callaghan6c992502014-06-20 21:19:06 +100036#include <bootmode.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000037#include <console/console.h>
38#include <stdlib.h>
39#include <stdint.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000040#include <string.h>
Edward O'Callaghan6c992502014-06-20 21:19:06 +100041#include <delay.h>
Edward O'Callaghan6c992502014-06-20 21:19:06 +100042#include <device/cardbus.h>
Eric Biederman5899fd82003-04-24 06:25:08 +000043#include <device/device.h>
44#include <device/pci.h>
45#include <device/pci_ids.h>
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000046#include <device/pcix.h>
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000047#include <device/pciexp.h>
Edward O'Callaghan6c992502014-06-20 21:19:06 +100048#include <device/hypertransport.h>
Stefan Reinauer4d933dd2009-07-21 21:36:41 +000049#include <pc80/i8259.h>
Philipp Deppenwiesefea24292017-10-17 17:02:29 +020050#include <security/vboot/vbnv.h>
Martin Roth5dd4a2a2018-03-06 16:10:45 -070051#include <timestamp.h>
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +020052#include <types.h>
53
Eric Biederman03acab62004-10-14 21:25:53 +000054
Myles Watson29cc9ed2009-07-02 18:56:24 +000055u8 pci_moving_config8(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000056{
Myles Watson29cc9ed2009-07-02 18:56:24 +000057 u8 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000058
Eric Biederman03acab62004-10-14 21:25:53 +000059 value = pci_read_config8(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000060
Eric Biederman03acab62004-10-14 21:25:53 +000061 pci_write_config8(dev, reg, 0xff);
62 ones = pci_read_config8(dev, reg);
63
64 pci_write_config8(dev, reg, 0x00);
65 zeroes = pci_read_config8(dev, reg);
66
67 pci_write_config8(dev, reg, value);
68
69 return ones ^ zeroes;
70}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +000071
Uwe Hermanne4870472010-11-04 23:23:47 +000072u16 pci_moving_config16(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000073{
Myles Watson29cc9ed2009-07-02 18:56:24 +000074 u16 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000075
Eric Biederman03acab62004-10-14 21:25:53 +000076 value = pci_read_config16(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000077
Eric Biederman03acab62004-10-14 21:25:53 +000078 pci_write_config16(dev, reg, 0xffff);
79 ones = pci_read_config16(dev, reg);
80
81 pci_write_config16(dev, reg, 0x0000);
82 zeroes = pci_read_config16(dev, reg);
83
84 pci_write_config16(dev, reg, value);
85
86 return ones ^ zeroes;
87}
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +000088
Uwe Hermanne4870472010-11-04 23:23:47 +000089u32 pci_moving_config32(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000090{
Myles Watson29cc9ed2009-07-02 18:56:24 +000091 u32 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000092
Eric Biederman03acab62004-10-14 21:25:53 +000093 value = pci_read_config32(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000094
Eric Biederman03acab62004-10-14 21:25:53 +000095 pci_write_config32(dev, reg, 0xffffffff);
96 ones = pci_read_config32(dev, reg);
97
98 pci_write_config32(dev, reg, 0x00000000);
99 zeroes = pci_read_config32(dev, reg);
100
101 pci_write_config32(dev, reg, value);
102
103 return ones ^ zeroes;
104}
105
Myles Watson29cc9ed2009-07-02 18:56:24 +0000106/**
Myles Watson29cc9ed2009-07-02 18:56:24 +0000107 * Given a device and register, read the size of the BAR for that register.
108 *
109 * @param dev Pointer to the device structure.
110 * @param index Address of the PCI configuration register.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000111 * @return TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +0000112 */
Eric Biederman03acab62004-10-14 21:25:53 +0000113struct resource *pci_get_resource(struct device *dev, unsigned long index)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000114{
Eric Biederman5cd81732004-03-11 15:01:31 +0000115 struct resource *resource;
Eric Biederman03acab62004-10-14 21:25:53 +0000116 unsigned long value, attr;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000117 resource_t moving, limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000118
Myles Watson29cc9ed2009-07-02 18:56:24 +0000119 /* Initialize the resources to nothing. */
Eric Biederman03acab62004-10-14 21:25:53 +0000120 resource = new_resource(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000121
Myles Watson29cc9ed2009-07-02 18:56:24 +0000122 /* Get the initial value. */
Eric Biederman03acab62004-10-14 21:25:53 +0000123 value = pci_read_config32(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000124
Myles Watson29cc9ed2009-07-02 18:56:24 +0000125 /* See which bits move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000126 moving = pci_moving_config32(dev, index);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000127
Myles Watson29cc9ed2009-07-02 18:56:24 +0000128 /* Initialize attr to the bits that do not move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000129 attr = value & ~moving;
130
Myles Watson29cc9ed2009-07-02 18:56:24 +0000131 /* If it is a 64bit resource look at the high half as well. */
Eric Biederman03acab62004-10-14 21:25:53 +0000132 if (((attr & PCI_BASE_ADDRESS_SPACE_IO) == 0) &&
Myles Watson29cc9ed2009-07-02 18:56:24 +0000133 ((attr & PCI_BASE_ADDRESS_MEM_LIMIT_MASK) ==
134 PCI_BASE_ADDRESS_MEM_LIMIT_64)) {
135 /* Find the high bits that move. */
136 moving |=
137 ((resource_t) pci_moving_config32(dev, index + 4)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000138 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000139
Myles Watson032a9652009-05-11 22:24:53 +0000140 /* Find the resource constraints.
Eric Biederman03acab62004-10-14 21:25:53 +0000141 * Start by finding the bits that move. From there:
142 * - Size is the least significant bit of the bits that move.
143 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000144 * See PCI Spec 6.2.5.1.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000145 */
Eric Biederman03acab62004-10-14 21:25:53 +0000146 limit = 0;
147 if (moving) {
148 resource->size = 1;
149 resource->align = resource->gran = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000150 while (!(moving & resource->size)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000151 resource->size <<= 1;
152 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000153 resource->gran += 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000154 }
155 resource->limit = limit = moving | (resource->size - 1);
Nico Huber8193b062015-10-21 15:43:41 +0200156
157 if (pci_base_address_is_memory_space(attr)) {
158 /* Page-align to allow individual mapping of devices. */
159 if (resource->align < 12)
160 resource->align = 12;
161 }
Eric Biederman03acab62004-10-14 21:25:53 +0000162 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000163
Uwe Hermanne4870472010-11-04 23:23:47 +0000164 /*
165 * Some broken hardware has read-only registers that do not
Eric Biederman03acab62004-10-14 21:25:53 +0000166 * really size correctly.
Uwe Hermanne4870472010-11-04 23:23:47 +0000167 *
168 * Example: the Acer M7229 has BARs 1-4 normally read-only,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000169 * so BAR1 at offset 0x10 reads 0x1f1. If you size that register
Uwe Hermanne4870472010-11-04 23:23:47 +0000170 * by writing 0xffffffff to it, it will read back as 0x1f1 -- which
171 * is a violation of the spec.
172 *
173 * We catch this case and ignore it by observing which bits move.
174 *
175 * This also catches the common case of unimplemented registers
Eric Biederman03acab62004-10-14 21:25:53 +0000176 * that always read back as 0.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000177 */
Eric Biederman03acab62004-10-14 21:25:53 +0000178 if (moving == 0) {
179 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000180 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
181 "read-only ignoring it\n",
182 dev_path(dev), index, value);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000183 }
184 resource->flags = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000185 } else if (attr & PCI_BASE_ADDRESS_SPACE_IO) {
186 /* An I/O mapped base address. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000187 resource->flags |= IORESOURCE_IO;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000188 /* I don't want to deal with 32bit I/O resources. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000189 resource->limit = 0xffff;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000190 } else {
191 /* A Memory mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000192 attr &= PCI_BASE_ADDRESS_MEM_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000193 resource->flags |= IORESOURCE_MEM;
Uwe Hermanne4870472010-11-04 23:23:47 +0000194 if (attr & PCI_BASE_ADDRESS_MEM_PREFETCH)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000195 resource->flags |= IORESOURCE_PREFETCH;
Eric Biederman03acab62004-10-14 21:25:53 +0000196 attr &= PCI_BASE_ADDRESS_MEM_LIMIT_MASK;
197 if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_32) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000198 /* 32bit limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000199 resource->limit = 0xffffffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000200 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_1M) {
201 /* 1MB limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000202 resource->limit = 0x000fffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000203 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_64) {
204 /* 64bit limit. */
Eric Biederman03acab62004-10-14 21:25:53 +0000205 resource->limit = 0xffffffffffffffffULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000206 resource->flags |= IORESOURCE_PCI64;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000207 } else {
208 /* Invalid value. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000209 printk(BIOS_ERR, "Broken BAR with value %lx\n", attr);
210 printk(BIOS_ERR, " on dev %s at index %02lx\n",
Myles Watson29cc9ed2009-07-02 18:56:24 +0000211 dev_path(dev), index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000212 resource->flags = 0;
213 }
214 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000215
Myles Watson29cc9ed2009-07-02 18:56:24 +0000216 /* Don't let the limit exceed which bits can move. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000217 if (resource->limit > limit)
Eric Biederman03acab62004-10-14 21:25:53 +0000218 resource->limit = limit;
Eric Biederman03acab62004-10-14 21:25:53 +0000219
Eric Biederman5cd81732004-03-11 15:01:31 +0000220 return resource;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000221}
222
Myles Watson29cc9ed2009-07-02 18:56:24 +0000223/**
224 * Given a device and an index, read the size of the BAR for that register.
225 *
226 * @param dev Pointer to the device structure.
227 * @param index Address of the PCI configuration register.
228 */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000229static void pci_get_rom_resource(struct device *dev, unsigned long index)
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000230{
231 struct resource *resource;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000232 unsigned long value;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000233 resource_t moving;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000234
Myles Watson29cc9ed2009-07-02 18:56:24 +0000235 /* Initialize the resources to nothing. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000236 resource = new_resource(dev, index);
237
Myles Watson29cc9ed2009-07-02 18:56:24 +0000238 /* Get the initial value. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000239 value = pci_read_config32(dev, index);
240
Myles Watson29cc9ed2009-07-02 18:56:24 +0000241 /* See which bits move. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000242 moving = pci_moving_config32(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000243
244 /* Clear the Enable bit. */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000245 moving = moving & ~PCI_ROM_ADDRESS_ENABLE;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000246
Myles Watson032a9652009-05-11 22:24:53 +0000247 /* Find the resource constraints.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000248 * Start by finding the bits that move. From there:
249 * - Size is the least significant bit of the bits that move.
250 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000251 * See PCI Spec 6.2.5.1.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000252 */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000253 if (moving) {
254 resource->size = 1;
255 resource->align = resource->gran = 0;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000256 while (!(moving & resource->size)) {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000257 resource->size <<= 1;
258 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000259 resource->gran += 1;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000260 }
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000261 resource->limit = moving | (resource->size - 1);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000262 resource->flags |= IORESOURCE_MEM | IORESOURCE_READONLY;
263 } else {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000264 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000265 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
266 "read-only ignoring it\n",
267 dev_path(dev), index, value);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000268 }
269 resource->flags = 0;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000270 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000271 compact_resources(dev);
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000272}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000273
Myles Watson29cc9ed2009-07-02 18:56:24 +0000274/**
Patrick Rudolph4e2f95b2018-05-16 14:56:22 +0200275 * Given a device, read the size of the MSI-X table.
276 *
277 * @param dev Pointer to the device structure.
278 * @return MSI-X table size or 0 if not MSI-X capable device
279 */
280size_t pci_msix_table_size(struct device *dev)
281{
282 const size_t pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
283 if (!pos)
284 return 0;
285
286 const u16 control = pci_read_config16(dev, pos + PCI_MSIX_FLAGS);
287 return (control & PCI_MSIX_FLAGS_QSIZE) + 1;
288}
289
290/**
291 * Given a device, return the table offset and bar the MSI-X tables resides in.
292 *
293 * @param dev Pointer to the device structure.
294 * @param offset Returned value gives the offset in bytes inside the PCI BAR.
295 * @param idx The returned value is the index of the PCI_BASE_ADDRESS register
296 * the MSI-X table is located in.
297 * @return Zero on success
298 */
299int pci_msix_table_bar(struct device *dev, u32 *offset, u8 *idx)
300{
301 const size_t pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
302 if (!pos || !offset || !idx)
303 return 1;
304
305 *offset = pci_read_config32(dev, pos + PCI_MSIX_TABLE);
306 *idx = (u8)(*offset & PCI_MSIX_PBA_BIR);
307 *offset &= PCI_MSIX_PBA_OFFSET;
308
309 return 0;
310}
311
312/**
313 * Given a device, return a msix_entry pointer or NULL if no table was found.
314 *
315 * @param dev Pointer to the device structure.
316 *
317 * @return NULL on error
318 */
319struct msix_entry *pci_msix_get_table(struct device *dev)
320{
321 struct resource *res;
322 u32 offset;
323 u8 idx;
324
325 if (pci_msix_table_bar(dev, &offset, &idx))
326 return NULL;
327
328 if (idx > 5)
329 return NULL;
330
331 res = probe_resource(dev, idx * 4 + PCI_BASE_ADDRESS_0);
332 if (!res || !res->base || offset >= res->size)
333 return NULL;
334
335 if ((res->flags & IORESOURCE_PCI64) &&
336 (uintptr_t)res->base != res->base)
337 return NULL;
338
339 return (struct msix_entry *)((uintptr_t)res->base + offset);
340}
341
342/**
Myles Watson29cc9ed2009-07-02 18:56:24 +0000343 * Read the base address registers for a given device.
344 *
345 * @param dev Pointer to the dev structure.
346 * @param howmany How many registers to read (6 for device, 2 for bridge).
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000347 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000348static void pci_read_bases(struct device *dev, unsigned int howmany)
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000349{
350 unsigned long index;
351
Myles Watson29cc9ed2009-07-02 18:56:24 +0000352 for (index = PCI_BASE_ADDRESS_0;
353 (index < PCI_BASE_ADDRESS_0 + (howmany << 2));) {
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000354 struct resource *resource;
355 resource = pci_get_resource(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000356 index += (resource->flags & IORESOURCE_PCI64) ? 8 : 4;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000357 }
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000358
359 compact_resources(dev);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000360}
361
Myles Watson29cc9ed2009-07-02 18:56:24 +0000362static void pci_record_bridge_resource(struct device *dev, resource_t moving,
363 unsigned index, unsigned long type)
Eric Biederman03acab62004-10-14 21:25:53 +0000364{
Eric Biederman03acab62004-10-14 21:25:53 +0000365 struct resource *resource;
Uwe Hermanne4870472010-11-04 23:23:47 +0000366 unsigned long gran;
367 resource_t step;
368
Myles Watson29cc9ed2009-07-02 18:56:24 +0000369 resource = NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000370
371 if (!moving)
372 return;
373
374 /* Initialize the constraints on the current bus. */
375 resource = new_resource(dev, index);
376 resource->size = 0;
377 gran = 0;
378 step = 1;
379 while ((moving & step) == 0) {
380 gran += 1;
381 step <<= 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000382 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000383 resource->gran = gran;
384 resource->align = gran;
385 resource->limit = moving | (step - 1);
386 resource->flags = type | IORESOURCE_PCI_BRIDGE |
387 IORESOURCE_BRIDGE;
Eric Biederman03acab62004-10-14 21:25:53 +0000388}
389
Eric Biederman8ca8d762003-04-22 19:02:15 +0000390static void pci_bridge_read_bases(struct device *dev)
391{
Eric Biederman03acab62004-10-14 21:25:53 +0000392 resource_t moving_base, moving_limit, moving;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000393
Myles Watson29cc9ed2009-07-02 18:56:24 +0000394 /* See if the bridge I/O resources are implemented. */
395 moving_base = ((u32) pci_moving_config8(dev, PCI_IO_BASE)) << 8;
396 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000397 ((u32) pci_moving_config16(dev, PCI_IO_BASE_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000398
Myles Watson29cc9ed2009-07-02 18:56:24 +0000399 moving_limit = ((u32) pci_moving_config8(dev, PCI_IO_LIMIT)) << 8;
400 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000401 ((u32) pci_moving_config16(dev, PCI_IO_LIMIT_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000402
403 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000404
Myles Watson29cc9ed2009-07-02 18:56:24 +0000405 /* Initialize the I/O space constraints on the current bus. */
406 pci_record_bridge_resource(dev, moving, PCI_IO_BASE, IORESOURCE_IO);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000407
Myles Watson29cc9ed2009-07-02 18:56:24 +0000408 /* See if the bridge prefmem resources are implemented. */
409 moving_base =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000410 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_BASE)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000411 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000412 ((resource_t) pci_moving_config32(dev, PCI_PREF_BASE_UPPER32)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000413
Myles Watson29cc9ed2009-07-02 18:56:24 +0000414 moving_limit =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000415 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_LIMIT)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000416 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000417 ((resource_t) pci_moving_config32(dev, PCI_PREF_LIMIT_UPPER32)) << 32;
Myles Watson032a9652009-05-11 22:24:53 +0000418
Eric Biederman03acab62004-10-14 21:25:53 +0000419 moving = moving_base & moving_limit;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000420 /* Initialize the prefetchable memory constraints on the current bus. */
421 pci_record_bridge_resource(dev, moving, PCI_PREF_MEMORY_BASE,
422 IORESOURCE_MEM | IORESOURCE_PREFETCH);
Myles Watson032a9652009-05-11 22:24:53 +0000423
Myles Watson29cc9ed2009-07-02 18:56:24 +0000424 /* See if the bridge mem resources are implemented. */
425 moving_base = ((u32) pci_moving_config16(dev, PCI_MEMORY_BASE)) << 16;
426 moving_limit = ((u32) pci_moving_config16(dev, PCI_MEMORY_LIMIT)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000427
428 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000429
Myles Watson29cc9ed2009-07-02 18:56:24 +0000430 /* Initialize the memory resources on the current bus. */
431 pci_record_bridge_resource(dev, moving, PCI_MEMORY_BASE,
432 IORESOURCE_MEM);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000433
Eric Biederman5cd81732004-03-11 15:01:31 +0000434 compact_resources(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000435}
436
Eric Biederman5899fd82003-04-24 06:25:08 +0000437void pci_dev_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000438{
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000439 pci_read_bases(dev, 6);
440 pci_get_rom_resource(dev, PCI_ROM_ADDRESS);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000441}
442
Eric Biederman5899fd82003-04-24 06:25:08 +0000443void pci_bus_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000444{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000445 pci_bridge_read_bases(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000446 pci_read_bases(dev, 2);
447 pci_get_rom_resource(dev, PCI_ROM_ADDRESS1);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000448}
449
Myles Watson29cc9ed2009-07-02 18:56:24 +0000450void pci_domain_read_resources(struct device *dev)
451{
452 struct resource *res;
453
454 /* Initialize the system-wide I/O space constraints. */
455 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
456 res->limit = 0xffffUL;
457 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
458 IORESOURCE_ASSIGNED;
459
460 /* Initialize the system-wide memory resources constraints. */
461 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
462 res->limit = 0xffffffffULL;
463 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
464 IORESOURCE_ASSIGNED;
465}
466
Eric Biederman8ca8d762003-04-22 19:02:15 +0000467static void pci_set_resource(struct device *dev, struct resource *resource)
468{
Eric Biederman03acab62004-10-14 21:25:53 +0000469 resource_t base, end;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000470
Myles Watson29cc9ed2009-07-02 18:56:24 +0000471 /* Make certain the resource has actually been assigned a value. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000472 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000473 printk(BIOS_ERR, "ERROR: %s %02lx %s size: 0x%010llx not "
474 "assigned\n", dev_path(dev), resource->index,
475 resource_type(resource), resource->size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000476 return;
477 }
478
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000479 /* If this resource is fixed don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000480 if (resource->flags & IORESOURCE_FIXED)
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000481 return;
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000482
Myles Watson29cc9ed2009-07-02 18:56:24 +0000483 /* If I have already stored this resource don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000484 if (resource->flags & IORESOURCE_STORED)
Eric Biederman5cd81732004-03-11 15:01:31 +0000485 return;
Eric Biederman5cd81732004-03-11 15:01:31 +0000486
Myles Watson29cc9ed2009-07-02 18:56:24 +0000487 /* If the resource is subtractive don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000488 if (resource->flags & IORESOURCE_SUBTRACTIVE)
Eric Biederman03acab62004-10-14 21:25:53 +0000489 return;
Eric Biederman03acab62004-10-14 21:25:53 +0000490
Myles Watson29cc9ed2009-07-02 18:56:24 +0000491 /* Only handle PCI memory and I/O resources for now. */
492 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Eric Biederman8ca8d762003-04-22 19:02:15 +0000493 return;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000494
Myles Watson29cc9ed2009-07-02 18:56:24 +0000495 /* Enable the resources in the command register. */
Eric Biederman03acab62004-10-14 21:25:53 +0000496 if (resource->size) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000497 if (resource->flags & IORESOURCE_MEM)
Eric Biederman03acab62004-10-14 21:25:53 +0000498 dev->command |= PCI_COMMAND_MEMORY;
Uwe Hermanne4870472010-11-04 23:23:47 +0000499 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000500 dev->command |= PCI_COMMAND_IO;
Uwe Hermanne4870472010-11-04 23:23:47 +0000501 if (resource->flags & IORESOURCE_PCI_BRIDGE)
Eric Biederman03acab62004-10-14 21:25:53 +0000502 dev->command |= PCI_COMMAND_MASTER;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000503 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000504
Myles Watson29cc9ed2009-07-02 18:56:24 +0000505 /* Get the base address. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000506 base = resource->base;
Eric Biederman5cd81732004-03-11 15:01:31 +0000507
Myles Watson29cc9ed2009-07-02 18:56:24 +0000508 /* Get the end. */
Eric Biederman03acab62004-10-14 21:25:53 +0000509 end = resource_end(resource);
Myles Watson032a9652009-05-11 22:24:53 +0000510
Myles Watson29cc9ed2009-07-02 18:56:24 +0000511 /* Now store the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000512 resource->flags |= IORESOURCE_STORED;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000513
Uwe Hermanne4870472010-11-04 23:23:47 +0000514 /*
515 * PCI bridges have no enable bit. They are disabled if the base of
516 * the range is greater than the limit. If the size is zero, disable
Myles Watson29cc9ed2009-07-02 18:56:24 +0000517 * by setting the base = limit and end = limit - 2^gran.
518 */
519 if (resource->size == 0 && (resource->flags & IORESOURCE_PCI_BRIDGE)) {
520 base = resource->limit;
521 end = resource->limit - (1 << resource->gran);
522 resource->base = base;
523 }
524
Eric Biederman8ca8d762003-04-22 19:02:15 +0000525 if (!(resource->flags & IORESOURCE_PCI_BRIDGE)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000526 unsigned long base_lo, base_hi;
Uwe Hermanne4870472010-11-04 23:23:47 +0000527
528 /*
529 * Some chipsets allow us to set/clear the I/O bit
530 * (e.g. VIA 82C686A). So set it to be safe.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000531 */
Eric Biederman03acab62004-10-14 21:25:53 +0000532 base_lo = base & 0xffffffff;
533 base_hi = (base >> 32) & 0xffffffff;
Uwe Hermanne4870472010-11-04 23:23:47 +0000534 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000535 base_lo |= PCI_BASE_ADDRESS_SPACE_IO;
Eric Biederman03acab62004-10-14 21:25:53 +0000536 pci_write_config32(dev, resource->index, base_lo);
Uwe Hermanne4870472010-11-04 23:23:47 +0000537 if (resource->flags & IORESOURCE_PCI64)
Eric Biederman03acab62004-10-14 21:25:53 +0000538 pci_write_config32(dev, resource->index + 4, base_hi);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000539 } else if (resource->index == PCI_IO_BASE) {
540 /* Set the I/O ranges. */
541 pci_write_config8(dev, PCI_IO_BASE, base >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000542 pci_write_config16(dev, PCI_IO_BASE_UPPER16, base >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000543 pci_write_config8(dev, PCI_IO_LIMIT, end >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000544 pci_write_config16(dev, PCI_IO_LIMIT_UPPER16, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000545 } else if (resource->index == PCI_MEMORY_BASE) {
546 /* Set the memory range. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000547 pci_write_config16(dev, PCI_MEMORY_BASE, base >> 16);
Eric Biederman03acab62004-10-14 21:25:53 +0000548 pci_write_config16(dev, PCI_MEMORY_LIMIT, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000549 } else if (resource->index == PCI_PREF_MEMORY_BASE) {
550 /* Set the prefetchable memory range. */
Eric Biederman03acab62004-10-14 21:25:53 +0000551 pci_write_config16(dev, PCI_PREF_MEMORY_BASE, base >> 16);
552 pci_write_config32(dev, PCI_PREF_BASE_UPPER32, base >> 32);
553 pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, end >> 16);
554 pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, end >> 32);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000555 } else {
556 /* Don't let me think I stored the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000557 resource->flags &= ~IORESOURCE_STORED;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000558 printk(BIOS_ERR, "ERROR: invalid resource->index %lx\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000559 resource->index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000560 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000561
Eric Biederman03acab62004-10-14 21:25:53 +0000562 report_resource_stored(dev, resource, "");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000563}
564
Eric Biederman5899fd82003-04-24 06:25:08 +0000565void pci_dev_set_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000566{
Myles Watsonc25cc112010-05-21 14:33:48 +0000567 struct resource *res;
Myles Watson894a3472010-06-09 22:41:35 +0000568 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000569 u8 line;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000570
Uwe Hermanne4870472010-11-04 23:23:47 +0000571 for (res = dev->resource_list; res; res = res->next)
Myles Watsonc25cc112010-05-21 14:33:48 +0000572 pci_set_resource(dev, res);
Uwe Hermanne4870472010-11-04 23:23:47 +0000573
Myles Watson894a3472010-06-09 22:41:35 +0000574 for (bus = dev->link_list; bus; bus = bus->next) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000575 if (bus->children)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000576 assign_resources(bus);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000577 }
578
Myles Watson29cc9ed2009-07-02 18:56:24 +0000579 /* Set a default latency timer. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000580 pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000581
Myles Watson29cc9ed2009-07-02 18:56:24 +0000582 /* Set a default secondary latency timer. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000583 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000584 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000585
Myles Watson29cc9ed2009-07-02 18:56:24 +0000586 /* Zero the IRQ settings. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000587 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Uwe Hermanne4870472010-11-04 23:23:47 +0000588 if (line)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000589 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
Uwe Hermanne4870472010-11-04 23:23:47 +0000590
Myles Watson29cc9ed2009-07-02 18:56:24 +0000591 /* Set the cache line size, so far 64 bytes is good for everyone. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000592 pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000593}
594
Eric Biedermane9a271e32003-09-02 03:36:25 +0000595void pci_dev_enable_resources(struct device *dev)
596{
Kyösti Mälkkicac02312019-06-30 08:40:04 +0300597 const struct pci_operations *ops = NULL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000598 u16 command;
Eric Biederman03acab62004-10-14 21:25:53 +0000599
Uwe Hermanne4870472010-11-04 23:23:47 +0000600 /* Set the subsystem vendor and device ID for mainboard devices. */
Kyösti Mälkkicac02312019-06-30 08:40:04 +0300601 if (dev->ops)
602 ops = dev->ops->ops_pci;
Eric Biedermandbec2d42004-10-21 10:44:08 +0000603 if (dev->on_mainboard && ops && ops->set_subsystem) {
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700604 if (CONFIG_SUBSYSTEM_VENDOR_ID)
605 dev->subsystem_vendor = CONFIG_SUBSYSTEM_VENDOR_ID;
Rizwan Qureshifd891292017-04-26 21:00:37 +0530606 else if (!dev->subsystem_vendor)
607 dev->subsystem_vendor = pci_read_config16(dev,
608 PCI_VENDOR_ID);
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700609 if (CONFIG_SUBSYSTEM_DEVICE_ID)
610 dev->subsystem_device = CONFIG_SUBSYSTEM_DEVICE_ID;
Rizwan Qureshifd891292017-04-26 21:00:37 +0530611 else if (!dev->subsystem_device)
612 dev->subsystem_device = pci_read_config16(dev,
613 PCI_DEVICE_ID);
614
Sven Schnelle91321022011-03-01 19:58:47 +0000615 printk(BIOS_DEBUG, "%s subsystem <- %04x/%04x\n",
616 dev_path(dev), dev->subsystem_vendor,
617 dev->subsystem_device);
618 ops->set_subsystem(dev, dev->subsystem_vendor,
619 dev->subsystem_device);
Eric Biederman03acab62004-10-14 21:25:53 +0000620 }
Eric Biedermane9a271e32003-09-02 03:36:25 +0000621 command = pci_read_config16(dev, PCI_COMMAND);
622 command |= dev->command;
Uwe Hermanne4870472010-11-04 23:23:47 +0000623
Myles Watson29cc9ed2009-07-02 18:56:24 +0000624 /* v3 has
625 * command |= (PCI_COMMAND_PARITY + PCI_COMMAND_SERR); // Error check.
626 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000627
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000628 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000629 pci_write_config16(dev, PCI_COMMAND, command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000630}
631
632void pci_bus_enable_resources(struct device *dev)
633{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000634 u16 ctrl;
635
Uwe Hermanne4870472010-11-04 23:23:47 +0000636 /*
637 * Enable I/O in command register if there is VGA card
Myles Watson29cc9ed2009-07-02 18:56:24 +0000638 * connected with (even it does not claim I/O resource).
639 */
Myles Watson894a3472010-06-09 22:41:35 +0000640 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
Li-Ta Lo515f6c72005-01-11 22:48:54 +0000641 dev->command |= PCI_COMMAND_IO;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000642 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +0000643 ctrl |= dev->link_list->bridge_ctrl;
Uwe Hermanne4870472010-11-04 23:23:47 +0000644 ctrl |= (PCI_BRIDGE_CTL_PARITY + PCI_BRIDGE_CTL_SERR); /* Error check. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000645 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000646 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
647
648 pci_dev_enable_resources(dev);
649}
650
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000651void pci_bus_reset(struct bus *bus)
652{
Uwe Hermanne4870472010-11-04 23:23:47 +0000653 u16 ctl;
654
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000655 ctl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
656 ctl |= PCI_BRIDGE_CTL_BUS_RESET;
657 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
658 mdelay(10);
Uwe Hermanne4870472010-11-04 23:23:47 +0000659
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000660 ctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
661 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
662 delay(1);
663}
664
Elyes HAOUAS88030b72018-09-20 17:26:10 +0200665void pci_dev_set_subsystem(struct device *dev, unsigned int vendor,
666 unsigned int device)
Eric Biederman03acab62004-10-14 21:25:53 +0000667{
Subrata Banik9514d472019-03-20 14:56:27 +0530668 uint8_t offset;
669
670 /* Header type */
671 switch (dev->hdr_type & 0x7f) {
672 case PCI_HEADER_TYPE_NORMAL:
673 offset = PCI_SUBSYSTEM_VENDOR_ID;
674 break;
675 case PCI_HEADER_TYPE_BRIDGE:
676 offset = pci_find_capability(dev, PCI_CAP_ID_SSVID);
677 if (!offset)
678 return;
679 offset += 4; /* Vendor ID at offset 4 */
680 break;
681 case PCI_HEADER_TYPE_CARDBUS:
682 offset = PCI_CB_SUBSYSTEM_VENDOR_ID;
683 break;
684 default:
685 return;
686 }
687
Subrata Banik4a0f0712019-03-20 14:29:47 +0530688 if (!vendor || !device) {
Subrata Banik9514d472019-03-20 14:56:27 +0530689 pci_write_config32(dev, offset,
Subrata Banik4a0f0712019-03-20 14:29:47 +0530690 pci_read_config32(dev, PCI_VENDOR_ID));
691 } else {
Subrata Banik9514d472019-03-20 14:56:27 +0530692 pci_write_config32(dev, offset,
Subrata Banik4a0f0712019-03-20 14:29:47 +0530693 ((device & 0xffff) << 16) | (vendor & 0xffff));
694 }
Eric Biederman03acab62004-10-14 21:25:53 +0000695}
696
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300697static int should_run_oprom(struct device *dev)
698{
699 static int should_run = -1;
700
701 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;
729 if (should_run_oprom(dev))
730 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
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300760 if (!should_run_oprom(dev))
761 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,
Patrick Rudolph00c0cd22017-06-06 19:30:55 +0200781 .acpi_fill_ssdt_generator = pci_rom_ssdt,
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200782#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000783 .init = pci_dev_init,
784 .scan_bus = 0,
785 .enable = 0,
786 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000787};
Li-Ta Loe5266692004-03-23 21:28:05 +0000788
789/** Default device operations for PCI bridges */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000790static struct pci_operations pci_bus_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000791 .set_subsystem = 0,
792};
Li-Ta Lo883b8792005-01-10 23:16:22 +0000793
Eric Biederman8ca8d762003-04-22 19:02:15 +0000794struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000795 .read_resources = pci_bus_read_resources,
796 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000797 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000798 .init = 0,
799 .scan_bus = pci_scan_bridge,
800 .enable = 0,
801 .reset_bus = pci_bus_reset,
802 .ops_pci = &pci_bus_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000803};
Li-Ta Loe5266692004-03-23 21:28:05 +0000804
805/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000806 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000807 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000808 * This function is a heuristic to detect which type of bus is downstream
809 * of a PCI-to-PCI bridge. This functions by looking for various capability
810 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
811 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000812 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000813 * When only a PCI-Express capability is found the type is examined to see
814 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000815 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000816 * @param dev Pointer to the device structure of the bridge.
817 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000818 */
Aaron Durbinc30d9132017-08-07 16:55:43 -0600819static struct device_operations *get_pci_bridge_ops(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000820{
Julius Wernercd49cce2019-03-05 16:53:33 -0800821#if CONFIG(PCIX_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800822 unsigned int pcixpos;
823 pcixpos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
824 if (pcixpos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000825 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000826 return &default_pcix_ops_bus;
827 }
828#endif
Julius Wernercd49cce2019-03-05 16:53:33 -0800829#if CONFIG(HYPERTRANSPORT_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800830 unsigned int htpos = 0;
831 while ((htpos = pci_find_next_capability(dev, PCI_CAP_ID_HT, htpos))) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000832 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800833 flags = pci_read_config16(dev, htpos + PCI_CAP_FLAGS);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000834 if ((flags >> 13) == 1) {
835 /* Host or Secondary Interface */
Uwe Hermanne4870472010-11-04 23:23:47 +0000836 printk(BIOS_DEBUG, "%s subordinate bus HT\n",
837 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000838 return &default_ht_ops_bus;
839 }
840 }
841#endif
Julius Wernercd49cce2019-03-05 16:53:33 -0800842#if CONFIG(PCIEXP_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800843 unsigned int pciexpos;
844 pciexpos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
845 if (pciexpos) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000846 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800847 flags = pci_read_config16(dev, pciexpos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000848 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000849 case PCI_EXP_TYPE_ROOT_PORT:
850 case PCI_EXP_TYPE_UPSTREAM:
851 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000852 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000853 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000854 return &default_pciexp_ops_bus;
855 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +0000856 printk(BIOS_DEBUG, "%s subordinate PCI\n",
857 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000858 return &default_pci_ops_bus;
859 default:
860 break;
861 }
862 }
863#endif
864 return &default_pci_ops_bus;
865}
866
867/**
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700868 * Check if a device id matches a PCI driver entry.
869 *
870 * The driver entry can either point at a zero terminated array of acceptable
871 * device IDs, or include a single device ID.
872 *
Martin Roth98b698c2015-01-06 21:02:52 -0700873 * @param driver pointer to the PCI driver entry being checked
874 * @param device_id PCI device ID of the device being matched
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700875 */
876static int device_id_match(struct pci_driver *driver, unsigned short device_id)
877{
878 if (driver->devices) {
879 unsigned short check_id;
880 const unsigned short *device_list = driver->devices;
881 while ((check_id = *device_list++) != 0)
882 if (check_id == device_id)
883 return 1;
884 }
885
886 return (driver->device == device_id);
887}
888
889/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000890 * Set up PCI device operation.
891 *
892 * Check if it already has a driver. If not, use find_device_operations(),
893 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +0000894 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000895 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +0000896 * @see pci_drivers
897 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000898static void set_pci_ops(struct device *dev)
899{
900 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +0000901
Uwe Hermanne4870472010-11-04 23:23:47 +0000902 if (dev->ops)
903 return;
904
905 /*
906 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +0000907 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000908 */
Aaron Durbin03758152015-09-03 17:23:08 -0500909 for (driver = &_pci_drivers[0]; driver != &_epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000910 if ((driver->vendor == dev->vendor) &&
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700911 device_id_match(driver, dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +0000912 dev->ops = (struct device_operations *)driver->ops;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000913 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000914 dev_path(dev), driver->vendor, driver->device,
915 (driver->ops->scan_bus ? "bus " : ""));
Eric Biederman5899fd82003-04-24 06:25:08 +0000916 return;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000917 }
918 }
Li-Ta Loe5266692004-03-23 21:28:05 +0000919
Uwe Hermanne4870472010-11-04 23:23:47 +0000920 /* If I don't have a specific driver use the default operations. */
921 switch (dev->hdr_type & 0x7f) { /* Header type */
922 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +0000923 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
924 goto bad;
925 dev->ops = &default_pci_ops_dev;
926 break;
927 case PCI_HEADER_TYPE_BRIDGE:
928 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
929 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000930 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000931 break;
Julius Wernercd49cce2019-03-05 16:53:33 -0800932#if CONFIG(CARDBUS_PLUGIN_SUPPORT)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000933 case PCI_HEADER_TYPE_CARDBUS:
934 dev->ops = &default_cardbus_ops_bus;
935 break;
936#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000937default:
938bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000939 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000940 printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "
941 "header type %02x, ignoring.\n", dev_path(dev),
942 dev->vendor, dev->device,
943 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +0000944 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000945 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000946}
947
948/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000949 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +0000950 *
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200951 * Given a PCI bus structure and a devfn number, find the device structure
952 * corresponding to the devfn, if present. Then move the device structure
953 * as the last child on the bus.
Li-Ta Loe5266692004-03-23 21:28:05 +0000954 *
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200955 * @param bus Pointer to the bus structure.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000956 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000957 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +0000958 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000959 */
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200960static struct device *pci_scan_get_dev(struct bus *bus, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000961{
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200962 struct device *dev, **prev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000963
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200964 prev = &bus->children;
965 for (dev = bus->children; dev; dev = dev->sibling) {
966 if (dev->path.type == DEVICE_PATH_PCI) {
967 if (dev->path.pci.devfn == devfn) {
968 /* Unlink from the list. */
969 *prev = dev->sibling;
970 dev->sibling = NULL;
971 break;
972 }
973 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +0000974 printk(BIOS_ERR, "child %s not a PCI device\n",
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200975 dev_path(dev));
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000976 }
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200977 prev = &dev->sibling;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000978 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000979
Uwe Hermanne4870472010-11-04 23:23:47 +0000980 /*
981 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +0000982 * bus. When the list of devices was formed we removed all of the
983 * parents children, and now we are interleaving static and dynamic
984 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000985 */
Eric Biedermane9a271e32003-09-02 03:36:25 +0000986 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000987 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +0000988
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200989 /* Find the last child on the bus. */
990 for (child = bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000991 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +0000992
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200993 /* Place the device as last on the bus. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000994 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000995 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000996 else
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200997 bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000998 }
999
Eric Biederman8ca8d762003-04-22 19:02:15 +00001000 return dev;
1001}
1002
Myles Watson032a9652009-05-11 22:24:53 +00001003/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001004 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +00001005 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001006 * Determine the existence of a given PCI device. Allocate a new struct device
1007 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001008 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001009 * @param dev Pointer to the dev structure.
1010 * @param bus Pointer to the bus structure.
1011 * @param devfn A device/function number to look at.
1012 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001013 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001014struct device *pci_probe_dev(struct device *dev, struct bus *bus,
1015 unsigned int devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001016{
Myles Watson29cc9ed2009-07-02 18:56:24 +00001017 u32 id, class;
1018 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001019
Myles Watson29cc9ed2009-07-02 18:56:24 +00001020 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001021 if (!dev) {
1022 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +00001023
Myles Watson29cc9ed2009-07-02 18:56:24 +00001024 dummy.bus = bus;
1025 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +00001026 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +00001027
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001028 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +00001029 /*
1030 * Have we found something? Some broken boards return 0 if a
1031 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001032 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001033 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +00001034 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +00001035
Stefan Reinauer7355c752010-04-02 16:30:25 +00001036 if ((id == 0x00000000) || (id == 0x0000ffff) ||
1037 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001038 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
1039 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001040 return NULL;
1041 }
1042 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001043 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +00001044 /*
1045 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +00001046 * specific operations this operations we will disable the
1047 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +00001048 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001049 * This is geared toward devices that have subfunctions
1050 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +00001051 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001052 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +00001053 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001054 */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001055 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001056 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001057 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +00001058
Myles Watson29cc9ed2009-07-02 18:56:24 +00001059 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001060 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +00001061
Uwe Hermanne4870472010-11-04 23:23:47 +00001062 /*
1063 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +00001064 * this is because we have already disabled the device. But
1065 * this also handles optional devices that may not always
1066 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001067 */
1068 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001069 if ((id == 0xffffffff) || (id == 0x00000000) ||
1070 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001071 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001072 printk(BIOS_INFO, "PCI: Static device %s not "
1073 "found, disabling it.\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001074 dev->enabled = 0;
1075 }
1076 return dev;
1077 }
1078 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001079
Myles Watson29cc9ed2009-07-02 18:56:24 +00001080 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001081 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
1082 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +00001083
Myles Watson29cc9ed2009-07-02 18:56:24 +00001084 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001085 dev->vendor = id & 0xffff;
1086 dev->device = (id >> 16) & 0xffff;
1087 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001088
1089 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001090 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +00001091
Myles Watson29cc9ed2009-07-02 18:56:24 +00001092 /* Architectural/System devices always need to be bus masters. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001093 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001094 dev->command |= PCI_COMMAND_MASTER;
Uwe Hermanne4870472010-11-04 23:23:47 +00001095
1096 /*
1097 * Look at the vendor and device ID, or at least the header type and
Myles Watson29cc9ed2009-07-02 18:56:24 +00001098 * class and figure out which set of configuration methods to use.
1099 * Unless we already have some PCI ops.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001100 */
1101 set_pci_ops(dev);
1102
Myles Watson29cc9ed2009-07-02 18:56:24 +00001103 /* Now run the magic enable/disable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001104 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001105 dev->ops->enable(dev);
Myles Watson032a9652009-05-11 22:24:53 +00001106
Myles Watson29cc9ed2009-07-02 18:56:24 +00001107 /* Display the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001108 printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
1109 dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
1110 dev->ops ? "" : " No operations");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001111
1112 return dev;
1113}
1114
Myles Watson032a9652009-05-11 22:24:53 +00001115/**
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001116 * Test for match between romstage and ramstage device instance.
1117 *
1118 * @param dev Pointer to the device structure.
1119 * @param sdev Simple device model identifier, created with PCI_DEV().
1120 * @return Non-zero if bus:dev.fn of device matches.
1121 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001122unsigned int pci_match_simple_dev(struct device *dev, pci_devfn_t sdev)
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001123{
1124 return dev->bus->secondary == PCI_DEV2SEGBUS(sdev) &&
1125 dev->path.pci.devfn == PCI_DEV2DEVFN(sdev);
1126}
1127
1128/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001129 * Scan a PCI bus.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001130 *
Li-Ta Loe5266692004-03-23 21:28:05 +00001131 * Determine the existence of devices and bridges on a PCI bus. If there are
1132 * bridges on the bus, recursively scan the buses behind the bridges.
1133 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001134 * @param bus Pointer to the bus structure.
1135 * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1136 * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001137 */
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001138void pci_scan_bus(struct bus *bus, unsigned min_devfn,
1139 unsigned max_devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001140{
1141 unsigned int devfn;
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001142 struct device *dev, **prev;
1143 int once = 0;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001144
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001145 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %02x\n", bus->secondary);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001146
Uwe Hermanne4870472010-11-04 23:23:47 +00001147 /* Maximum sane devfn is 0xFF. */
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001148 if (max_devfn > 0xff) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001149 printk(BIOS_ERR, "PCI: pci_scan_bus limits devfn %x - "
1150 "devfn %x\n", min_devfn, max_devfn);
1151 printk(BIOS_ERR, "PCI: pci_scan_bus upper limit too big. "
1152 "Using 0xff.\n");
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001153 max_devfn=0xff;
1154 }
1155
Eric Biederman8ca8d762003-04-22 19:02:15 +00001156 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001157
1158 /*
1159 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001160 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001161 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001162 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001163 /* First thing setup the device structure. */
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001164 dev = pci_scan_get_dev(bus, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001165
Myles Watson29cc9ed2009-07-02 18:56:24 +00001166 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001167 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001168
Uwe Hermanne4870472010-11-04 23:23:47 +00001169 /*
1170 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001171 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001172 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001173 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001174 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001175 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001176 devfn += 0x07;
1177 }
1178 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001179
Eric Biederman8ca8d762003-04-22 19:02:15 +00001180 post_code(0x25);
1181
Uwe Hermanne4870472010-11-04 23:23:47 +00001182 /*
1183 * Warn if any leftover static devices are are found.
1184 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001185 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001186
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001187 prev = &bus->children;
1188 for (dev = bus->children; dev; dev = dev->sibling) {
1189 /* If we read valid vendor id, it is not leftover device. */
1190 if (dev->vendor != 0) {
1191 prev = &dev->sibling;
1192 continue;
1193 }
1194
1195 /* Unlink it from list. */
1196 *prev = dev->sibling;
1197
1198 if (!once++)
1199 printk(BIOS_WARNING, "PCI: Leftover static devices:\n");
1200 printk(BIOS_WARNING, "%s\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001201 }
1202
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001203 if (once)
1204 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
1205
Uwe Hermanne4870472010-11-04 23:23:47 +00001206 /*
1207 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001208 * scan the bus behind that child.
1209 */
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001210
Kyösti Mälkki2d2367c2015-02-20 21:28:31 +02001211 scan_bridges(bus);
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001212
Uwe Hermanne4870472010-11-04 23:23:47 +00001213 /*
1214 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001215 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001216 * Return how far we've got finding sub-buses.
1217 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001218 post_code(0x55);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001219}
1220
Kyösti Mälkki33452402015-02-23 06:58:26 +02001221typedef enum {
1222 PCI_ROUTE_CLOSE,
1223 PCI_ROUTE_SCAN,
1224 PCI_ROUTE_FINAL,
1225} scan_state;
1226
1227static void pci_bridge_route(struct bus *link, scan_state state)
1228{
1229 struct device *dev = link->dev;
1230 struct bus *parent = dev->bus;
1231 u32 reg, buses = 0;
1232
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001233 if (state == PCI_ROUTE_SCAN) {
1234 link->secondary = parent->subordinate + 1;
1235 link->subordinate = link->secondary;
1236 }
1237
Kyösti Mälkki33452402015-02-23 06:58:26 +02001238 if (state == PCI_ROUTE_CLOSE) {
1239 buses |= 0xfeff << 8;
1240 } else if (state == PCI_ROUTE_SCAN) {
Timothy Pearson7d8a4782015-10-24 20:34:57 -05001241 buses |= parent->secondary & 0xff;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001242 buses |= ((u32) link->secondary & 0xff) << 8;
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001243 buses |= 0xff << 16; /* MAX PCI_BUS number here */
Kyösti Mälkki33452402015-02-23 06:58:26 +02001244 } else if (state == PCI_ROUTE_FINAL) {
1245 buses |= parent->secondary & 0xff;
1246 buses |= ((u32) link->secondary & 0xff) << 8;
1247 buses |= ((u32) link->subordinate & 0xff) << 16;
1248 }
1249
1250 if (state == PCI_ROUTE_SCAN) {
1251 /* Clear all status bits and turn off memory, I/O and master enables. */
1252 link->bridge_cmd = pci_read_config16(dev, PCI_COMMAND);
1253 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1254 pci_write_config16(dev, PCI_STATUS, 0xffff);
1255 }
1256
1257 /*
1258 * Configure the bus numbers for this bridge: the configuration
1259 * transactions will not be propagated by the bridge if it is not
1260 * correctly configured.
1261 */
1262
1263 reg = pci_read_config32(dev, PCI_PRIMARY_BUS);
1264 reg &= 0xff000000;
1265 reg |= buses;
1266 pci_write_config32(dev, PCI_PRIMARY_BUS, reg);
1267
1268 if (state == PCI_ROUTE_FINAL) {
1269 pci_write_config16(dev, PCI_COMMAND, link->bridge_cmd);
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001270 parent->subordinate = link->subordinate;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001271 }
1272}
1273
Li-Ta Loe5266692004-03-23 21:28:05 +00001274/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001275 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001276 *
1277 * Determine the existence of buses behind the bridge. Set up the bridge
1278 * according to the result of the scan.
1279 *
1280 * This function is the default scan_bus() method for PCI bridge devices.
1281 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001282 * @param dev Pointer to the bridge device.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001283 * @param do_scan_bus TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +00001284 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001285void do_pci_scan_bridge(struct device *dev,
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001286 void (*do_scan_bus) (struct bus * bus,
Myles Watson29cc9ed2009-07-02 18:56:24 +00001287 unsigned min_devfn,
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001288 unsigned max_devfn))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001289{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001290 struct bus *bus;
Eric Biederman83b991a2003-10-11 06:20:25 +00001291
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001292 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001293
Myles Watson894a3472010-06-09 22:41:35 +00001294 if (dev->link_list == NULL) {
1295 struct bus *link;
1296 link = malloc(sizeof(*link));
1297 if (link == NULL)
1298 die("Couldn't allocate a link!\n");
1299 memset(link, 0, sizeof(*link));
1300 link->dev = dev;
1301 dev->link_list = link;
1302 }
1303
1304 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001305
Kyösti Mälkki33452402015-02-23 06:58:26 +02001306 pci_bridge_route(bus, PCI_ROUTE_SCAN);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001307
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001308 do_scan_bus(bus, 0x00, 0xff);
Kyösti Mälkki33452402015-02-23 06:58:26 +02001309
1310 pci_bridge_route(bus, PCI_ROUTE_FINAL);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001311}
Li-Ta Loe5266692004-03-23 21:28:05 +00001312
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001313/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001314 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001315 *
1316 * Determine the existence of buses behind the bridge. Set up the bridge
1317 * according to the result of the scan.
1318 *
1319 * This function is the default scan_bus() method for PCI bridge devices.
1320 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001321 * @param dev Pointer to the bridge device.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001322 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001323void pci_scan_bridge(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001324{
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001325 do_pci_scan_bridge(dev, pci_scan_bus);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001326}
1327
Myles Watson29cc9ed2009-07-02 18:56:24 +00001328/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001329 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001330 *
1331 * This function is the default scan_bus() method for PCI domains.
1332 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001333 * @param dev Pointer to the domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001334 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001335void pci_domain_scan_bus(struct device *dev)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001336{
Kyösti Mälkki6f370172015-03-19 15:26:52 +02001337 struct bus *link = dev->link_list;
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001338 pci_scan_bus(link, PCI_DEVFN(0, 0), 0xff);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001339}
1340
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001341/**
1342 * Take an INT_PIN number (0, 1 - 4) and convert
1343 * it to a string ("NO PIN", "PIN A" - "PIN D")
1344 *
1345 * @param pin PCI Interrupt Pin number (0, 1 - 4)
1346 * @return A string corresponding to the pin number or "Invalid"
1347 */
1348const char *pin_to_str(int pin)
1349{
1350 const char *str[5] = {
1351 "NO PIN",
1352 "PIN A",
1353 "PIN B",
1354 "PIN C",
1355 "PIN D",
1356 };
1357
1358 if (pin >= 0 && pin <= 4)
1359 return str[pin];
1360 else
1361 return "Invalid PIN, not 0 - 4";
1362}
1363
1364/**
1365 * Get the PCI INT_PIN swizzle for a device defined as:
1366 * pin_parent = (pin_child + devn_child) % 4 + 1
1367 * where PIN A = 1 ... PIN_D = 4
1368 *
1369 * Given a PCI device structure 'dev', find the interrupt pin
1370 * that will be triggered on its parent bridge device when
1371 * generating an interrupt. For example: Device 1:3.2 may
1372 * use INT_PIN A but will trigger PIN D on its parent bridge
1373 * device. In this case, this function will return 4 (PIN D).
1374 *
1375 * @param dev A PCI device structure to swizzle interrupt pins for
Martin Roth32bc6b62015-01-04 16:54:35 -07001376 * @param *parent_bridge The PCI device structure for the bridge
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001377 * device 'dev' is attached to
1378 * @return The interrupt pin number (1 - 4) that 'dev' will
1379 * trigger when generating an interrupt
1380 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001381static int swizzle_irq_pins(struct device *dev, struct device **parent_bridge)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001382{
Aaron Durbinc30d9132017-08-07 16:55:43 -06001383 struct device *parent; /* Our current device's parent device */
1384 struct device *child; /* The child device of the parent */
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001385 uint8_t parent_bus = 0; /* Parent Bus number */
1386 uint16_t parent_devfn = 0; /* Parent Device and Function number */
1387 uint16_t child_devfn = 0; /* Child Device and Function number */
1388 uint8_t swizzled_pin = 0; /* Pin swizzled across a bridge */
1389
1390 /* Start with PIN A = 0 ... D = 3 */
1391 swizzled_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN) - 1;
1392
1393 /* While our current device has parent devices */
1394 child = dev;
1395 for (parent = child->bus->dev; parent; parent = parent->bus->dev) {
1396 parent_bus = parent->bus->secondary;
1397 parent_devfn = parent->path.pci.devfn;
1398 child_devfn = child->path.pci.devfn;
1399
1400 /* Swizzle the INT_PIN for any bridges not on root bus */
1401 swizzled_pin = (PCI_SLOT(child_devfn) + swizzled_pin) % 4;
1402 printk(BIOS_SPEW, "\tWith INT_PIN swizzled to %s\n"
1403 "\tAttached to bridge device %01X:%02Xh.%02Xh\n",
1404 pin_to_str(swizzled_pin + 1), parent_bus,
1405 PCI_SLOT(parent_devfn), PCI_FUNC(parent_devfn));
1406
1407 /* Continue until we find the root bus */
1408 if (parent_bus > 0) {
1409 /*
1410 * We will go on to the next parent so this parent
1411 * becomes the child
1412 */
1413 child = parent;
1414 continue;
1415 } else {
1416 /*
1417 * Found the root bridge device,
1418 * fill in the structure and exit
1419 */
1420 *parent_bridge = parent;
1421 break;
1422 }
1423 }
1424
1425 /* End with PIN A = 1 ... D = 4 */
1426 return swizzled_pin + 1;
1427}
1428
1429/**
1430 * Given a device structure 'dev', find its interrupt pin
1431 * and its parent bridge 'parent_bdg' device structure.
1432 * If it is behind a bridge, it will return the interrupt
1433 * pin number (1 - 4) of the parent bridge that the device
1434 * interrupt pin has been swizzled to, otherwise it will
1435 * return the interrupt pin that is programmed into the
1436 * PCI config space of the target device. If 'dev' is
1437 * behind a bridge, it will fill in 'parent_bdg' with the
1438 * device structure of the bridge it is behind, otherwise
1439 * it will copy 'dev' into 'parent_bdg'.
1440 *
1441 * @param dev A PCI device structure to get interrupt pins for.
1442 * @param *parent_bdg The PCI device structure for the bridge
1443 * device 'dev' is attached to.
1444 * @return The interrupt pin number (1 - 4) that 'dev' will
1445 * trigger when generating an interrupt.
1446 * Errors: -1 is returned if the device is not enabled
1447 * -2 is returned if a parent bridge could not be found.
1448 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001449int get_pci_irq_pins(struct device *dev, struct device **parent_bdg)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001450{
1451 uint8_t bus = 0; /* The bus this device is on */
1452 uint16_t devfn = 0; /* This device's device and function numbers */
1453 uint8_t int_pin = 0; /* Interrupt pin used by the device */
1454 uint8_t target_pin = 0; /* Interrupt pin we want to assign an IRQ to */
1455
1456 /* Make sure this device is enabled */
1457 if (!(dev->enabled && (dev->path.type == DEVICE_PATH_PCI)))
1458 return -1;
1459
1460 bus = dev->bus->secondary;
1461 devfn = dev->path.pci.devfn;
1462
1463 /* Get and validate the interrupt pin used. Only 1-4 are allowed */
1464 int_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN);
1465 if (int_pin < 1 || int_pin > 4)
1466 return -1;
1467
1468 printk(BIOS_SPEW, "PCI IRQ: Found device %01X:%02X.%02X using %s\n",
1469 bus, PCI_SLOT(devfn), PCI_FUNC(devfn), pin_to_str(int_pin));
1470
1471 /* If this device is on a bridge, swizzle its INT_PIN */
1472 if (bus) {
1473 /* Swizzle its INT_PINs */
1474 target_pin = swizzle_irq_pins(dev, parent_bdg);
1475
1476 /* Make sure the swizzle returned valid structures */
1477 if (parent_bdg == NULL) {
1478 printk(BIOS_WARNING,
1479 "Warning: Could not find parent bridge for this device!\n");
1480 return -2;
1481 }
1482 } else { /* Device is not behind a bridge */
1483 target_pin = int_pin; /* Return its own interrupt pin */
1484 *parent_bdg = dev; /* Return its own structure */
1485 }
1486
1487 /* Target pin is the interrupt pin we want to assign an IRQ to */
1488 return target_pin;
1489}
1490
Julius Wernercd49cce2019-03-05 16:53:33 -08001491#if CONFIG(PC80_SYSTEM)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001492/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001493 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001494 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001495 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001496 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001497 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001498 *
1499 * This function should be called for each PCI slot in your system.
1500 *
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001501 * @param dev Pointer to dev structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001502 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1503 * of this slot. The particular IRQ #s that are passed in depend on the
1504 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001505 */
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001506void pci_assign_irqs(struct device *dev, const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001507{
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001508 u8 slot, line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001509
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001510 /* Each device may contain up to eight functions. */
1511 slot = dev->path.pci.devfn >> 3;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001512
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001513 for (; dev ; dev = dev->sibling) {
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001514
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001515 if (dev->path.pci.devfn >> 3 != slot)
1516 break;
1517
1518 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001519
Uwe Hermanne4870472010-11-04 23:23:47 +00001520 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001521 if ((line < 1) || (line > 4))
1522 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001523
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001524 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001525
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001526 printk(BIOS_DEBUG, "Assigning IRQ %d to %s\n", irq, dev_path(dev));
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001527
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001528 pci_write_config8(dev, PCI_INTERRUPT_LINE, pIntAtoD[line - 1]);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001529
1530#ifdef PARANOID_IRQ_ASSIGNMENTS
Myles Watson17aeeca2009-10-07 18:41:08 +00001531 irq = pci_read_config8(pdev, PCI_INTERRUPT_LINE);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001532 printk(BIOS_DEBUG, " Readback = %d\n", irq);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001533#endif
1534
Julius Wernercd49cce2019-03-05 16:53:33 -08001535#if CONFIG(PC80_SYSTEM)
Uwe Hermanne4870472010-11-04 23:23:47 +00001536 /* Change to level triggered. */
1537 i8259_configure_irq_trigger(pIntAtoD[line - 1],
1538 IRQ_LEVEL_TRIGGERED);
Stefan Reinauer5fb62162010-12-16 23:52:04 +00001539#endif
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001540 }
1541}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001542#endif