blob: 7786043a6c63f8227c13336f4c65650e6b2a642b [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>
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +020037#include <bootsplash.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000038#include <console/console.h>
39#include <stdlib.h>
40#include <stdint.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000041#include <string.h>
Edward O'Callaghan6c992502014-06-20 21:19:06 +100042#include <delay.h>
Edward O'Callaghan6c992502014-06-20 21:19:06 +100043#include <device/cardbus.h>
Eric Biederman5899fd82003-04-24 06:25:08 +000044#include <device/device.h>
45#include <device/pci.h>
46#include <device/pci_ids.h>
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000047#include <device/pcix.h>
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000048#include <device/pciexp.h>
Edward O'Callaghan6c992502014-06-20 21:19:06 +100049#include <device/hypertransport.h>
Stefan Reinauer4d933dd2009-07-21 21:36:41 +000050#include <pc80/i8259.h>
Philipp Deppenwiesefea24292017-10-17 17:02:29 +020051#include <security/vboot/vbnv.h>
Martin Roth5dd4a2a2018-03-06 16:10:45 -070052#include <timestamp.h>
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +020053#include <types.h>
54
Eric Biederman03acab62004-10-14 21:25:53 +000055
Myles Watson29cc9ed2009-07-02 18:56:24 +000056u8 pci_moving_config8(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000057{
Myles Watson29cc9ed2009-07-02 18:56:24 +000058 u8 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000059
Eric Biederman03acab62004-10-14 21:25:53 +000060 value = pci_read_config8(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000061
Eric Biederman03acab62004-10-14 21:25:53 +000062 pci_write_config8(dev, reg, 0xff);
63 ones = pci_read_config8(dev, reg);
64
65 pci_write_config8(dev, reg, 0x00);
66 zeroes = pci_read_config8(dev, reg);
67
68 pci_write_config8(dev, reg, value);
69
70 return ones ^ zeroes;
71}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +000072
Uwe Hermanne4870472010-11-04 23:23:47 +000073u16 pci_moving_config16(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000074{
Myles Watson29cc9ed2009-07-02 18:56:24 +000075 u16 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000076
Eric Biederman03acab62004-10-14 21:25:53 +000077 value = pci_read_config16(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000078
Eric Biederman03acab62004-10-14 21:25:53 +000079 pci_write_config16(dev, reg, 0xffff);
80 ones = pci_read_config16(dev, reg);
81
82 pci_write_config16(dev, reg, 0x0000);
83 zeroes = pci_read_config16(dev, reg);
84
85 pci_write_config16(dev, reg, value);
86
87 return ones ^ zeroes;
88}
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +000089
Uwe Hermanne4870472010-11-04 23:23:47 +000090u32 pci_moving_config32(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000091{
Myles Watson29cc9ed2009-07-02 18:56:24 +000092 u32 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000093
Eric Biederman03acab62004-10-14 21:25:53 +000094 value = pci_read_config32(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000095
Eric Biederman03acab62004-10-14 21:25:53 +000096 pci_write_config32(dev, reg, 0xffffffff);
97 ones = pci_read_config32(dev, reg);
98
99 pci_write_config32(dev, reg, 0x00000000);
100 zeroes = pci_read_config32(dev, reg);
101
102 pci_write_config32(dev, reg, value);
103
104 return ones ^ zeroes;
105}
106
Myles Watson29cc9ed2009-07-02 18:56:24 +0000107/**
Myles Watson29cc9ed2009-07-02 18:56:24 +0000108 * Given a device and register, read the size of the BAR for that register.
109 *
110 * @param dev Pointer to the device structure.
111 * @param index Address of the PCI configuration register.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000112 * @return TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +0000113 */
Eric Biederman03acab62004-10-14 21:25:53 +0000114struct resource *pci_get_resource(struct device *dev, unsigned long index)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000115{
Eric Biederman5cd81732004-03-11 15:01:31 +0000116 struct resource *resource;
Eric Biederman03acab62004-10-14 21:25:53 +0000117 unsigned long value, attr;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000118 resource_t moving, limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000119
Myles Watson29cc9ed2009-07-02 18:56:24 +0000120 /* Initialize the resources to nothing. */
Eric Biederman03acab62004-10-14 21:25:53 +0000121 resource = new_resource(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000122
Myles Watson29cc9ed2009-07-02 18:56:24 +0000123 /* Get the initial value. */
Eric Biederman03acab62004-10-14 21:25:53 +0000124 value = pci_read_config32(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000125
Myles Watson29cc9ed2009-07-02 18:56:24 +0000126 /* See which bits move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000127 moving = pci_moving_config32(dev, index);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000128
Myles Watson29cc9ed2009-07-02 18:56:24 +0000129 /* Initialize attr to the bits that do not move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000130 attr = value & ~moving;
131
Myles Watson29cc9ed2009-07-02 18:56:24 +0000132 /* If it is a 64bit resource look at the high half as well. */
Eric Biederman03acab62004-10-14 21:25:53 +0000133 if (((attr & PCI_BASE_ADDRESS_SPACE_IO) == 0) &&
Myles Watson29cc9ed2009-07-02 18:56:24 +0000134 ((attr & PCI_BASE_ADDRESS_MEM_LIMIT_MASK) ==
135 PCI_BASE_ADDRESS_MEM_LIMIT_64)) {
136 /* Find the high bits that move. */
137 moving |=
138 ((resource_t) pci_moving_config32(dev, index + 4)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000139 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000140
Myles Watson032a9652009-05-11 22:24:53 +0000141 /* Find the resource constraints.
Eric Biederman03acab62004-10-14 21:25:53 +0000142 * Start by finding the bits that move. From there:
143 * - Size is the least significant bit of the bits that move.
144 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000145 * See PCI Spec 6.2.5.1.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000146 */
Eric Biederman03acab62004-10-14 21:25:53 +0000147 limit = 0;
148 if (moving) {
149 resource->size = 1;
150 resource->align = resource->gran = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000151 while (!(moving & resource->size)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000152 resource->size <<= 1;
153 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000154 resource->gran += 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000155 }
156 resource->limit = limit = moving | (resource->size - 1);
Nico Huber8193b062015-10-21 15:43:41 +0200157
158 if (pci_base_address_is_memory_space(attr)) {
159 /* Page-align to allow individual mapping of devices. */
160 if (resource->align < 12)
161 resource->align = 12;
162 }
Eric Biederman03acab62004-10-14 21:25:53 +0000163 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000164
Uwe Hermanne4870472010-11-04 23:23:47 +0000165 /*
166 * Some broken hardware has read-only registers that do not
Eric Biederman03acab62004-10-14 21:25:53 +0000167 * really size correctly.
Uwe Hermanne4870472010-11-04 23:23:47 +0000168 *
169 * Example: the Acer M7229 has BARs 1-4 normally read-only,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000170 * so BAR1 at offset 0x10 reads 0x1f1. If you size that register
Uwe Hermanne4870472010-11-04 23:23:47 +0000171 * by writing 0xffffffff to it, it will read back as 0x1f1 -- which
172 * is a violation of the spec.
173 *
174 * We catch this case and ignore it by observing which bits move.
175 *
176 * This also catches the common case of unimplemented registers
Eric Biederman03acab62004-10-14 21:25:53 +0000177 * that always read back as 0.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000178 */
Eric Biederman03acab62004-10-14 21:25:53 +0000179 if (moving == 0) {
180 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000181 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
182 "read-only ignoring it\n",
183 dev_path(dev), index, value);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000184 }
185 resource->flags = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000186 } else if (attr & PCI_BASE_ADDRESS_SPACE_IO) {
187 /* An I/O mapped base address. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000188 resource->flags |= IORESOURCE_IO;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000189 /* I don't want to deal with 32bit I/O resources. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000190 resource->limit = 0xffff;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000191 } else {
192 /* A Memory mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000193 attr &= PCI_BASE_ADDRESS_MEM_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000194 resource->flags |= IORESOURCE_MEM;
Uwe Hermanne4870472010-11-04 23:23:47 +0000195 if (attr & PCI_BASE_ADDRESS_MEM_PREFETCH)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000196 resource->flags |= IORESOURCE_PREFETCH;
Eric Biederman03acab62004-10-14 21:25:53 +0000197 attr &= PCI_BASE_ADDRESS_MEM_LIMIT_MASK;
198 if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_32) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000199 /* 32bit limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000200 resource->limit = 0xffffffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000201 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_1M) {
202 /* 1MB limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000203 resource->limit = 0x000fffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000204 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_64) {
205 /* 64bit limit. */
Eric Biederman03acab62004-10-14 21:25:53 +0000206 resource->limit = 0xffffffffffffffffULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000207 resource->flags |= IORESOURCE_PCI64;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000208 } else {
209 /* Invalid value. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000210 printk(BIOS_ERR, "Broken BAR with value %lx\n", attr);
211 printk(BIOS_ERR, " on dev %s at index %02lx\n",
Myles Watson29cc9ed2009-07-02 18:56:24 +0000212 dev_path(dev), index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000213 resource->flags = 0;
214 }
215 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000216
Myles Watson29cc9ed2009-07-02 18:56:24 +0000217 /* Don't let the limit exceed which bits can move. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000218 if (resource->limit > limit)
Eric Biederman03acab62004-10-14 21:25:53 +0000219 resource->limit = limit;
Eric Biederman03acab62004-10-14 21:25:53 +0000220
Eric Biederman5cd81732004-03-11 15:01:31 +0000221 return resource;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000222}
223
Myles Watson29cc9ed2009-07-02 18:56:24 +0000224/**
225 * Given a device and an index, read the size of the BAR for that register.
226 *
227 * @param dev Pointer to the device structure.
228 * @param index Address of the PCI configuration register.
229 */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000230static void pci_get_rom_resource(struct device *dev, unsigned long index)
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000231{
232 struct resource *resource;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000233 unsigned long value;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000234 resource_t moving;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000235
Myles Watson29cc9ed2009-07-02 18:56:24 +0000236 /* Initialize the resources to nothing. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000237 resource = new_resource(dev, index);
238
Myles Watson29cc9ed2009-07-02 18:56:24 +0000239 /* Get the initial value. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000240 value = pci_read_config32(dev, index);
241
Myles Watson29cc9ed2009-07-02 18:56:24 +0000242 /* See which bits move. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000243 moving = pci_moving_config32(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000244
245 /* Clear the Enable bit. */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000246 moving = moving & ~PCI_ROM_ADDRESS_ENABLE;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000247
Myles Watson032a9652009-05-11 22:24:53 +0000248 /* Find the resource constraints.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000249 * Start by finding the bits that move. From there:
250 * - Size is the least significant bit of the bits that move.
251 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000252 * See PCI Spec 6.2.5.1.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000253 */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000254 if (moving) {
255 resource->size = 1;
256 resource->align = resource->gran = 0;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000257 while (!(moving & resource->size)) {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000258 resource->size <<= 1;
259 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000260 resource->gran += 1;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000261 }
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000262 resource->limit = moving | (resource->size - 1);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000263 resource->flags |= IORESOURCE_MEM | IORESOURCE_READONLY;
264 } else {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000265 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000266 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
267 "read-only ignoring it\n",
268 dev_path(dev), index, value);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000269 }
270 resource->flags = 0;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000271 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000272 compact_resources(dev);
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000273}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000274
Myles Watson29cc9ed2009-07-02 18:56:24 +0000275/**
Patrick Rudolph4e2f95b2018-05-16 14:56:22 +0200276 * Given a device, read the size of the MSI-X table.
277 *
278 * @param dev Pointer to the device structure.
279 * @return MSI-X table size or 0 if not MSI-X capable device
280 */
281size_t pci_msix_table_size(struct device *dev)
282{
283 const size_t pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
284 if (!pos)
285 return 0;
286
287 const u16 control = pci_read_config16(dev, pos + PCI_MSIX_FLAGS);
288 return (control & PCI_MSIX_FLAGS_QSIZE) + 1;
289}
290
291/**
292 * Given a device, return the table offset and bar the MSI-X tables resides in.
293 *
294 * @param dev Pointer to the device structure.
295 * @param offset Returned value gives the offset in bytes inside the PCI BAR.
296 * @param idx The returned value is the index of the PCI_BASE_ADDRESS register
297 * the MSI-X table is located in.
298 * @return Zero on success
299 */
300int pci_msix_table_bar(struct device *dev, u32 *offset, u8 *idx)
301{
302 const size_t pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
303 if (!pos || !offset || !idx)
304 return 1;
305
306 *offset = pci_read_config32(dev, pos + PCI_MSIX_TABLE);
307 *idx = (u8)(*offset & PCI_MSIX_PBA_BIR);
308 *offset &= PCI_MSIX_PBA_OFFSET;
309
310 return 0;
311}
312
313/**
314 * Given a device, return a msix_entry pointer or NULL if no table was found.
315 *
316 * @param dev Pointer to the device structure.
317 *
318 * @return NULL on error
319 */
320struct msix_entry *pci_msix_get_table(struct device *dev)
321{
322 struct resource *res;
323 u32 offset;
324 u8 idx;
325
326 if (pci_msix_table_bar(dev, &offset, &idx))
327 return NULL;
328
329 if (idx > 5)
330 return NULL;
331
332 res = probe_resource(dev, idx * 4 + PCI_BASE_ADDRESS_0);
333 if (!res || !res->base || offset >= res->size)
334 return NULL;
335
336 if ((res->flags & IORESOURCE_PCI64) &&
337 (uintptr_t)res->base != res->base)
338 return NULL;
339
340 return (struct msix_entry *)((uintptr_t)res->base + offset);
341}
342
343/**
Myles Watson29cc9ed2009-07-02 18:56:24 +0000344 * Read the base address registers for a given device.
345 *
346 * @param dev Pointer to the dev structure.
347 * @param howmany How many registers to read (6 for device, 2 for bridge).
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000348 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000349static void pci_read_bases(struct device *dev, unsigned int howmany)
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000350{
351 unsigned long index;
352
Myles Watson29cc9ed2009-07-02 18:56:24 +0000353 for (index = PCI_BASE_ADDRESS_0;
354 (index < PCI_BASE_ADDRESS_0 + (howmany << 2));) {
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000355 struct resource *resource;
356 resource = pci_get_resource(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000357 index += (resource->flags & IORESOURCE_PCI64) ? 8 : 4;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000358 }
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000359
360 compact_resources(dev);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000361}
362
Myles Watson29cc9ed2009-07-02 18:56:24 +0000363static void pci_record_bridge_resource(struct device *dev, resource_t moving,
364 unsigned index, unsigned long type)
Eric Biederman03acab62004-10-14 21:25:53 +0000365{
Eric Biederman03acab62004-10-14 21:25:53 +0000366 struct resource *resource;
Uwe Hermanne4870472010-11-04 23:23:47 +0000367 unsigned long gran;
368 resource_t step;
369
Myles Watson29cc9ed2009-07-02 18:56:24 +0000370 resource = NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000371
372 if (!moving)
373 return;
374
375 /* Initialize the constraints on the current bus. */
376 resource = new_resource(dev, index);
377 resource->size = 0;
378 gran = 0;
379 step = 1;
380 while ((moving & step) == 0) {
381 gran += 1;
382 step <<= 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000383 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000384 resource->gran = gran;
385 resource->align = gran;
386 resource->limit = moving | (step - 1);
387 resource->flags = type | IORESOURCE_PCI_BRIDGE |
388 IORESOURCE_BRIDGE;
Eric Biederman03acab62004-10-14 21:25:53 +0000389}
390
Eric Biederman8ca8d762003-04-22 19:02:15 +0000391static void pci_bridge_read_bases(struct device *dev)
392{
Eric Biederman03acab62004-10-14 21:25:53 +0000393 resource_t moving_base, moving_limit, moving;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000394
Myles Watson29cc9ed2009-07-02 18:56:24 +0000395 /* See if the bridge I/O resources are implemented. */
396 moving_base = ((u32) pci_moving_config8(dev, PCI_IO_BASE)) << 8;
397 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000398 ((u32) pci_moving_config16(dev, PCI_IO_BASE_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000399
Myles Watson29cc9ed2009-07-02 18:56:24 +0000400 moving_limit = ((u32) pci_moving_config8(dev, PCI_IO_LIMIT)) << 8;
401 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000402 ((u32) pci_moving_config16(dev, PCI_IO_LIMIT_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000403
404 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000405
Myles Watson29cc9ed2009-07-02 18:56:24 +0000406 /* Initialize the I/O space constraints on the current bus. */
407 pci_record_bridge_resource(dev, moving, PCI_IO_BASE, IORESOURCE_IO);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000408
Myles Watson29cc9ed2009-07-02 18:56:24 +0000409 /* See if the bridge prefmem resources are implemented. */
410 moving_base =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000411 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_BASE)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000412 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000413 ((resource_t) pci_moving_config32(dev, PCI_PREF_BASE_UPPER32)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000414
Myles Watson29cc9ed2009-07-02 18:56:24 +0000415 moving_limit =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000416 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_LIMIT)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000417 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000418 ((resource_t) pci_moving_config32(dev, PCI_PREF_LIMIT_UPPER32)) << 32;
Myles Watson032a9652009-05-11 22:24:53 +0000419
Eric Biederman03acab62004-10-14 21:25:53 +0000420 moving = moving_base & moving_limit;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000421 /* Initialize the prefetchable memory constraints on the current bus. */
422 pci_record_bridge_resource(dev, moving, PCI_PREF_MEMORY_BASE,
423 IORESOURCE_MEM | IORESOURCE_PREFETCH);
Myles Watson032a9652009-05-11 22:24:53 +0000424
Myles Watson29cc9ed2009-07-02 18:56:24 +0000425 /* See if the bridge mem resources are implemented. */
426 moving_base = ((u32) pci_moving_config16(dev, PCI_MEMORY_BASE)) << 16;
427 moving_limit = ((u32) pci_moving_config16(dev, PCI_MEMORY_LIMIT)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000428
429 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000430
Myles Watson29cc9ed2009-07-02 18:56:24 +0000431 /* Initialize the memory resources on the current bus. */
432 pci_record_bridge_resource(dev, moving, PCI_MEMORY_BASE,
433 IORESOURCE_MEM);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000434
Eric Biederman5cd81732004-03-11 15:01:31 +0000435 compact_resources(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000436}
437
Eric Biederman5899fd82003-04-24 06:25:08 +0000438void pci_dev_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000439{
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000440 pci_read_bases(dev, 6);
441 pci_get_rom_resource(dev, PCI_ROM_ADDRESS);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000442}
443
Eric Biederman5899fd82003-04-24 06:25:08 +0000444void pci_bus_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000445{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000446 pci_bridge_read_bases(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000447 pci_read_bases(dev, 2);
448 pci_get_rom_resource(dev, PCI_ROM_ADDRESS1);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000449}
450
Myles Watson29cc9ed2009-07-02 18:56:24 +0000451void pci_domain_read_resources(struct device *dev)
452{
453 struct resource *res;
454
455 /* Initialize the system-wide I/O space constraints. */
456 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
457 res->limit = 0xffffUL;
458 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
459 IORESOURCE_ASSIGNED;
460
461 /* Initialize the system-wide memory resources constraints. */
462 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
463 res->limit = 0xffffffffULL;
464 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
465 IORESOURCE_ASSIGNED;
466}
467
Eric Biederman8ca8d762003-04-22 19:02:15 +0000468static void pci_set_resource(struct device *dev, struct resource *resource)
469{
Eric Biederman03acab62004-10-14 21:25:53 +0000470 resource_t base, end;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000471
Myles Watson29cc9ed2009-07-02 18:56:24 +0000472 /* Make certain the resource has actually been assigned a value. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000473 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000474 printk(BIOS_ERR, "ERROR: %s %02lx %s size: 0x%010llx not "
475 "assigned\n", dev_path(dev), resource->index,
476 resource_type(resource), resource->size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000477 return;
478 }
479
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000480 /* If this resource is fixed don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000481 if (resource->flags & IORESOURCE_FIXED)
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000482 return;
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000483
Myles Watson29cc9ed2009-07-02 18:56:24 +0000484 /* If I have already stored this resource don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000485 if (resource->flags & IORESOURCE_STORED)
Eric Biederman5cd81732004-03-11 15:01:31 +0000486 return;
Eric Biederman5cd81732004-03-11 15:01:31 +0000487
Myles Watson29cc9ed2009-07-02 18:56:24 +0000488 /* If the resource is subtractive don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000489 if (resource->flags & IORESOURCE_SUBTRACTIVE)
Eric Biederman03acab62004-10-14 21:25:53 +0000490 return;
Eric Biederman03acab62004-10-14 21:25:53 +0000491
Myles Watson29cc9ed2009-07-02 18:56:24 +0000492 /* Only handle PCI memory and I/O resources for now. */
493 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Eric Biederman8ca8d762003-04-22 19:02:15 +0000494 return;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000495
Myles Watson29cc9ed2009-07-02 18:56:24 +0000496 /* Enable the resources in the command register. */
Eric Biederman03acab62004-10-14 21:25:53 +0000497 if (resource->size) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000498 if (resource->flags & IORESOURCE_MEM)
Eric Biederman03acab62004-10-14 21:25:53 +0000499 dev->command |= PCI_COMMAND_MEMORY;
Uwe Hermanne4870472010-11-04 23:23:47 +0000500 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000501 dev->command |= PCI_COMMAND_IO;
Uwe Hermanne4870472010-11-04 23:23:47 +0000502 if (resource->flags & IORESOURCE_PCI_BRIDGE)
Eric Biederman03acab62004-10-14 21:25:53 +0000503 dev->command |= PCI_COMMAND_MASTER;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000504 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000505
Myles Watson29cc9ed2009-07-02 18:56:24 +0000506 /* Get the base address. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000507 base = resource->base;
Eric Biederman5cd81732004-03-11 15:01:31 +0000508
Myles Watson29cc9ed2009-07-02 18:56:24 +0000509 /* Get the end. */
Eric Biederman03acab62004-10-14 21:25:53 +0000510 end = resource_end(resource);
Myles Watson032a9652009-05-11 22:24:53 +0000511
Myles Watson29cc9ed2009-07-02 18:56:24 +0000512 /* Now store the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000513 resource->flags |= IORESOURCE_STORED;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000514
Uwe Hermanne4870472010-11-04 23:23:47 +0000515 /*
516 * PCI bridges have no enable bit. They are disabled if the base of
517 * the range is greater than the limit. If the size is zero, disable
Myles Watson29cc9ed2009-07-02 18:56:24 +0000518 * by setting the base = limit and end = limit - 2^gran.
519 */
520 if (resource->size == 0 && (resource->flags & IORESOURCE_PCI_BRIDGE)) {
521 base = resource->limit;
522 end = resource->limit - (1 << resource->gran);
523 resource->base = base;
524 }
525
Eric Biederman8ca8d762003-04-22 19:02:15 +0000526 if (!(resource->flags & IORESOURCE_PCI_BRIDGE)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000527 unsigned long base_lo, base_hi;
Uwe Hermanne4870472010-11-04 23:23:47 +0000528
529 /*
530 * Some chipsets allow us to set/clear the I/O bit
531 * (e.g. VIA 82C686A). So set it to be safe.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000532 */
Eric Biederman03acab62004-10-14 21:25:53 +0000533 base_lo = base & 0xffffffff;
534 base_hi = (base >> 32) & 0xffffffff;
Uwe Hermanne4870472010-11-04 23:23:47 +0000535 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000536 base_lo |= PCI_BASE_ADDRESS_SPACE_IO;
Eric Biederman03acab62004-10-14 21:25:53 +0000537 pci_write_config32(dev, resource->index, base_lo);
Uwe Hermanne4870472010-11-04 23:23:47 +0000538 if (resource->flags & IORESOURCE_PCI64)
Eric Biederman03acab62004-10-14 21:25:53 +0000539 pci_write_config32(dev, resource->index + 4, base_hi);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000540 } else if (resource->index == PCI_IO_BASE) {
541 /* Set the I/O ranges. */
542 pci_write_config8(dev, PCI_IO_BASE, base >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000543 pci_write_config16(dev, PCI_IO_BASE_UPPER16, base >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000544 pci_write_config8(dev, PCI_IO_LIMIT, end >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000545 pci_write_config16(dev, PCI_IO_LIMIT_UPPER16, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000546 } else if (resource->index == PCI_MEMORY_BASE) {
547 /* Set the memory range. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000548 pci_write_config16(dev, PCI_MEMORY_BASE, base >> 16);
Eric Biederman03acab62004-10-14 21:25:53 +0000549 pci_write_config16(dev, PCI_MEMORY_LIMIT, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000550 } else if (resource->index == PCI_PREF_MEMORY_BASE) {
551 /* Set the prefetchable memory range. */
Eric Biederman03acab62004-10-14 21:25:53 +0000552 pci_write_config16(dev, PCI_PREF_MEMORY_BASE, base >> 16);
553 pci_write_config32(dev, PCI_PREF_BASE_UPPER32, base >> 32);
554 pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, end >> 16);
555 pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, end >> 32);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000556 } else {
557 /* Don't let me think I stored the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000558 resource->flags &= ~IORESOURCE_STORED;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000559 printk(BIOS_ERR, "ERROR: invalid resource->index %lx\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000560 resource->index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000561 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000562
Eric Biederman03acab62004-10-14 21:25:53 +0000563 report_resource_stored(dev, resource, "");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000564}
565
Eric Biederman5899fd82003-04-24 06:25:08 +0000566void pci_dev_set_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000567{
Myles Watsonc25cc112010-05-21 14:33:48 +0000568 struct resource *res;
Myles Watson894a3472010-06-09 22:41:35 +0000569 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000570 u8 line;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000571
Uwe Hermanne4870472010-11-04 23:23:47 +0000572 for (res = dev->resource_list; res; res = res->next)
Myles Watsonc25cc112010-05-21 14:33:48 +0000573 pci_set_resource(dev, res);
Uwe Hermanne4870472010-11-04 23:23:47 +0000574
Myles Watson894a3472010-06-09 22:41:35 +0000575 for (bus = dev->link_list; bus; bus = bus->next) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000576 if (bus->children)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000577 assign_resources(bus);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000578 }
579
Myles Watson29cc9ed2009-07-02 18:56:24 +0000580 /* Set a default latency timer. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000581 pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000582
Myles Watson29cc9ed2009-07-02 18:56:24 +0000583 /* Set a default secondary latency timer. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000584 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000585 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000586
Myles Watson29cc9ed2009-07-02 18:56:24 +0000587 /* Zero the IRQ settings. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000588 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Uwe Hermanne4870472010-11-04 23:23:47 +0000589 if (line)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000590 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
Uwe Hermanne4870472010-11-04 23:23:47 +0000591
Myles Watson29cc9ed2009-07-02 18:56:24 +0000592 /* Set the cache line size, so far 64 bytes is good for everyone. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000593 pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000594}
595
Eric Biedermane9a271e32003-09-02 03:36:25 +0000596void pci_dev_enable_resources(struct device *dev)
597{
Kyösti Mälkkicac02312019-06-30 08:40:04 +0300598 const struct pci_operations *ops = NULL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000599 u16 command;
Eric Biederman03acab62004-10-14 21:25:53 +0000600
Uwe Hermanne4870472010-11-04 23:23:47 +0000601 /* Set the subsystem vendor and device ID for mainboard devices. */
Kyösti Mälkkicac02312019-06-30 08:40:04 +0300602 if (dev->ops)
603 ops = dev->ops->ops_pci;
Eric Biedermandbec2d42004-10-21 10:44:08 +0000604 if (dev->on_mainboard && ops && ops->set_subsystem) {
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700605 if (CONFIG_SUBSYSTEM_VENDOR_ID)
606 dev->subsystem_vendor = CONFIG_SUBSYSTEM_VENDOR_ID;
Rizwan Qureshifd891292017-04-26 21:00:37 +0530607 else if (!dev->subsystem_vendor)
608 dev->subsystem_vendor = pci_read_config16(dev,
609 PCI_VENDOR_ID);
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700610 if (CONFIG_SUBSYSTEM_DEVICE_ID)
611 dev->subsystem_device = CONFIG_SUBSYSTEM_DEVICE_ID;
Rizwan Qureshifd891292017-04-26 21:00:37 +0530612 else if (!dev->subsystem_device)
613 dev->subsystem_device = pci_read_config16(dev,
614 PCI_DEVICE_ID);
615
Sven Schnelle91321022011-03-01 19:58:47 +0000616 printk(BIOS_DEBUG, "%s subsystem <- %04x/%04x\n",
617 dev_path(dev), dev->subsystem_vendor,
618 dev->subsystem_device);
619 ops->set_subsystem(dev, dev->subsystem_vendor,
620 dev->subsystem_device);
Eric Biederman03acab62004-10-14 21:25:53 +0000621 }
Eric Biedermane9a271e32003-09-02 03:36:25 +0000622 command = pci_read_config16(dev, PCI_COMMAND);
623 command |= dev->command;
Uwe Hermanne4870472010-11-04 23:23:47 +0000624
Myles Watson29cc9ed2009-07-02 18:56:24 +0000625 /* v3 has
626 * command |= (PCI_COMMAND_PARITY + PCI_COMMAND_SERR); // Error check.
627 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000628
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000629 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000630 pci_write_config16(dev, PCI_COMMAND, command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000631}
632
Kyösti Mälkkie079e5c2019-01-23 16:15:48 +0200633void __noreturn pcidev_die(void)
634{
635 die("PCI: dev is NULL!\n");
636}
637
Eric Biedermane9a271e32003-09-02 03:36:25 +0000638void pci_bus_enable_resources(struct device *dev)
639{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000640 u16 ctrl;
641
Uwe Hermanne4870472010-11-04 23:23:47 +0000642 /*
643 * Enable I/O in command register if there is VGA card
Myles Watson29cc9ed2009-07-02 18:56:24 +0000644 * connected with (even it does not claim I/O resource).
645 */
Myles Watson894a3472010-06-09 22:41:35 +0000646 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
Li-Ta Lo515f6c72005-01-11 22:48:54 +0000647 dev->command |= PCI_COMMAND_IO;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000648 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +0000649 ctrl |= dev->link_list->bridge_ctrl;
Uwe Hermanne4870472010-11-04 23:23:47 +0000650 ctrl |= (PCI_BRIDGE_CTL_PARITY + PCI_BRIDGE_CTL_SERR); /* Error check. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000651 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000652 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
653
654 pci_dev_enable_resources(dev);
655}
656
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000657void pci_bus_reset(struct bus *bus)
658{
Uwe Hermanne4870472010-11-04 23:23:47 +0000659 u16 ctl;
660
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000661 ctl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
662 ctl |= PCI_BRIDGE_CTL_BUS_RESET;
663 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
664 mdelay(10);
Uwe Hermanne4870472010-11-04 23:23:47 +0000665
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000666 ctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
667 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
668 delay(1);
669}
670
Elyes HAOUAS88030b72018-09-20 17:26:10 +0200671void pci_dev_set_subsystem(struct device *dev, unsigned int vendor,
672 unsigned int device)
Eric Biederman03acab62004-10-14 21:25:53 +0000673{
Subrata Banik9514d472019-03-20 14:56:27 +0530674 uint8_t offset;
675
676 /* Header type */
677 switch (dev->hdr_type & 0x7f) {
678 case PCI_HEADER_TYPE_NORMAL:
679 offset = PCI_SUBSYSTEM_VENDOR_ID;
680 break;
681 case PCI_HEADER_TYPE_BRIDGE:
682 offset = pci_find_capability(dev, PCI_CAP_ID_SSVID);
683 if (!offset)
684 return;
685 offset += 4; /* Vendor ID at offset 4 */
686 break;
687 case PCI_HEADER_TYPE_CARDBUS:
688 offset = PCI_CB_SUBSYSTEM_VENDOR_ID;
689 break;
690 default:
691 return;
692 }
693
Subrata Banik4a0f0712019-03-20 14:29:47 +0530694 if (!vendor || !device) {
Subrata Banik9514d472019-03-20 14:56:27 +0530695 pci_write_config32(dev, offset,
Subrata Banik4a0f0712019-03-20 14:29:47 +0530696 pci_read_config32(dev, PCI_VENDOR_ID));
697 } else {
Subrata Banik9514d472019-03-20 14:56:27 +0530698 pci_write_config32(dev, offset,
Subrata Banik4a0f0712019-03-20 14:29:47 +0530699 ((device & 0xffff) << 16) | (vendor & 0xffff));
700 }
Eric Biederman03acab62004-10-14 21:25:53 +0000701}
702
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300703static int should_run_oprom(struct device *dev)
704{
705 static int should_run = -1;
706
707 if (should_run >= 0)
708 return should_run;
709
Julius Wernercd49cce2019-03-05 16:53:33 -0800710 if (CONFIG(ALWAYS_RUN_OPROM)) {
Aaron Durbin10510252018-01-30 10:04:02 -0700711 should_run = 1;
712 return should_run;
713 }
714
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200715 /* Don't run VGA option ROMs, unless we have to print
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300716 * something on the screen before the kernel is loaded.
717 */
Furquan Shaikh0325dc62016-07-25 13:02:36 -0700718 should_run = display_init_required();
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300719
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200720 if (!should_run)
721 printk(BIOS_DEBUG, "Not running VGA Option ROM\n");
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300722 return should_run;
723}
724
725static int should_load_oprom(struct device *dev)
726{
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300727 /* If S3_VGA_ROM_RUN is disabled, skip running VGA option
728 * ROMs when coming out of an S3 resume.
729 */
Julius Wernercd49cce2019-03-05 16:53:33 -0800730 if (!CONFIG(S3_VGA_ROM_RUN) && acpi_is_wakeup_s3() &&
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300731 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
732 return 0;
Julius Wernercd49cce2019-03-05 16:53:33 -0800733 if (CONFIG(ALWAYS_LOAD_OPROM))
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300734 return 1;
735 if (should_run_oprom(dev))
736 return 1;
737
738 return 0;
739}
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300740
Uwe Hermanne4870472010-11-04 23:23:47 +0000741/** Default handler: only runs the relevant PCI BIOS. */
Li-Ta Lo883b8792005-01-10 23:16:22 +0000742void pci_dev_init(struct device *dev)
743{
744 struct rom_header *rom, *ram;
745
Julius Wernercd49cce2019-03-05 16:53:33 -0800746 if (!CONFIG(VGA_ROM_RUN))
Aaron Durbinfbed9a52018-01-30 09:58:51 -0700747 return;
748
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100749 /* Only execute VGA ROMs. */
750 if (((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
Myles Watson17aeeca2009-10-07 18:41:08 +0000751 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000752
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300753 if (!should_load_oprom(dev))
Stefan Reinauer74a0efe2012-03-30 17:10:49 -0700754 return;
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700755 timestamp_add_now(TS_OPROM_INITIALIZE);
Aaron Durbince872cb2013-03-28 15:59:19 -0500756
757 rom = pci_rom_probe(dev);
758 if (rom == NULL)
759 return;
760
761 ram = pci_rom_load(dev, rom);
762 if (ram == NULL)
763 return;
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700764 timestamp_add_now(TS_OPROM_COPY_END);
Aaron Durbince872cb2013-03-28 15:59:19 -0500765
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300766 if (!should_run_oprom(dev))
767 return;
768
Stefan Reinauerd98cf5b2008-08-01 11:25:41 +0000769 run_bios(dev, (unsigned long)ram);
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +0200770
Kyösti Mälkkiab56b3b2013-11-28 16:44:51 +0200771 gfx_set_init_done(1);
772 printk(BIOS_DEBUG, "VGA Option ROM was run\n");
Martin Roth5dd4a2a2018-03-06 16:10:45 -0700773 timestamp_add_now(TS_OPROM_END);
Johanna Schanderdb7a3ae2019-07-24 10:14:26 +0200774
775 if (CONFIG(BOOTSPLASH))
776 set_vesa_bootsplash();
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000777}
Li-Ta Lo883b8792005-01-10 23:16:22 +0000778
Li-Ta Loe5266692004-03-23 21:28:05 +0000779/** Default device operation for PCI devices */
Subrata Banikffc790b2017-12-11 10:29:49 +0530780struct pci_operations pci_dev_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000781 .set_subsystem = pci_dev_set_subsystem,
782};
783
Eric Biederman8ca8d762003-04-22 19:02:15 +0000784struct device_operations default_pci_ops_dev = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000785 .read_resources = pci_dev_read_resources,
786 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000787 .enable_resources = pci_dev_enable_resources,
Julius Wernercd49cce2019-03-05 16:53:33 -0800788#if CONFIG(HAVE_ACPI_TABLES)
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200789 .write_acpi_tables = pci_rom_write_acpi_tables,
Patrick Rudolph00c0cd22017-06-06 19:30:55 +0200790 .acpi_fill_ssdt_generator = pci_rom_ssdt,
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200791#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000792 .init = pci_dev_init,
793 .scan_bus = 0,
794 .enable = 0,
795 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000796};
Li-Ta Loe5266692004-03-23 21:28:05 +0000797
798/** Default device operations for PCI bridges */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000799static struct pci_operations pci_bus_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000800 .set_subsystem = 0,
801};
Li-Ta Lo883b8792005-01-10 23:16:22 +0000802
Eric Biederman8ca8d762003-04-22 19:02:15 +0000803struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000804 .read_resources = pci_bus_read_resources,
805 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000806 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000807 .init = 0,
808 .scan_bus = pci_scan_bridge,
809 .enable = 0,
810 .reset_bus = pci_bus_reset,
811 .ops_pci = &pci_bus_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000812};
Li-Ta Loe5266692004-03-23 21:28:05 +0000813
814/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000815 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000816 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000817 * This function is a heuristic to detect which type of bus is downstream
818 * of a PCI-to-PCI bridge. This functions by looking for various capability
819 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
820 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000821 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000822 * When only a PCI-Express capability is found the type is examined to see
823 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000824 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000825 * @param dev Pointer to the device structure of the bridge.
826 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000827 */
Aaron Durbinc30d9132017-08-07 16:55:43 -0600828static struct device_operations *get_pci_bridge_ops(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000829{
Julius Wernercd49cce2019-03-05 16:53:33 -0800830#if CONFIG(PCIX_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800831 unsigned int pcixpos;
832 pcixpos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
833 if (pcixpos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000834 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000835 return &default_pcix_ops_bus;
836 }
837#endif
Julius Wernercd49cce2019-03-05 16:53:33 -0800838#if CONFIG(HYPERTRANSPORT_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800839 unsigned int htpos = 0;
840 while ((htpos = pci_find_next_capability(dev, PCI_CAP_ID_HT, htpos))) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000841 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800842 flags = pci_read_config16(dev, htpos + PCI_CAP_FLAGS);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000843 if ((flags >> 13) == 1) {
844 /* Host or Secondary Interface */
Uwe Hermanne4870472010-11-04 23:23:47 +0000845 printk(BIOS_DEBUG, "%s subordinate bus HT\n",
846 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000847 return &default_ht_ops_bus;
848 }
849 }
850#endif
Julius Wernercd49cce2019-03-05 16:53:33 -0800851#if CONFIG(PCIEXP_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800852 unsigned int pciexpos;
853 pciexpos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
854 if (pciexpos) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000855 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800856 flags = pci_read_config16(dev, pciexpos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000857 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000858 case PCI_EXP_TYPE_ROOT_PORT:
859 case PCI_EXP_TYPE_UPSTREAM:
860 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000861 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000862 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000863 return &default_pciexp_ops_bus;
864 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +0000865 printk(BIOS_DEBUG, "%s subordinate PCI\n",
866 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000867 return &default_pci_ops_bus;
868 default:
869 break;
870 }
871 }
872#endif
873 return &default_pci_ops_bus;
874}
875
876/**
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700877 * Check if a device id matches a PCI driver entry.
878 *
879 * The driver entry can either point at a zero terminated array of acceptable
880 * device IDs, or include a single device ID.
881 *
Martin Roth98b698c2015-01-06 21:02:52 -0700882 * @param driver pointer to the PCI driver entry being checked
883 * @param device_id PCI device ID of the device being matched
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700884 */
885static int device_id_match(struct pci_driver *driver, unsigned short device_id)
886{
887 if (driver->devices) {
888 unsigned short check_id;
889 const unsigned short *device_list = driver->devices;
890 while ((check_id = *device_list++) != 0)
891 if (check_id == device_id)
892 return 1;
893 }
894
895 return (driver->device == device_id);
896}
897
898/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000899 * Set up PCI device operation.
900 *
901 * Check if it already has a driver. If not, use find_device_operations(),
902 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +0000903 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000904 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +0000905 * @see pci_drivers
906 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000907static void set_pci_ops(struct device *dev)
908{
909 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +0000910
Uwe Hermanne4870472010-11-04 23:23:47 +0000911 if (dev->ops)
912 return;
913
914 /*
915 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +0000916 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000917 */
Aaron Durbin03758152015-09-03 17:23:08 -0500918 for (driver = &_pci_drivers[0]; driver != &_epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000919 if ((driver->vendor == dev->vendor) &&
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700920 device_id_match(driver, dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +0000921 dev->ops = (struct device_operations *)driver->ops;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000922 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000923 dev_path(dev), driver->vendor, driver->device,
924 (driver->ops->scan_bus ? "bus " : ""));
Eric Biederman5899fd82003-04-24 06:25:08 +0000925 return;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000926 }
927 }
Li-Ta Loe5266692004-03-23 21:28:05 +0000928
Uwe Hermanne4870472010-11-04 23:23:47 +0000929 /* If I don't have a specific driver use the default operations. */
930 switch (dev->hdr_type & 0x7f) { /* Header type */
931 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +0000932 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
933 goto bad;
934 dev->ops = &default_pci_ops_dev;
935 break;
936 case PCI_HEADER_TYPE_BRIDGE:
937 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
938 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000939 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000940 break;
Julius Wernercd49cce2019-03-05 16:53:33 -0800941#if CONFIG(CARDBUS_PLUGIN_SUPPORT)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000942 case PCI_HEADER_TYPE_CARDBUS:
943 dev->ops = &default_cardbus_ops_bus;
944 break;
945#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000946default:
947bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000948 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000949 printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "
950 "header type %02x, ignoring.\n", dev_path(dev),
951 dev->vendor, dev->device,
952 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +0000953 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000954 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000955}
956
957/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000958 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +0000959 *
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200960 * Given a PCI bus structure and a devfn number, find the device structure
961 * corresponding to the devfn, if present. Then move the device structure
962 * as the last child on the bus.
Li-Ta Loe5266692004-03-23 21:28:05 +0000963 *
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200964 * @param bus Pointer to the bus structure.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000965 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000966 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +0000967 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000968 */
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200969static struct device *pci_scan_get_dev(struct bus *bus, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000970{
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200971 struct device *dev, **prev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000972
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200973 prev = &bus->children;
974 for (dev = bus->children; dev; dev = dev->sibling) {
975 if (dev->path.type == DEVICE_PATH_PCI) {
976 if (dev->path.pci.devfn == devfn) {
977 /* Unlink from the list. */
978 *prev = dev->sibling;
979 dev->sibling = NULL;
980 break;
981 }
982 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +0000983 printk(BIOS_ERR, "child %s not a PCI device\n",
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200984 dev_path(dev));
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000985 }
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200986 prev = &dev->sibling;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000987 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000988
Uwe Hermanne4870472010-11-04 23:23:47 +0000989 /*
990 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +0000991 * bus. When the list of devices was formed we removed all of the
992 * parents children, and now we are interleaving static and dynamic
993 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000994 */
Eric Biedermane9a271e32003-09-02 03:36:25 +0000995 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000996 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +0000997
Kyösti Mälkki8712aa12019-01-09 11:31:25 +0200998 /* Find the last child on the bus. */
999 for (child = bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +00001000 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +00001001
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001002 /* Place the device as last on the bus. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001003 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +00001004 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001005 else
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001006 bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001007 }
1008
Eric Biederman8ca8d762003-04-22 19:02:15 +00001009 return dev;
1010}
1011
Myles Watson032a9652009-05-11 22:24:53 +00001012/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001013 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +00001014 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001015 * Determine the existence of a given PCI device. Allocate a new struct device
1016 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001017 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001018 * @param dev Pointer to the dev structure.
1019 * @param bus Pointer to the bus structure.
1020 * @param devfn A device/function number to look at.
1021 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001022 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001023struct device *pci_probe_dev(struct device *dev, struct bus *bus,
1024 unsigned int devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001025{
Myles Watson29cc9ed2009-07-02 18:56:24 +00001026 u32 id, class;
1027 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001028
Myles Watson29cc9ed2009-07-02 18:56:24 +00001029 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001030 if (!dev) {
1031 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +00001032
Myles Watson29cc9ed2009-07-02 18:56:24 +00001033 dummy.bus = bus;
1034 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +00001035 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +00001036
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001037 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +00001038 /*
1039 * Have we found something? Some broken boards return 0 if a
1040 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001041 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001042 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +00001043 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +00001044
Stefan Reinauer7355c752010-04-02 16:30:25 +00001045 if ((id == 0x00000000) || (id == 0x0000ffff) ||
1046 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001047 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
1048 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001049 return NULL;
1050 }
1051 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001052 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +00001053 /*
1054 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +00001055 * specific operations this operations we will disable the
1056 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +00001057 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001058 * This is geared toward devices that have subfunctions
1059 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +00001060 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001061 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +00001062 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001063 */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001064 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001065 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001066 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +00001067
Myles Watson29cc9ed2009-07-02 18:56:24 +00001068 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001069 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +00001070
Uwe Hermanne4870472010-11-04 23:23:47 +00001071 /*
1072 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +00001073 * this is because we have already disabled the device. But
1074 * this also handles optional devices that may not always
1075 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001076 */
1077 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001078 if ((id == 0xffffffff) || (id == 0x00000000) ||
1079 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001080 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001081 printk(BIOS_INFO, "PCI: Static device %s not "
1082 "found, disabling it.\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001083 dev->enabled = 0;
1084 }
1085 return dev;
1086 }
1087 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001088
Myles Watson29cc9ed2009-07-02 18:56:24 +00001089 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001090 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
1091 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +00001092
Myles Watson29cc9ed2009-07-02 18:56:24 +00001093 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001094 dev->vendor = id & 0xffff;
1095 dev->device = (id >> 16) & 0xffff;
1096 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001097
1098 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001099 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +00001100
Myles Watson29cc9ed2009-07-02 18:56:24 +00001101 /* Architectural/System devices always need to be bus masters. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001102 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001103 dev->command |= PCI_COMMAND_MASTER;
Uwe Hermanne4870472010-11-04 23:23:47 +00001104
1105 /*
1106 * Look at the vendor and device ID, or at least the header type and
Myles Watson29cc9ed2009-07-02 18:56:24 +00001107 * class and figure out which set of configuration methods to use.
1108 * Unless we already have some PCI ops.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001109 */
1110 set_pci_ops(dev);
1111
Myles Watson29cc9ed2009-07-02 18:56:24 +00001112 /* Now run the magic enable/disable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001113 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001114 dev->ops->enable(dev);
Myles Watson032a9652009-05-11 22:24:53 +00001115
Myles Watson29cc9ed2009-07-02 18:56:24 +00001116 /* Display the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001117 printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
1118 dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
1119 dev->ops ? "" : " No operations");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001120
1121 return dev;
1122}
1123
Myles Watson032a9652009-05-11 22:24:53 +00001124/**
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001125 * Test for match between romstage and ramstage device instance.
1126 *
1127 * @param dev Pointer to the device structure.
1128 * @param sdev Simple device model identifier, created with PCI_DEV().
1129 * @return Non-zero if bus:dev.fn of device matches.
1130 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001131unsigned int pci_match_simple_dev(struct device *dev, pci_devfn_t sdev)
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001132{
1133 return dev->bus->secondary == PCI_DEV2SEGBUS(sdev) &&
1134 dev->path.pci.devfn == PCI_DEV2DEVFN(sdev);
1135}
1136
1137/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001138 * Scan a PCI bus.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001139 *
Li-Ta Loe5266692004-03-23 21:28:05 +00001140 * Determine the existence of devices and bridges on a PCI bus. If there are
1141 * bridges on the bus, recursively scan the buses behind the bridges.
1142 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001143 * @param bus Pointer to the bus structure.
1144 * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1145 * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001146 */
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001147void pci_scan_bus(struct bus *bus, unsigned min_devfn,
1148 unsigned max_devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001149{
1150 unsigned int devfn;
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001151 struct device *dev, **prev;
1152 int once = 0;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001153
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001154 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %02x\n", bus->secondary);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001155
Uwe Hermanne4870472010-11-04 23:23:47 +00001156 /* Maximum sane devfn is 0xFF. */
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001157 if (max_devfn > 0xff) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001158 printk(BIOS_ERR, "PCI: pci_scan_bus limits devfn %x - "
1159 "devfn %x\n", min_devfn, max_devfn);
1160 printk(BIOS_ERR, "PCI: pci_scan_bus upper limit too big. "
1161 "Using 0xff.\n");
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001162 max_devfn=0xff;
1163 }
1164
Eric Biederman8ca8d762003-04-22 19:02:15 +00001165 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001166
1167 /*
1168 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001169 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001170 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001171 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001172 /* First thing setup the device structure. */
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001173 dev = pci_scan_get_dev(bus, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001174
Myles Watson29cc9ed2009-07-02 18:56:24 +00001175 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001176 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001177
Uwe Hermanne4870472010-11-04 23:23:47 +00001178 /*
1179 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001180 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001181 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001182 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001183 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001184 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001185 devfn += 0x07;
1186 }
1187 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001188
Eric Biederman8ca8d762003-04-22 19:02:15 +00001189 post_code(0x25);
1190
Uwe Hermanne4870472010-11-04 23:23:47 +00001191 /*
1192 * Warn if any leftover static devices are are found.
1193 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001194 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001195
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001196 prev = &bus->children;
1197 for (dev = bus->children; dev; dev = dev->sibling) {
1198 /* If we read valid vendor id, it is not leftover device. */
1199 if (dev->vendor != 0) {
1200 prev = &dev->sibling;
1201 continue;
1202 }
1203
1204 /* Unlink it from list. */
1205 *prev = dev->sibling;
1206
1207 if (!once++)
1208 printk(BIOS_WARNING, "PCI: Leftover static devices:\n");
1209 printk(BIOS_WARNING, "%s\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001210 }
1211
Kyösti Mälkki8712aa12019-01-09 11:31:25 +02001212 if (once)
1213 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
1214
Uwe Hermanne4870472010-11-04 23:23:47 +00001215 /*
1216 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001217 * scan the bus behind that child.
1218 */
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001219
Kyösti Mälkki2d2367c2015-02-20 21:28:31 +02001220 scan_bridges(bus);
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001221
Uwe Hermanne4870472010-11-04 23:23:47 +00001222 /*
1223 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001224 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001225 * Return how far we've got finding sub-buses.
1226 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001227 post_code(0x55);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001228}
1229
Kyösti Mälkki33452402015-02-23 06:58:26 +02001230typedef enum {
1231 PCI_ROUTE_CLOSE,
1232 PCI_ROUTE_SCAN,
1233 PCI_ROUTE_FINAL,
1234} scan_state;
1235
1236static void pci_bridge_route(struct bus *link, scan_state state)
1237{
1238 struct device *dev = link->dev;
1239 struct bus *parent = dev->bus;
1240 u32 reg, buses = 0;
1241
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001242 if (state == PCI_ROUTE_SCAN) {
1243 link->secondary = parent->subordinate + 1;
1244 link->subordinate = link->secondary;
1245 }
1246
Kyösti Mälkki33452402015-02-23 06:58:26 +02001247 if (state == PCI_ROUTE_CLOSE) {
1248 buses |= 0xfeff << 8;
1249 } else if (state == PCI_ROUTE_SCAN) {
Timothy Pearson7d8a4782015-10-24 20:34:57 -05001250 buses |= parent->secondary & 0xff;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001251 buses |= ((u32) link->secondary & 0xff) << 8;
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001252 buses |= 0xff << 16; /* MAX PCI_BUS number here */
Kyösti Mälkki33452402015-02-23 06:58:26 +02001253 } else if (state == PCI_ROUTE_FINAL) {
1254 buses |= parent->secondary & 0xff;
1255 buses |= ((u32) link->secondary & 0xff) << 8;
1256 buses |= ((u32) link->subordinate & 0xff) << 16;
1257 }
1258
1259 if (state == PCI_ROUTE_SCAN) {
1260 /* Clear all status bits and turn off memory, I/O and master enables. */
1261 link->bridge_cmd = pci_read_config16(dev, PCI_COMMAND);
1262 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1263 pci_write_config16(dev, PCI_STATUS, 0xffff);
1264 }
1265
1266 /*
1267 * Configure the bus numbers for this bridge: the configuration
1268 * transactions will not be propagated by the bridge if it is not
1269 * correctly configured.
1270 */
1271
1272 reg = pci_read_config32(dev, PCI_PRIMARY_BUS);
1273 reg &= 0xff000000;
1274 reg |= buses;
1275 pci_write_config32(dev, PCI_PRIMARY_BUS, reg);
1276
1277 if (state == PCI_ROUTE_FINAL) {
1278 pci_write_config16(dev, PCI_COMMAND, link->bridge_cmd);
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001279 parent->subordinate = link->subordinate;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001280 }
1281}
1282
Li-Ta Loe5266692004-03-23 21:28:05 +00001283/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001284 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001285 *
1286 * Determine the existence of buses behind the bridge. Set up the bridge
1287 * according to the result of the scan.
1288 *
1289 * This function is the default scan_bus() method for PCI bridge devices.
1290 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001291 * @param dev Pointer to the bridge device.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001292 * @param do_scan_bus TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +00001293 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001294void do_pci_scan_bridge(struct device *dev,
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001295 void (*do_scan_bus) (struct bus * bus,
Myles Watson29cc9ed2009-07-02 18:56:24 +00001296 unsigned min_devfn,
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001297 unsigned max_devfn))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001298{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001299 struct bus *bus;
Eric Biederman83b991a2003-10-11 06:20:25 +00001300
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001301 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001302
Myles Watson894a3472010-06-09 22:41:35 +00001303 if (dev->link_list == NULL) {
1304 struct bus *link;
1305 link = malloc(sizeof(*link));
1306 if (link == NULL)
1307 die("Couldn't allocate a link!\n");
1308 memset(link, 0, sizeof(*link));
1309 link->dev = dev;
1310 dev->link_list = link;
1311 }
1312
1313 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001314
Kyösti Mälkki33452402015-02-23 06:58:26 +02001315 pci_bridge_route(bus, PCI_ROUTE_SCAN);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001316
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001317 do_scan_bus(bus, 0x00, 0xff);
Kyösti Mälkki33452402015-02-23 06:58:26 +02001318
1319 pci_bridge_route(bus, PCI_ROUTE_FINAL);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001320}
Li-Ta Loe5266692004-03-23 21:28:05 +00001321
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001322/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001323 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001324 *
1325 * Determine the existence of buses behind the bridge. Set up the bridge
1326 * according to the result of the scan.
1327 *
1328 * This function is the default scan_bus() method for PCI bridge devices.
1329 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001330 * @param dev Pointer to the bridge device.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001331 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001332void pci_scan_bridge(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001333{
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001334 do_pci_scan_bridge(dev, pci_scan_bus);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001335}
1336
Myles Watson29cc9ed2009-07-02 18:56:24 +00001337/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001338 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001339 *
1340 * This function is the default scan_bus() method for PCI domains.
1341 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001342 * @param dev Pointer to the domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001343 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001344void pci_domain_scan_bus(struct device *dev)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001345{
Kyösti Mälkki6f370172015-03-19 15:26:52 +02001346 struct bus *link = dev->link_list;
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001347 pci_scan_bus(link, PCI_DEVFN(0, 0), 0xff);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001348}
1349
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001350/**
1351 * Take an INT_PIN number (0, 1 - 4) and convert
1352 * it to a string ("NO PIN", "PIN A" - "PIN D")
1353 *
1354 * @param pin PCI Interrupt Pin number (0, 1 - 4)
1355 * @return A string corresponding to the pin number or "Invalid"
1356 */
1357const char *pin_to_str(int pin)
1358{
1359 const char *str[5] = {
1360 "NO PIN",
1361 "PIN A",
1362 "PIN B",
1363 "PIN C",
1364 "PIN D",
1365 };
1366
1367 if (pin >= 0 && pin <= 4)
1368 return str[pin];
1369 else
1370 return "Invalid PIN, not 0 - 4";
1371}
1372
1373/**
1374 * Get the PCI INT_PIN swizzle for a device defined as:
1375 * pin_parent = (pin_child + devn_child) % 4 + 1
1376 * where PIN A = 1 ... PIN_D = 4
1377 *
1378 * Given a PCI device structure 'dev', find the interrupt pin
1379 * that will be triggered on its parent bridge device when
1380 * generating an interrupt. For example: Device 1:3.2 may
1381 * use INT_PIN A but will trigger PIN D on its parent bridge
1382 * device. In this case, this function will return 4 (PIN D).
1383 *
1384 * @param dev A PCI device structure to swizzle interrupt pins for
Martin Roth32bc6b62015-01-04 16:54:35 -07001385 * @param *parent_bridge The PCI device structure for the bridge
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001386 * device 'dev' is attached to
1387 * @return The interrupt pin number (1 - 4) that 'dev' will
1388 * trigger when generating an interrupt
1389 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001390static int swizzle_irq_pins(struct device *dev, struct device **parent_bridge)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001391{
Aaron Durbinc30d9132017-08-07 16:55:43 -06001392 struct device *parent; /* Our current device's parent device */
1393 struct device *child; /* The child device of the parent */
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001394 uint8_t parent_bus = 0; /* Parent Bus number */
1395 uint16_t parent_devfn = 0; /* Parent Device and Function number */
1396 uint16_t child_devfn = 0; /* Child Device and Function number */
1397 uint8_t swizzled_pin = 0; /* Pin swizzled across a bridge */
1398
1399 /* Start with PIN A = 0 ... D = 3 */
1400 swizzled_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN) - 1;
1401
1402 /* While our current device has parent devices */
1403 child = dev;
1404 for (parent = child->bus->dev; parent; parent = parent->bus->dev) {
1405 parent_bus = parent->bus->secondary;
1406 parent_devfn = parent->path.pci.devfn;
1407 child_devfn = child->path.pci.devfn;
1408
1409 /* Swizzle the INT_PIN for any bridges not on root bus */
1410 swizzled_pin = (PCI_SLOT(child_devfn) + swizzled_pin) % 4;
1411 printk(BIOS_SPEW, "\tWith INT_PIN swizzled to %s\n"
1412 "\tAttached to bridge device %01X:%02Xh.%02Xh\n",
1413 pin_to_str(swizzled_pin + 1), parent_bus,
1414 PCI_SLOT(parent_devfn), PCI_FUNC(parent_devfn));
1415
1416 /* Continue until we find the root bus */
1417 if (parent_bus > 0) {
1418 /*
1419 * We will go on to the next parent so this parent
1420 * becomes the child
1421 */
1422 child = parent;
1423 continue;
1424 } else {
1425 /*
1426 * Found the root bridge device,
1427 * fill in the structure and exit
1428 */
1429 *parent_bridge = parent;
1430 break;
1431 }
1432 }
1433
1434 /* End with PIN A = 1 ... D = 4 */
1435 return swizzled_pin + 1;
1436}
1437
1438/**
1439 * Given a device structure 'dev', find its interrupt pin
1440 * and its parent bridge 'parent_bdg' device structure.
1441 * If it is behind a bridge, it will return the interrupt
1442 * pin number (1 - 4) of the parent bridge that the device
1443 * interrupt pin has been swizzled to, otherwise it will
1444 * return the interrupt pin that is programmed into the
1445 * PCI config space of the target device. If 'dev' is
1446 * behind a bridge, it will fill in 'parent_bdg' with the
1447 * device structure of the bridge it is behind, otherwise
1448 * it will copy 'dev' into 'parent_bdg'.
1449 *
1450 * @param dev A PCI device structure to get interrupt pins for.
1451 * @param *parent_bdg The PCI device structure for the bridge
1452 * device 'dev' is attached to.
1453 * @return The interrupt pin number (1 - 4) that 'dev' will
1454 * trigger when generating an interrupt.
1455 * Errors: -1 is returned if the device is not enabled
1456 * -2 is returned if a parent bridge could not be found.
1457 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001458int get_pci_irq_pins(struct device *dev, struct device **parent_bdg)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001459{
1460 uint8_t bus = 0; /* The bus this device is on */
1461 uint16_t devfn = 0; /* This device's device and function numbers */
1462 uint8_t int_pin = 0; /* Interrupt pin used by the device */
1463 uint8_t target_pin = 0; /* Interrupt pin we want to assign an IRQ to */
1464
1465 /* Make sure this device is enabled */
1466 if (!(dev->enabled && (dev->path.type == DEVICE_PATH_PCI)))
1467 return -1;
1468
1469 bus = dev->bus->secondary;
1470 devfn = dev->path.pci.devfn;
1471
1472 /* Get and validate the interrupt pin used. Only 1-4 are allowed */
1473 int_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN);
1474 if (int_pin < 1 || int_pin > 4)
1475 return -1;
1476
1477 printk(BIOS_SPEW, "PCI IRQ: Found device %01X:%02X.%02X using %s\n",
1478 bus, PCI_SLOT(devfn), PCI_FUNC(devfn), pin_to_str(int_pin));
1479
1480 /* If this device is on a bridge, swizzle its INT_PIN */
1481 if (bus) {
1482 /* Swizzle its INT_PINs */
1483 target_pin = swizzle_irq_pins(dev, parent_bdg);
1484
1485 /* Make sure the swizzle returned valid structures */
1486 if (parent_bdg == NULL) {
1487 printk(BIOS_WARNING,
1488 "Warning: Could not find parent bridge for this device!\n");
1489 return -2;
1490 }
1491 } else { /* Device is not behind a bridge */
1492 target_pin = int_pin; /* Return its own interrupt pin */
1493 *parent_bdg = dev; /* Return its own structure */
1494 }
1495
1496 /* Target pin is the interrupt pin we want to assign an IRQ to */
1497 return target_pin;
1498}
1499
Julius Wernercd49cce2019-03-05 16:53:33 -08001500#if CONFIG(PC80_SYSTEM)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001501/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001502 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001503 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001504 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001505 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001506 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001507 *
1508 * This function should be called for each PCI slot in your system.
1509 *
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001510 * @param dev Pointer to dev structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001511 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1512 * of this slot. The particular IRQ #s that are passed in depend on the
1513 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001514 */
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001515void pci_assign_irqs(struct device *dev, const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001516{
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001517 u8 slot, line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001518
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001519 /* Each device may contain up to eight functions. */
1520 slot = dev->path.pci.devfn >> 3;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001521
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001522 for (; dev ; dev = dev->sibling) {
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001523
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001524 if (dev->path.pci.devfn >> 3 != slot)
1525 break;
1526
1527 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001528
Uwe Hermanne4870472010-11-04 23:23:47 +00001529 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001530 if ((line < 1) || (line > 4))
1531 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001532
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001533 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001534
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001535 printk(BIOS_DEBUG, "Assigning IRQ %d to %s\n", irq, dev_path(dev));
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001536
Kyösti Mälkkic19d6a62019-07-04 21:39:28 +03001537 pci_write_config8(dev, PCI_INTERRUPT_LINE, pIntAtoD[line - 1]);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001538
1539#ifdef PARANOID_IRQ_ASSIGNMENTS
Myles Watson17aeeca2009-10-07 18:41:08 +00001540 irq = pci_read_config8(pdev, PCI_INTERRUPT_LINE);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001541 printk(BIOS_DEBUG, " Readback = %d\n", irq);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001542#endif
1543
Julius Wernercd49cce2019-03-05 16:53:33 -08001544#if CONFIG(PC80_SYSTEM)
Uwe Hermanne4870472010-11-04 23:23:47 +00001545 /* Change to level triggered. */
1546 i8259_configure_irq_trigger(pIntAtoD[line - 1],
1547 IRQ_LEVEL_TRIGGERED);
Stefan Reinauer5fb62162010-12-16 23:52:04 +00001548#endif
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001549 }
1550}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001551#endif