blob: 86c72b89ffafea000b6241a835e344a344c2beb4 [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>
Eric Biederman03acab62004-10-14 21:25:53 +000052
Myles Watson29cc9ed2009-07-02 18:56:24 +000053u8 pci_moving_config8(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000054{
Myles Watson29cc9ed2009-07-02 18:56:24 +000055 u8 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000056
Eric Biederman03acab62004-10-14 21:25:53 +000057 value = pci_read_config8(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000058
Eric Biederman03acab62004-10-14 21:25:53 +000059 pci_write_config8(dev, reg, 0xff);
60 ones = pci_read_config8(dev, reg);
61
62 pci_write_config8(dev, reg, 0x00);
63 zeroes = pci_read_config8(dev, reg);
64
65 pci_write_config8(dev, reg, value);
66
67 return ones ^ zeroes;
68}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +000069
Uwe Hermanne4870472010-11-04 23:23:47 +000070u16 pci_moving_config16(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000071{
Myles Watson29cc9ed2009-07-02 18:56:24 +000072 u16 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000073
Eric Biederman03acab62004-10-14 21:25:53 +000074 value = pci_read_config16(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000075
Eric Biederman03acab62004-10-14 21:25:53 +000076 pci_write_config16(dev, reg, 0xffff);
77 ones = pci_read_config16(dev, reg);
78
79 pci_write_config16(dev, reg, 0x0000);
80 zeroes = pci_read_config16(dev, reg);
81
82 pci_write_config16(dev, reg, value);
83
84 return ones ^ zeroes;
85}
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +000086
Uwe Hermanne4870472010-11-04 23:23:47 +000087u32 pci_moving_config32(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000088{
Myles Watson29cc9ed2009-07-02 18:56:24 +000089 u32 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000090
Eric Biederman03acab62004-10-14 21:25:53 +000091 value = pci_read_config32(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000092
Eric Biederman03acab62004-10-14 21:25:53 +000093 pci_write_config32(dev, reg, 0xffffffff);
94 ones = pci_read_config32(dev, reg);
95
96 pci_write_config32(dev, reg, 0x00000000);
97 zeroes = pci_read_config32(dev, reg);
98
99 pci_write_config32(dev, reg, value);
100
101 return ones ^ zeroes;
102}
103
Myles Watson29cc9ed2009-07-02 18:56:24 +0000104/**
105 * Given a device, a capability type, and a last position, return the next
106 * matching capability. Always start at the head of the list.
107 *
108 * @param dev Pointer to the device structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000109 * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000110 * @param last Location of the PCI capability register to start from.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000111 * @return The next matching capability.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000112 */
113unsigned pci_find_next_capability(struct device *dev, unsigned cap,
114 unsigned last)
Eric Biederman03acab62004-10-14 21:25:53 +0000115{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +0000116 unsigned pos = 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000117 u16 status;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000118 unsigned reps = 48;
Stefan Reinauer4d933dd2009-07-21 21:36:41 +0000119
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000120 status = pci_read_config16(dev, PCI_STATUS);
Uwe Hermanne4870472010-11-04 23:23:47 +0000121 if (!(status & PCI_STATUS_CAP_LIST))
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000122 return 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000123
Myles Watson29cc9ed2009-07-02 18:56:24 +0000124 switch (dev->hdr_type & 0x7f) {
Eric Biederman03acab62004-10-14 21:25:53 +0000125 case PCI_HEADER_TYPE_NORMAL:
126 case PCI_HEADER_TYPE_BRIDGE:
127 pos = PCI_CAPABILITY_LIST;
128 break;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000129 case PCI_HEADER_TYPE_CARDBUS:
130 pos = PCI_CB_CAPABILITY_LIST;
131 break;
132 default:
133 return 0;
Eric Biederman03acab62004-10-14 21:25:53 +0000134 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000135
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000136 pos = pci_read_config8(dev, pos);
Uwe Hermanne4870472010-11-04 23:23:47 +0000137 while (reps-- && (pos >= 0x40)) { /* Loop through the linked list. */
Eric Biederman03acab62004-10-14 21:25:53 +0000138 int this_cap;
Uwe Hermanne4870472010-11-04 23:23:47 +0000139
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000140 pos &= ~3;
Eric Biederman03acab62004-10-14 21:25:53 +0000141 this_cap = pci_read_config8(dev, pos + PCI_CAP_LIST_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000142 printk(BIOS_SPEW, "Capability: type 0x%02x @ 0x%02x\n",
143 this_cap, pos);
144 if (this_cap == 0xff)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000145 break;
Uwe Hermanne4870472010-11-04 23:23:47 +0000146
147 if (!last && (this_cap == cap))
Eric Biederman03acab62004-10-14 21:25:53 +0000148 return pos;
Uwe Hermanne4870472010-11-04 23:23:47 +0000149
150 if (last == pos)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000151 last = 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000152
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000153 pos = pci_read_config8(dev, pos + PCI_CAP_LIST_NEXT);
Eric Biederman03acab62004-10-14 21:25:53 +0000154 }
155 return 0;
156}
157
Myles Watson29cc9ed2009-07-02 18:56:24 +0000158/**
159 * Given a device, and a capability type, return the next matching
160 * capability. Always start at the head of the list.
161 *
162 * @param dev Pointer to the device structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000163 * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
164 * @return The next matching capability.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000165 */
Aaron Durbinc30d9132017-08-07 16:55:43 -0600166unsigned int pci_find_capability(struct device *dev, unsigned int cap)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000167{
168 return pci_find_next_capability(dev, cap, 0);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000169}
170
Myles Watson29cc9ed2009-07-02 18:56:24 +0000171/**
172 * Given a device and register, read the size of the BAR for that register.
173 *
174 * @param dev Pointer to the device structure.
175 * @param index Address of the PCI configuration register.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000176 * @return TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +0000177 */
Eric Biederman03acab62004-10-14 21:25:53 +0000178struct resource *pci_get_resource(struct device *dev, unsigned long index)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000179{
Eric Biederman5cd81732004-03-11 15:01:31 +0000180 struct resource *resource;
Eric Biederman03acab62004-10-14 21:25:53 +0000181 unsigned long value, attr;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000182 resource_t moving, limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000183
Myles Watson29cc9ed2009-07-02 18:56:24 +0000184 /* Initialize the resources to nothing. */
Eric Biederman03acab62004-10-14 21:25:53 +0000185 resource = new_resource(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000186
Myles Watson29cc9ed2009-07-02 18:56:24 +0000187 /* Get the initial value. */
Eric Biederman03acab62004-10-14 21:25:53 +0000188 value = pci_read_config32(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000189
Myles Watson29cc9ed2009-07-02 18:56:24 +0000190 /* See which bits move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000191 moving = pci_moving_config32(dev, index);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000192
Myles Watson29cc9ed2009-07-02 18:56:24 +0000193 /* Initialize attr to the bits that do not move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000194 attr = value & ~moving;
195
Myles Watson29cc9ed2009-07-02 18:56:24 +0000196 /* If it is a 64bit resource look at the high half as well. */
Eric Biederman03acab62004-10-14 21:25:53 +0000197 if (((attr & PCI_BASE_ADDRESS_SPACE_IO) == 0) &&
Myles Watson29cc9ed2009-07-02 18:56:24 +0000198 ((attr & PCI_BASE_ADDRESS_MEM_LIMIT_MASK) ==
199 PCI_BASE_ADDRESS_MEM_LIMIT_64)) {
200 /* Find the high bits that move. */
201 moving |=
202 ((resource_t) pci_moving_config32(dev, index + 4)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000203 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000204
Myles Watson032a9652009-05-11 22:24:53 +0000205 /* Find the resource constraints.
Eric Biederman03acab62004-10-14 21:25:53 +0000206 * Start by finding the bits that move. From there:
207 * - Size is the least significant bit of the bits that move.
208 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000209 * See PCI Spec 6.2.5.1.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000210 */
Eric Biederman03acab62004-10-14 21:25:53 +0000211 limit = 0;
212 if (moving) {
213 resource->size = 1;
214 resource->align = resource->gran = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000215 while (!(moving & resource->size)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000216 resource->size <<= 1;
217 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000218 resource->gran += 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000219 }
220 resource->limit = limit = moving | (resource->size - 1);
Nico Huber8193b062015-10-21 15:43:41 +0200221
222 if (pci_base_address_is_memory_space(attr)) {
223 /* Page-align to allow individual mapping of devices. */
224 if (resource->align < 12)
225 resource->align = 12;
226 }
Eric Biederman03acab62004-10-14 21:25:53 +0000227 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000228
Uwe Hermanne4870472010-11-04 23:23:47 +0000229 /*
230 * Some broken hardware has read-only registers that do not
Eric Biederman03acab62004-10-14 21:25:53 +0000231 * really size correctly.
Uwe Hermanne4870472010-11-04 23:23:47 +0000232 *
233 * Example: the Acer M7229 has BARs 1-4 normally read-only,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000234 * so BAR1 at offset 0x10 reads 0x1f1. If you size that register
Uwe Hermanne4870472010-11-04 23:23:47 +0000235 * by writing 0xffffffff to it, it will read back as 0x1f1 -- which
236 * is a violation of the spec.
237 *
238 * We catch this case and ignore it by observing which bits move.
239 *
240 * This also catches the common case of unimplemented registers
Eric Biederman03acab62004-10-14 21:25:53 +0000241 * that always read back as 0.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000242 */
Eric Biederman03acab62004-10-14 21:25:53 +0000243 if (moving == 0) {
244 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000245 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
246 "read-only ignoring it\n",
247 dev_path(dev), index, value);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000248 }
249 resource->flags = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000250 } else if (attr & PCI_BASE_ADDRESS_SPACE_IO) {
251 /* An I/O mapped base address. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000252 resource->flags |= IORESOURCE_IO;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000253 /* I don't want to deal with 32bit I/O resources. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000254 resource->limit = 0xffff;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000255 } else {
256 /* A Memory mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000257 attr &= PCI_BASE_ADDRESS_MEM_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000258 resource->flags |= IORESOURCE_MEM;
Uwe Hermanne4870472010-11-04 23:23:47 +0000259 if (attr & PCI_BASE_ADDRESS_MEM_PREFETCH)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000260 resource->flags |= IORESOURCE_PREFETCH;
Eric Biederman03acab62004-10-14 21:25:53 +0000261 attr &= PCI_BASE_ADDRESS_MEM_LIMIT_MASK;
262 if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_32) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000263 /* 32bit limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000264 resource->limit = 0xffffffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000265 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_1M) {
266 /* 1MB limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000267 resource->limit = 0x000fffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000268 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_64) {
269 /* 64bit limit. */
Eric Biederman03acab62004-10-14 21:25:53 +0000270 resource->limit = 0xffffffffffffffffULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000271 resource->flags |= IORESOURCE_PCI64;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000272 } else {
273 /* Invalid value. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000274 printk(BIOS_ERR, "Broken BAR with value %lx\n", attr);
275 printk(BIOS_ERR, " on dev %s at index %02lx\n",
Myles Watson29cc9ed2009-07-02 18:56:24 +0000276 dev_path(dev), index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000277 resource->flags = 0;
278 }
279 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000280
Myles Watson29cc9ed2009-07-02 18:56:24 +0000281 /* Don't let the limit exceed which bits can move. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000282 if (resource->limit > limit)
Eric Biederman03acab62004-10-14 21:25:53 +0000283 resource->limit = limit;
Eric Biederman03acab62004-10-14 21:25:53 +0000284
Eric Biederman5cd81732004-03-11 15:01:31 +0000285 return resource;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000286}
287
Myles Watson29cc9ed2009-07-02 18:56:24 +0000288/**
289 * Given a device and an index, read the size of the BAR for that register.
290 *
291 * @param dev Pointer to the device structure.
292 * @param index Address of the PCI configuration register.
293 */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000294static void pci_get_rom_resource(struct device *dev, unsigned long index)
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000295{
296 struct resource *resource;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000297 unsigned long value;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000298 resource_t moving;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000299
Myles Watson29cc9ed2009-07-02 18:56:24 +0000300 /* Initialize the resources to nothing. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000301 resource = new_resource(dev, index);
302
Myles Watson29cc9ed2009-07-02 18:56:24 +0000303 /* Get the initial value. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000304 value = pci_read_config32(dev, index);
305
Myles Watson29cc9ed2009-07-02 18:56:24 +0000306 /* See which bits move. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000307 moving = pci_moving_config32(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000308
309 /* Clear the Enable bit. */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000310 moving = moving & ~PCI_ROM_ADDRESS_ENABLE;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000311
Myles Watson032a9652009-05-11 22:24:53 +0000312 /* Find the resource constraints.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000313 * Start by finding the bits that move. From there:
314 * - Size is the least significant bit of the bits that move.
315 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000316 * See PCI Spec 6.2.5.1.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000317 */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000318 if (moving) {
319 resource->size = 1;
320 resource->align = resource->gran = 0;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000321 while (!(moving & resource->size)) {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000322 resource->size <<= 1;
323 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000324 resource->gran += 1;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000325 }
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000326 resource->limit = moving | (resource->size - 1);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000327 resource->flags |= IORESOURCE_MEM | IORESOURCE_READONLY;
328 } else {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000329 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000330 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
331 "read-only ignoring it\n",
332 dev_path(dev), index, value);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000333 }
334 resource->flags = 0;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000335 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000336 compact_resources(dev);
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000337}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000338
Myles Watson29cc9ed2009-07-02 18:56:24 +0000339/**
Patrick Rudolph4e2f95b2018-05-16 14:56:22 +0200340 * Given a device, read the size of the MSI-X table.
341 *
342 * @param dev Pointer to the device structure.
343 * @return MSI-X table size or 0 if not MSI-X capable device
344 */
345size_t pci_msix_table_size(struct device *dev)
346{
347 const size_t pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
348 if (!pos)
349 return 0;
350
351 const u16 control = pci_read_config16(dev, pos + PCI_MSIX_FLAGS);
352 return (control & PCI_MSIX_FLAGS_QSIZE) + 1;
353}
354
355/**
356 * Given a device, return the table offset and bar the MSI-X tables resides in.
357 *
358 * @param dev Pointer to the device structure.
359 * @param offset Returned value gives the offset in bytes inside the PCI BAR.
360 * @param idx The returned value is the index of the PCI_BASE_ADDRESS register
361 * the MSI-X table is located in.
362 * @return Zero on success
363 */
364int pci_msix_table_bar(struct device *dev, u32 *offset, u8 *idx)
365{
366 const size_t pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
367 if (!pos || !offset || !idx)
368 return 1;
369
370 *offset = pci_read_config32(dev, pos + PCI_MSIX_TABLE);
371 *idx = (u8)(*offset & PCI_MSIX_PBA_BIR);
372 *offset &= PCI_MSIX_PBA_OFFSET;
373
374 return 0;
375}
376
377/**
378 * Given a device, return a msix_entry pointer or NULL if no table was found.
379 *
380 * @param dev Pointer to the device structure.
381 *
382 * @return NULL on error
383 */
384struct msix_entry *pci_msix_get_table(struct device *dev)
385{
386 struct resource *res;
387 u32 offset;
388 u8 idx;
389
390 if (pci_msix_table_bar(dev, &offset, &idx))
391 return NULL;
392
393 if (idx > 5)
394 return NULL;
395
396 res = probe_resource(dev, idx * 4 + PCI_BASE_ADDRESS_0);
397 if (!res || !res->base || offset >= res->size)
398 return NULL;
399
400 if ((res->flags & IORESOURCE_PCI64) &&
401 (uintptr_t)res->base != res->base)
402 return NULL;
403
404 return (struct msix_entry *)((uintptr_t)res->base + offset);
405}
406
407/**
Myles Watson29cc9ed2009-07-02 18:56:24 +0000408 * Read the base address registers for a given device.
409 *
410 * @param dev Pointer to the dev structure.
411 * @param howmany How many registers to read (6 for device, 2 for bridge).
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000412 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000413static void pci_read_bases(struct device *dev, unsigned int howmany)
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000414{
415 unsigned long index;
416
Myles Watson29cc9ed2009-07-02 18:56:24 +0000417 for (index = PCI_BASE_ADDRESS_0;
418 (index < PCI_BASE_ADDRESS_0 + (howmany << 2));) {
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000419 struct resource *resource;
420 resource = pci_get_resource(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000421 index += (resource->flags & IORESOURCE_PCI64) ? 8 : 4;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000422 }
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000423
424 compact_resources(dev);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000425}
426
Myles Watson29cc9ed2009-07-02 18:56:24 +0000427static void pci_record_bridge_resource(struct device *dev, resource_t moving,
428 unsigned index, unsigned long type)
Eric Biederman03acab62004-10-14 21:25:53 +0000429{
Eric Biederman03acab62004-10-14 21:25:53 +0000430 struct resource *resource;
Uwe Hermanne4870472010-11-04 23:23:47 +0000431 unsigned long gran;
432 resource_t step;
433
Myles Watson29cc9ed2009-07-02 18:56:24 +0000434 resource = NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000435
436 if (!moving)
437 return;
438
439 /* Initialize the constraints on the current bus. */
440 resource = new_resource(dev, index);
441 resource->size = 0;
442 gran = 0;
443 step = 1;
444 while ((moving & step) == 0) {
445 gran += 1;
446 step <<= 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000447 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000448 resource->gran = gran;
449 resource->align = gran;
450 resource->limit = moving | (step - 1);
451 resource->flags = type | IORESOURCE_PCI_BRIDGE |
452 IORESOURCE_BRIDGE;
Eric Biederman03acab62004-10-14 21:25:53 +0000453}
454
Eric Biederman8ca8d762003-04-22 19:02:15 +0000455static void pci_bridge_read_bases(struct device *dev)
456{
Eric Biederman03acab62004-10-14 21:25:53 +0000457 resource_t moving_base, moving_limit, moving;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000458
Myles Watson29cc9ed2009-07-02 18:56:24 +0000459 /* See if the bridge I/O resources are implemented. */
460 moving_base = ((u32) pci_moving_config8(dev, PCI_IO_BASE)) << 8;
461 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000462 ((u32) pci_moving_config16(dev, PCI_IO_BASE_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000463
Myles Watson29cc9ed2009-07-02 18:56:24 +0000464 moving_limit = ((u32) pci_moving_config8(dev, PCI_IO_LIMIT)) << 8;
465 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000466 ((u32) pci_moving_config16(dev, PCI_IO_LIMIT_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000467
468 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000469
Myles Watson29cc9ed2009-07-02 18:56:24 +0000470 /* Initialize the I/O space constraints on the current bus. */
471 pci_record_bridge_resource(dev, moving, PCI_IO_BASE, IORESOURCE_IO);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000472
Myles Watson29cc9ed2009-07-02 18:56:24 +0000473 /* See if the bridge prefmem resources are implemented. */
474 moving_base =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000475 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_BASE)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000476 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000477 ((resource_t) pci_moving_config32(dev, PCI_PREF_BASE_UPPER32)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000478
Myles Watson29cc9ed2009-07-02 18:56:24 +0000479 moving_limit =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000480 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_LIMIT)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000481 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000482 ((resource_t) pci_moving_config32(dev, PCI_PREF_LIMIT_UPPER32)) << 32;
Myles Watson032a9652009-05-11 22:24:53 +0000483
Eric Biederman03acab62004-10-14 21:25:53 +0000484 moving = moving_base & moving_limit;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000485 /* Initialize the prefetchable memory constraints on the current bus. */
486 pci_record_bridge_resource(dev, moving, PCI_PREF_MEMORY_BASE,
487 IORESOURCE_MEM | IORESOURCE_PREFETCH);
Myles Watson032a9652009-05-11 22:24:53 +0000488
Myles Watson29cc9ed2009-07-02 18:56:24 +0000489 /* See if the bridge mem resources are implemented. */
490 moving_base = ((u32) pci_moving_config16(dev, PCI_MEMORY_BASE)) << 16;
491 moving_limit = ((u32) pci_moving_config16(dev, PCI_MEMORY_LIMIT)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000492
493 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000494
Myles Watson29cc9ed2009-07-02 18:56:24 +0000495 /* Initialize the memory resources on the current bus. */
496 pci_record_bridge_resource(dev, moving, PCI_MEMORY_BASE,
497 IORESOURCE_MEM);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000498
Eric Biederman5cd81732004-03-11 15:01:31 +0000499 compact_resources(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000500}
501
Eric Biederman5899fd82003-04-24 06:25:08 +0000502void pci_dev_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000503{
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000504 pci_read_bases(dev, 6);
505 pci_get_rom_resource(dev, PCI_ROM_ADDRESS);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000506}
507
Eric Biederman5899fd82003-04-24 06:25:08 +0000508void pci_bus_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000509{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000510 pci_bridge_read_bases(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000511 pci_read_bases(dev, 2);
512 pci_get_rom_resource(dev, PCI_ROM_ADDRESS1);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000513}
514
Myles Watson29cc9ed2009-07-02 18:56:24 +0000515void pci_domain_read_resources(struct device *dev)
516{
517 struct resource *res;
518
519 /* Initialize the system-wide I/O space constraints. */
520 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
521 res->limit = 0xffffUL;
522 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
523 IORESOURCE_ASSIGNED;
524
525 /* Initialize the system-wide memory resources constraints. */
526 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
527 res->limit = 0xffffffffULL;
528 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
529 IORESOURCE_ASSIGNED;
530}
531
Eric Biederman8ca8d762003-04-22 19:02:15 +0000532static void pci_set_resource(struct device *dev, struct resource *resource)
533{
Eric Biederman03acab62004-10-14 21:25:53 +0000534 resource_t base, end;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000535
Myles Watson29cc9ed2009-07-02 18:56:24 +0000536 /* Make certain the resource has actually been assigned a value. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000537 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000538 printk(BIOS_ERR, "ERROR: %s %02lx %s size: 0x%010llx not "
539 "assigned\n", dev_path(dev), resource->index,
540 resource_type(resource), resource->size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000541 return;
542 }
543
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000544 /* If this resource is fixed don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000545 if (resource->flags & IORESOURCE_FIXED)
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000546 return;
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000547
Myles Watson29cc9ed2009-07-02 18:56:24 +0000548 /* If I have already stored this resource don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000549 if (resource->flags & IORESOURCE_STORED)
Eric Biederman5cd81732004-03-11 15:01:31 +0000550 return;
Eric Biederman5cd81732004-03-11 15:01:31 +0000551
Myles Watson29cc9ed2009-07-02 18:56:24 +0000552 /* If the resource is subtractive don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000553 if (resource->flags & IORESOURCE_SUBTRACTIVE)
Eric Biederman03acab62004-10-14 21:25:53 +0000554 return;
Eric Biederman03acab62004-10-14 21:25:53 +0000555
Myles Watson29cc9ed2009-07-02 18:56:24 +0000556 /* Only handle PCI memory and I/O resources for now. */
557 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Eric Biederman8ca8d762003-04-22 19:02:15 +0000558 return;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000559
Myles Watson29cc9ed2009-07-02 18:56:24 +0000560 /* Enable the resources in the command register. */
Eric Biederman03acab62004-10-14 21:25:53 +0000561 if (resource->size) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000562 if (resource->flags & IORESOURCE_MEM)
Eric Biederman03acab62004-10-14 21:25:53 +0000563 dev->command |= PCI_COMMAND_MEMORY;
Uwe Hermanne4870472010-11-04 23:23:47 +0000564 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000565 dev->command |= PCI_COMMAND_IO;
Uwe Hermanne4870472010-11-04 23:23:47 +0000566 if (resource->flags & IORESOURCE_PCI_BRIDGE)
Eric Biederman03acab62004-10-14 21:25:53 +0000567 dev->command |= PCI_COMMAND_MASTER;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000568 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000569
Myles Watson29cc9ed2009-07-02 18:56:24 +0000570 /* Get the base address. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000571 base = resource->base;
Eric Biederman5cd81732004-03-11 15:01:31 +0000572
Myles Watson29cc9ed2009-07-02 18:56:24 +0000573 /* Get the end. */
Eric Biederman03acab62004-10-14 21:25:53 +0000574 end = resource_end(resource);
Myles Watson032a9652009-05-11 22:24:53 +0000575
Myles Watson29cc9ed2009-07-02 18:56:24 +0000576 /* Now store the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000577 resource->flags |= IORESOURCE_STORED;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000578
Uwe Hermanne4870472010-11-04 23:23:47 +0000579 /*
580 * PCI bridges have no enable bit. They are disabled if the base of
581 * the range is greater than the limit. If the size is zero, disable
Myles Watson29cc9ed2009-07-02 18:56:24 +0000582 * by setting the base = limit and end = limit - 2^gran.
583 */
584 if (resource->size == 0 && (resource->flags & IORESOURCE_PCI_BRIDGE)) {
585 base = resource->limit;
586 end = resource->limit - (1 << resource->gran);
587 resource->base = base;
588 }
589
Eric Biederman8ca8d762003-04-22 19:02:15 +0000590 if (!(resource->flags & IORESOURCE_PCI_BRIDGE)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000591 unsigned long base_lo, base_hi;
Uwe Hermanne4870472010-11-04 23:23:47 +0000592
593 /*
594 * Some chipsets allow us to set/clear the I/O bit
595 * (e.g. VIA 82C686A). So set it to be safe.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000596 */
Eric Biederman03acab62004-10-14 21:25:53 +0000597 base_lo = base & 0xffffffff;
598 base_hi = (base >> 32) & 0xffffffff;
Uwe Hermanne4870472010-11-04 23:23:47 +0000599 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000600 base_lo |= PCI_BASE_ADDRESS_SPACE_IO;
Eric Biederman03acab62004-10-14 21:25:53 +0000601 pci_write_config32(dev, resource->index, base_lo);
Uwe Hermanne4870472010-11-04 23:23:47 +0000602 if (resource->flags & IORESOURCE_PCI64)
Eric Biederman03acab62004-10-14 21:25:53 +0000603 pci_write_config32(dev, resource->index + 4, base_hi);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000604 } else if (resource->index == PCI_IO_BASE) {
605 /* Set the I/O ranges. */
606 pci_write_config8(dev, PCI_IO_BASE, base >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000607 pci_write_config16(dev, PCI_IO_BASE_UPPER16, base >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000608 pci_write_config8(dev, PCI_IO_LIMIT, end >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000609 pci_write_config16(dev, PCI_IO_LIMIT_UPPER16, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000610 } else if (resource->index == PCI_MEMORY_BASE) {
611 /* Set the memory range. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000612 pci_write_config16(dev, PCI_MEMORY_BASE, base >> 16);
Eric Biederman03acab62004-10-14 21:25:53 +0000613 pci_write_config16(dev, PCI_MEMORY_LIMIT, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000614 } else if (resource->index == PCI_PREF_MEMORY_BASE) {
615 /* Set the prefetchable memory range. */
Eric Biederman03acab62004-10-14 21:25:53 +0000616 pci_write_config16(dev, PCI_PREF_MEMORY_BASE, base >> 16);
617 pci_write_config32(dev, PCI_PREF_BASE_UPPER32, base >> 32);
618 pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, end >> 16);
619 pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, end >> 32);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000620 } else {
621 /* Don't let me think I stored the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000622 resource->flags &= ~IORESOURCE_STORED;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000623 printk(BIOS_ERR, "ERROR: invalid resource->index %lx\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000624 resource->index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000625 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000626
Eric Biederman03acab62004-10-14 21:25:53 +0000627 report_resource_stored(dev, resource, "");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000628}
629
Eric Biederman5899fd82003-04-24 06:25:08 +0000630void pci_dev_set_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000631{
Myles Watsonc25cc112010-05-21 14:33:48 +0000632 struct resource *res;
Myles Watson894a3472010-06-09 22:41:35 +0000633 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000634 u8 line;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000635
Uwe Hermanne4870472010-11-04 23:23:47 +0000636 for (res = dev->resource_list; res; res = res->next)
Myles Watsonc25cc112010-05-21 14:33:48 +0000637 pci_set_resource(dev, res);
Uwe Hermanne4870472010-11-04 23:23:47 +0000638
Myles Watson894a3472010-06-09 22:41:35 +0000639 for (bus = dev->link_list; bus; bus = bus->next) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000640 if (bus->children)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000641 assign_resources(bus);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000642 }
643
Myles Watson29cc9ed2009-07-02 18:56:24 +0000644 /* Set a default latency timer. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000645 pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000646
Myles Watson29cc9ed2009-07-02 18:56:24 +0000647 /* Set a default secondary latency timer. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000648 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000649 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000650
Myles Watson29cc9ed2009-07-02 18:56:24 +0000651 /* Zero the IRQ settings. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000652 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Uwe Hermanne4870472010-11-04 23:23:47 +0000653 if (line)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000654 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
Uwe Hermanne4870472010-11-04 23:23:47 +0000655
Myles Watson29cc9ed2009-07-02 18:56:24 +0000656 /* Set the cache line size, so far 64 bytes is good for everyone. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000657 pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000658}
659
Eric Biedermane9a271e32003-09-02 03:36:25 +0000660void pci_dev_enable_resources(struct device *dev)
661{
Eric Biedermana9e632c2004-11-18 22:38:08 +0000662 const struct pci_operations *ops;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000663 u16 command;
Eric Biederman03acab62004-10-14 21:25:53 +0000664
Uwe Hermanne4870472010-11-04 23:23:47 +0000665 /* Set the subsystem vendor and device ID for mainboard devices. */
Eric Biederman03acab62004-10-14 21:25:53 +0000666 ops = ops_pci(dev);
Eric Biedermandbec2d42004-10-21 10:44:08 +0000667 if (dev->on_mainboard && ops && ops->set_subsystem) {
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700668 if (CONFIG_SUBSYSTEM_VENDOR_ID)
669 dev->subsystem_vendor = CONFIG_SUBSYSTEM_VENDOR_ID;
Rizwan Qureshifd891292017-04-26 21:00:37 +0530670 else if (!dev->subsystem_vendor)
671 dev->subsystem_vendor = pci_read_config16(dev,
672 PCI_VENDOR_ID);
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700673 if (CONFIG_SUBSYSTEM_DEVICE_ID)
674 dev->subsystem_device = CONFIG_SUBSYSTEM_DEVICE_ID;
Rizwan Qureshifd891292017-04-26 21:00:37 +0530675 else if (!dev->subsystem_device)
676 dev->subsystem_device = pci_read_config16(dev,
677 PCI_DEVICE_ID);
678
Sven Schnelle91321022011-03-01 19:58:47 +0000679 printk(BIOS_DEBUG, "%s subsystem <- %04x/%04x\n",
680 dev_path(dev), dev->subsystem_vendor,
681 dev->subsystem_device);
682 ops->set_subsystem(dev, dev->subsystem_vendor,
683 dev->subsystem_device);
Eric Biederman03acab62004-10-14 21:25:53 +0000684 }
Eric Biedermane9a271e32003-09-02 03:36:25 +0000685 command = pci_read_config16(dev, PCI_COMMAND);
686 command |= dev->command;
Uwe Hermanne4870472010-11-04 23:23:47 +0000687
Myles Watson29cc9ed2009-07-02 18:56:24 +0000688 /* v3 has
689 * command |= (PCI_COMMAND_PARITY + PCI_COMMAND_SERR); // Error check.
690 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000691
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000692 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000693 pci_write_config16(dev, PCI_COMMAND, command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000694}
695
Kyösti Mälkkie079e5c2019-01-23 16:15:48 +0200696void __noreturn pcidev_die(void)
697{
698 die("PCI: dev is NULL!\n");
699}
700
Eric Biedermane9a271e32003-09-02 03:36:25 +0000701void pci_bus_enable_resources(struct device *dev)
702{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000703 u16 ctrl;
704
Uwe Hermanne4870472010-11-04 23:23:47 +0000705 /*
706 * Enable I/O in command register if there is VGA card
Myles Watson29cc9ed2009-07-02 18:56:24 +0000707 * connected with (even it does not claim I/O resource).
708 */
Myles Watson894a3472010-06-09 22:41:35 +0000709 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
Li-Ta Lo515f6c72005-01-11 22:48:54 +0000710 dev->command |= PCI_COMMAND_IO;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000711 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +0000712 ctrl |= dev->link_list->bridge_ctrl;
Uwe Hermanne4870472010-11-04 23:23:47 +0000713 ctrl |= (PCI_BRIDGE_CTL_PARITY + PCI_BRIDGE_CTL_SERR); /* Error check. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000714 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000715 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
716
717 pci_dev_enable_resources(dev);
718}
719
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000720void pci_bus_reset(struct bus *bus)
721{
Uwe Hermanne4870472010-11-04 23:23:47 +0000722 u16 ctl;
723
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000724 ctl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
725 ctl |= PCI_BRIDGE_CTL_BUS_RESET;
726 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
727 mdelay(10);
Uwe Hermanne4870472010-11-04 23:23:47 +0000728
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000729 ctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
730 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
731 delay(1);
732}
733
Elyes HAOUAS88030b72018-09-20 17:26:10 +0200734void pci_dev_set_subsystem(struct device *dev, unsigned int vendor,
735 unsigned int device)
Eric Biederman03acab62004-10-14 21:25:53 +0000736{
Myles Watson032a9652009-05-11 22:24:53 +0000737 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
Myles Watson29cc9ed2009-07-02 18:56:24 +0000738 ((device & 0xffff) << 16) | (vendor & 0xffff));
Eric Biederman03acab62004-10-14 21:25:53 +0000739}
740
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300741static int should_run_oprom(struct device *dev)
742{
743 static int should_run = -1;
744
745 if (should_run >= 0)
746 return should_run;
747
Julius Wernercd49cce2019-03-05 16:53:33 -0800748 if (CONFIG(ALWAYS_RUN_OPROM)) {
Aaron Durbin10510252018-01-30 10:04:02 -0700749 should_run = 1;
750 return should_run;
751 }
752
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200753 /* Don't run VGA option ROMs, unless we have to print
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300754 * something on the screen before the kernel is loaded.
755 */
Furquan Shaikh0325dc62016-07-25 13:02:36 -0700756 should_run = display_init_required();
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300757
Julius Wernercd49cce2019-03-05 16:53:33 -0800758 if (!should_run && CONFIG(CHROMEOS))
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200759 should_run = vboot_wants_oprom();
Aaron Durbinfbed9a52018-01-30 09:58:51 -0700760
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200761 if (!should_run)
762 printk(BIOS_DEBUG, "Not running VGA Option ROM\n");
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300763 return should_run;
764}
765
766static int should_load_oprom(struct device *dev)
767{
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300768 /* If S3_VGA_ROM_RUN is disabled, skip running VGA option
769 * ROMs when coming out of an S3 resume.
770 */
Julius Wernercd49cce2019-03-05 16:53:33 -0800771 if (!CONFIG(S3_VGA_ROM_RUN) && acpi_is_wakeup_s3() &&
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300772 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
773 return 0;
Julius Wernercd49cce2019-03-05 16:53:33 -0800774 if (CONFIG(ALWAYS_LOAD_OPROM))
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300775 return 1;
776 if (should_run_oprom(dev))
777 return 1;
778
779 return 0;
780}
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300781
Uwe Hermanne4870472010-11-04 23:23:47 +0000782/** Default handler: only runs the relevant PCI BIOS. */
Li-Ta Lo883b8792005-01-10 23:16:22 +0000783void pci_dev_init(struct device *dev)
784{
785 struct rom_header *rom, *ram;
786
Julius Wernercd49cce2019-03-05 16:53:33 -0800787 if (!CONFIG(VGA_ROM_RUN))
Aaron Durbinfbed9a52018-01-30 09:58:51 -0700788 return;
789
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100790 /* Only execute VGA ROMs. */
791 if (((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
Myles Watson17aeeca2009-10-07 18:41:08 +0000792 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000793
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300794 if (!should_load_oprom(dev))
Stefan Reinauer74a0efe2012-03-30 17:10:49 -0700795 return;
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700796 timestamp_add_now(TS_OPROM_INITIALIZE);
Aaron Durbince872cb2013-03-28 15:59:19 -0500797
798 rom = pci_rom_probe(dev);
799 if (rom == NULL)
800 return;
801
802 ram = pci_rom_load(dev, rom);
803 if (ram == NULL)
804 return;
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700805 timestamp_add_now(TS_OPROM_COPY_END);
Aaron Durbince872cb2013-03-28 15:59:19 -0500806
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300807 if (!should_run_oprom(dev))
808 return;
809
Stefan Reinauerd98cf5b2008-08-01 11:25:41 +0000810 run_bios(dev, (unsigned long)ram);
Kyösti Mälkkiab56b3b2013-11-28 16:44:51 +0200811 gfx_set_init_done(1);
812 printk(BIOS_DEBUG, "VGA Option ROM was run\n");
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700813 timestamp_add_now(TS_OPROM_END);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000814}
Li-Ta Lo883b8792005-01-10 23:16:22 +0000815
Li-Ta Loe5266692004-03-23 21:28:05 +0000816/** Default device operation for PCI devices */
Subrata Banikffc790b2017-12-11 10:29:49 +0530817struct pci_operations pci_dev_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000818 .set_subsystem = pci_dev_set_subsystem,
819};
820
Eric Biederman8ca8d762003-04-22 19:02:15 +0000821struct device_operations default_pci_ops_dev = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000822 .read_resources = pci_dev_read_resources,
823 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000824 .enable_resources = pci_dev_enable_resources,
Julius Wernercd49cce2019-03-05 16:53:33 -0800825#if CONFIG(HAVE_ACPI_TABLES)
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200826 .write_acpi_tables = pci_rom_write_acpi_tables,
Patrick Rudolph00c0cd22017-06-06 19:30:55 +0200827 .acpi_fill_ssdt_generator = pci_rom_ssdt,
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200828#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000829 .init = pci_dev_init,
830 .scan_bus = 0,
831 .enable = 0,
832 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000833};
Li-Ta Loe5266692004-03-23 21:28:05 +0000834
835/** Default device operations for PCI bridges */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000836static struct pci_operations pci_bus_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000837 .set_subsystem = 0,
838};
Li-Ta Lo883b8792005-01-10 23:16:22 +0000839
Eric Biederman8ca8d762003-04-22 19:02:15 +0000840struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000841 .read_resources = pci_bus_read_resources,
842 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000843 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000844 .init = 0,
845 .scan_bus = pci_scan_bridge,
846 .enable = 0,
847 .reset_bus = pci_bus_reset,
848 .ops_pci = &pci_bus_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000849};
Li-Ta Loe5266692004-03-23 21:28:05 +0000850
851/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000852 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000853 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000854 * This function is a heuristic to detect which type of bus is downstream
855 * of a PCI-to-PCI bridge. This functions by looking for various capability
856 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
857 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000858 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000859 * When only a PCI-Express capability is found the type is examined to see
860 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000861 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000862 * @param dev Pointer to the device structure of the bridge.
863 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000864 */
Aaron Durbinc30d9132017-08-07 16:55:43 -0600865static struct device_operations *get_pci_bridge_ops(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000866{
Julius Wernercd49cce2019-03-05 16:53:33 -0800867#if CONFIG(PCIX_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800868 unsigned int pcixpos;
869 pcixpos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
870 if (pcixpos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000871 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000872 return &default_pcix_ops_bus;
873 }
874#endif
Julius Wernercd49cce2019-03-05 16:53:33 -0800875#if CONFIG(HYPERTRANSPORT_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800876 unsigned int htpos = 0;
877 while ((htpos = pci_find_next_capability(dev, PCI_CAP_ID_HT, htpos))) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000878 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800879 flags = pci_read_config16(dev, htpos + PCI_CAP_FLAGS);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000880 if ((flags >> 13) == 1) {
881 /* Host or Secondary Interface */
Uwe Hermanne4870472010-11-04 23:23:47 +0000882 printk(BIOS_DEBUG, "%s subordinate bus HT\n",
883 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000884 return &default_ht_ops_bus;
885 }
886 }
887#endif
Julius Wernercd49cce2019-03-05 16:53:33 -0800888#if CONFIG(PCIEXP_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800889 unsigned int pciexpos;
890 pciexpos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
891 if (pciexpos) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000892 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800893 flags = pci_read_config16(dev, pciexpos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000894 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000895 case PCI_EXP_TYPE_ROOT_PORT:
896 case PCI_EXP_TYPE_UPSTREAM:
897 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000898 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000899 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000900 return &default_pciexp_ops_bus;
901 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +0000902 printk(BIOS_DEBUG, "%s subordinate PCI\n",
903 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000904 return &default_pci_ops_bus;
905 default:
906 break;
907 }
908 }
909#endif
910 return &default_pci_ops_bus;
911}
912
913/**
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700914 * Check if a device id matches a PCI driver entry.
915 *
916 * The driver entry can either point at a zero terminated array of acceptable
917 * device IDs, or include a single device ID.
918 *
Martin Roth98b698c2015-01-06 21:02:52 -0700919 * @param driver pointer to the PCI driver entry being checked
920 * @param device_id PCI device ID of the device being matched
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700921 */
922static int device_id_match(struct pci_driver *driver, unsigned short device_id)
923{
924 if (driver->devices) {
925 unsigned short check_id;
926 const unsigned short *device_list = driver->devices;
927 while ((check_id = *device_list++) != 0)
928 if (check_id == device_id)
929 return 1;
930 }
931
932 return (driver->device == device_id);
933}
934
935/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000936 * Set up PCI device operation.
937 *
938 * Check if it already has a driver. If not, use find_device_operations(),
939 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +0000940 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000941 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +0000942 * @see pci_drivers
943 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000944static void set_pci_ops(struct device *dev)
945{
946 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +0000947
Uwe Hermanne4870472010-11-04 23:23:47 +0000948 if (dev->ops)
949 return;
950
951 /*
952 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +0000953 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000954 */
Aaron Durbin03758152015-09-03 17:23:08 -0500955 for (driver = &_pci_drivers[0]; driver != &_epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000956 if ((driver->vendor == dev->vendor) &&
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700957 device_id_match(driver, dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +0000958 dev->ops = (struct device_operations *)driver->ops;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000959 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000960 dev_path(dev), driver->vendor, driver->device,
961 (driver->ops->scan_bus ? "bus " : ""));
Eric Biederman5899fd82003-04-24 06:25:08 +0000962 return;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000963 }
964 }
Li-Ta Loe5266692004-03-23 21:28:05 +0000965
Uwe Hermanne4870472010-11-04 23:23:47 +0000966 /* If I don't have a specific driver use the default operations. */
967 switch (dev->hdr_type & 0x7f) { /* Header type */
968 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +0000969 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
970 goto bad;
971 dev->ops = &default_pci_ops_dev;
972 break;
973 case PCI_HEADER_TYPE_BRIDGE:
974 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
975 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000976 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000977 break;
Julius Wernercd49cce2019-03-05 16:53:33 -0800978#if CONFIG(CARDBUS_PLUGIN_SUPPORT)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000979 case PCI_HEADER_TYPE_CARDBUS:
980 dev->ops = &default_cardbus_ops_bus;
981 break;
982#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000983default:
984bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000985 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000986 printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "
987 "header type %02x, ignoring.\n", dev_path(dev),
988 dev->vendor, dev->device,
989 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +0000990 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000991 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000992}
993
994/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000995 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +0000996 *
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200997 * Given a PCI bus structure and a devfn number, find the device structure
998 * corresponding to the devfn, if present. Then move the device structure
999 * as the last child on the bus.
Li-Ta Loe5266692004-03-23 21:28:05 +00001000 *
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001001 * @param bus Pointer to the bus structure.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001002 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001003 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +00001004 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001005 */
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001006static struct device *pci_scan_get_dev(struct bus *bus, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001007{
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001008 struct device *dev, **prev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001009
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001010 prev = &bus->children;
1011 for (dev = bus->children; dev; dev = dev->sibling) {
1012 if (dev->path.type == DEVICE_PATH_PCI) {
1013 if (dev->path.pci.devfn == devfn) {
1014 /* Unlink from the list. */
1015 *prev = dev->sibling;
1016 dev->sibling = NULL;
1017 break;
1018 }
1019 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +00001020 printk(BIOS_ERR, "child %s not a PCI device\n",
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001021 dev_path(dev));
Eric Biedermanad1b35a2003-10-14 02:36:51 +00001022 }
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001023 prev = &dev->sibling;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001024 }
Myles Watson29cc9ed2009-07-02 18:56:24 +00001025
Uwe Hermanne4870472010-11-04 23:23:47 +00001026 /*
1027 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +00001028 * bus. When the list of devices was formed we removed all of the
1029 * parents children, and now we are interleaving static and dynamic
1030 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001031 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001032 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +00001033 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +00001034
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001035 /* Find the last child on the bus. */
1036 for (child = bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +00001037 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +00001038
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001039 /* Place the device as last on the bus. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001040 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +00001041 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001042 else
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001043 bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001044 }
1045
Eric Biederman8ca8d762003-04-22 19:02:15 +00001046 return dev;
1047}
1048
Myles Watson032a9652009-05-11 22:24:53 +00001049/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001050 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +00001051 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001052 * Determine the existence of a given PCI device. Allocate a new struct device
1053 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001054 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001055 * @param dev Pointer to the dev structure.
1056 * @param bus Pointer to the bus structure.
1057 * @param devfn A device/function number to look at.
1058 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001059 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001060struct device *pci_probe_dev(struct device *dev, struct bus *bus,
1061 unsigned int devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001062{
Myles Watson29cc9ed2009-07-02 18:56:24 +00001063 u32 id, class;
1064 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001065
Myles Watson29cc9ed2009-07-02 18:56:24 +00001066 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001067 if (!dev) {
1068 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +00001069
Myles Watson29cc9ed2009-07-02 18:56:24 +00001070 dummy.bus = bus;
1071 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +00001072 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +00001073
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001074 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +00001075 /*
1076 * Have we found something? Some broken boards return 0 if a
1077 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001078 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001079 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +00001080 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +00001081
Stefan Reinauer7355c752010-04-02 16:30:25 +00001082 if ((id == 0x00000000) || (id == 0x0000ffff) ||
1083 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001084 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
1085 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001086 return NULL;
1087 }
1088 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001089 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +00001090 /*
1091 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +00001092 * specific operations this operations we will disable the
1093 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +00001094 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001095 * This is geared toward devices that have subfunctions
1096 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +00001097 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001098 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +00001099 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001100 */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001101 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001102 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001103 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +00001104
Myles Watson29cc9ed2009-07-02 18:56:24 +00001105 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001106 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +00001107
Uwe Hermanne4870472010-11-04 23:23:47 +00001108 /*
1109 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +00001110 * this is because we have already disabled the device. But
1111 * this also handles optional devices that may not always
1112 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001113 */
1114 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001115 if ((id == 0xffffffff) || (id == 0x00000000) ||
1116 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001117 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001118 printk(BIOS_INFO, "PCI: Static device %s not "
1119 "found, disabling it.\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001120 dev->enabled = 0;
1121 }
1122 return dev;
1123 }
1124 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001125
Myles Watson29cc9ed2009-07-02 18:56:24 +00001126 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001127 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
1128 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +00001129
Myles Watson29cc9ed2009-07-02 18:56:24 +00001130 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001131 dev->vendor = id & 0xffff;
1132 dev->device = (id >> 16) & 0xffff;
1133 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001134
1135 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001136 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +00001137
Myles Watson29cc9ed2009-07-02 18:56:24 +00001138 /* Architectural/System devices always need to be bus masters. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001139 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001140 dev->command |= PCI_COMMAND_MASTER;
Uwe Hermanne4870472010-11-04 23:23:47 +00001141
1142 /*
1143 * Look at the vendor and device ID, or at least the header type and
Myles Watson29cc9ed2009-07-02 18:56:24 +00001144 * class and figure out which set of configuration methods to use.
1145 * Unless we already have some PCI ops.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001146 */
1147 set_pci_ops(dev);
1148
Myles Watson29cc9ed2009-07-02 18:56:24 +00001149 /* Now run the magic enable/disable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001150 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001151 dev->ops->enable(dev);
Myles Watson032a9652009-05-11 22:24:53 +00001152
Myles Watson29cc9ed2009-07-02 18:56:24 +00001153 /* Display the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001154 printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
1155 dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
1156 dev->ops ? "" : " No operations");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001157
1158 return dev;
1159}
1160
Myles Watson032a9652009-05-11 22:24:53 +00001161/**
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001162 * Test for match between romstage and ramstage device instance.
1163 *
1164 * @param dev Pointer to the device structure.
1165 * @param sdev Simple device model identifier, created with PCI_DEV().
1166 * @return Non-zero if bus:dev.fn of device matches.
1167 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001168unsigned int pci_match_simple_dev(struct device *dev, pci_devfn_t sdev)
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001169{
1170 return dev->bus->secondary == PCI_DEV2SEGBUS(sdev) &&
1171 dev->path.pci.devfn == PCI_DEV2DEVFN(sdev);
1172}
1173
1174/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001175 * Scan a PCI bus.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001176 *
Li-Ta Loe5266692004-03-23 21:28:05 +00001177 * Determine the existence of devices and bridges on a PCI bus. If there are
1178 * bridges on the bus, recursively scan the buses behind the bridges.
1179 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001180 * @param bus Pointer to the bus structure.
1181 * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1182 * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001183 */
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001184void pci_scan_bus(struct bus *bus, unsigned min_devfn,
1185 unsigned max_devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001186{
1187 unsigned int devfn;
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001188 struct device *dev, **prev;
1189 int once = 0;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001190
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001191 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %02x\n", bus->secondary);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001192
Uwe Hermanne4870472010-11-04 23:23:47 +00001193 /* Maximum sane devfn is 0xFF. */
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001194 if (max_devfn > 0xff) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001195 printk(BIOS_ERR, "PCI: pci_scan_bus limits devfn %x - "
1196 "devfn %x\n", min_devfn, max_devfn);
1197 printk(BIOS_ERR, "PCI: pci_scan_bus upper limit too big. "
1198 "Using 0xff.\n");
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001199 max_devfn=0xff;
1200 }
1201
Eric Biederman8ca8d762003-04-22 19:02:15 +00001202 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001203
1204 /*
1205 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001206 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001207 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001208 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001209 /* First thing setup the device structure. */
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001210 dev = pci_scan_get_dev(bus, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001211
Myles Watson29cc9ed2009-07-02 18:56:24 +00001212 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001213 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001214
Uwe Hermanne4870472010-11-04 23:23:47 +00001215 /*
1216 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001217 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001218 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001219 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001220 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001221 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001222 devfn += 0x07;
1223 }
1224 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001225
Eric Biederman8ca8d762003-04-22 19:02:15 +00001226 post_code(0x25);
1227
Uwe Hermanne4870472010-11-04 23:23:47 +00001228 /*
1229 * Warn if any leftover static devices are are found.
1230 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001231 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001232
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001233 prev = &bus->children;
1234 for (dev = bus->children; dev; dev = dev->sibling) {
1235 /* If we read valid vendor id, it is not leftover device. */
1236 if (dev->vendor != 0) {
1237 prev = &dev->sibling;
1238 continue;
1239 }
1240
1241 /* Unlink it from list. */
1242 *prev = dev->sibling;
1243
1244 if (!once++)
1245 printk(BIOS_WARNING, "PCI: Leftover static devices:\n");
1246 printk(BIOS_WARNING, "%s\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001247 }
1248
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001249 if (once)
1250 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
1251
Uwe Hermanne4870472010-11-04 23:23:47 +00001252 /*
1253 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001254 * scan the bus behind that child.
1255 */
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001256
Kyösti Mälkki2d2367c2015-02-20 21:28:31 +02001257 scan_bridges(bus);
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001258
Uwe Hermanne4870472010-11-04 23:23:47 +00001259 /*
1260 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001261 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001262 * Return how far we've got finding sub-buses.
1263 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001264 post_code(0x55);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001265}
1266
Kyösti Mälkki33452402015-02-23 06:58:26 +02001267typedef enum {
1268 PCI_ROUTE_CLOSE,
1269 PCI_ROUTE_SCAN,
1270 PCI_ROUTE_FINAL,
1271} scan_state;
1272
1273static void pci_bridge_route(struct bus *link, scan_state state)
1274{
1275 struct device *dev = link->dev;
1276 struct bus *parent = dev->bus;
1277 u32 reg, buses = 0;
1278
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001279 if (state == PCI_ROUTE_SCAN) {
1280 link->secondary = parent->subordinate + 1;
1281 link->subordinate = link->secondary;
1282 }
1283
Kyösti Mälkki33452402015-02-23 06:58:26 +02001284 if (state == PCI_ROUTE_CLOSE) {
1285 buses |= 0xfeff << 8;
1286 } else if (state == PCI_ROUTE_SCAN) {
Timothy Pearson7d8a4782015-10-24 20:34:57 -05001287 buses |= parent->secondary & 0xff;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001288 buses |= ((u32) link->secondary & 0xff) << 8;
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001289 buses |= 0xff << 16; /* MAX PCI_BUS number here */
Kyösti Mälkki33452402015-02-23 06:58:26 +02001290 } else if (state == PCI_ROUTE_FINAL) {
1291 buses |= parent->secondary & 0xff;
1292 buses |= ((u32) link->secondary & 0xff) << 8;
1293 buses |= ((u32) link->subordinate & 0xff) << 16;
1294 }
1295
1296 if (state == PCI_ROUTE_SCAN) {
1297 /* Clear all status bits and turn off memory, I/O and master enables. */
1298 link->bridge_cmd = pci_read_config16(dev, PCI_COMMAND);
1299 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1300 pci_write_config16(dev, PCI_STATUS, 0xffff);
1301 }
1302
1303 /*
1304 * Configure the bus numbers for this bridge: the configuration
1305 * transactions will not be propagated by the bridge if it is not
1306 * correctly configured.
1307 */
1308
1309 reg = pci_read_config32(dev, PCI_PRIMARY_BUS);
1310 reg &= 0xff000000;
1311 reg |= buses;
1312 pci_write_config32(dev, PCI_PRIMARY_BUS, reg);
1313
1314 if (state == PCI_ROUTE_FINAL) {
1315 pci_write_config16(dev, PCI_COMMAND, link->bridge_cmd);
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001316 parent->subordinate = link->subordinate;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001317 }
1318}
1319
Li-Ta Loe5266692004-03-23 21:28:05 +00001320/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001321 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001322 *
1323 * Determine the existence of buses behind the bridge. Set up the bridge
1324 * according to the result of the scan.
1325 *
1326 * This function is the default scan_bus() method for PCI bridge devices.
1327 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001328 * @param dev Pointer to the bridge device.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001329 * @param do_scan_bus TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +00001330 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001331void do_pci_scan_bridge(struct device *dev,
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001332 void (*do_scan_bus) (struct bus * bus,
Myles Watson29cc9ed2009-07-02 18:56:24 +00001333 unsigned min_devfn,
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001334 unsigned max_devfn))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001335{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001336 struct bus *bus;
Eric Biederman83b991a2003-10-11 06:20:25 +00001337
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001338 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001339
Myles Watson894a3472010-06-09 22:41:35 +00001340 if (dev->link_list == NULL) {
1341 struct bus *link;
1342 link = malloc(sizeof(*link));
1343 if (link == NULL)
1344 die("Couldn't allocate a link!\n");
1345 memset(link, 0, sizeof(*link));
1346 link->dev = dev;
1347 dev->link_list = link;
1348 }
1349
1350 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001351
Kyösti Mälkki33452402015-02-23 06:58:26 +02001352 pci_bridge_route(bus, PCI_ROUTE_SCAN);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001353
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001354 do_scan_bus(bus, 0x00, 0xff);
Kyösti Mälkki33452402015-02-23 06:58:26 +02001355
1356 pci_bridge_route(bus, PCI_ROUTE_FINAL);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001357}
Li-Ta Loe5266692004-03-23 21:28:05 +00001358
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001359/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001360 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001361 *
1362 * Determine the existence of buses behind the bridge. Set up the bridge
1363 * according to the result of the scan.
1364 *
1365 * This function is the default scan_bus() method for PCI bridge devices.
1366 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001367 * @param dev Pointer to the bridge device.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001368 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001369void pci_scan_bridge(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001370{
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001371 do_pci_scan_bridge(dev, pci_scan_bus);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001372}
1373
Myles Watson29cc9ed2009-07-02 18:56:24 +00001374/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001375 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001376 *
1377 * This function is the default scan_bus() method for PCI domains.
1378 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001379 * @param dev Pointer to the domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001380 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001381void pci_domain_scan_bus(struct device *dev)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001382{
Kyösti Mälkki6f370172015-03-19 15:26:52 +02001383 struct bus *link = dev->link_list;
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001384 pci_scan_bus(link, PCI_DEVFN(0, 0), 0xff);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001385}
1386
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001387/**
1388 * Take an INT_PIN number (0, 1 - 4) and convert
1389 * it to a string ("NO PIN", "PIN A" - "PIN D")
1390 *
1391 * @param pin PCI Interrupt Pin number (0, 1 - 4)
1392 * @return A string corresponding to the pin number or "Invalid"
1393 */
1394const char *pin_to_str(int pin)
1395{
1396 const char *str[5] = {
1397 "NO PIN",
1398 "PIN A",
1399 "PIN B",
1400 "PIN C",
1401 "PIN D",
1402 };
1403
1404 if (pin >= 0 && pin <= 4)
1405 return str[pin];
1406 else
1407 return "Invalid PIN, not 0 - 4";
1408}
1409
1410/**
1411 * Get the PCI INT_PIN swizzle for a device defined as:
1412 * pin_parent = (pin_child + devn_child) % 4 + 1
1413 * where PIN A = 1 ... PIN_D = 4
1414 *
1415 * Given a PCI device structure 'dev', find the interrupt pin
1416 * that will be triggered on its parent bridge device when
1417 * generating an interrupt. For example: Device 1:3.2 may
1418 * use INT_PIN A but will trigger PIN D on its parent bridge
1419 * device. In this case, this function will return 4 (PIN D).
1420 *
1421 * @param dev A PCI device structure to swizzle interrupt pins for
Martin Roth32bc6b62015-01-04 16:54:35 -07001422 * @param *parent_bridge The PCI device structure for the bridge
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001423 * device 'dev' is attached to
1424 * @return The interrupt pin number (1 - 4) that 'dev' will
1425 * trigger when generating an interrupt
1426 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001427static int swizzle_irq_pins(struct device *dev, struct device **parent_bridge)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001428{
Aaron Durbinc30d9132017-08-07 16:55:43 -06001429 struct device *parent; /* Our current device's parent device */
1430 struct device *child; /* The child device of the parent */
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001431 uint8_t parent_bus = 0; /* Parent Bus number */
1432 uint16_t parent_devfn = 0; /* Parent Device and Function number */
1433 uint16_t child_devfn = 0; /* Child Device and Function number */
1434 uint8_t swizzled_pin = 0; /* Pin swizzled across a bridge */
1435
1436 /* Start with PIN A = 0 ... D = 3 */
1437 swizzled_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN) - 1;
1438
1439 /* While our current device has parent devices */
1440 child = dev;
1441 for (parent = child->bus->dev; parent; parent = parent->bus->dev) {
1442 parent_bus = parent->bus->secondary;
1443 parent_devfn = parent->path.pci.devfn;
1444 child_devfn = child->path.pci.devfn;
1445
1446 /* Swizzle the INT_PIN for any bridges not on root bus */
1447 swizzled_pin = (PCI_SLOT(child_devfn) + swizzled_pin) % 4;
1448 printk(BIOS_SPEW, "\tWith INT_PIN swizzled to %s\n"
1449 "\tAttached to bridge device %01X:%02Xh.%02Xh\n",
1450 pin_to_str(swizzled_pin + 1), parent_bus,
1451 PCI_SLOT(parent_devfn), PCI_FUNC(parent_devfn));
1452
1453 /* Continue until we find the root bus */
1454 if (parent_bus > 0) {
1455 /*
1456 * We will go on to the next parent so this parent
1457 * becomes the child
1458 */
1459 child = parent;
1460 continue;
1461 } else {
1462 /*
1463 * Found the root bridge device,
1464 * fill in the structure and exit
1465 */
1466 *parent_bridge = parent;
1467 break;
1468 }
1469 }
1470
1471 /* End with PIN A = 1 ... D = 4 */
1472 return swizzled_pin + 1;
1473}
1474
1475/**
1476 * Given a device structure 'dev', find its interrupt pin
1477 * and its parent bridge 'parent_bdg' device structure.
1478 * If it is behind a bridge, it will return the interrupt
1479 * pin number (1 - 4) of the parent bridge that the device
1480 * interrupt pin has been swizzled to, otherwise it will
1481 * return the interrupt pin that is programmed into the
1482 * PCI config space of the target device. If 'dev' is
1483 * behind a bridge, it will fill in 'parent_bdg' with the
1484 * device structure of the bridge it is behind, otherwise
1485 * it will copy 'dev' into 'parent_bdg'.
1486 *
1487 * @param dev A PCI device structure to get interrupt pins for.
1488 * @param *parent_bdg The PCI device structure for the bridge
1489 * device 'dev' is attached to.
1490 * @return The interrupt pin number (1 - 4) that 'dev' will
1491 * trigger when generating an interrupt.
1492 * Errors: -1 is returned if the device is not enabled
1493 * -2 is returned if a parent bridge could not be found.
1494 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001495int get_pci_irq_pins(struct device *dev, struct device **parent_bdg)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001496{
1497 uint8_t bus = 0; /* The bus this device is on */
1498 uint16_t devfn = 0; /* This device's device and function numbers */
1499 uint8_t int_pin = 0; /* Interrupt pin used by the device */
1500 uint8_t target_pin = 0; /* Interrupt pin we want to assign an IRQ to */
1501
1502 /* Make sure this device is enabled */
1503 if (!(dev->enabled && (dev->path.type == DEVICE_PATH_PCI)))
1504 return -1;
1505
1506 bus = dev->bus->secondary;
1507 devfn = dev->path.pci.devfn;
1508
1509 /* Get and validate the interrupt pin used. Only 1-4 are allowed */
1510 int_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN);
1511 if (int_pin < 1 || int_pin > 4)
1512 return -1;
1513
1514 printk(BIOS_SPEW, "PCI IRQ: Found device %01X:%02X.%02X using %s\n",
1515 bus, PCI_SLOT(devfn), PCI_FUNC(devfn), pin_to_str(int_pin));
1516
1517 /* If this device is on a bridge, swizzle its INT_PIN */
1518 if (bus) {
1519 /* Swizzle its INT_PINs */
1520 target_pin = swizzle_irq_pins(dev, parent_bdg);
1521
1522 /* Make sure the swizzle returned valid structures */
1523 if (parent_bdg == NULL) {
1524 printk(BIOS_WARNING,
1525 "Warning: Could not find parent bridge for this device!\n");
1526 return -2;
1527 }
1528 } else { /* Device is not behind a bridge */
1529 target_pin = int_pin; /* Return its own interrupt pin */
1530 *parent_bdg = dev; /* Return its own structure */
1531 }
1532
1533 /* Target pin is the interrupt pin we want to assign an IRQ to */
1534 return target_pin;
1535}
1536
Julius Wernercd49cce2019-03-05 16:53:33 -08001537#if CONFIG(PC80_SYSTEM)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001538/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001539 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001540 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001541 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001542 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001543 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001544 *
1545 * This function should be called for each PCI slot in your system.
1546 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001547 * @param bus Pointer to the bus structure.
1548 * @param slot TODO
1549 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1550 * of this slot. The particular IRQ #s that are passed in depend on the
1551 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001552 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001553void pci_assign_irqs(unsigned bus, unsigned slot,
Uwe Hermanne4870472010-11-04 23:23:47 +00001554 const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001555{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001556 unsigned int funct;
Aaron Durbinc30d9132017-08-07 16:55:43 -06001557 struct device *pdev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001558 u8 line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001559
Uwe Hermanne4870472010-11-04 23:23:47 +00001560 /* Each slot may contain up to eight functions. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001561 for (funct = 0; funct < 8; funct++) {
1562 pdev = dev_find_slot(bus, (slot << 3) + funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001563
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001564 if (!pdev)
1565 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001566
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001567 line = pci_read_config8(pdev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001568
Uwe Hermanne4870472010-11-04 23:23:47 +00001569 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001570 if ((line < 1) || (line > 4))
1571 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001572
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001573 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001574
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001575 printk(BIOS_DEBUG, "Assigning IRQ %d to %d:%x.%d\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001576 irq, bus, slot, funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001577
Stefan Reinauer14e22772010-04-27 06:56:47 +00001578 pci_write_config8(pdev, PCI_INTERRUPT_LINE,
Uwe Hermanne4870472010-11-04 23:23:47 +00001579 pIntAtoD[line - 1]);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001580
1581#ifdef PARANOID_IRQ_ASSIGNMENTS
Myles Watson17aeeca2009-10-07 18:41:08 +00001582 irq = pci_read_config8(pdev, PCI_INTERRUPT_LINE);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001583 printk(BIOS_DEBUG, " Readback = %d\n", irq);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001584#endif
1585
Julius Wernercd49cce2019-03-05 16:53:33 -08001586#if CONFIG(PC80_SYSTEM)
Uwe Hermanne4870472010-11-04 23:23:47 +00001587 /* Change to level triggered. */
1588 i8259_configure_irq_trigger(pIntAtoD[line - 1],
1589 IRQ_LEVEL_TRIGGERED);
Stefan Reinauer5fb62162010-12-16 23:52:04 +00001590#endif
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001591 }
1592}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001593#endif