blob: 5cd005348eab21d067afb4961cfe8fbabbdea26a [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>
Edward O'Callaghan6c992502014-06-20 21:19:06 +100050#include <kconfig.h>
Stefan Reinauer74a0efe2012-03-30 17:10:49 -070051#include <vendorcode/google/chromeos/chromeos.h>
Eric Biederman03acab62004-10-14 21:25:53 +000052
Myles Watson29cc9ed2009-07-02 18:56:24 +000053u8 pci_moving_config8(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000054{
Myles Watson29cc9ed2009-07-02 18:56:24 +000055 u8 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000056
Eric Biederman03acab62004-10-14 21:25:53 +000057 value = pci_read_config8(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000058
Eric Biederman03acab62004-10-14 21:25:53 +000059 pci_write_config8(dev, reg, 0xff);
60 ones = pci_read_config8(dev, reg);
61
62 pci_write_config8(dev, reg, 0x00);
63 zeroes = pci_read_config8(dev, reg);
64
65 pci_write_config8(dev, reg, value);
66
67 return ones ^ zeroes;
68}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +000069
Uwe Hermanne4870472010-11-04 23:23:47 +000070u16 pci_moving_config16(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000071{
Myles Watson29cc9ed2009-07-02 18:56:24 +000072 u16 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000073
Eric Biederman03acab62004-10-14 21:25:53 +000074 value = pci_read_config16(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000075
Eric Biederman03acab62004-10-14 21:25:53 +000076 pci_write_config16(dev, reg, 0xffff);
77 ones = pci_read_config16(dev, reg);
78
79 pci_write_config16(dev, reg, 0x0000);
80 zeroes = pci_read_config16(dev, reg);
81
82 pci_write_config16(dev, reg, value);
83
84 return ones ^ zeroes;
85}
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +000086
Uwe Hermanne4870472010-11-04 23:23:47 +000087u32 pci_moving_config32(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000088{
Myles Watson29cc9ed2009-07-02 18:56:24 +000089 u32 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000090
Eric Biederman03acab62004-10-14 21:25:53 +000091 value = pci_read_config32(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000092
Eric Biederman03acab62004-10-14 21:25:53 +000093 pci_write_config32(dev, reg, 0xffffffff);
94 ones = pci_read_config32(dev, reg);
95
96 pci_write_config32(dev, reg, 0x00000000);
97 zeroes = pci_read_config32(dev, reg);
98
99 pci_write_config32(dev, reg, value);
100
101 return ones ^ zeroes;
102}
103
Myles Watson29cc9ed2009-07-02 18:56:24 +0000104/**
105 * Given a device, a capability type, and a last position, return the next
106 * matching capability. Always start at the head of the list.
107 *
108 * @param dev Pointer to the device structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000109 * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000110 * @param last Location of the PCI capability register to start from.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000111 * @return The next matching capability.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000112 */
113unsigned pci_find_next_capability(struct device *dev, unsigned cap,
114 unsigned last)
Eric Biederman03acab62004-10-14 21:25:53 +0000115{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +0000116 unsigned pos = 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000117 u16 status;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000118 unsigned reps = 48;
Stefan Reinauer4d933dd2009-07-21 21:36:41 +0000119
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000120 status = pci_read_config16(dev, PCI_STATUS);
Uwe Hermanne4870472010-11-04 23:23:47 +0000121 if (!(status & PCI_STATUS_CAP_LIST))
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000122 return 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000123
Myles Watson29cc9ed2009-07-02 18:56:24 +0000124 switch (dev->hdr_type & 0x7f) {
Eric Biederman03acab62004-10-14 21:25:53 +0000125 case PCI_HEADER_TYPE_NORMAL:
126 case PCI_HEADER_TYPE_BRIDGE:
127 pos = PCI_CAPABILITY_LIST;
128 break;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000129 case PCI_HEADER_TYPE_CARDBUS:
130 pos = PCI_CB_CAPABILITY_LIST;
131 break;
132 default:
133 return 0;
Eric Biederman03acab62004-10-14 21:25:53 +0000134 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000135
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000136 pos = pci_read_config8(dev, pos);
Uwe Hermanne4870472010-11-04 23:23:47 +0000137 while (reps-- && (pos >= 0x40)) { /* Loop through the linked list. */
Eric Biederman03acab62004-10-14 21:25:53 +0000138 int this_cap;
Uwe Hermanne4870472010-11-04 23:23:47 +0000139
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000140 pos &= ~3;
Eric Biederman03acab62004-10-14 21:25:53 +0000141 this_cap = pci_read_config8(dev, pos + PCI_CAP_LIST_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000142 printk(BIOS_SPEW, "Capability: type 0x%02x @ 0x%02x\n",
143 this_cap, pos);
144 if (this_cap == 0xff)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000145 break;
Uwe Hermanne4870472010-11-04 23:23:47 +0000146
147 if (!last && (this_cap == cap))
Eric Biederman03acab62004-10-14 21:25:53 +0000148 return pos;
Uwe Hermanne4870472010-11-04 23:23:47 +0000149
150 if (last == pos)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000151 last = 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000152
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000153 pos = pci_read_config8(dev, pos + PCI_CAP_LIST_NEXT);
Eric Biederman03acab62004-10-14 21:25:53 +0000154 }
155 return 0;
156}
157
Myles Watson29cc9ed2009-07-02 18:56:24 +0000158/**
159 * Given a device, and a capability type, return the next matching
160 * capability. Always start at the head of the list.
161 *
162 * @param dev Pointer to the device structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000163 * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
164 * @return The next matching capability.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000165 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000166unsigned pci_find_capability(device_t dev, unsigned cap)
167{
168 return pci_find_next_capability(dev, cap, 0);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000169}
170
Myles Watson29cc9ed2009-07-02 18:56:24 +0000171/**
172 * Given a device and register, read the size of the BAR for that register.
173 *
174 * @param dev Pointer to the device structure.
175 * @param index Address of the PCI configuration register.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000176 * @return TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +0000177 */
Eric Biederman03acab62004-10-14 21:25:53 +0000178struct resource *pci_get_resource(struct device *dev, unsigned long index)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000179{
Eric Biederman5cd81732004-03-11 15:01:31 +0000180 struct resource *resource;
Eric Biederman03acab62004-10-14 21:25:53 +0000181 unsigned long value, attr;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000182 resource_t moving, limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000183
Myles Watson29cc9ed2009-07-02 18:56:24 +0000184 /* Initialize the resources to nothing. */
Eric Biederman03acab62004-10-14 21:25:53 +0000185 resource = new_resource(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000186
Myles Watson29cc9ed2009-07-02 18:56:24 +0000187 /* Get the initial value. */
Eric Biederman03acab62004-10-14 21:25:53 +0000188 value = pci_read_config32(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000189
Myles Watson29cc9ed2009-07-02 18:56:24 +0000190 /* See which bits move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000191 moving = pci_moving_config32(dev, index);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000192
Myles Watson29cc9ed2009-07-02 18:56:24 +0000193 /* Initialize attr to the bits that do not move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000194 attr = value & ~moving;
195
Myles Watson29cc9ed2009-07-02 18:56:24 +0000196 /* If it is a 64bit resource look at the high half as well. */
Eric Biederman03acab62004-10-14 21:25:53 +0000197 if (((attr & PCI_BASE_ADDRESS_SPACE_IO) == 0) &&
Myles Watson29cc9ed2009-07-02 18:56:24 +0000198 ((attr & PCI_BASE_ADDRESS_MEM_LIMIT_MASK) ==
199 PCI_BASE_ADDRESS_MEM_LIMIT_64)) {
200 /* Find the high bits that move. */
201 moving |=
202 ((resource_t) pci_moving_config32(dev, index + 4)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000203 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000204
Myles Watson032a9652009-05-11 22:24:53 +0000205 /* Find the resource constraints.
Eric Biederman03acab62004-10-14 21:25:53 +0000206 * Start by finding the bits that move. From there:
207 * - Size is the least significant bit of the bits that move.
208 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000209 * See PCI Spec 6.2.5.1.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000210 */
Eric Biederman03acab62004-10-14 21:25:53 +0000211 limit = 0;
212 if (moving) {
213 resource->size = 1;
214 resource->align = resource->gran = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000215 while (!(moving & resource->size)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000216 resource->size <<= 1;
217 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000218 resource->gran += 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000219 }
220 resource->limit = limit = moving | (resource->size - 1);
Nico Huber8193b062015-10-21 15:43:41 +0200221
222 if (pci_base_address_is_memory_space(attr)) {
223 /* Page-align to allow individual mapping of devices. */
224 if (resource->align < 12)
225 resource->align = 12;
226 }
Eric Biederman03acab62004-10-14 21:25:53 +0000227 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000228
Uwe Hermanne4870472010-11-04 23:23:47 +0000229 /*
230 * Some broken hardware has read-only registers that do not
Eric Biederman03acab62004-10-14 21:25:53 +0000231 * really size correctly.
Uwe Hermanne4870472010-11-04 23:23:47 +0000232 *
233 * Example: the Acer M7229 has BARs 1-4 normally read-only,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000234 * so BAR1 at offset 0x10 reads 0x1f1. If you size that register
Uwe Hermanne4870472010-11-04 23:23:47 +0000235 * by writing 0xffffffff to it, it will read back as 0x1f1 -- which
236 * is a violation of the spec.
237 *
238 * We catch this case and ignore it by observing which bits move.
239 *
240 * This also catches the common case of unimplemented registers
Eric Biederman03acab62004-10-14 21:25:53 +0000241 * that always read back as 0.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000242 */
Eric Biederman03acab62004-10-14 21:25:53 +0000243 if (moving == 0) {
244 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000245 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
246 "read-only ignoring it\n",
247 dev_path(dev), index, value);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000248 }
249 resource->flags = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000250 } else if (attr & PCI_BASE_ADDRESS_SPACE_IO) {
251 /* An I/O mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000252 attr &= PCI_BASE_ADDRESS_IO_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000253 resource->flags |= IORESOURCE_IO;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000254 /* I don't want to deal with 32bit I/O resources. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000255 resource->limit = 0xffff;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000256 } else {
257 /* A Memory mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000258 attr &= PCI_BASE_ADDRESS_MEM_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000259 resource->flags |= IORESOURCE_MEM;
Uwe Hermanne4870472010-11-04 23:23:47 +0000260 if (attr & PCI_BASE_ADDRESS_MEM_PREFETCH)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000261 resource->flags |= IORESOURCE_PREFETCH;
Eric Biederman03acab62004-10-14 21:25:53 +0000262 attr &= PCI_BASE_ADDRESS_MEM_LIMIT_MASK;
263 if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_32) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000264 /* 32bit limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000265 resource->limit = 0xffffffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000266 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_1M) {
267 /* 1MB limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000268 resource->limit = 0x000fffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000269 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_64) {
270 /* 64bit limit. */
Eric Biederman03acab62004-10-14 21:25:53 +0000271 resource->limit = 0xffffffffffffffffULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000272 resource->flags |= IORESOURCE_PCI64;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000273 } else {
274 /* Invalid value. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000275 printk(BIOS_ERR, "Broken BAR with value %lx\n", attr);
276 printk(BIOS_ERR, " on dev %s at index %02lx\n",
Myles Watson29cc9ed2009-07-02 18:56:24 +0000277 dev_path(dev), index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000278 resource->flags = 0;
279 }
280 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000281
Myles Watson29cc9ed2009-07-02 18:56:24 +0000282 /* Don't let the limit exceed which bits can move. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000283 if (resource->limit > limit)
Eric Biederman03acab62004-10-14 21:25:53 +0000284 resource->limit = limit;
Eric Biederman03acab62004-10-14 21:25:53 +0000285
Eric Biederman5cd81732004-03-11 15:01:31 +0000286 return resource;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000287}
288
Myles Watson29cc9ed2009-07-02 18:56:24 +0000289/**
290 * Given a device and an index, read the size of the BAR for that register.
291 *
292 * @param dev Pointer to the device structure.
293 * @param index Address of the PCI configuration register.
294 */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000295static void pci_get_rom_resource(struct device *dev, unsigned long index)
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000296{
297 struct resource *resource;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000298 unsigned long value;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000299 resource_t moving;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000300
Myles Watson29cc9ed2009-07-02 18:56:24 +0000301 /* Initialize the resources to nothing. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000302 resource = new_resource(dev, index);
303
Myles Watson29cc9ed2009-07-02 18:56:24 +0000304 /* Get the initial value. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000305 value = pci_read_config32(dev, index);
306
Myles Watson29cc9ed2009-07-02 18:56:24 +0000307 /* See which bits move. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000308 moving = pci_moving_config32(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000309
310 /* Clear the Enable bit. */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000311 moving = moving & ~PCI_ROM_ADDRESS_ENABLE;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000312
Myles Watson032a9652009-05-11 22:24:53 +0000313 /* Find the resource constraints.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000314 * Start by finding the bits that move. From there:
315 * - Size is the least significant bit of the bits that move.
316 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000317 * See PCI Spec 6.2.5.1.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000318 */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000319 if (moving) {
320 resource->size = 1;
321 resource->align = resource->gran = 0;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000322 while (!(moving & resource->size)) {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000323 resource->size <<= 1;
324 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000325 resource->gran += 1;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000326 }
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000327 resource->limit = moving | (resource->size - 1);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000328 resource->flags |= IORESOURCE_MEM | IORESOURCE_READONLY;
329 } else {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000330 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000331 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
332 "read-only ignoring it\n",
333 dev_path(dev), index, value);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000334 }
335 resource->flags = 0;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000336 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000337 compact_resources(dev);
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000338}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000339
Myles Watson29cc9ed2009-07-02 18:56:24 +0000340/**
341 * Read the base address registers for a given device.
342 *
343 * @param dev Pointer to the dev structure.
344 * @param howmany How many registers to read (6 for device, 2 for bridge).
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000345 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000346static void pci_read_bases(struct device *dev, unsigned int howmany)
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000347{
348 unsigned long index;
349
Myles Watson29cc9ed2009-07-02 18:56:24 +0000350 for (index = PCI_BASE_ADDRESS_0;
351 (index < PCI_BASE_ADDRESS_0 + (howmany << 2));) {
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000352 struct resource *resource;
353 resource = pci_get_resource(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000354 index += (resource->flags & IORESOURCE_PCI64) ? 8 : 4;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000355 }
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000356
357 compact_resources(dev);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000358}
359
Myles Watson29cc9ed2009-07-02 18:56:24 +0000360static void pci_record_bridge_resource(struct device *dev, resource_t moving,
361 unsigned index, unsigned long type)
Eric Biederman03acab62004-10-14 21:25:53 +0000362{
Eric Biederman03acab62004-10-14 21:25:53 +0000363 struct resource *resource;
Uwe Hermanne4870472010-11-04 23:23:47 +0000364 unsigned long gran;
365 resource_t step;
366
Myles Watson29cc9ed2009-07-02 18:56:24 +0000367 resource = NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000368
369 if (!moving)
370 return;
371
372 /* Initialize the constraints on the current bus. */
373 resource = new_resource(dev, index);
374 resource->size = 0;
375 gran = 0;
376 step = 1;
377 while ((moving & step) == 0) {
378 gran += 1;
379 step <<= 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000380 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000381 resource->gran = gran;
382 resource->align = gran;
383 resource->limit = moving | (step - 1);
384 resource->flags = type | IORESOURCE_PCI_BRIDGE |
385 IORESOURCE_BRIDGE;
Eric Biederman03acab62004-10-14 21:25:53 +0000386}
387
Eric Biederman8ca8d762003-04-22 19:02:15 +0000388static void pci_bridge_read_bases(struct device *dev)
389{
Eric Biederman03acab62004-10-14 21:25:53 +0000390 resource_t moving_base, moving_limit, moving;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000391
Myles Watson29cc9ed2009-07-02 18:56:24 +0000392 /* See if the bridge I/O resources are implemented. */
393 moving_base = ((u32) pci_moving_config8(dev, PCI_IO_BASE)) << 8;
394 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000395 ((u32) pci_moving_config16(dev, PCI_IO_BASE_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000396
Myles Watson29cc9ed2009-07-02 18:56:24 +0000397 moving_limit = ((u32) pci_moving_config8(dev, PCI_IO_LIMIT)) << 8;
398 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000399 ((u32) pci_moving_config16(dev, PCI_IO_LIMIT_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000400
401 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000402
Myles Watson29cc9ed2009-07-02 18:56:24 +0000403 /* Initialize the I/O space constraints on the current bus. */
404 pci_record_bridge_resource(dev, moving, PCI_IO_BASE, IORESOURCE_IO);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000405
Myles Watson29cc9ed2009-07-02 18:56:24 +0000406 /* See if the bridge prefmem resources are implemented. */
407 moving_base =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000408 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_BASE)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000409 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000410 ((resource_t) pci_moving_config32(dev, PCI_PREF_BASE_UPPER32)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000411
Myles Watson29cc9ed2009-07-02 18:56:24 +0000412 moving_limit =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000413 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_LIMIT)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000414 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000415 ((resource_t) pci_moving_config32(dev, PCI_PREF_LIMIT_UPPER32)) << 32;
Myles Watson032a9652009-05-11 22:24:53 +0000416
Eric Biederman03acab62004-10-14 21:25:53 +0000417 moving = moving_base & moving_limit;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000418 /* Initialize the prefetchable memory constraints on the current bus. */
419 pci_record_bridge_resource(dev, moving, PCI_PREF_MEMORY_BASE,
420 IORESOURCE_MEM | IORESOURCE_PREFETCH);
Myles Watson032a9652009-05-11 22:24:53 +0000421
Myles Watson29cc9ed2009-07-02 18:56:24 +0000422 /* See if the bridge mem resources are implemented. */
423 moving_base = ((u32) pci_moving_config16(dev, PCI_MEMORY_BASE)) << 16;
424 moving_limit = ((u32) pci_moving_config16(dev, PCI_MEMORY_LIMIT)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000425
426 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000427
Myles Watson29cc9ed2009-07-02 18:56:24 +0000428 /* Initialize the memory resources on the current bus. */
429 pci_record_bridge_resource(dev, moving, PCI_MEMORY_BASE,
430 IORESOURCE_MEM);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000431
Eric Biederman5cd81732004-03-11 15:01:31 +0000432 compact_resources(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000433}
434
Eric Biederman5899fd82003-04-24 06:25:08 +0000435void pci_dev_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000436{
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000437 pci_read_bases(dev, 6);
438 pci_get_rom_resource(dev, PCI_ROM_ADDRESS);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000439}
440
Eric Biederman5899fd82003-04-24 06:25:08 +0000441void pci_bus_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000442{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000443 pci_bridge_read_bases(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000444 pci_read_bases(dev, 2);
445 pci_get_rom_resource(dev, PCI_ROM_ADDRESS1);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000446}
447
Myles Watson29cc9ed2009-07-02 18:56:24 +0000448void pci_domain_read_resources(struct device *dev)
449{
450 struct resource *res;
451
452 /* Initialize the system-wide I/O space constraints. */
453 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
454 res->limit = 0xffffUL;
455 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
456 IORESOURCE_ASSIGNED;
457
458 /* Initialize the system-wide memory resources constraints. */
459 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
460 res->limit = 0xffffffffULL;
461 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
462 IORESOURCE_ASSIGNED;
463}
464
Eric Biederman8ca8d762003-04-22 19:02:15 +0000465static void pci_set_resource(struct device *dev, struct resource *resource)
466{
Eric Biederman03acab62004-10-14 21:25:53 +0000467 resource_t base, end;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000468
Myles Watson29cc9ed2009-07-02 18:56:24 +0000469 /* Make certain the resource has actually been assigned a value. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000470 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000471 printk(BIOS_ERR, "ERROR: %s %02lx %s size: 0x%010llx not "
472 "assigned\n", dev_path(dev), resource->index,
473 resource_type(resource), resource->size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000474 return;
475 }
476
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000477 /* If this resource is fixed don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000478 if (resource->flags & IORESOURCE_FIXED)
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000479 return;
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000480
Myles Watson29cc9ed2009-07-02 18:56:24 +0000481 /* If I have already stored this resource don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000482 if (resource->flags & IORESOURCE_STORED)
Eric Biederman5cd81732004-03-11 15:01:31 +0000483 return;
Eric Biederman5cd81732004-03-11 15:01:31 +0000484
Myles Watson29cc9ed2009-07-02 18:56:24 +0000485 /* If the resource is subtractive don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000486 if (resource->flags & IORESOURCE_SUBTRACTIVE)
Eric Biederman03acab62004-10-14 21:25:53 +0000487 return;
Eric Biederman03acab62004-10-14 21:25:53 +0000488
Myles Watson29cc9ed2009-07-02 18:56:24 +0000489 /* Only handle PCI memory and I/O resources for now. */
490 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Eric Biederman8ca8d762003-04-22 19:02:15 +0000491 return;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000492
Myles Watson29cc9ed2009-07-02 18:56:24 +0000493 /* Enable the resources in the command register. */
Eric Biederman03acab62004-10-14 21:25:53 +0000494 if (resource->size) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000495 if (resource->flags & IORESOURCE_MEM)
Eric Biederman03acab62004-10-14 21:25:53 +0000496 dev->command |= PCI_COMMAND_MEMORY;
Uwe Hermanne4870472010-11-04 23:23:47 +0000497 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000498 dev->command |= PCI_COMMAND_IO;
Uwe Hermanne4870472010-11-04 23:23:47 +0000499 if (resource->flags & IORESOURCE_PCI_BRIDGE)
Eric Biederman03acab62004-10-14 21:25:53 +0000500 dev->command |= PCI_COMMAND_MASTER;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000501 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000502
Myles Watson29cc9ed2009-07-02 18:56:24 +0000503 /* Get the base address. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000504 base = resource->base;
Eric Biederman5cd81732004-03-11 15:01:31 +0000505
Myles Watson29cc9ed2009-07-02 18:56:24 +0000506 /* Get the end. */
Eric Biederman03acab62004-10-14 21:25:53 +0000507 end = resource_end(resource);
Myles Watson032a9652009-05-11 22:24:53 +0000508
Myles Watson29cc9ed2009-07-02 18:56:24 +0000509 /* Now store the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000510 resource->flags |= IORESOURCE_STORED;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000511
Uwe Hermanne4870472010-11-04 23:23:47 +0000512 /*
513 * PCI bridges have no enable bit. They are disabled if the base of
514 * the range is greater than the limit. If the size is zero, disable
Myles Watson29cc9ed2009-07-02 18:56:24 +0000515 * by setting the base = limit and end = limit - 2^gran.
516 */
517 if (resource->size == 0 && (resource->flags & IORESOURCE_PCI_BRIDGE)) {
518 base = resource->limit;
519 end = resource->limit - (1 << resource->gran);
520 resource->base = base;
521 }
522
Eric Biederman8ca8d762003-04-22 19:02:15 +0000523 if (!(resource->flags & IORESOURCE_PCI_BRIDGE)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000524 unsigned long base_lo, base_hi;
Uwe Hermanne4870472010-11-04 23:23:47 +0000525
526 /*
527 * Some chipsets allow us to set/clear the I/O bit
528 * (e.g. VIA 82C686A). So set it to be safe.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000529 */
Eric Biederman03acab62004-10-14 21:25:53 +0000530 base_lo = base & 0xffffffff;
531 base_hi = (base >> 32) & 0xffffffff;
Uwe Hermanne4870472010-11-04 23:23:47 +0000532 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000533 base_lo |= PCI_BASE_ADDRESS_SPACE_IO;
Eric Biederman03acab62004-10-14 21:25:53 +0000534 pci_write_config32(dev, resource->index, base_lo);
Uwe Hermanne4870472010-11-04 23:23:47 +0000535 if (resource->flags & IORESOURCE_PCI64)
Eric Biederman03acab62004-10-14 21:25:53 +0000536 pci_write_config32(dev, resource->index + 4, base_hi);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000537 } else if (resource->index == PCI_IO_BASE) {
538 /* Set the I/O ranges. */
539 pci_write_config8(dev, PCI_IO_BASE, base >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000540 pci_write_config16(dev, PCI_IO_BASE_UPPER16, base >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000541 pci_write_config8(dev, PCI_IO_LIMIT, end >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000542 pci_write_config16(dev, PCI_IO_LIMIT_UPPER16, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000543 } else if (resource->index == PCI_MEMORY_BASE) {
544 /* Set the memory range. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000545 pci_write_config16(dev, PCI_MEMORY_BASE, base >> 16);
Eric Biederman03acab62004-10-14 21:25:53 +0000546 pci_write_config16(dev, PCI_MEMORY_LIMIT, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000547 } else if (resource->index == PCI_PREF_MEMORY_BASE) {
548 /* Set the prefetchable memory range. */
Eric Biederman03acab62004-10-14 21:25:53 +0000549 pci_write_config16(dev, PCI_PREF_MEMORY_BASE, base >> 16);
550 pci_write_config32(dev, PCI_PREF_BASE_UPPER32, base >> 32);
551 pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, end >> 16);
552 pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, end >> 32);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000553 } else {
554 /* Don't let me think I stored the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000555 resource->flags &= ~IORESOURCE_STORED;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000556 printk(BIOS_ERR, "ERROR: invalid resource->index %lx\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000557 resource->index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000558 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000559
Eric Biederman03acab62004-10-14 21:25:53 +0000560 report_resource_stored(dev, resource, "");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000561}
562
Eric Biederman5899fd82003-04-24 06:25:08 +0000563void pci_dev_set_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000564{
Myles Watsonc25cc112010-05-21 14:33:48 +0000565 struct resource *res;
Myles Watson894a3472010-06-09 22:41:35 +0000566 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000567 u8 line;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000568
Uwe Hermanne4870472010-11-04 23:23:47 +0000569 for (res = dev->resource_list; res; res = res->next)
Myles Watsonc25cc112010-05-21 14:33:48 +0000570 pci_set_resource(dev, res);
Uwe Hermanne4870472010-11-04 23:23:47 +0000571
Myles Watson894a3472010-06-09 22:41:35 +0000572 for (bus = dev->link_list; bus; bus = bus->next) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000573 if (bus->children)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000574 assign_resources(bus);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000575 }
576
Myles Watson29cc9ed2009-07-02 18:56:24 +0000577 /* Set a default latency timer. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000578 pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000579
Myles Watson29cc9ed2009-07-02 18:56:24 +0000580 /* Set a default secondary latency timer. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000581 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000582 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000583
Myles Watson29cc9ed2009-07-02 18:56:24 +0000584 /* Zero the IRQ settings. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000585 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Uwe Hermanne4870472010-11-04 23:23:47 +0000586 if (line)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000587 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
Uwe Hermanne4870472010-11-04 23:23:47 +0000588
Myles Watson29cc9ed2009-07-02 18:56:24 +0000589 /* Set the cache line size, so far 64 bytes is good for everyone. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000590 pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000591}
592
Eric Biedermane9a271e32003-09-02 03:36:25 +0000593void pci_dev_enable_resources(struct device *dev)
594{
Eric Biedermana9e632c2004-11-18 22:38:08 +0000595 const struct pci_operations *ops;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000596 u16 command;
Eric Biederman03acab62004-10-14 21:25:53 +0000597
Uwe Hermanne4870472010-11-04 23:23:47 +0000598 /* Set the subsystem vendor and device ID for mainboard devices. */
Eric Biederman03acab62004-10-14 21:25:53 +0000599 ops = ops_pci(dev);
Eric Biedermandbec2d42004-10-21 10:44:08 +0000600 if (dev->on_mainboard && ops && ops->set_subsystem) {
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700601 if (CONFIG_SUBSYSTEM_VENDOR_ID)
602 dev->subsystem_vendor = CONFIG_SUBSYSTEM_VENDOR_ID;
603 if (CONFIG_SUBSYSTEM_DEVICE_ID)
604 dev->subsystem_device = CONFIG_SUBSYSTEM_DEVICE_ID;
Sven Schnelle91321022011-03-01 19:58:47 +0000605 printk(BIOS_DEBUG, "%s subsystem <- %04x/%04x\n",
606 dev_path(dev), dev->subsystem_vendor,
607 dev->subsystem_device);
608 ops->set_subsystem(dev, dev->subsystem_vendor,
609 dev->subsystem_device);
Eric Biederman03acab62004-10-14 21:25:53 +0000610 }
Eric Biedermane9a271e32003-09-02 03:36:25 +0000611 command = pci_read_config16(dev, PCI_COMMAND);
612 command |= dev->command;
Uwe Hermanne4870472010-11-04 23:23:47 +0000613
Myles Watson29cc9ed2009-07-02 18:56:24 +0000614 /* v3 has
615 * command |= (PCI_COMMAND_PARITY + PCI_COMMAND_SERR); // Error check.
616 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000617
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000618 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000619 pci_write_config16(dev, PCI_COMMAND, command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000620}
621
622void pci_bus_enable_resources(struct device *dev)
623{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000624 u16 ctrl;
625
Uwe Hermanne4870472010-11-04 23:23:47 +0000626 /*
627 * Enable I/O in command register if there is VGA card
Myles Watson29cc9ed2009-07-02 18:56:24 +0000628 * connected with (even it does not claim I/O resource).
629 */
Myles Watson894a3472010-06-09 22:41:35 +0000630 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
Li-Ta Lo515f6c72005-01-11 22:48:54 +0000631 dev->command |= PCI_COMMAND_IO;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000632 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +0000633 ctrl |= dev->link_list->bridge_ctrl;
Uwe Hermanne4870472010-11-04 23:23:47 +0000634 ctrl |= (PCI_BRIDGE_CTL_PARITY + PCI_BRIDGE_CTL_SERR); /* Error check. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000635 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000636 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
637
638 pci_dev_enable_resources(dev);
639}
640
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000641void pci_bus_reset(struct bus *bus)
642{
Uwe Hermanne4870472010-11-04 23:23:47 +0000643 u16 ctl;
644
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000645 ctl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
646 ctl |= PCI_BRIDGE_CTL_BUS_RESET;
647 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
648 mdelay(10);
Uwe Hermanne4870472010-11-04 23:23:47 +0000649
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000650 ctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
651 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
652 delay(1);
653}
654
Myles Watson29cc9ed2009-07-02 18:56:24 +0000655void pci_dev_set_subsystem(struct device *dev, unsigned vendor, unsigned device)
Eric Biederman03acab62004-10-14 21:25:53 +0000656{
Myles Watson032a9652009-05-11 22:24:53 +0000657 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
Myles Watson29cc9ed2009-07-02 18:56:24 +0000658 ((device & 0xffff) << 16) | (vendor & 0xffff));
Eric Biederman03acab62004-10-14 21:25:53 +0000659}
660
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300661#if CONFIG_VGA_ROM_RUN
662static int should_run_oprom(struct device *dev)
663{
664 static int should_run = -1;
665
666 if (should_run >= 0)
667 return should_run;
668
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200669 /* Don't run VGA option ROMs, unless we have to print
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300670 * something on the screen before the kernel is loaded.
671 */
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200672 should_run = !IS_ENABLED(CONFIG_BOOTMODE_STRAPS) ||
673 developer_mode_enabled() || recovery_mode_enabled();
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300674
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200675#if CONFIG_CHROMEOS
676 if (!should_run)
677 should_run = vboot_wants_oprom();
678#endif
679 if (!should_run)
680 printk(BIOS_DEBUG, "Not running VGA Option ROM\n");
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300681 return should_run;
682}
683
684static int should_load_oprom(struct device *dev)
685{
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300686 /* If S3_VGA_ROM_RUN is disabled, skip running VGA option
687 * ROMs when coming out of an S3 resume.
688 */
Kyösti Mälkki58ceb002014-06-20 06:21:01 +0300689 if (!IS_ENABLED(CONFIG_S3_VGA_ROM_RUN) && acpi_is_wakeup_s3() &&
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300690 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
691 return 0;
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300692 if (IS_ENABLED(CONFIG_ALWAYS_LOAD_OPROM))
693 return 1;
694 if (should_run_oprom(dev))
695 return 1;
696
697 return 0;
698}
699#endif /* CONFIG_VGA_ROM_RUN */
700
Uwe Hermanne4870472010-11-04 23:23:47 +0000701/** Default handler: only runs the relevant PCI BIOS. */
Li-Ta Lo883b8792005-01-10 23:16:22 +0000702void pci_dev_init(struct device *dev)
703{
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100704#if CONFIG_VGA_ROM_RUN
Li-Ta Lo883b8792005-01-10 23:16:22 +0000705 struct rom_header *rom, *ram;
706
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100707 /* Only execute VGA ROMs. */
708 if (((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
Myles Watson17aeeca2009-10-07 18:41:08 +0000709 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000710
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300711 if (!should_load_oprom(dev))
Stefan Reinauer74a0efe2012-03-30 17:10:49 -0700712 return;
Aaron Durbince872cb2013-03-28 15:59:19 -0500713
714 rom = pci_rom_probe(dev);
715 if (rom == NULL)
716 return;
717
718 ram = pci_rom_load(dev, rom);
719 if (ram == NULL)
720 return;
721
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300722 if (!should_run_oprom(dev))
723 return;
724
Stefan Reinauerd98cf5b2008-08-01 11:25:41 +0000725 run_bios(dev, (unsigned long)ram);
Kyösti Mälkkiab56b3b2013-11-28 16:44:51 +0200726 gfx_set_init_done(1);
727 printk(BIOS_DEBUG, "VGA Option ROM was run\n");
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100728#endif /* CONFIG_VGA_ROM_RUN */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000729}
Li-Ta Lo883b8792005-01-10 23:16:22 +0000730
Li-Ta Loe5266692004-03-23 21:28:05 +0000731/** Default device operation for PCI devices */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000732static struct pci_operations pci_dev_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000733 .set_subsystem = pci_dev_set_subsystem,
734};
735
Eric Biederman8ca8d762003-04-22 19:02:15 +0000736struct device_operations default_pci_ops_dev = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000737 .read_resources = pci_dev_read_resources,
738 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000739 .enable_resources = pci_dev_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000740 .init = pci_dev_init,
741 .scan_bus = 0,
742 .enable = 0,
743 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000744};
Li-Ta Loe5266692004-03-23 21:28:05 +0000745
746/** Default device operations for PCI bridges */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000747static struct pci_operations pci_bus_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000748 .set_subsystem = 0,
749};
Li-Ta Lo883b8792005-01-10 23:16:22 +0000750
Eric Biederman8ca8d762003-04-22 19:02:15 +0000751struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000752 .read_resources = pci_bus_read_resources,
753 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000754 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000755 .init = 0,
756 .scan_bus = pci_scan_bridge,
757 .enable = 0,
758 .reset_bus = pci_bus_reset,
759 .ops_pci = &pci_bus_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000760};
Li-Ta Loe5266692004-03-23 21:28:05 +0000761
762/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000763 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000764 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000765 * This function is a heuristic to detect which type of bus is downstream
766 * of a PCI-to-PCI bridge. This functions by looking for various capability
767 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
768 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000769 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000770 * When only a PCI-Express capability is found the type is examined to see
771 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000772 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000773 * @param dev Pointer to the device structure of the bridge.
774 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000775 */
776static struct device_operations *get_pci_bridge_ops(device_t dev)
777{
Patrick Georgie1667822012-05-05 15:29:32 +0200778#if CONFIG_PCIX_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800779 unsigned int pcixpos;
780 pcixpos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
781 if (pcixpos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000782 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000783 return &default_pcix_ops_bus;
784 }
785#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200786#if CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800787 unsigned int htpos = 0;
788 while ((htpos = pci_find_next_capability(dev, PCI_CAP_ID_HT, htpos))) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000789 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800790 flags = pci_read_config16(dev, htpos + PCI_CAP_FLAGS);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000791 if ((flags >> 13) == 1) {
792 /* Host or Secondary Interface */
Uwe Hermanne4870472010-11-04 23:23:47 +0000793 printk(BIOS_DEBUG, "%s subordinate bus HT\n",
794 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000795 return &default_ht_ops_bus;
796 }
797 }
798#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200799#if CONFIG_PCIEXP_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800800 unsigned int pciexpos;
801 pciexpos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
802 if (pciexpos) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000803 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800804 flags = pci_read_config16(dev, pciexpos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000805 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000806 case PCI_EXP_TYPE_ROOT_PORT:
807 case PCI_EXP_TYPE_UPSTREAM:
808 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000809 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000810 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000811 return &default_pciexp_ops_bus;
812 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +0000813 printk(BIOS_DEBUG, "%s subordinate PCI\n",
814 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000815 return &default_pci_ops_bus;
816 default:
817 break;
818 }
819 }
820#endif
821 return &default_pci_ops_bus;
822}
823
824/**
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700825 * Check if a device id matches a PCI driver entry.
826 *
827 * The driver entry can either point at a zero terminated array of acceptable
828 * device IDs, or include a single device ID.
829 *
Martin Roth98b698c2015-01-06 21:02:52 -0700830 * @param driver pointer to the PCI driver entry being checked
831 * @param device_id PCI device ID of the device being matched
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700832 */
833static int device_id_match(struct pci_driver *driver, unsigned short device_id)
834{
835 if (driver->devices) {
836 unsigned short check_id;
837 const unsigned short *device_list = driver->devices;
838 while ((check_id = *device_list++) != 0)
839 if (check_id == device_id)
840 return 1;
841 }
842
843 return (driver->device == device_id);
844}
845
846/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000847 * Set up PCI device operation.
848 *
849 * Check if it already has a driver. If not, use find_device_operations(),
850 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +0000851 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000852 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +0000853 * @see pci_drivers
854 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000855static void set_pci_ops(struct device *dev)
856{
857 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +0000858
Uwe Hermanne4870472010-11-04 23:23:47 +0000859 if (dev->ops)
860 return;
861
862 /*
863 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +0000864 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000865 */
Aaron Durbin03758152015-09-03 17:23:08 -0500866 for (driver = &_pci_drivers[0]; driver != &_epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000867 if ((driver->vendor == dev->vendor) &&
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700868 device_id_match(driver, dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +0000869 dev->ops = (struct device_operations *)driver->ops;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000870 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000871 dev_path(dev), driver->vendor, driver->device,
872 (driver->ops->scan_bus ? "bus " : ""));
Eric Biederman5899fd82003-04-24 06:25:08 +0000873 return;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000874 }
875 }
Li-Ta Loe5266692004-03-23 21:28:05 +0000876
Uwe Hermanne4870472010-11-04 23:23:47 +0000877 /* If I don't have a specific driver use the default operations. */
878 switch (dev->hdr_type & 0x7f) { /* Header type */
879 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +0000880 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
881 goto bad;
882 dev->ops = &default_pci_ops_dev;
883 break;
884 case PCI_HEADER_TYPE_BRIDGE:
885 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
886 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000887 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000888 break;
Patrick Georgie1667822012-05-05 15:29:32 +0200889#if CONFIG_CARDBUS_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000890 case PCI_HEADER_TYPE_CARDBUS:
891 dev->ops = &default_cardbus_ops_bus;
892 break;
893#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000894default:
895bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000896 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000897 printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "
898 "header type %02x, ignoring.\n", dev_path(dev),
899 dev->vendor, dev->device,
900 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +0000901 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000902 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000903}
904
905/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000906 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +0000907 *
908 * Given a linked list of PCI device structures and a devfn number, find the
Li-Ta Lo3a812852004-12-03 22:39:34 +0000909 * device structure correspond to the devfn, if present. This function also
910 * removes the device structure from the linked list.
Li-Ta Loe5266692004-03-23 21:28:05 +0000911 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000912 * @param list The device structure list.
913 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000914 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +0000915 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000916 */
Eric Biedermanb78c1972004-10-14 20:54:17 +0000917static struct device *pci_scan_get_dev(struct device **list, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000918{
Eric Biedermanb78c1972004-10-14 20:54:17 +0000919 struct device *dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000920
Eric Biedermanb78c1972004-10-14 20:54:17 +0000921 dev = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000922 for (; *list; list = &(*list)->sibling) {
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000923 if ((*list)->path.type != DEVICE_PATH_PCI) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000924 printk(BIOS_ERR, "child %s not a PCI device\n",
925 dev_path(*list));
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000926 continue;
927 }
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000928 if ((*list)->path.pci.devfn == devfn) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000929 /* Unlink from the list. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000930 dev = *list;
931 *list = (*list)->sibling;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000932 dev->sibling = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000933 break;
934 }
935 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000936
Uwe Hermanne4870472010-11-04 23:23:47 +0000937 /*
938 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +0000939 * bus. When the list of devices was formed we removed all of the
940 * parents children, and now we are interleaving static and dynamic
941 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000942 */
Eric Biedermane9a271e32003-09-02 03:36:25 +0000943 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000944 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +0000945
Myles Watson29cc9ed2009-07-02 18:56:24 +0000946 /* Find the last child of our parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000947 for (child = dev->bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000948 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +0000949
Myles Watson29cc9ed2009-07-02 18:56:24 +0000950 /* Place the device on the list of children of its parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000951 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000952 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000953 else
Eric Biedermane9a271e32003-09-02 03:36:25 +0000954 dev->bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000955 }
956
Eric Biederman8ca8d762003-04-22 19:02:15 +0000957 return dev;
958}
959
Myles Watson032a9652009-05-11 22:24:53 +0000960/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000961 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +0000962 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000963 * Determine the existence of a given PCI device. Allocate a new struct device
964 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000965 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000966 * @param dev Pointer to the dev structure.
967 * @param bus Pointer to the bus structure.
968 * @param devfn A device/function number to look at.
969 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000970 */
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000971device_t pci_probe_dev(device_t dev, struct bus *bus, unsigned devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000972{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000973 u32 id, class;
974 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000975
Myles Watson29cc9ed2009-07-02 18:56:24 +0000976 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000977 if (!dev) {
978 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +0000979
Myles Watson29cc9ed2009-07-02 18:56:24 +0000980 dummy.bus = bus;
981 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000982 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +0000983
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000984 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000985 /*
986 * Have we found something? Some broken boards return 0 if a
987 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000988 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000989 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +0000990 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000991
Stefan Reinauer7355c752010-04-02 16:30:25 +0000992 if ((id == 0x00000000) || (id == 0x0000ffff) ||
993 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000994 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
995 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000996 return NULL;
997 }
998 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000999 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +00001000 /*
1001 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +00001002 * specific operations this operations we will disable the
1003 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +00001004 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001005 * This is geared toward devices that have subfunctions
1006 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +00001007 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001008 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +00001009 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001010 */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001011 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001012 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001013 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +00001014
Myles Watson29cc9ed2009-07-02 18:56:24 +00001015 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001016 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +00001017
Uwe Hermanne4870472010-11-04 23:23:47 +00001018 /*
1019 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +00001020 * this is because we have already disabled the device. But
1021 * this also handles optional devices that may not always
1022 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001023 */
1024 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001025 if ((id == 0xffffffff) || (id == 0x00000000) ||
1026 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001027 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001028 printk(BIOS_INFO, "PCI: Static device %s not "
1029 "found, disabling it.\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001030 dev->enabled = 0;
1031 }
1032 return dev;
1033 }
1034 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001035
Myles Watson29cc9ed2009-07-02 18:56:24 +00001036 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001037 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
1038 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +00001039
Myles Watson29cc9ed2009-07-02 18:56:24 +00001040 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001041 dev->vendor = id & 0xffff;
1042 dev->device = (id >> 16) & 0xffff;
1043 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001044
1045 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001046 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +00001047
Myles Watson29cc9ed2009-07-02 18:56:24 +00001048 /* Architectural/System devices always need to be bus masters. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001049 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001050 dev->command |= PCI_COMMAND_MASTER;
Uwe Hermanne4870472010-11-04 23:23:47 +00001051
1052 /*
1053 * Look at the vendor and device ID, or at least the header type and
Myles Watson29cc9ed2009-07-02 18:56:24 +00001054 * class and figure out which set of configuration methods to use.
1055 * Unless we already have some PCI ops.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001056 */
1057 set_pci_ops(dev);
1058
Myles Watson29cc9ed2009-07-02 18:56:24 +00001059 /* Now run the magic enable/disable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001060 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001061 dev->ops->enable(dev);
Myles Watson032a9652009-05-11 22:24:53 +00001062
Myles Watson29cc9ed2009-07-02 18:56:24 +00001063 /* Display the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001064 printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
1065 dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
1066 dev->ops ? "" : " No operations");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001067
1068 return dev;
1069}
1070
Myles Watson032a9652009-05-11 22:24:53 +00001071/**
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001072 * Test for match between romstage and ramstage device instance.
1073 *
1074 * @param dev Pointer to the device structure.
1075 * @param sdev Simple device model identifier, created with PCI_DEV().
1076 * @return Non-zero if bus:dev.fn of device matches.
1077 */
1078unsigned int pci_match_simple_dev(device_t dev, pci_devfn_t sdev)
1079{
1080 return dev->bus->secondary == PCI_DEV2SEGBUS(sdev) &&
1081 dev->path.pci.devfn == PCI_DEV2DEVFN(sdev);
1082}
1083
1084/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001085 * Scan a PCI bus.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001086 *
Li-Ta Loe5266692004-03-23 21:28:05 +00001087 * Determine the existence of devices and bridges on a PCI bus. If there are
1088 * bridges on the bus, recursively scan the buses behind the bridges.
1089 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001090 * @param bus Pointer to the bus structure.
1091 * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1092 * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001093 */
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001094void pci_scan_bus(struct bus *bus, unsigned min_devfn,
1095 unsigned max_devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001096{
1097 unsigned int devfn;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001098 struct device *old_devices;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001099
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001100 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %02x\n", bus->secondary);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001101
Uwe Hermanne4870472010-11-04 23:23:47 +00001102 /* Maximum sane devfn is 0xFF. */
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001103 if (max_devfn > 0xff) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001104 printk(BIOS_ERR, "PCI: pci_scan_bus limits devfn %x - "
1105 "devfn %x\n", min_devfn, max_devfn);
1106 printk(BIOS_ERR, "PCI: pci_scan_bus upper limit too big. "
1107 "Using 0xff.\n");
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001108 max_devfn=0xff;
1109 }
1110
Eric Biederman8ca8d762003-04-22 19:02:15 +00001111 old_devices = bus->children;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001112 bus->children = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001113
1114 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001115
1116 /*
1117 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001118 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001119 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001120 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Myles Watson29cc9ed2009-07-02 18:56:24 +00001121 struct device *dev;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001122
Uwe Hermanne4870472010-11-04 23:23:47 +00001123 /* First thing setup the device structure. */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001124 dev = pci_scan_get_dev(&old_devices, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001125
Myles Watson29cc9ed2009-07-02 18:56:24 +00001126 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001127 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001128
Uwe Hermanne4870472010-11-04 23:23:47 +00001129 /*
1130 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001131 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001132 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001133 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001134 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001135 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001136 devfn += 0x07;
1137 }
1138 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001139
Eric Biederman8ca8d762003-04-22 19:02:15 +00001140 post_code(0x25);
1141
Uwe Hermanne4870472010-11-04 23:23:47 +00001142 /*
1143 * Warn if any leftover static devices are are found.
1144 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001145 */
1146 if (old_devices) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001147 device_t left;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001148 printk(BIOS_WARNING, "PCI: Left over static devices:\n");
Uwe Hermanne4870472010-11-04 23:23:47 +00001149 for (left = old_devices; left; left = left->sibling)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001150 printk(BIOS_WARNING, "%s\n", dev_path(left));
Uwe Hermanne4870472010-11-04 23:23:47 +00001151
1152 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001153 }
1154
Uwe Hermanne4870472010-11-04 23:23:47 +00001155 /*
1156 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001157 * scan the bus behind that child.
1158 */
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001159
Kyösti Mälkki2d2367c2015-02-20 21:28:31 +02001160 scan_bridges(bus);
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001161
Uwe Hermanne4870472010-11-04 23:23:47 +00001162 /*
1163 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001164 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001165 * Return how far we've got finding sub-buses.
1166 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001167 post_code(0x55);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001168}
1169
Kyösti Mälkki33452402015-02-23 06:58:26 +02001170typedef enum {
1171 PCI_ROUTE_CLOSE,
1172 PCI_ROUTE_SCAN,
1173 PCI_ROUTE_FINAL,
1174} scan_state;
1175
1176static void pci_bridge_route(struct bus *link, scan_state state)
1177{
1178 struct device *dev = link->dev;
1179 struct bus *parent = dev->bus;
1180 u32 reg, buses = 0;
1181
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001182 if (state == PCI_ROUTE_SCAN) {
1183 link->secondary = parent->subordinate + 1;
1184 link->subordinate = link->secondary;
1185 }
1186
Kyösti Mälkki33452402015-02-23 06:58:26 +02001187 if (state == PCI_ROUTE_CLOSE) {
1188 buses |= 0xfeff << 8;
1189 } else if (state == PCI_ROUTE_SCAN) {
Timothy Pearson7d8a4782015-10-24 20:34:57 -05001190 buses |= parent->secondary & 0xff;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001191 buses |= ((u32) link->secondary & 0xff) << 8;
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001192 buses |= 0xff << 16; /* MAX PCI_BUS number here */
Kyösti Mälkki33452402015-02-23 06:58:26 +02001193 } else if (state == PCI_ROUTE_FINAL) {
1194 buses |= parent->secondary & 0xff;
1195 buses |= ((u32) link->secondary & 0xff) << 8;
1196 buses |= ((u32) link->subordinate & 0xff) << 16;
1197 }
1198
1199 if (state == PCI_ROUTE_SCAN) {
1200 /* Clear all status bits and turn off memory, I/O and master enables. */
1201 link->bridge_cmd = pci_read_config16(dev, PCI_COMMAND);
1202 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1203 pci_write_config16(dev, PCI_STATUS, 0xffff);
1204 }
1205
1206 /*
1207 * Configure the bus numbers for this bridge: the configuration
1208 * transactions will not be propagated by the bridge if it is not
1209 * correctly configured.
1210 */
1211
1212 reg = pci_read_config32(dev, PCI_PRIMARY_BUS);
1213 reg &= 0xff000000;
1214 reg |= buses;
1215 pci_write_config32(dev, PCI_PRIMARY_BUS, reg);
1216
1217 if (state == PCI_ROUTE_FINAL) {
1218 pci_write_config16(dev, PCI_COMMAND, link->bridge_cmd);
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001219 parent->subordinate = link->subordinate;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001220 }
1221}
1222
Li-Ta Loe5266692004-03-23 21:28:05 +00001223/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001224 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001225 *
1226 * Determine the existence of buses behind the bridge. Set up the bridge
1227 * according to the result of the scan.
1228 *
1229 * This function is the default scan_bus() method for PCI bridge devices.
1230 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001231 * @param dev Pointer to the bridge device.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001232 * @param do_scan_bus TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +00001233 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001234void do_pci_scan_bridge(struct device *dev,
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001235 void (*do_scan_bus) (struct bus * bus,
Myles Watson29cc9ed2009-07-02 18:56:24 +00001236 unsigned min_devfn,
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001237 unsigned max_devfn))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001238{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001239 struct bus *bus;
Eric Biederman83b991a2003-10-11 06:20:25 +00001240
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001241 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001242
Myles Watson894a3472010-06-09 22:41:35 +00001243 if (dev->link_list == NULL) {
1244 struct bus *link;
1245 link = malloc(sizeof(*link));
1246 if (link == NULL)
1247 die("Couldn't allocate a link!\n");
1248 memset(link, 0, sizeof(*link));
1249 link->dev = dev;
1250 dev->link_list = link;
1251 }
1252
1253 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001254
Kyösti Mälkki33452402015-02-23 06:58:26 +02001255 pci_bridge_route(bus, PCI_ROUTE_SCAN);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001256
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001257 do_scan_bus(bus, 0x00, 0xff);
Kyösti Mälkki33452402015-02-23 06:58:26 +02001258
1259 pci_bridge_route(bus, PCI_ROUTE_FINAL);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001260}
Li-Ta Loe5266692004-03-23 21:28:05 +00001261
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001262/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001263 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001264 *
1265 * Determine the existence of buses behind the bridge. Set up the bridge
1266 * according to the result of the scan.
1267 *
1268 * This function is the default scan_bus() method for PCI bridge devices.
1269 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001270 * @param dev Pointer to the bridge device.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001271 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001272void pci_scan_bridge(struct device *dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001273{
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001274 do_pci_scan_bridge(dev, pci_scan_bus);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001275}
1276
Myles Watson29cc9ed2009-07-02 18:56:24 +00001277/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001278 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001279 *
1280 * This function is the default scan_bus() method for PCI domains.
1281 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001282 * @param dev Pointer to the domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001283 */
Kyösti Mälkki580e7222015-03-19 21:04:23 +02001284void pci_domain_scan_bus(device_t dev)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001285{
Kyösti Mälkki6f370172015-03-19 15:26:52 +02001286 struct bus *link = dev->link_list;
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001287 pci_scan_bus(link, PCI_DEVFN(0, 0), 0xff);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001288}
1289
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001290/**
1291 * Take an INT_PIN number (0, 1 - 4) and convert
1292 * it to a string ("NO PIN", "PIN A" - "PIN D")
1293 *
1294 * @param pin PCI Interrupt Pin number (0, 1 - 4)
1295 * @return A string corresponding to the pin number or "Invalid"
1296 */
1297const char *pin_to_str(int pin)
1298{
1299 const char *str[5] = {
1300 "NO PIN",
1301 "PIN A",
1302 "PIN B",
1303 "PIN C",
1304 "PIN D",
1305 };
1306
1307 if (pin >= 0 && pin <= 4)
1308 return str[pin];
1309 else
1310 return "Invalid PIN, not 0 - 4";
1311}
1312
1313/**
1314 * Get the PCI INT_PIN swizzle for a device defined as:
1315 * pin_parent = (pin_child + devn_child) % 4 + 1
1316 * where PIN A = 1 ... PIN_D = 4
1317 *
1318 * Given a PCI device structure 'dev', find the interrupt pin
1319 * that will be triggered on its parent bridge device when
1320 * generating an interrupt. For example: Device 1:3.2 may
1321 * use INT_PIN A but will trigger PIN D on its parent bridge
1322 * device. In this case, this function will return 4 (PIN D).
1323 *
1324 * @param dev A PCI device structure to swizzle interrupt pins for
Martin Roth32bc6b62015-01-04 16:54:35 -07001325 * @param *parent_bridge The PCI device structure for the bridge
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001326 * device 'dev' is attached to
1327 * @return The interrupt pin number (1 - 4) that 'dev' will
1328 * trigger when generating an interrupt
1329 */
1330static int swizzle_irq_pins(device_t dev, device_t *parent_bridge)
1331{
1332 device_t parent; /* Our current device's parent device */
1333 device_t child; /* The child device of the parent */
1334 uint8_t parent_bus = 0; /* Parent Bus number */
1335 uint16_t parent_devfn = 0; /* Parent Device and Function number */
1336 uint16_t child_devfn = 0; /* Child Device and Function number */
1337 uint8_t swizzled_pin = 0; /* Pin swizzled across a bridge */
1338
1339 /* Start with PIN A = 0 ... D = 3 */
1340 swizzled_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN) - 1;
1341
1342 /* While our current device has parent devices */
1343 child = dev;
1344 for (parent = child->bus->dev; parent; parent = parent->bus->dev) {
1345 parent_bus = parent->bus->secondary;
1346 parent_devfn = parent->path.pci.devfn;
1347 child_devfn = child->path.pci.devfn;
1348
1349 /* Swizzle the INT_PIN for any bridges not on root bus */
1350 swizzled_pin = (PCI_SLOT(child_devfn) + swizzled_pin) % 4;
1351 printk(BIOS_SPEW, "\tWith INT_PIN swizzled to %s\n"
1352 "\tAttached to bridge device %01X:%02Xh.%02Xh\n",
1353 pin_to_str(swizzled_pin + 1), parent_bus,
1354 PCI_SLOT(parent_devfn), PCI_FUNC(parent_devfn));
1355
1356 /* Continue until we find the root bus */
1357 if (parent_bus > 0) {
1358 /*
1359 * We will go on to the next parent so this parent
1360 * becomes the child
1361 */
1362 child = parent;
1363 continue;
1364 } else {
1365 /*
1366 * Found the root bridge device,
1367 * fill in the structure and exit
1368 */
1369 *parent_bridge = parent;
1370 break;
1371 }
1372 }
1373
1374 /* End with PIN A = 1 ... D = 4 */
1375 return swizzled_pin + 1;
1376}
1377
1378/**
1379 * Given a device structure 'dev', find its interrupt pin
1380 * and its parent bridge 'parent_bdg' device structure.
1381 * If it is behind a bridge, it will return the interrupt
1382 * pin number (1 - 4) of the parent bridge that the device
1383 * interrupt pin has been swizzled to, otherwise it will
1384 * return the interrupt pin that is programmed into the
1385 * PCI config space of the target device. If 'dev' is
1386 * behind a bridge, it will fill in 'parent_bdg' with the
1387 * device structure of the bridge it is behind, otherwise
1388 * it will copy 'dev' into 'parent_bdg'.
1389 *
1390 * @param dev A PCI device structure to get interrupt pins for.
1391 * @param *parent_bdg The PCI device structure for the bridge
1392 * device 'dev' is attached to.
1393 * @return The interrupt pin number (1 - 4) that 'dev' will
1394 * trigger when generating an interrupt.
1395 * Errors: -1 is returned if the device is not enabled
1396 * -2 is returned if a parent bridge could not be found.
1397 */
1398int get_pci_irq_pins(device_t dev, device_t *parent_bdg)
1399{
1400 uint8_t bus = 0; /* The bus this device is on */
1401 uint16_t devfn = 0; /* This device's device and function numbers */
1402 uint8_t int_pin = 0; /* Interrupt pin used by the device */
1403 uint8_t target_pin = 0; /* Interrupt pin we want to assign an IRQ to */
1404
1405 /* Make sure this device is enabled */
1406 if (!(dev->enabled && (dev->path.type == DEVICE_PATH_PCI)))
1407 return -1;
1408
1409 bus = dev->bus->secondary;
1410 devfn = dev->path.pci.devfn;
1411
1412 /* Get and validate the interrupt pin used. Only 1-4 are allowed */
1413 int_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN);
1414 if (int_pin < 1 || int_pin > 4)
1415 return -1;
1416
1417 printk(BIOS_SPEW, "PCI IRQ: Found device %01X:%02X.%02X using %s\n",
1418 bus, PCI_SLOT(devfn), PCI_FUNC(devfn), pin_to_str(int_pin));
1419
1420 /* If this device is on a bridge, swizzle its INT_PIN */
1421 if (bus) {
1422 /* Swizzle its INT_PINs */
1423 target_pin = swizzle_irq_pins(dev, parent_bdg);
1424
1425 /* Make sure the swizzle returned valid structures */
1426 if (parent_bdg == NULL) {
1427 printk(BIOS_WARNING,
1428 "Warning: Could not find parent bridge for this device!\n");
1429 return -2;
1430 }
1431 } else { /* Device is not behind a bridge */
1432 target_pin = int_pin; /* Return its own interrupt pin */
1433 *parent_bdg = dev; /* Return its own structure */
1434 }
1435
1436 /* Target pin is the interrupt pin we want to assign an IRQ to */
1437 return target_pin;
1438}
1439
Patrick Georgie1667822012-05-05 15:29:32 +02001440#if CONFIG_PC80_SYSTEM
Myles Watson29cc9ed2009-07-02 18:56:24 +00001441/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001442 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001443 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001444 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001445 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001446 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001447 *
1448 * This function should be called for each PCI slot in your system.
1449 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001450 * @param bus Pointer to the bus structure.
1451 * @param slot TODO
1452 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1453 * of this slot. The particular IRQ #s that are passed in depend on the
1454 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001455 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001456void pci_assign_irqs(unsigned bus, unsigned slot,
Uwe Hermanne4870472010-11-04 23:23:47 +00001457 const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001458{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001459 unsigned int funct;
1460 device_t pdev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001461 u8 line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001462
Uwe Hermanne4870472010-11-04 23:23:47 +00001463 /* Each slot may contain up to eight functions. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001464 for (funct = 0; funct < 8; funct++) {
1465 pdev = dev_find_slot(bus, (slot << 3) + funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001466
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001467 if (!pdev)
1468 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001469
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001470 line = pci_read_config8(pdev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001471
Uwe Hermanne4870472010-11-04 23:23:47 +00001472 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001473 if ((line < 1) || (line > 4))
1474 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001475
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001476 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001477
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001478 printk(BIOS_DEBUG, "Assigning IRQ %d to %d:%x.%d\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001479 irq, bus, slot, funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001480
Stefan Reinauer14e22772010-04-27 06:56:47 +00001481 pci_write_config8(pdev, PCI_INTERRUPT_LINE,
Uwe Hermanne4870472010-11-04 23:23:47 +00001482 pIntAtoD[line - 1]);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001483
1484#ifdef PARANOID_IRQ_ASSIGNMENTS
Myles Watson17aeeca2009-10-07 18:41:08 +00001485 irq = pci_read_config8(pdev, PCI_INTERRUPT_LINE);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001486 printk(BIOS_DEBUG, " Readback = %d\n", irq);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001487#endif
1488
Patrick Georgie1667822012-05-05 15:29:32 +02001489#if CONFIG_PC80_SYSTEM
Uwe Hermanne4870472010-11-04 23:23:47 +00001490 /* Change to level triggered. */
1491 i8259_configure_irq_trigger(pIntAtoD[line - 1],
1492 IRQ_LEVEL_TRIGGERED);
Stefan Reinauer5fb62162010-12-16 23:52:04 +00001493#endif
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001494 }
1495}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001496#endif