blob: 02eca66e274893195edfd2e0eb1a18963a85d7dd [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>
35#include <arch/io.h>
36#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>
Eric Biederman03acab62004-10-14 21:25:53 +000051
Myles Watson29cc9ed2009-07-02 18:56:24 +000052u8 pci_moving_config8(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000053{
Myles Watson29cc9ed2009-07-02 18:56:24 +000054 u8 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000055
Eric Biederman03acab62004-10-14 21:25:53 +000056 value = pci_read_config8(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000057
Eric Biederman03acab62004-10-14 21:25:53 +000058 pci_write_config8(dev, reg, 0xff);
59 ones = pci_read_config8(dev, reg);
60
61 pci_write_config8(dev, reg, 0x00);
62 zeroes = pci_read_config8(dev, reg);
63
64 pci_write_config8(dev, reg, value);
65
66 return ones ^ zeroes;
67}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +000068
Uwe Hermanne4870472010-11-04 23:23:47 +000069u16 pci_moving_config16(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000070{
Myles Watson29cc9ed2009-07-02 18:56:24 +000071 u16 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000072
Eric Biederman03acab62004-10-14 21:25:53 +000073 value = pci_read_config16(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000074
Eric Biederman03acab62004-10-14 21:25:53 +000075 pci_write_config16(dev, reg, 0xffff);
76 ones = pci_read_config16(dev, reg);
77
78 pci_write_config16(dev, reg, 0x0000);
79 zeroes = pci_read_config16(dev, reg);
80
81 pci_write_config16(dev, reg, value);
82
83 return ones ^ zeroes;
84}
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +000085
Uwe Hermanne4870472010-11-04 23:23:47 +000086u32 pci_moving_config32(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000087{
Myles Watson29cc9ed2009-07-02 18:56:24 +000088 u32 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000089
Eric Biederman03acab62004-10-14 21:25:53 +000090 value = pci_read_config32(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000091
Eric Biederman03acab62004-10-14 21:25:53 +000092 pci_write_config32(dev, reg, 0xffffffff);
93 ones = pci_read_config32(dev, reg);
94
95 pci_write_config32(dev, reg, 0x00000000);
96 zeroes = pci_read_config32(dev, reg);
97
98 pci_write_config32(dev, reg, value);
99
100 return ones ^ zeroes;
101}
102
Myles Watson29cc9ed2009-07-02 18:56:24 +0000103/**
104 * Given a device, a capability type, and a last position, return the next
105 * matching capability. Always start at the head of the list.
106 *
107 * @param dev Pointer to the device structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000108 * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000109 * @param last Location of the PCI capability register to start from.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000110 * @return The next matching capability.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000111 */
112unsigned pci_find_next_capability(struct device *dev, unsigned cap,
113 unsigned last)
Eric Biederman03acab62004-10-14 21:25:53 +0000114{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +0000115 unsigned pos = 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000116 u16 status;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000117 unsigned reps = 48;
Stefan Reinauer4d933dd2009-07-21 21:36:41 +0000118
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000119 status = pci_read_config16(dev, PCI_STATUS);
Uwe Hermanne4870472010-11-04 23:23:47 +0000120 if (!(status & PCI_STATUS_CAP_LIST))
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000121 return 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000122
Myles Watson29cc9ed2009-07-02 18:56:24 +0000123 switch (dev->hdr_type & 0x7f) {
Eric Biederman03acab62004-10-14 21:25:53 +0000124 case PCI_HEADER_TYPE_NORMAL:
125 case PCI_HEADER_TYPE_BRIDGE:
126 pos = PCI_CAPABILITY_LIST;
127 break;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000128 case PCI_HEADER_TYPE_CARDBUS:
129 pos = PCI_CB_CAPABILITY_LIST;
130 break;
131 default:
132 return 0;
Eric Biederman03acab62004-10-14 21:25:53 +0000133 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000134
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000135 pos = pci_read_config8(dev, pos);
Uwe Hermanne4870472010-11-04 23:23:47 +0000136 while (reps-- && (pos >= 0x40)) { /* Loop through the linked list. */
Eric Biederman03acab62004-10-14 21:25:53 +0000137 int this_cap;
Uwe Hermanne4870472010-11-04 23:23:47 +0000138
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000139 pos &= ~3;
Eric Biederman03acab62004-10-14 21:25:53 +0000140 this_cap = pci_read_config8(dev, pos + PCI_CAP_LIST_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000141 printk(BIOS_SPEW, "Capability: type 0x%02x @ 0x%02x\n",
142 this_cap, pos);
143 if (this_cap == 0xff)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000144 break;
Uwe Hermanne4870472010-11-04 23:23:47 +0000145
146 if (!last && (this_cap == cap))
Eric Biederman03acab62004-10-14 21:25:53 +0000147 return pos;
Uwe Hermanne4870472010-11-04 23:23:47 +0000148
149 if (last == pos)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000150 last = 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000151
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000152 pos = pci_read_config8(dev, pos + PCI_CAP_LIST_NEXT);
Eric Biederman03acab62004-10-14 21:25:53 +0000153 }
154 return 0;
155}
156
Myles Watson29cc9ed2009-07-02 18:56:24 +0000157/**
158 * Given a device, and a capability type, return the next matching
159 * capability. Always start at the head of the list.
160 *
161 * @param dev Pointer to the device structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000162 * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
163 * @return The next matching capability.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000164 */
Aaron Durbinc30d9132017-08-07 16:55:43 -0600165unsigned int pci_find_capability(struct device *dev, unsigned int cap)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000166{
167 return pci_find_next_capability(dev, cap, 0);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000168}
169
Myles Watson29cc9ed2009-07-02 18:56:24 +0000170/**
171 * Given a device and register, read the size of the BAR for that register.
172 *
173 * @param dev Pointer to the device structure.
174 * @param index Address of the PCI configuration register.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000175 * @return TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +0000176 */
Eric Biederman03acab62004-10-14 21:25:53 +0000177struct resource *pci_get_resource(struct device *dev, unsigned long index)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000178{
Eric Biederman5cd81732004-03-11 15:01:31 +0000179 struct resource *resource;
Eric Biederman03acab62004-10-14 21:25:53 +0000180 unsigned long value, attr;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000181 resource_t moving, limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000182
Myles Watson29cc9ed2009-07-02 18:56:24 +0000183 /* Initialize the resources to nothing. */
Eric Biederman03acab62004-10-14 21:25:53 +0000184 resource = new_resource(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000185
Myles Watson29cc9ed2009-07-02 18:56:24 +0000186 /* Get the initial value. */
Eric Biederman03acab62004-10-14 21:25:53 +0000187 value = pci_read_config32(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000188
Myles Watson29cc9ed2009-07-02 18:56:24 +0000189 /* See which bits move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000190 moving = pci_moving_config32(dev, index);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000191
Myles Watson29cc9ed2009-07-02 18:56:24 +0000192 /* Initialize attr to the bits that do not move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000193 attr = value & ~moving;
194
Myles Watson29cc9ed2009-07-02 18:56:24 +0000195 /* If it is a 64bit resource look at the high half as well. */
Eric Biederman03acab62004-10-14 21:25:53 +0000196 if (((attr & PCI_BASE_ADDRESS_SPACE_IO) == 0) &&
Myles Watson29cc9ed2009-07-02 18:56:24 +0000197 ((attr & PCI_BASE_ADDRESS_MEM_LIMIT_MASK) ==
198 PCI_BASE_ADDRESS_MEM_LIMIT_64)) {
199 /* Find the high bits that move. */
200 moving |=
201 ((resource_t) pci_moving_config32(dev, index + 4)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000202 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000203
Myles Watson032a9652009-05-11 22:24:53 +0000204 /* Find the resource constraints.
Eric Biederman03acab62004-10-14 21:25:53 +0000205 * Start by finding the bits that move. From there:
206 * - Size is the least significant bit of the bits that move.
207 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000208 * See PCI Spec 6.2.5.1.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000209 */
Eric Biederman03acab62004-10-14 21:25:53 +0000210 limit = 0;
211 if (moving) {
212 resource->size = 1;
213 resource->align = resource->gran = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000214 while (!(moving & resource->size)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000215 resource->size <<= 1;
216 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000217 resource->gran += 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000218 }
219 resource->limit = limit = moving | (resource->size - 1);
Nico Huber8193b062015-10-21 15:43:41 +0200220
221 if (pci_base_address_is_memory_space(attr)) {
222 /* Page-align to allow individual mapping of devices. */
223 if (resource->align < 12)
224 resource->align = 12;
225 }
Eric Biederman03acab62004-10-14 21:25:53 +0000226 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000227
Uwe Hermanne4870472010-11-04 23:23:47 +0000228 /*
229 * Some broken hardware has read-only registers that do not
Eric Biederman03acab62004-10-14 21:25:53 +0000230 * really size correctly.
Uwe Hermanne4870472010-11-04 23:23:47 +0000231 *
232 * Example: the Acer M7229 has BARs 1-4 normally read-only,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000233 * so BAR1 at offset 0x10 reads 0x1f1. If you size that register
Uwe Hermanne4870472010-11-04 23:23:47 +0000234 * by writing 0xffffffff to it, it will read back as 0x1f1 -- which
235 * is a violation of the spec.
236 *
237 * We catch this case and ignore it by observing which bits move.
238 *
239 * This also catches the common case of unimplemented registers
Eric Biederman03acab62004-10-14 21:25:53 +0000240 * that always read back as 0.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000241 */
Eric Biederman03acab62004-10-14 21:25:53 +0000242 if (moving == 0) {
243 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000244 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
245 "read-only ignoring it\n",
246 dev_path(dev), index, value);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000247 }
248 resource->flags = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000249 } else if (attr & PCI_BASE_ADDRESS_SPACE_IO) {
250 /* An I/O mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000251 attr &= PCI_BASE_ADDRESS_IO_ATTR_MASK;
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/**
340 * Read the base address registers for a given device.
341 *
342 * @param dev Pointer to the dev structure.
343 * @param howmany How many registers to read (6 for device, 2 for bridge).
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000344 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000345static void pci_read_bases(struct device *dev, unsigned int howmany)
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000346{
347 unsigned long index;
348
Myles Watson29cc9ed2009-07-02 18:56:24 +0000349 for (index = PCI_BASE_ADDRESS_0;
350 (index < PCI_BASE_ADDRESS_0 + (howmany << 2));) {
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000351 struct resource *resource;
352 resource = pci_get_resource(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000353 index += (resource->flags & IORESOURCE_PCI64) ? 8 : 4;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000354 }
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000355
356 compact_resources(dev);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000357}
358
Myles Watson29cc9ed2009-07-02 18:56:24 +0000359static void pci_record_bridge_resource(struct device *dev, resource_t moving,
360 unsigned index, unsigned long type)
Eric Biederman03acab62004-10-14 21:25:53 +0000361{
Eric Biederman03acab62004-10-14 21:25:53 +0000362 struct resource *resource;
Uwe Hermanne4870472010-11-04 23:23:47 +0000363 unsigned long gran;
364 resource_t step;
365
Myles Watson29cc9ed2009-07-02 18:56:24 +0000366 resource = NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000367
368 if (!moving)
369 return;
370
371 /* Initialize the constraints on the current bus. */
372 resource = new_resource(dev, index);
373 resource->size = 0;
374 gran = 0;
375 step = 1;
376 while ((moving & step) == 0) {
377 gran += 1;
378 step <<= 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000379 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000380 resource->gran = gran;
381 resource->align = gran;
382 resource->limit = moving | (step - 1);
383 resource->flags = type | IORESOURCE_PCI_BRIDGE |
384 IORESOURCE_BRIDGE;
Eric Biederman03acab62004-10-14 21:25:53 +0000385}
386
Eric Biederman8ca8d762003-04-22 19:02:15 +0000387static void pci_bridge_read_bases(struct device *dev)
388{
Eric Biederman03acab62004-10-14 21:25:53 +0000389 resource_t moving_base, moving_limit, moving;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000390
Myles Watson29cc9ed2009-07-02 18:56:24 +0000391 /* See if the bridge I/O resources are implemented. */
392 moving_base = ((u32) pci_moving_config8(dev, PCI_IO_BASE)) << 8;
393 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000394 ((u32) pci_moving_config16(dev, PCI_IO_BASE_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000395
Myles Watson29cc9ed2009-07-02 18:56:24 +0000396 moving_limit = ((u32) pci_moving_config8(dev, PCI_IO_LIMIT)) << 8;
397 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000398 ((u32) pci_moving_config16(dev, PCI_IO_LIMIT_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000399
400 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000401
Myles Watson29cc9ed2009-07-02 18:56:24 +0000402 /* Initialize the I/O space constraints on the current bus. */
403 pci_record_bridge_resource(dev, moving, PCI_IO_BASE, IORESOURCE_IO);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000404
Myles Watson29cc9ed2009-07-02 18:56:24 +0000405 /* See if the bridge prefmem resources are implemented. */
406 moving_base =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000407 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_BASE)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000408 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000409 ((resource_t) pci_moving_config32(dev, PCI_PREF_BASE_UPPER32)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000410
Myles Watson29cc9ed2009-07-02 18:56:24 +0000411 moving_limit =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000412 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_LIMIT)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000413 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000414 ((resource_t) pci_moving_config32(dev, PCI_PREF_LIMIT_UPPER32)) << 32;
Myles Watson032a9652009-05-11 22:24:53 +0000415
Eric Biederman03acab62004-10-14 21:25:53 +0000416 moving = moving_base & moving_limit;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000417 /* Initialize the prefetchable memory constraints on the current bus. */
418 pci_record_bridge_resource(dev, moving, PCI_PREF_MEMORY_BASE,
419 IORESOURCE_MEM | IORESOURCE_PREFETCH);
Myles Watson032a9652009-05-11 22:24:53 +0000420
Myles Watson29cc9ed2009-07-02 18:56:24 +0000421 /* See if the bridge mem resources are implemented. */
422 moving_base = ((u32) pci_moving_config16(dev, PCI_MEMORY_BASE)) << 16;
423 moving_limit = ((u32) pci_moving_config16(dev, PCI_MEMORY_LIMIT)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000424
425 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000426
Myles Watson29cc9ed2009-07-02 18:56:24 +0000427 /* Initialize the memory resources on the current bus. */
428 pci_record_bridge_resource(dev, moving, PCI_MEMORY_BASE,
429 IORESOURCE_MEM);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000430
Eric Biederman5cd81732004-03-11 15:01:31 +0000431 compact_resources(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000432}
433
Eric Biederman5899fd82003-04-24 06:25:08 +0000434void pci_dev_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000435{
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000436 pci_read_bases(dev, 6);
437 pci_get_rom_resource(dev, PCI_ROM_ADDRESS);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000438}
439
Eric Biederman5899fd82003-04-24 06:25:08 +0000440void pci_bus_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000441{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000442 pci_bridge_read_bases(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000443 pci_read_bases(dev, 2);
444 pci_get_rom_resource(dev, PCI_ROM_ADDRESS1);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000445}
446
Myles Watson29cc9ed2009-07-02 18:56:24 +0000447void pci_domain_read_resources(struct device *dev)
448{
449 struct resource *res;
450
451 /* Initialize the system-wide I/O space constraints. */
452 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
453 res->limit = 0xffffUL;
454 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
455 IORESOURCE_ASSIGNED;
456
457 /* Initialize the system-wide memory resources constraints. */
458 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
459 res->limit = 0xffffffffULL;
460 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
461 IORESOURCE_ASSIGNED;
462}
463
Eric Biederman8ca8d762003-04-22 19:02:15 +0000464static void pci_set_resource(struct device *dev, struct resource *resource)
465{
Eric Biederman03acab62004-10-14 21:25:53 +0000466 resource_t base, end;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000467
Myles Watson29cc9ed2009-07-02 18:56:24 +0000468 /* Make certain the resource has actually been assigned a value. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000469 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000470 printk(BIOS_ERR, "ERROR: %s %02lx %s size: 0x%010llx not "
471 "assigned\n", dev_path(dev), resource->index,
472 resource_type(resource), resource->size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000473 return;
474 }
475
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000476 /* If this resource is fixed don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000477 if (resource->flags & IORESOURCE_FIXED)
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000478 return;
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000479
Myles Watson29cc9ed2009-07-02 18:56:24 +0000480 /* If I have already stored this resource don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000481 if (resource->flags & IORESOURCE_STORED)
Eric Biederman5cd81732004-03-11 15:01:31 +0000482 return;
Eric Biederman5cd81732004-03-11 15:01:31 +0000483
Myles Watson29cc9ed2009-07-02 18:56:24 +0000484 /* If the resource is subtractive don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000485 if (resource->flags & IORESOURCE_SUBTRACTIVE)
Eric Biederman03acab62004-10-14 21:25:53 +0000486 return;
Eric Biederman03acab62004-10-14 21:25:53 +0000487
Myles Watson29cc9ed2009-07-02 18:56:24 +0000488 /* Only handle PCI memory and I/O resources for now. */
489 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Eric Biederman8ca8d762003-04-22 19:02:15 +0000490 return;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000491
Myles Watson29cc9ed2009-07-02 18:56:24 +0000492 /* Enable the resources in the command register. */
Eric Biederman03acab62004-10-14 21:25:53 +0000493 if (resource->size) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000494 if (resource->flags & IORESOURCE_MEM)
Eric Biederman03acab62004-10-14 21:25:53 +0000495 dev->command |= PCI_COMMAND_MEMORY;
Uwe Hermanne4870472010-11-04 23:23:47 +0000496 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000497 dev->command |= PCI_COMMAND_IO;
Uwe Hermanne4870472010-11-04 23:23:47 +0000498 if (resource->flags & IORESOURCE_PCI_BRIDGE)
Eric Biederman03acab62004-10-14 21:25:53 +0000499 dev->command |= PCI_COMMAND_MASTER;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000500 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000501
Myles Watson29cc9ed2009-07-02 18:56:24 +0000502 /* Get the base address. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000503 base = resource->base;
Eric Biederman5cd81732004-03-11 15:01:31 +0000504
Myles Watson29cc9ed2009-07-02 18:56:24 +0000505 /* Get the end. */
Eric Biederman03acab62004-10-14 21:25:53 +0000506 end = resource_end(resource);
Myles Watson032a9652009-05-11 22:24:53 +0000507
Myles Watson29cc9ed2009-07-02 18:56:24 +0000508 /* Now store the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000509 resource->flags |= IORESOURCE_STORED;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000510
Uwe Hermanne4870472010-11-04 23:23:47 +0000511 /*
512 * PCI bridges have no enable bit. They are disabled if the base of
513 * the range is greater than the limit. If the size is zero, disable
Myles Watson29cc9ed2009-07-02 18:56:24 +0000514 * by setting the base = limit and end = limit - 2^gran.
515 */
516 if (resource->size == 0 && (resource->flags & IORESOURCE_PCI_BRIDGE)) {
517 base = resource->limit;
518 end = resource->limit - (1 << resource->gran);
519 resource->base = base;
520 }
521
Eric Biederman8ca8d762003-04-22 19:02:15 +0000522 if (!(resource->flags & IORESOURCE_PCI_BRIDGE)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000523 unsigned long base_lo, base_hi;
Uwe Hermanne4870472010-11-04 23:23:47 +0000524
525 /*
526 * Some chipsets allow us to set/clear the I/O bit
527 * (e.g. VIA 82C686A). So set it to be safe.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000528 */
Eric Biederman03acab62004-10-14 21:25:53 +0000529 base_lo = base & 0xffffffff;
530 base_hi = (base >> 32) & 0xffffffff;
Uwe Hermanne4870472010-11-04 23:23:47 +0000531 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000532 base_lo |= PCI_BASE_ADDRESS_SPACE_IO;
Eric Biederman03acab62004-10-14 21:25:53 +0000533 pci_write_config32(dev, resource->index, base_lo);
Uwe Hermanne4870472010-11-04 23:23:47 +0000534 if (resource->flags & IORESOURCE_PCI64)
Eric Biederman03acab62004-10-14 21:25:53 +0000535 pci_write_config32(dev, resource->index + 4, base_hi);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000536 } else if (resource->index == PCI_IO_BASE) {
537 /* Set the I/O ranges. */
538 pci_write_config8(dev, PCI_IO_BASE, base >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000539 pci_write_config16(dev, PCI_IO_BASE_UPPER16, base >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000540 pci_write_config8(dev, PCI_IO_LIMIT, end >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000541 pci_write_config16(dev, PCI_IO_LIMIT_UPPER16, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000542 } else if (resource->index == PCI_MEMORY_BASE) {
543 /* Set the memory range. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000544 pci_write_config16(dev, PCI_MEMORY_BASE, base >> 16);
Eric Biederman03acab62004-10-14 21:25:53 +0000545 pci_write_config16(dev, PCI_MEMORY_LIMIT, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000546 } else if (resource->index == PCI_PREF_MEMORY_BASE) {
547 /* Set the prefetchable memory range. */
Eric Biederman03acab62004-10-14 21:25:53 +0000548 pci_write_config16(dev, PCI_PREF_MEMORY_BASE, base >> 16);
549 pci_write_config32(dev, PCI_PREF_BASE_UPPER32, base >> 32);
550 pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, end >> 16);
551 pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, end >> 32);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000552 } else {
553 /* Don't let me think I stored the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000554 resource->flags &= ~IORESOURCE_STORED;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000555 printk(BIOS_ERR, "ERROR: invalid resource->index %lx\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000556 resource->index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000557 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000558
Eric Biederman03acab62004-10-14 21:25:53 +0000559 report_resource_stored(dev, resource, "");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000560}
561
Eric Biederman5899fd82003-04-24 06:25:08 +0000562void pci_dev_set_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000563{
Myles Watsonc25cc112010-05-21 14:33:48 +0000564 struct resource *res;
Myles Watson894a3472010-06-09 22:41:35 +0000565 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000566 u8 line;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000567
Uwe Hermanne4870472010-11-04 23:23:47 +0000568 for (res = dev->resource_list; res; res = res->next)
Myles Watsonc25cc112010-05-21 14:33:48 +0000569 pci_set_resource(dev, res);
Uwe Hermanne4870472010-11-04 23:23:47 +0000570
Myles Watson894a3472010-06-09 22:41:35 +0000571 for (bus = dev->link_list; bus; bus = bus->next) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000572 if (bus->children)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000573 assign_resources(bus);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000574 }
575
Myles Watson29cc9ed2009-07-02 18:56:24 +0000576 /* Set a default latency timer. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000577 pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000578
Myles Watson29cc9ed2009-07-02 18:56:24 +0000579 /* Set a default secondary latency timer. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000580 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000581 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000582
Myles Watson29cc9ed2009-07-02 18:56:24 +0000583 /* Zero the IRQ settings. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000584 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Uwe Hermanne4870472010-11-04 23:23:47 +0000585 if (line)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000586 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
Uwe Hermanne4870472010-11-04 23:23:47 +0000587
Myles Watson29cc9ed2009-07-02 18:56:24 +0000588 /* Set the cache line size, so far 64 bytes is good for everyone. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000589 pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000590}
591
Eric Biedermane9a271e32003-09-02 03:36:25 +0000592void pci_dev_enable_resources(struct device *dev)
593{
Eric Biedermana9e632c2004-11-18 22:38:08 +0000594 const struct pci_operations *ops;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000595 u16 command;
Eric Biederman03acab62004-10-14 21:25:53 +0000596
Uwe Hermanne4870472010-11-04 23:23:47 +0000597 /* Set the subsystem vendor and device ID for mainboard devices. */
Eric Biederman03acab62004-10-14 21:25:53 +0000598 ops = ops_pci(dev);
Eric Biedermandbec2d42004-10-21 10:44:08 +0000599 if (dev->on_mainboard && ops && ops->set_subsystem) {
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700600 if (CONFIG_SUBSYSTEM_VENDOR_ID)
601 dev->subsystem_vendor = CONFIG_SUBSYSTEM_VENDOR_ID;
Rizwan Qureshifd891292017-04-26 21:00:37 +0530602 else if (!dev->subsystem_vendor)
603 dev->subsystem_vendor = pci_read_config16(dev,
604 PCI_VENDOR_ID);
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700605 if (CONFIG_SUBSYSTEM_DEVICE_ID)
606 dev->subsystem_device = CONFIG_SUBSYSTEM_DEVICE_ID;
Rizwan Qureshifd891292017-04-26 21:00:37 +0530607 else if (!dev->subsystem_device)
608 dev->subsystem_device = pci_read_config16(dev,
609 PCI_DEVICE_ID);
610
Sven Schnelle91321022011-03-01 19:58:47 +0000611 printk(BIOS_DEBUG, "%s subsystem <- %04x/%04x\n",
612 dev_path(dev), dev->subsystem_vendor,
613 dev->subsystem_device);
614 ops->set_subsystem(dev, dev->subsystem_vendor,
615 dev->subsystem_device);
Eric Biederman03acab62004-10-14 21:25:53 +0000616 }
Eric Biedermane9a271e32003-09-02 03:36:25 +0000617 command = pci_read_config16(dev, PCI_COMMAND);
618 command |= dev->command;
Uwe Hermanne4870472010-11-04 23:23:47 +0000619
Myles Watson29cc9ed2009-07-02 18:56:24 +0000620 /* v3 has
621 * command |= (PCI_COMMAND_PARITY + PCI_COMMAND_SERR); // Error check.
622 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000623
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000624 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000625 pci_write_config16(dev, PCI_COMMAND, command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000626}
627
628void pci_bus_enable_resources(struct device *dev)
629{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000630 u16 ctrl;
631
Uwe Hermanne4870472010-11-04 23:23:47 +0000632 /*
633 * Enable I/O in command register if there is VGA card
Myles Watson29cc9ed2009-07-02 18:56:24 +0000634 * connected with (even it does not claim I/O resource).
635 */
Myles Watson894a3472010-06-09 22:41:35 +0000636 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
Li-Ta Lo515f6c72005-01-11 22:48:54 +0000637 dev->command |= PCI_COMMAND_IO;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000638 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +0000639 ctrl |= dev->link_list->bridge_ctrl;
Uwe Hermanne4870472010-11-04 23:23:47 +0000640 ctrl |= (PCI_BRIDGE_CTL_PARITY + PCI_BRIDGE_CTL_SERR); /* Error check. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000641 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000642 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
643
644 pci_dev_enable_resources(dev);
645}
646
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000647void pci_bus_reset(struct bus *bus)
648{
Uwe Hermanne4870472010-11-04 23:23:47 +0000649 u16 ctl;
650
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000651 ctl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
652 ctl |= PCI_BRIDGE_CTL_BUS_RESET;
653 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
654 mdelay(10);
Uwe Hermanne4870472010-11-04 23:23:47 +0000655
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000656 ctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
657 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
658 delay(1);
659}
660
Myles Watson29cc9ed2009-07-02 18:56:24 +0000661void pci_dev_set_subsystem(struct device *dev, unsigned vendor, unsigned device)
Eric Biederman03acab62004-10-14 21:25:53 +0000662{
Myles Watson032a9652009-05-11 22:24:53 +0000663 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
Myles Watson29cc9ed2009-07-02 18:56:24 +0000664 ((device & 0xffff) << 16) | (vendor & 0xffff));
Eric Biederman03acab62004-10-14 21:25:53 +0000665}
666
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300667static int should_run_oprom(struct device *dev)
668{
669 static int should_run = -1;
670
671 if (should_run >= 0)
672 return should_run;
673
Aaron Durbin10510252018-01-30 10:04:02 -0700674 if (IS_ENABLED(CONFIG_ALWAYS_RUN_OPROM)) {
675 should_run = 1;
676 return should_run;
677 }
678
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200679 /* Don't run VGA option ROMs, unless we have to print
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300680 * something on the screen before the kernel is loaded.
681 */
Furquan Shaikh0325dc62016-07-25 13:02:36 -0700682 should_run = display_init_required();
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300683
Aaron Durbinfbed9a52018-01-30 09:58:51 -0700684 if (!should_run && IS_ENABLED(CONFIG_CHROMEOS))
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200685 should_run = vboot_wants_oprom();
Aaron Durbinfbed9a52018-01-30 09:58:51 -0700686
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200687 if (!should_run)
688 printk(BIOS_DEBUG, "Not running VGA Option ROM\n");
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300689 return should_run;
690}
691
692static int should_load_oprom(struct device *dev)
693{
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300694 /* If S3_VGA_ROM_RUN is disabled, skip running VGA option
695 * ROMs when coming out of an S3 resume.
696 */
Kyösti Mälkki58ceb002014-06-20 06:21:01 +0300697 if (!IS_ENABLED(CONFIG_S3_VGA_ROM_RUN) && acpi_is_wakeup_s3() &&
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300698 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
699 return 0;
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300700 if (IS_ENABLED(CONFIG_ALWAYS_LOAD_OPROM))
701 return 1;
702 if (should_run_oprom(dev))
703 return 1;
704
705 return 0;
706}
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300707
Uwe Hermanne4870472010-11-04 23:23:47 +0000708/** Default handler: only runs the relevant PCI BIOS. */
Li-Ta Lo883b8792005-01-10 23:16:22 +0000709void pci_dev_init(struct device *dev)
710{
711 struct rom_header *rom, *ram;
712
Aaron Durbinfbed9a52018-01-30 09:58:51 -0700713 if (!IS_ENABLED(CONFIG_VGA_ROM_RUN))
714 return;
715
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100716 /* Only execute VGA ROMs. */
717 if (((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
Myles Watson17aeeca2009-10-07 18:41:08 +0000718 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000719
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300720 if (!should_load_oprom(dev))
Stefan Reinauer74a0efe2012-03-30 17:10:49 -0700721 return;
Aaron Durbince872cb2013-03-28 15:59:19 -0500722
723 rom = pci_rom_probe(dev);
724 if (rom == NULL)
725 return;
726
727 ram = pci_rom_load(dev, rom);
728 if (ram == NULL)
729 return;
730
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300731 if (!should_run_oprom(dev))
732 return;
733
Stefan Reinauerd98cf5b2008-08-01 11:25:41 +0000734 run_bios(dev, (unsigned long)ram);
Kyösti Mälkkiab56b3b2013-11-28 16:44:51 +0200735 gfx_set_init_done(1);
736 printk(BIOS_DEBUG, "VGA Option ROM was run\n");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000737}
Li-Ta Lo883b8792005-01-10 23:16:22 +0000738
Li-Ta Loe5266692004-03-23 21:28:05 +0000739/** Default device operation for PCI devices */
Subrata Banikffc790b2017-12-11 10:29:49 +0530740struct pci_operations pci_dev_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000741 .set_subsystem = pci_dev_set_subsystem,
742};
743
Eric Biederman8ca8d762003-04-22 19:02:15 +0000744struct device_operations default_pci_ops_dev = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000745 .read_resources = pci_dev_read_resources,
746 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000747 .enable_resources = pci_dev_enable_resources,
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200748#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
749 .write_acpi_tables = pci_rom_write_acpi_tables,
Patrick Rudolph00c0cd22017-06-06 19:30:55 +0200750 .acpi_fill_ssdt_generator = pci_rom_ssdt,
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200751#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000752 .init = pci_dev_init,
753 .scan_bus = 0,
754 .enable = 0,
755 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000756};
Li-Ta Loe5266692004-03-23 21:28:05 +0000757
758/** Default device operations for PCI bridges */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000759static struct pci_operations pci_bus_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000760 .set_subsystem = 0,
761};
Li-Ta Lo883b8792005-01-10 23:16:22 +0000762
Eric Biederman8ca8d762003-04-22 19:02:15 +0000763struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000764 .read_resources = pci_bus_read_resources,
765 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000766 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000767 .init = 0,
768 .scan_bus = pci_scan_bridge,
769 .enable = 0,
770 .reset_bus = pci_bus_reset,
771 .ops_pci = &pci_bus_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000772};
Li-Ta Loe5266692004-03-23 21:28:05 +0000773
774/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000775 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000776 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000777 * This function is a heuristic to detect which type of bus is downstream
778 * of a PCI-to-PCI bridge. This functions by looking for various capability
779 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
780 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000781 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000782 * When only a PCI-Express capability is found the type is examined to see
783 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000784 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000785 * @param dev Pointer to the device structure of the bridge.
786 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000787 */
Aaron Durbinc30d9132017-08-07 16:55:43 -0600788static struct device_operations *get_pci_bridge_ops(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000789{
Martin Rothb3b114c2017-06-24 14:00:01 -0600790#if IS_ENABLED(CONFIG_PCIX_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800791 unsigned int pcixpos;
792 pcixpos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
793 if (pcixpos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000794 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000795 return &default_pcix_ops_bus;
796 }
797#endif
Martin Rothb3b114c2017-06-24 14:00:01 -0600798#if IS_ENABLED(CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800799 unsigned int htpos = 0;
800 while ((htpos = pci_find_next_capability(dev, PCI_CAP_ID_HT, htpos))) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000801 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800802 flags = pci_read_config16(dev, htpos + PCI_CAP_FLAGS);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000803 if ((flags >> 13) == 1) {
804 /* Host or Secondary Interface */
Uwe Hermanne4870472010-11-04 23:23:47 +0000805 printk(BIOS_DEBUG, "%s subordinate bus HT\n",
806 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000807 return &default_ht_ops_bus;
808 }
809 }
810#endif
Martin Rothb3b114c2017-06-24 14:00:01 -0600811#if IS_ENABLED(CONFIG_PCIEXP_PLUGIN_SUPPORT)
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800812 unsigned int pciexpos;
813 pciexpos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
814 if (pciexpos) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000815 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800816 flags = pci_read_config16(dev, pciexpos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000817 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000818 case PCI_EXP_TYPE_ROOT_PORT:
819 case PCI_EXP_TYPE_UPSTREAM:
820 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000821 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000822 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000823 return &default_pciexp_ops_bus;
824 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +0000825 printk(BIOS_DEBUG, "%s subordinate PCI\n",
826 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000827 return &default_pci_ops_bus;
828 default:
829 break;
830 }
831 }
832#endif
833 return &default_pci_ops_bus;
834}
835
836/**
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700837 * Check if a device id matches a PCI driver entry.
838 *
839 * The driver entry can either point at a zero terminated array of acceptable
840 * device IDs, or include a single device ID.
841 *
Martin Roth98b698c2015-01-06 21:02:52 -0700842 * @param driver pointer to the PCI driver entry being checked
843 * @param device_id PCI device ID of the device being matched
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700844 */
845static int device_id_match(struct pci_driver *driver, unsigned short device_id)
846{
847 if (driver->devices) {
848 unsigned short check_id;
849 const unsigned short *device_list = driver->devices;
850 while ((check_id = *device_list++) != 0)
851 if (check_id == device_id)
852 return 1;
853 }
854
855 return (driver->device == device_id);
856}
857
858/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000859 * Set up PCI device operation.
860 *
861 * Check if it already has a driver. If not, use find_device_operations(),
862 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +0000863 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000864 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +0000865 * @see pci_drivers
866 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000867static void set_pci_ops(struct device *dev)
868{
869 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +0000870
Uwe Hermanne4870472010-11-04 23:23:47 +0000871 if (dev->ops)
872 return;
873
874 /*
875 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +0000876 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000877 */
Aaron Durbin03758152015-09-03 17:23:08 -0500878 for (driver = &_pci_drivers[0]; driver != &_epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000879 if ((driver->vendor == dev->vendor) &&
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700880 device_id_match(driver, dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +0000881 dev->ops = (struct device_operations *)driver->ops;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000882 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000883 dev_path(dev), driver->vendor, driver->device,
884 (driver->ops->scan_bus ? "bus " : ""));
Eric Biederman5899fd82003-04-24 06:25:08 +0000885 return;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000886 }
887 }
Li-Ta Loe5266692004-03-23 21:28:05 +0000888
Uwe Hermanne4870472010-11-04 23:23:47 +0000889 /* If I don't have a specific driver use the default operations. */
890 switch (dev->hdr_type & 0x7f) { /* Header type */
891 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +0000892 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
893 goto bad;
894 dev->ops = &default_pci_ops_dev;
895 break;
896 case PCI_HEADER_TYPE_BRIDGE:
897 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
898 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000899 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000900 break;
Martin Rothb3b114c2017-06-24 14:00:01 -0600901#if IS_ENABLED(CONFIG_CARDBUS_PLUGIN_SUPPORT)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000902 case PCI_HEADER_TYPE_CARDBUS:
903 dev->ops = &default_cardbus_ops_bus;
904 break;
905#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000906default:
907bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000908 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000909 printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "
910 "header type %02x, ignoring.\n", dev_path(dev),
911 dev->vendor, dev->device,
912 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +0000913 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000914 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000915}
916
917/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000918 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +0000919 *
920 * Given a linked list of PCI device structures and a devfn number, find the
Li-Ta Lo3a812852004-12-03 22:39:34 +0000921 * device structure correspond to the devfn, if present. This function also
922 * removes the device structure from the linked list.
Li-Ta Loe5266692004-03-23 21:28:05 +0000923 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000924 * @param list The device structure list.
925 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000926 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +0000927 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000928 */
Eric Biedermanb78c1972004-10-14 20:54:17 +0000929static struct device *pci_scan_get_dev(struct device **list, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000930{
Eric Biedermanb78c1972004-10-14 20:54:17 +0000931 struct device *dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000932
Eric Biedermanb78c1972004-10-14 20:54:17 +0000933 dev = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000934 for (; *list; list = &(*list)->sibling) {
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000935 if ((*list)->path.type != DEVICE_PATH_PCI) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000936 printk(BIOS_ERR, "child %s not a PCI device\n",
937 dev_path(*list));
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000938 continue;
939 }
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000940 if ((*list)->path.pci.devfn == devfn) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000941 /* Unlink from the list. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000942 dev = *list;
943 *list = (*list)->sibling;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000944 dev->sibling = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000945 break;
946 }
947 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000948
Uwe Hermanne4870472010-11-04 23:23:47 +0000949 /*
950 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +0000951 * bus. When the list of devices was formed we removed all of the
952 * parents children, and now we are interleaving static and dynamic
953 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000954 */
Eric Biedermane9a271e32003-09-02 03:36:25 +0000955 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000956 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +0000957
Myles Watson29cc9ed2009-07-02 18:56:24 +0000958 /* Find the last child of our parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000959 for (child = dev->bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000960 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +0000961
Myles Watson29cc9ed2009-07-02 18:56:24 +0000962 /* Place the device on the list of children of its parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000963 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000964 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000965 else
Eric Biedermane9a271e32003-09-02 03:36:25 +0000966 dev->bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000967 }
968
Eric Biederman8ca8d762003-04-22 19:02:15 +0000969 return dev;
970}
971
Myles Watson032a9652009-05-11 22:24:53 +0000972/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000973 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +0000974 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000975 * Determine the existence of a given PCI device. Allocate a new struct device
976 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000977 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000978 * @param dev Pointer to the dev structure.
979 * @param bus Pointer to the bus structure.
980 * @param devfn A device/function number to look at.
981 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000982 */
Aaron Durbinc30d9132017-08-07 16:55:43 -0600983struct device *pci_probe_dev(struct device *dev, struct bus *bus,
984 unsigned int devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000985{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000986 u32 id, class;
987 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000988
Myles Watson29cc9ed2009-07-02 18:56:24 +0000989 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000990 if (!dev) {
991 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +0000992
Myles Watson29cc9ed2009-07-02 18:56:24 +0000993 dummy.bus = bus;
994 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000995 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +0000996
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000997 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000998 /*
999 * Have we found something? Some broken boards return 0 if a
1000 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001001 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001002 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +00001003 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +00001004
Stefan Reinauer7355c752010-04-02 16:30:25 +00001005 if ((id == 0x00000000) || (id == 0x0000ffff) ||
1006 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001007 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
1008 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001009 return NULL;
1010 }
1011 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001012 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +00001013 /*
1014 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +00001015 * specific operations this operations we will disable the
1016 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +00001017 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001018 * This is geared toward devices that have subfunctions
1019 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +00001020 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001021 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +00001022 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001023 */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001024 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001025 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001026 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +00001027
Myles Watson29cc9ed2009-07-02 18:56:24 +00001028 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001029 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +00001030
Uwe Hermanne4870472010-11-04 23:23:47 +00001031 /*
1032 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +00001033 * this is because we have already disabled the device. But
1034 * this also handles optional devices that may not always
1035 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001036 */
1037 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001038 if ((id == 0xffffffff) || (id == 0x00000000) ||
1039 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001040 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001041 printk(BIOS_INFO, "PCI: Static device %s not "
1042 "found, disabling it.\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001043 dev->enabled = 0;
1044 }
1045 return dev;
1046 }
1047 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001048
Myles Watson29cc9ed2009-07-02 18:56:24 +00001049 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001050 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
1051 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +00001052
Myles Watson29cc9ed2009-07-02 18:56:24 +00001053 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001054 dev->vendor = id & 0xffff;
1055 dev->device = (id >> 16) & 0xffff;
1056 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001057
1058 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001059 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +00001060
Myles Watson29cc9ed2009-07-02 18:56:24 +00001061 /* Architectural/System devices always need to be bus masters. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001062 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001063 dev->command |= PCI_COMMAND_MASTER;
Uwe Hermanne4870472010-11-04 23:23:47 +00001064
1065 /*
1066 * Look at the vendor and device ID, or at least the header type and
Myles Watson29cc9ed2009-07-02 18:56:24 +00001067 * class and figure out which set of configuration methods to use.
1068 * Unless we already have some PCI ops.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001069 */
1070 set_pci_ops(dev);
1071
Myles Watson29cc9ed2009-07-02 18:56:24 +00001072 /* Now run the magic enable/disable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001073 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001074 dev->ops->enable(dev);
Myles Watson032a9652009-05-11 22:24:53 +00001075
Myles Watson29cc9ed2009-07-02 18:56:24 +00001076 /* Display the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001077 printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
1078 dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
1079 dev->ops ? "" : " No operations");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001080
1081 return dev;
1082}
1083
Myles Watson032a9652009-05-11 22:24:53 +00001084/**
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001085 * Test for match between romstage and ramstage device instance.
1086 *
1087 * @param dev Pointer to the device structure.
1088 * @param sdev Simple device model identifier, created with PCI_DEV().
1089 * @return Non-zero if bus:dev.fn of device matches.
1090 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001091unsigned int pci_match_simple_dev(struct device *dev, pci_devfn_t sdev)
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001092{
1093 return dev->bus->secondary == PCI_DEV2SEGBUS(sdev) &&
1094 dev->path.pci.devfn == PCI_DEV2DEVFN(sdev);
1095}
1096
1097/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001098 * Scan a PCI bus.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001099 *
Li-Ta Loe5266692004-03-23 21:28:05 +00001100 * Determine the existence of devices and bridges on a PCI bus. If there are
1101 * bridges on the bus, recursively scan the buses behind the bridges.
1102 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001103 * @param bus Pointer to the bus structure.
1104 * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1105 * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001106 */
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001107void pci_scan_bus(struct bus *bus, unsigned min_devfn,
1108 unsigned max_devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001109{
1110 unsigned int devfn;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001111 struct device *old_devices;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001112
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001113 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %02x\n", bus->secondary);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001114
Uwe Hermanne4870472010-11-04 23:23:47 +00001115 /* Maximum sane devfn is 0xFF. */
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001116 if (max_devfn > 0xff) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001117 printk(BIOS_ERR, "PCI: pci_scan_bus limits devfn %x - "
1118 "devfn %x\n", min_devfn, max_devfn);
1119 printk(BIOS_ERR, "PCI: pci_scan_bus upper limit too big. "
1120 "Using 0xff.\n");
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001121 max_devfn=0xff;
1122 }
1123
Eric Biederman8ca8d762003-04-22 19:02:15 +00001124 old_devices = bus->children;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001125 bus->children = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001126
1127 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001128
1129 /*
1130 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001131 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001132 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001133 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Myles Watson29cc9ed2009-07-02 18:56:24 +00001134 struct device *dev;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001135
Uwe Hermanne4870472010-11-04 23:23:47 +00001136 /* First thing setup the device structure. */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001137 dev = pci_scan_get_dev(&old_devices, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001138
Myles Watson29cc9ed2009-07-02 18:56:24 +00001139 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001140 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001141
Uwe Hermanne4870472010-11-04 23:23:47 +00001142 /*
1143 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001144 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001145 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001146 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001147 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001148 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001149 devfn += 0x07;
1150 }
1151 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001152
Eric Biederman8ca8d762003-04-22 19:02:15 +00001153 post_code(0x25);
1154
Uwe Hermanne4870472010-11-04 23:23:47 +00001155 /*
1156 * Warn if any leftover static devices are are found.
1157 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001158 */
1159 if (old_devices) {
Aaron Durbinc30d9132017-08-07 16:55:43 -06001160 struct device *left;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001161 printk(BIOS_WARNING, "PCI: Left over static devices:\n");
Uwe Hermanne4870472010-11-04 23:23:47 +00001162 for (left = old_devices; left; left = left->sibling)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001163 printk(BIOS_WARNING, "%s\n", dev_path(left));
Uwe Hermanne4870472010-11-04 23:23:47 +00001164
1165 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001166 }
1167
Uwe Hermanne4870472010-11-04 23:23:47 +00001168 /*
1169 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001170 * scan the bus behind that child.
1171 */
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001172
Kyösti Mälkki2d2367c2015-02-20 21:28:31 +02001173 scan_bridges(bus);
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001174
Uwe Hermanne4870472010-11-04 23:23:47 +00001175 /*
1176 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001177 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001178 * Return how far we've got finding sub-buses.
1179 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001180 post_code(0x55);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001181}
1182
Kyösti Mälkki33452402015-02-23 06:58:26 +02001183typedef enum {
1184 PCI_ROUTE_CLOSE,
1185 PCI_ROUTE_SCAN,
1186 PCI_ROUTE_FINAL,
1187} scan_state;
1188
1189static void pci_bridge_route(struct bus *link, scan_state state)
1190{
1191 struct device *dev = link->dev;
1192 struct bus *parent = dev->bus;
1193 u32 reg, buses = 0;
1194
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001195 if (state == PCI_ROUTE_SCAN) {
1196 link->secondary = parent->subordinate + 1;
1197 link->subordinate = link->secondary;
1198 }
1199
Kyösti Mälkki33452402015-02-23 06:58:26 +02001200 if (state == PCI_ROUTE_CLOSE) {
1201 buses |= 0xfeff << 8;
1202 } else if (state == PCI_ROUTE_SCAN) {
Timothy Pearson7d8a4782015-10-24 20:34:57 -05001203 buses |= parent->secondary & 0xff;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001204 buses |= ((u32) link->secondary & 0xff) << 8;
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001205 buses |= 0xff << 16; /* MAX PCI_BUS number here */
Kyösti Mälkki33452402015-02-23 06:58:26 +02001206 } else if (state == PCI_ROUTE_FINAL) {
1207 buses |= parent->secondary & 0xff;
1208 buses |= ((u32) link->secondary & 0xff) << 8;
1209 buses |= ((u32) link->subordinate & 0xff) << 16;
1210 }
1211
1212 if (state == PCI_ROUTE_SCAN) {
1213 /* Clear all status bits and turn off memory, I/O and master enables. */
1214 link->bridge_cmd = pci_read_config16(dev, PCI_COMMAND);
1215 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1216 pci_write_config16(dev, PCI_STATUS, 0xffff);
1217 }
1218
1219 /*
1220 * Configure the bus numbers for this bridge: the configuration
1221 * transactions will not be propagated by the bridge if it is not
1222 * correctly configured.
1223 */
1224
1225 reg = pci_read_config32(dev, PCI_PRIMARY_BUS);
1226 reg &= 0xff000000;
1227 reg |= buses;
1228 pci_write_config32(dev, PCI_PRIMARY_BUS, reg);
1229
1230 if (state == PCI_ROUTE_FINAL) {
1231 pci_write_config16(dev, PCI_COMMAND, link->bridge_cmd);
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001232 parent->subordinate = link->subordinate;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001233 }
1234}
1235
Li-Ta Loe5266692004-03-23 21:28:05 +00001236/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001237 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001238 *
1239 * Determine the existence of buses behind the bridge. Set up the bridge
1240 * according to the result of the scan.
1241 *
1242 * This function is the default scan_bus() method for PCI bridge devices.
1243 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001244 * @param dev Pointer to the bridge device.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001245 * @param do_scan_bus TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +00001246 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001247void do_pci_scan_bridge(struct device *dev,
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001248 void (*do_scan_bus) (struct bus * bus,
Myles Watson29cc9ed2009-07-02 18:56:24 +00001249 unsigned min_devfn,
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001250 unsigned max_devfn))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001251{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001252 struct bus *bus;
Eric Biederman83b991a2003-10-11 06:20:25 +00001253
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001254 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001255
Myles Watson894a3472010-06-09 22:41:35 +00001256 if (dev->link_list == NULL) {
1257 struct bus *link;
1258 link = malloc(sizeof(*link));
1259 if (link == NULL)
1260 die("Couldn't allocate a link!\n");
1261 memset(link, 0, sizeof(*link));
1262 link->dev = dev;
1263 dev->link_list = link;
1264 }
1265
1266 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001267
Kyösti Mälkki33452402015-02-23 06:58:26 +02001268 pci_bridge_route(bus, PCI_ROUTE_SCAN);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001269
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001270 do_scan_bus(bus, 0x00, 0xff);
Kyösti Mälkki33452402015-02-23 06:58:26 +02001271
1272 pci_bridge_route(bus, PCI_ROUTE_FINAL);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001273}
Li-Ta Loe5266692004-03-23 21:28:05 +00001274
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001275/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001276 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001277 *
1278 * Determine the existence of buses behind the bridge. Set up the bridge
1279 * according to the result of the scan.
1280 *
1281 * This function is the default scan_bus() method for PCI bridge devices.
1282 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001283 * @param dev Pointer to the bridge device.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001284 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001285void pci_scan_bridge(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001286{
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001287 do_pci_scan_bridge(dev, pci_scan_bus);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001288}
1289
Myles Watson29cc9ed2009-07-02 18:56:24 +00001290/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001291 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001292 *
1293 * This function is the default scan_bus() method for PCI domains.
1294 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001295 * @param dev Pointer to the domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001296 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001297void pci_domain_scan_bus(struct device *dev)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001298{
Kyösti Mälkki6f370172015-03-19 15:26:52 +02001299 struct bus *link = dev->link_list;
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001300 pci_scan_bus(link, PCI_DEVFN(0, 0), 0xff);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001301}
1302
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001303/**
1304 * Take an INT_PIN number (0, 1 - 4) and convert
1305 * it to a string ("NO PIN", "PIN A" - "PIN D")
1306 *
1307 * @param pin PCI Interrupt Pin number (0, 1 - 4)
1308 * @return A string corresponding to the pin number or "Invalid"
1309 */
1310const char *pin_to_str(int pin)
1311{
1312 const char *str[5] = {
1313 "NO PIN",
1314 "PIN A",
1315 "PIN B",
1316 "PIN C",
1317 "PIN D",
1318 };
1319
1320 if (pin >= 0 && pin <= 4)
1321 return str[pin];
1322 else
1323 return "Invalid PIN, not 0 - 4";
1324}
1325
1326/**
1327 * Get the PCI INT_PIN swizzle for a device defined as:
1328 * pin_parent = (pin_child + devn_child) % 4 + 1
1329 * where PIN A = 1 ... PIN_D = 4
1330 *
1331 * Given a PCI device structure 'dev', find the interrupt pin
1332 * that will be triggered on its parent bridge device when
1333 * generating an interrupt. For example: Device 1:3.2 may
1334 * use INT_PIN A but will trigger PIN D on its parent bridge
1335 * device. In this case, this function will return 4 (PIN D).
1336 *
1337 * @param dev A PCI device structure to swizzle interrupt pins for
Martin Roth32bc6b62015-01-04 16:54:35 -07001338 * @param *parent_bridge The PCI device structure for the bridge
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001339 * device 'dev' is attached to
1340 * @return The interrupt pin number (1 - 4) that 'dev' will
1341 * trigger when generating an interrupt
1342 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001343static int swizzle_irq_pins(struct device *dev, struct device **parent_bridge)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001344{
Aaron Durbinc30d9132017-08-07 16:55:43 -06001345 struct device *parent; /* Our current device's parent device */
1346 struct device *child; /* The child device of the parent */
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001347 uint8_t parent_bus = 0; /* Parent Bus number */
1348 uint16_t parent_devfn = 0; /* Parent Device and Function number */
1349 uint16_t child_devfn = 0; /* Child Device and Function number */
1350 uint8_t swizzled_pin = 0; /* Pin swizzled across a bridge */
1351
1352 /* Start with PIN A = 0 ... D = 3 */
1353 swizzled_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN) - 1;
1354
1355 /* While our current device has parent devices */
1356 child = dev;
1357 for (parent = child->bus->dev; parent; parent = parent->bus->dev) {
1358 parent_bus = parent->bus->secondary;
1359 parent_devfn = parent->path.pci.devfn;
1360 child_devfn = child->path.pci.devfn;
1361
1362 /* Swizzle the INT_PIN for any bridges not on root bus */
1363 swizzled_pin = (PCI_SLOT(child_devfn) + swizzled_pin) % 4;
1364 printk(BIOS_SPEW, "\tWith INT_PIN swizzled to %s\n"
1365 "\tAttached to bridge device %01X:%02Xh.%02Xh\n",
1366 pin_to_str(swizzled_pin + 1), parent_bus,
1367 PCI_SLOT(parent_devfn), PCI_FUNC(parent_devfn));
1368
1369 /* Continue until we find the root bus */
1370 if (parent_bus > 0) {
1371 /*
1372 * We will go on to the next parent so this parent
1373 * becomes the child
1374 */
1375 child = parent;
1376 continue;
1377 } else {
1378 /*
1379 * Found the root bridge device,
1380 * fill in the structure and exit
1381 */
1382 *parent_bridge = parent;
1383 break;
1384 }
1385 }
1386
1387 /* End with PIN A = 1 ... D = 4 */
1388 return swizzled_pin + 1;
1389}
1390
1391/**
1392 * Given a device structure 'dev', find its interrupt pin
1393 * and its parent bridge 'parent_bdg' device structure.
1394 * If it is behind a bridge, it will return the interrupt
1395 * pin number (1 - 4) of the parent bridge that the device
1396 * interrupt pin has been swizzled to, otherwise it will
1397 * return the interrupt pin that is programmed into the
1398 * PCI config space of the target device. If 'dev' is
1399 * behind a bridge, it will fill in 'parent_bdg' with the
1400 * device structure of the bridge it is behind, otherwise
1401 * it will copy 'dev' into 'parent_bdg'.
1402 *
1403 * @param dev A PCI device structure to get interrupt pins for.
1404 * @param *parent_bdg The PCI device structure for the bridge
1405 * device 'dev' is attached to.
1406 * @return The interrupt pin number (1 - 4) that 'dev' will
1407 * trigger when generating an interrupt.
1408 * Errors: -1 is returned if the device is not enabled
1409 * -2 is returned if a parent bridge could not be found.
1410 */
Aaron Durbinc30d9132017-08-07 16:55:43 -06001411int get_pci_irq_pins(struct device *dev, struct device **parent_bdg)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001412{
1413 uint8_t bus = 0; /* The bus this device is on */
1414 uint16_t devfn = 0; /* This device's device and function numbers */
1415 uint8_t int_pin = 0; /* Interrupt pin used by the device */
1416 uint8_t target_pin = 0; /* Interrupt pin we want to assign an IRQ to */
1417
1418 /* Make sure this device is enabled */
1419 if (!(dev->enabled && (dev->path.type == DEVICE_PATH_PCI)))
1420 return -1;
1421
1422 bus = dev->bus->secondary;
1423 devfn = dev->path.pci.devfn;
1424
1425 /* Get and validate the interrupt pin used. Only 1-4 are allowed */
1426 int_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN);
1427 if (int_pin < 1 || int_pin > 4)
1428 return -1;
1429
1430 printk(BIOS_SPEW, "PCI IRQ: Found device %01X:%02X.%02X using %s\n",
1431 bus, PCI_SLOT(devfn), PCI_FUNC(devfn), pin_to_str(int_pin));
1432
1433 /* If this device is on a bridge, swizzle its INT_PIN */
1434 if (bus) {
1435 /* Swizzle its INT_PINs */
1436 target_pin = swizzle_irq_pins(dev, parent_bdg);
1437
1438 /* Make sure the swizzle returned valid structures */
1439 if (parent_bdg == NULL) {
1440 printk(BIOS_WARNING,
1441 "Warning: Could not find parent bridge for this device!\n");
1442 return -2;
1443 }
1444 } else { /* Device is not behind a bridge */
1445 target_pin = int_pin; /* Return its own interrupt pin */
1446 *parent_bdg = dev; /* Return its own structure */
1447 }
1448
1449 /* Target pin is the interrupt pin we want to assign an IRQ to */
1450 return target_pin;
1451}
1452
Martin Rothb3b114c2017-06-24 14:00:01 -06001453#if IS_ENABLED(CONFIG_PC80_SYSTEM)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001454/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001455 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001456 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001457 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001458 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001459 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001460 *
1461 * This function should be called for each PCI slot in your system.
1462 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001463 * @param bus Pointer to the bus structure.
1464 * @param slot TODO
1465 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1466 * of this slot. The particular IRQ #s that are passed in depend on the
1467 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001468 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001469void pci_assign_irqs(unsigned bus, unsigned slot,
Uwe Hermanne4870472010-11-04 23:23:47 +00001470 const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001471{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001472 unsigned int funct;
Aaron Durbinc30d9132017-08-07 16:55:43 -06001473 struct device *pdev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001474 u8 line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001475
Uwe Hermanne4870472010-11-04 23:23:47 +00001476 /* Each slot may contain up to eight functions. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001477 for (funct = 0; funct < 8; funct++) {
1478 pdev = dev_find_slot(bus, (slot << 3) + funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001479
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001480 if (!pdev)
1481 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001482
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001483 line = pci_read_config8(pdev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001484
Uwe Hermanne4870472010-11-04 23:23:47 +00001485 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001486 if ((line < 1) || (line > 4))
1487 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001488
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001489 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001490
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001491 printk(BIOS_DEBUG, "Assigning IRQ %d to %d:%x.%d\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001492 irq, bus, slot, funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001493
Stefan Reinauer14e22772010-04-27 06:56:47 +00001494 pci_write_config8(pdev, PCI_INTERRUPT_LINE,
Uwe Hermanne4870472010-11-04 23:23:47 +00001495 pIntAtoD[line - 1]);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001496
1497#ifdef PARANOID_IRQ_ASSIGNMENTS
Myles Watson17aeeca2009-10-07 18:41:08 +00001498 irq = pci_read_config8(pdev, PCI_INTERRUPT_LINE);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001499 printk(BIOS_DEBUG, " Readback = %d\n", irq);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001500#endif
1501
Martin Rothb3b114c2017-06-24 14:00:01 -06001502#if IS_ENABLED(CONFIG_PC80_SYSTEM)
Uwe Hermanne4870472010-11-04 23:23:47 +00001503 /* Change to level triggered. */
1504 i8259_configure_irq_trigger(pIntAtoD[line - 1],
1505 IRQ_LEVEL_TRIGGERED);
Stefan Reinauer5fb62162010-12-16 23:52:04 +00001506#endif
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001507 }
1508}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001509#endif