blob: 07b1993b0ab7cec521131e79c011d47c09c73f44 [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).
5 *
6 * Modifications are:
7 * Copyright (C) 2003-2004 Linux Networx
8 * (Written by Eric Biederman <ebiederman@lnxi.com> for Linux Networx)
9 * Copyright (C) 2003-2006 Ronald G. Minnich <rminnich@gmail.com>
10 * Copyright (C) 2004-2005 Li-Ta Lo <ollie@lanl.gov>
11 * Copyright (C) 2005-2006 Tyan
12 * (Written by Yinghai Lu <yhlu@tyan.com> for Tyan)
Patrick Georgi16cdbb22009-04-21 20:14:31 +000013 * Copyright (C) 2005-2009 coresystems GmbH
14 * (Written by Stefan Reinauer <stepan@coresystems.de> for coresystems GmbH)
Mike Loptien0f5cf5e2014-05-12 21:46:31 -060015 * Copyright (C) 2014 Sage Electronic Engineering, LLC.
Uwe Hermannb80dbf02007-04-22 19:08:13 +000016 */
17
18/*
Myles Watson29cc9ed2009-07-02 18:56:24 +000019 * PCI Bus Services, see include/linux/pci.h for further explanation.
Eric Biederman8ca8d762003-04-22 19:02:15 +000020 *
Myles Watson29cc9ed2009-07-02 18:56:24 +000021 * Copyright 1993 -- 1997 Drew Eckhardt, Frederic Potter,
22 * David Mosberger-Tang
Eric Biederman8ca8d762003-04-22 19:02:15 +000023 *
Myles Watson29cc9ed2009-07-02 18:56:24 +000024 * Copyright 1997 -- 1999 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
Eric Biederman8ca8d762003-04-22 19:02:15 +000025 */
26
Edward O'Callaghan6c992502014-06-20 21:19:06 +100027#include <arch/acpi.h>
28#include <arch/io.h>
29#include <bootmode.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000030#include <console/console.h>
31#include <stdlib.h>
32#include <stdint.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000033#include <string.h>
Edward O'Callaghan6c992502014-06-20 21:19:06 +100034#include <delay.h>
Edward O'Callaghan6c992502014-06-20 21:19:06 +100035#include <device/cardbus.h>
Eric Biederman5899fd82003-04-24 06:25:08 +000036#include <device/device.h>
37#include <device/pci.h>
38#include <device/pci_ids.h>
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000039#include <device/pcix.h>
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000040#include <device/pciexp.h>
Edward O'Callaghan6c992502014-06-20 21:19:06 +100041#include <device/hypertransport.h>
Stefan Reinauer4d933dd2009-07-21 21:36:41 +000042#include <pc80/i8259.h>
Edward O'Callaghan6c992502014-06-20 21:19:06 +100043#include <kconfig.h>
Stefan Reinauer74a0efe2012-03-30 17:10:49 -070044#include <vendorcode/google/chromeos/chromeos.h>
Eric Biederman03acab62004-10-14 21:25:53 +000045
Myles Watson29cc9ed2009-07-02 18:56:24 +000046u8 pci_moving_config8(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000047{
Myles Watson29cc9ed2009-07-02 18:56:24 +000048 u8 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000049
Eric Biederman03acab62004-10-14 21:25:53 +000050 value = pci_read_config8(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000051
Eric Biederman03acab62004-10-14 21:25:53 +000052 pci_write_config8(dev, reg, 0xff);
53 ones = pci_read_config8(dev, reg);
54
55 pci_write_config8(dev, reg, 0x00);
56 zeroes = pci_read_config8(dev, reg);
57
58 pci_write_config8(dev, reg, value);
59
60 return ones ^ zeroes;
61}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +000062
Uwe Hermanne4870472010-11-04 23:23:47 +000063u16 pci_moving_config16(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000064{
Myles Watson29cc9ed2009-07-02 18:56:24 +000065 u16 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000066
Eric Biederman03acab62004-10-14 21:25:53 +000067 value = pci_read_config16(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000068
Eric Biederman03acab62004-10-14 21:25:53 +000069 pci_write_config16(dev, reg, 0xffff);
70 ones = pci_read_config16(dev, reg);
71
72 pci_write_config16(dev, reg, 0x0000);
73 zeroes = pci_read_config16(dev, reg);
74
75 pci_write_config16(dev, reg, value);
76
77 return ones ^ zeroes;
78}
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +000079
Uwe Hermanne4870472010-11-04 23:23:47 +000080u32 pci_moving_config32(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000081{
Myles Watson29cc9ed2009-07-02 18:56:24 +000082 u32 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000083
Eric Biederman03acab62004-10-14 21:25:53 +000084 value = pci_read_config32(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000085
Eric Biederman03acab62004-10-14 21:25:53 +000086 pci_write_config32(dev, reg, 0xffffffff);
87 ones = pci_read_config32(dev, reg);
88
89 pci_write_config32(dev, reg, 0x00000000);
90 zeroes = pci_read_config32(dev, reg);
91
92 pci_write_config32(dev, reg, value);
93
94 return ones ^ zeroes;
95}
96
Myles Watson29cc9ed2009-07-02 18:56:24 +000097/**
98 * Given a device, a capability type, and a last position, return the next
99 * matching capability. Always start at the head of the list.
100 *
101 * @param dev Pointer to the device structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000102 * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000103 * @param last Location of the PCI capability register to start from.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000104 * @return The next matching capability.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000105 */
106unsigned pci_find_next_capability(struct device *dev, unsigned cap,
107 unsigned last)
Eric Biederman03acab62004-10-14 21:25:53 +0000108{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +0000109 unsigned pos = 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000110 u16 status;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000111 unsigned reps = 48;
Stefan Reinauer4d933dd2009-07-21 21:36:41 +0000112
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000113 status = pci_read_config16(dev, PCI_STATUS);
Uwe Hermanne4870472010-11-04 23:23:47 +0000114 if (!(status & PCI_STATUS_CAP_LIST))
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000115 return 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000116
Myles Watson29cc9ed2009-07-02 18:56:24 +0000117 switch (dev->hdr_type & 0x7f) {
Eric Biederman03acab62004-10-14 21:25:53 +0000118 case PCI_HEADER_TYPE_NORMAL:
119 case PCI_HEADER_TYPE_BRIDGE:
120 pos = PCI_CAPABILITY_LIST;
121 break;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000122 case PCI_HEADER_TYPE_CARDBUS:
123 pos = PCI_CB_CAPABILITY_LIST;
124 break;
125 default:
126 return 0;
Eric Biederman03acab62004-10-14 21:25:53 +0000127 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000128
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000129 pos = pci_read_config8(dev, pos);
Uwe Hermanne4870472010-11-04 23:23:47 +0000130 while (reps-- && (pos >= 0x40)) { /* Loop through the linked list. */
Eric Biederman03acab62004-10-14 21:25:53 +0000131 int this_cap;
Uwe Hermanne4870472010-11-04 23:23:47 +0000132
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000133 pos &= ~3;
Eric Biederman03acab62004-10-14 21:25:53 +0000134 this_cap = pci_read_config8(dev, pos + PCI_CAP_LIST_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000135 printk(BIOS_SPEW, "Capability: type 0x%02x @ 0x%02x\n",
136 this_cap, pos);
137 if (this_cap == 0xff)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000138 break;
Uwe Hermanne4870472010-11-04 23:23:47 +0000139
140 if (!last && (this_cap == cap))
Eric Biederman03acab62004-10-14 21:25:53 +0000141 return pos;
Uwe Hermanne4870472010-11-04 23:23:47 +0000142
143 if (last == pos)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000144 last = 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000145
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000146 pos = pci_read_config8(dev, pos + PCI_CAP_LIST_NEXT);
Eric Biederman03acab62004-10-14 21:25:53 +0000147 }
148 return 0;
149}
150
Myles Watson29cc9ed2009-07-02 18:56:24 +0000151/**
152 * Given a device, and a capability type, return the next matching
153 * capability. Always start at the head of the list.
154 *
155 * @param dev Pointer to the device structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000156 * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
157 * @return The next matching capability.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000158 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000159unsigned pci_find_capability(device_t dev, unsigned cap)
160{
161 return pci_find_next_capability(dev, cap, 0);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000162}
163
Myles Watson29cc9ed2009-07-02 18:56:24 +0000164/**
165 * Given a device and register, read the size of the BAR for that register.
166 *
167 * @param dev Pointer to the device structure.
168 * @param index Address of the PCI configuration register.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000169 * @return TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +0000170 */
Eric Biederman03acab62004-10-14 21:25:53 +0000171struct resource *pci_get_resource(struct device *dev, unsigned long index)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000172{
Eric Biederman5cd81732004-03-11 15:01:31 +0000173 struct resource *resource;
Eric Biederman03acab62004-10-14 21:25:53 +0000174 unsigned long value, attr;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000175 resource_t moving, limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000176
Myles Watson29cc9ed2009-07-02 18:56:24 +0000177 /* Initialize the resources to nothing. */
Eric Biederman03acab62004-10-14 21:25:53 +0000178 resource = new_resource(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000179
Myles Watson29cc9ed2009-07-02 18:56:24 +0000180 /* Get the initial value. */
Eric Biederman03acab62004-10-14 21:25:53 +0000181 value = pci_read_config32(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000182
Myles Watson29cc9ed2009-07-02 18:56:24 +0000183 /* See which bits move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000184 moving = pci_moving_config32(dev, index);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000185
Myles Watson29cc9ed2009-07-02 18:56:24 +0000186 /* Initialize attr to the bits that do not move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000187 attr = value & ~moving;
188
Myles Watson29cc9ed2009-07-02 18:56:24 +0000189 /* If it is a 64bit resource look at the high half as well. */
Eric Biederman03acab62004-10-14 21:25:53 +0000190 if (((attr & PCI_BASE_ADDRESS_SPACE_IO) == 0) &&
Myles Watson29cc9ed2009-07-02 18:56:24 +0000191 ((attr & PCI_BASE_ADDRESS_MEM_LIMIT_MASK) ==
192 PCI_BASE_ADDRESS_MEM_LIMIT_64)) {
193 /* Find the high bits that move. */
194 moving |=
195 ((resource_t) pci_moving_config32(dev, index + 4)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000196 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000197
Myles Watson032a9652009-05-11 22:24:53 +0000198 /* Find the resource constraints.
Eric Biederman03acab62004-10-14 21:25:53 +0000199 * Start by finding the bits that move. From there:
200 * - Size is the least significant bit of the bits that move.
201 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000202 * See PCI Spec 6.2.5.1.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000203 */
Eric Biederman03acab62004-10-14 21:25:53 +0000204 limit = 0;
205 if (moving) {
206 resource->size = 1;
207 resource->align = resource->gran = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000208 while (!(moving & resource->size)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000209 resource->size <<= 1;
210 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000211 resource->gran += 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000212 }
213 resource->limit = limit = moving | (resource->size - 1);
214 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000215
Uwe Hermanne4870472010-11-04 23:23:47 +0000216 /*
217 * Some broken hardware has read-only registers that do not
Eric Biederman03acab62004-10-14 21:25:53 +0000218 * really size correctly.
Uwe Hermanne4870472010-11-04 23:23:47 +0000219 *
220 * Example: the Acer M7229 has BARs 1-4 normally read-only,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000221 * so BAR1 at offset 0x10 reads 0x1f1. If you size that register
Uwe Hermanne4870472010-11-04 23:23:47 +0000222 * by writing 0xffffffff to it, it will read back as 0x1f1 -- which
223 * is a violation of the spec.
224 *
225 * We catch this case and ignore it by observing which bits move.
226 *
227 * This also catches the common case of unimplemented registers
Eric Biederman03acab62004-10-14 21:25:53 +0000228 * that always read back as 0.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000229 */
Eric Biederman03acab62004-10-14 21:25:53 +0000230 if (moving == 0) {
231 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000232 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
233 "read-only ignoring it\n",
234 dev_path(dev), index, value);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000235 }
236 resource->flags = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000237 } else if (attr & PCI_BASE_ADDRESS_SPACE_IO) {
238 /* An I/O mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000239 attr &= PCI_BASE_ADDRESS_IO_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000240 resource->flags |= IORESOURCE_IO;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000241 /* I don't want to deal with 32bit I/O resources. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000242 resource->limit = 0xffff;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000243 } else {
244 /* A Memory mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000245 attr &= PCI_BASE_ADDRESS_MEM_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000246 resource->flags |= IORESOURCE_MEM;
Uwe Hermanne4870472010-11-04 23:23:47 +0000247 if (attr & PCI_BASE_ADDRESS_MEM_PREFETCH)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000248 resource->flags |= IORESOURCE_PREFETCH;
Eric Biederman03acab62004-10-14 21:25:53 +0000249 attr &= PCI_BASE_ADDRESS_MEM_LIMIT_MASK;
250 if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_32) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000251 /* 32bit limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000252 resource->limit = 0xffffffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000253 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_1M) {
254 /* 1MB limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000255 resource->limit = 0x000fffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000256 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_64) {
257 /* 64bit limit. */
Eric Biederman03acab62004-10-14 21:25:53 +0000258 resource->limit = 0xffffffffffffffffULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000259 resource->flags |= IORESOURCE_PCI64;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000260 } else {
261 /* Invalid value. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000262 printk(BIOS_ERR, "Broken BAR with value %lx\n", attr);
263 printk(BIOS_ERR, " on dev %s at index %02lx\n",
Myles Watson29cc9ed2009-07-02 18:56:24 +0000264 dev_path(dev), index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000265 resource->flags = 0;
266 }
267 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000268
Myles Watson29cc9ed2009-07-02 18:56:24 +0000269 /* Don't let the limit exceed which bits can move. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000270 if (resource->limit > limit)
Eric Biederman03acab62004-10-14 21:25:53 +0000271 resource->limit = limit;
Eric Biederman03acab62004-10-14 21:25:53 +0000272
Eric Biederman5cd81732004-03-11 15:01:31 +0000273 return resource;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000274}
275
Myles Watson29cc9ed2009-07-02 18:56:24 +0000276/**
277 * Given a device and an index, read the size of the BAR for that register.
278 *
279 * @param dev Pointer to the device structure.
280 * @param index Address of the PCI configuration register.
281 */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000282static void pci_get_rom_resource(struct device *dev, unsigned long index)
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000283{
284 struct resource *resource;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000285 unsigned long value;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000286 resource_t moving;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000287
Myles Watson29cc9ed2009-07-02 18:56:24 +0000288 /* Initialize the resources to nothing. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000289 resource = new_resource(dev, index);
290
Myles Watson29cc9ed2009-07-02 18:56:24 +0000291 /* Get the initial value. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000292 value = pci_read_config32(dev, index);
293
Myles Watson29cc9ed2009-07-02 18:56:24 +0000294 /* See which bits move. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000295 moving = pci_moving_config32(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000296
297 /* Clear the Enable bit. */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000298 moving = moving & ~PCI_ROM_ADDRESS_ENABLE;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000299
Myles Watson032a9652009-05-11 22:24:53 +0000300 /* Find the resource constraints.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000301 * Start by finding the bits that move. From there:
302 * - Size is the least significant bit of the bits that move.
303 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000304 * See PCI Spec 6.2.5.1.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000305 */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000306 if (moving) {
307 resource->size = 1;
308 resource->align = resource->gran = 0;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000309 while (!(moving & resource->size)) {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000310 resource->size <<= 1;
311 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000312 resource->gran += 1;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000313 }
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000314 resource->limit = moving | (resource->size - 1);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000315 resource->flags |= IORESOURCE_MEM | IORESOURCE_READONLY;
316 } else {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000317 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000318 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
319 "read-only ignoring it\n",
320 dev_path(dev), index, value);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000321 }
322 resource->flags = 0;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000323 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000324 compact_resources(dev);
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000325}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000326
Myles Watson29cc9ed2009-07-02 18:56:24 +0000327/**
328 * Read the base address registers for a given device.
329 *
330 * @param dev Pointer to the dev structure.
331 * @param howmany How many registers to read (6 for device, 2 for bridge).
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000332 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000333static void pci_read_bases(struct device *dev, unsigned int howmany)
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000334{
335 unsigned long index;
336
Myles Watson29cc9ed2009-07-02 18:56:24 +0000337 for (index = PCI_BASE_ADDRESS_0;
338 (index < PCI_BASE_ADDRESS_0 + (howmany << 2));) {
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000339 struct resource *resource;
340 resource = pci_get_resource(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000341 index += (resource->flags & IORESOURCE_PCI64) ? 8 : 4;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000342 }
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000343
344 compact_resources(dev);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000345}
346
Myles Watson29cc9ed2009-07-02 18:56:24 +0000347static void pci_record_bridge_resource(struct device *dev, resource_t moving,
348 unsigned index, unsigned long type)
Eric Biederman03acab62004-10-14 21:25:53 +0000349{
Eric Biederman03acab62004-10-14 21:25:53 +0000350 struct resource *resource;
Uwe Hermanne4870472010-11-04 23:23:47 +0000351 unsigned long gran;
352 resource_t step;
353
Myles Watson29cc9ed2009-07-02 18:56:24 +0000354 resource = NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000355
356 if (!moving)
357 return;
358
359 /* Initialize the constraints on the current bus. */
360 resource = new_resource(dev, index);
361 resource->size = 0;
362 gran = 0;
363 step = 1;
364 while ((moving & step) == 0) {
365 gran += 1;
366 step <<= 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000367 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000368 resource->gran = gran;
369 resource->align = gran;
370 resource->limit = moving | (step - 1);
371 resource->flags = type | IORESOURCE_PCI_BRIDGE |
372 IORESOURCE_BRIDGE;
Eric Biederman03acab62004-10-14 21:25:53 +0000373}
374
Eric Biederman8ca8d762003-04-22 19:02:15 +0000375static void pci_bridge_read_bases(struct device *dev)
376{
Eric Biederman03acab62004-10-14 21:25:53 +0000377 resource_t moving_base, moving_limit, moving;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000378
Myles Watson29cc9ed2009-07-02 18:56:24 +0000379 /* See if the bridge I/O resources are implemented. */
380 moving_base = ((u32) pci_moving_config8(dev, PCI_IO_BASE)) << 8;
381 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000382 ((u32) pci_moving_config16(dev, PCI_IO_BASE_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000383
Myles Watson29cc9ed2009-07-02 18:56:24 +0000384 moving_limit = ((u32) pci_moving_config8(dev, PCI_IO_LIMIT)) << 8;
385 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000386 ((u32) pci_moving_config16(dev, PCI_IO_LIMIT_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000387
388 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000389
Myles Watson29cc9ed2009-07-02 18:56:24 +0000390 /* Initialize the I/O space constraints on the current bus. */
391 pci_record_bridge_resource(dev, moving, PCI_IO_BASE, IORESOURCE_IO);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000392
Myles Watson29cc9ed2009-07-02 18:56:24 +0000393 /* See if the bridge prefmem resources are implemented. */
394 moving_base =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000395 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_BASE)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000396 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000397 ((resource_t) pci_moving_config32(dev, PCI_PREF_BASE_UPPER32)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000398
Myles Watson29cc9ed2009-07-02 18:56:24 +0000399 moving_limit =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000400 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_LIMIT)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000401 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000402 ((resource_t) pci_moving_config32(dev, PCI_PREF_LIMIT_UPPER32)) << 32;
Myles Watson032a9652009-05-11 22:24:53 +0000403
Eric Biederman03acab62004-10-14 21:25:53 +0000404 moving = moving_base & moving_limit;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000405 /* Initialize the prefetchable memory constraints on the current bus. */
406 pci_record_bridge_resource(dev, moving, PCI_PREF_MEMORY_BASE,
407 IORESOURCE_MEM | IORESOURCE_PREFETCH);
Myles Watson032a9652009-05-11 22:24:53 +0000408
Myles Watson29cc9ed2009-07-02 18:56:24 +0000409 /* See if the bridge mem resources are implemented. */
410 moving_base = ((u32) pci_moving_config16(dev, PCI_MEMORY_BASE)) << 16;
411 moving_limit = ((u32) pci_moving_config16(dev, PCI_MEMORY_LIMIT)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000412
413 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000414
Myles Watson29cc9ed2009-07-02 18:56:24 +0000415 /* Initialize the memory resources on the current bus. */
416 pci_record_bridge_resource(dev, moving, PCI_MEMORY_BASE,
417 IORESOURCE_MEM);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000418
Eric Biederman5cd81732004-03-11 15:01:31 +0000419 compact_resources(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000420}
421
Eric Biederman5899fd82003-04-24 06:25:08 +0000422void pci_dev_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000423{
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000424 pci_read_bases(dev, 6);
425 pci_get_rom_resource(dev, PCI_ROM_ADDRESS);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000426}
427
Eric Biederman5899fd82003-04-24 06:25:08 +0000428void pci_bus_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000429{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000430 pci_bridge_read_bases(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000431 pci_read_bases(dev, 2);
432 pci_get_rom_resource(dev, PCI_ROM_ADDRESS1);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000433}
434
Myles Watson29cc9ed2009-07-02 18:56:24 +0000435void pci_domain_read_resources(struct device *dev)
436{
437 struct resource *res;
438
439 /* Initialize the system-wide I/O space constraints. */
440 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
441 res->limit = 0xffffUL;
442 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
443 IORESOURCE_ASSIGNED;
444
445 /* Initialize the system-wide memory resources constraints. */
446 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
447 res->limit = 0xffffffffULL;
448 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
449 IORESOURCE_ASSIGNED;
450}
451
Eric Biederman8ca8d762003-04-22 19:02:15 +0000452static void pci_set_resource(struct device *dev, struct resource *resource)
453{
Eric Biederman03acab62004-10-14 21:25:53 +0000454 resource_t base, end;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000455
Myles Watson29cc9ed2009-07-02 18:56:24 +0000456 /* Make certain the resource has actually been assigned a value. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000457 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000458 printk(BIOS_ERR, "ERROR: %s %02lx %s size: 0x%010llx not "
459 "assigned\n", dev_path(dev), resource->index,
460 resource_type(resource), resource->size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000461 return;
462 }
463
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000464 /* If this resource is fixed don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000465 if (resource->flags & IORESOURCE_FIXED)
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000466 return;
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000467
Myles Watson29cc9ed2009-07-02 18:56:24 +0000468 /* If I have already stored this resource don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000469 if (resource->flags & IORESOURCE_STORED)
Eric Biederman5cd81732004-03-11 15:01:31 +0000470 return;
Eric Biederman5cd81732004-03-11 15:01:31 +0000471
Myles Watson29cc9ed2009-07-02 18:56:24 +0000472 /* If the resource is subtractive don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000473 if (resource->flags & IORESOURCE_SUBTRACTIVE)
Eric Biederman03acab62004-10-14 21:25:53 +0000474 return;
Eric Biederman03acab62004-10-14 21:25:53 +0000475
Myles Watson29cc9ed2009-07-02 18:56:24 +0000476 /* Only handle PCI memory and I/O resources for now. */
477 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Eric Biederman8ca8d762003-04-22 19:02:15 +0000478 return;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000479
Myles Watson29cc9ed2009-07-02 18:56:24 +0000480 /* Enable the resources in the command register. */
Eric Biederman03acab62004-10-14 21:25:53 +0000481 if (resource->size) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000482 if (resource->flags & IORESOURCE_MEM)
Eric Biederman03acab62004-10-14 21:25:53 +0000483 dev->command |= PCI_COMMAND_MEMORY;
Uwe Hermanne4870472010-11-04 23:23:47 +0000484 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000485 dev->command |= PCI_COMMAND_IO;
Uwe Hermanne4870472010-11-04 23:23:47 +0000486 if (resource->flags & IORESOURCE_PCI_BRIDGE)
Eric Biederman03acab62004-10-14 21:25:53 +0000487 dev->command |= PCI_COMMAND_MASTER;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000488 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000489
Myles Watson29cc9ed2009-07-02 18:56:24 +0000490 /* Get the base address. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000491 base = resource->base;
Eric Biederman5cd81732004-03-11 15:01:31 +0000492
Myles Watson29cc9ed2009-07-02 18:56:24 +0000493 /* Get the end. */
Eric Biederman03acab62004-10-14 21:25:53 +0000494 end = resource_end(resource);
Myles Watson032a9652009-05-11 22:24:53 +0000495
Myles Watson29cc9ed2009-07-02 18:56:24 +0000496 /* Now store the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000497 resource->flags |= IORESOURCE_STORED;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000498
Uwe Hermanne4870472010-11-04 23:23:47 +0000499 /*
500 * PCI bridges have no enable bit. They are disabled if the base of
501 * the range is greater than the limit. If the size is zero, disable
Myles Watson29cc9ed2009-07-02 18:56:24 +0000502 * by setting the base = limit and end = limit - 2^gran.
503 */
504 if (resource->size == 0 && (resource->flags & IORESOURCE_PCI_BRIDGE)) {
505 base = resource->limit;
506 end = resource->limit - (1 << resource->gran);
507 resource->base = base;
508 }
509
Eric Biederman8ca8d762003-04-22 19:02:15 +0000510 if (!(resource->flags & IORESOURCE_PCI_BRIDGE)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000511 unsigned long base_lo, base_hi;
Uwe Hermanne4870472010-11-04 23:23:47 +0000512
513 /*
514 * Some chipsets allow us to set/clear the I/O bit
515 * (e.g. VIA 82C686A). So set it to be safe.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000516 */
Eric Biederman03acab62004-10-14 21:25:53 +0000517 base_lo = base & 0xffffffff;
518 base_hi = (base >> 32) & 0xffffffff;
Uwe Hermanne4870472010-11-04 23:23:47 +0000519 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000520 base_lo |= PCI_BASE_ADDRESS_SPACE_IO;
Eric Biederman03acab62004-10-14 21:25:53 +0000521 pci_write_config32(dev, resource->index, base_lo);
Uwe Hermanne4870472010-11-04 23:23:47 +0000522 if (resource->flags & IORESOURCE_PCI64)
Eric Biederman03acab62004-10-14 21:25:53 +0000523 pci_write_config32(dev, resource->index + 4, base_hi);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000524 } else if (resource->index == PCI_IO_BASE) {
525 /* Set the I/O ranges. */
526 pci_write_config8(dev, PCI_IO_BASE, base >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000527 pci_write_config16(dev, PCI_IO_BASE_UPPER16, base >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000528 pci_write_config8(dev, PCI_IO_LIMIT, end >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000529 pci_write_config16(dev, PCI_IO_LIMIT_UPPER16, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000530 } else if (resource->index == PCI_MEMORY_BASE) {
531 /* Set the memory range. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000532 pci_write_config16(dev, PCI_MEMORY_BASE, base >> 16);
Eric Biederman03acab62004-10-14 21:25:53 +0000533 pci_write_config16(dev, PCI_MEMORY_LIMIT, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000534 } else if (resource->index == PCI_PREF_MEMORY_BASE) {
535 /* Set the prefetchable memory range. */
Eric Biederman03acab62004-10-14 21:25:53 +0000536 pci_write_config16(dev, PCI_PREF_MEMORY_BASE, base >> 16);
537 pci_write_config32(dev, PCI_PREF_BASE_UPPER32, base >> 32);
538 pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, end >> 16);
539 pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, end >> 32);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000540 } else {
541 /* Don't let me think I stored the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000542 resource->flags &= ~IORESOURCE_STORED;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000543 printk(BIOS_ERR, "ERROR: invalid resource->index %lx\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000544 resource->index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000545 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000546
Eric Biederman03acab62004-10-14 21:25:53 +0000547 report_resource_stored(dev, resource, "");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000548}
549
Eric Biederman5899fd82003-04-24 06:25:08 +0000550void pci_dev_set_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000551{
Myles Watsonc25cc112010-05-21 14:33:48 +0000552 struct resource *res;
Myles Watson894a3472010-06-09 22:41:35 +0000553 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000554 u8 line;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000555
Uwe Hermanne4870472010-11-04 23:23:47 +0000556 for (res = dev->resource_list; res; res = res->next)
Myles Watsonc25cc112010-05-21 14:33:48 +0000557 pci_set_resource(dev, res);
Uwe Hermanne4870472010-11-04 23:23:47 +0000558
Myles Watson894a3472010-06-09 22:41:35 +0000559 for (bus = dev->link_list; bus; bus = bus->next) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000560 if (bus->children)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000561 assign_resources(bus);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000562 }
563
Myles Watson29cc9ed2009-07-02 18:56:24 +0000564 /* Set a default latency timer. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000565 pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000566
Myles Watson29cc9ed2009-07-02 18:56:24 +0000567 /* Set a default secondary latency timer. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000568 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000569 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000570
Myles Watson29cc9ed2009-07-02 18:56:24 +0000571 /* Zero the IRQ settings. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000572 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Uwe Hermanne4870472010-11-04 23:23:47 +0000573 if (line)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000574 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
Uwe Hermanne4870472010-11-04 23:23:47 +0000575
Myles Watson29cc9ed2009-07-02 18:56:24 +0000576 /* Set the cache line size, so far 64 bytes is good for everyone. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000577 pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000578}
579
Eric Biedermane9a271e32003-09-02 03:36:25 +0000580void pci_dev_enable_resources(struct device *dev)
581{
Eric Biedermana9e632c2004-11-18 22:38:08 +0000582 const struct pci_operations *ops;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000583 u16 command;
Eric Biederman03acab62004-10-14 21:25:53 +0000584
Uwe Hermanne4870472010-11-04 23:23:47 +0000585 /* Set the subsystem vendor and device ID for mainboard devices. */
Eric Biederman03acab62004-10-14 21:25:53 +0000586 ops = ops_pci(dev);
Eric Biedermandbec2d42004-10-21 10:44:08 +0000587 if (dev->on_mainboard && ops && ops->set_subsystem) {
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700588 if (CONFIG_SUBSYSTEM_VENDOR_ID)
589 dev->subsystem_vendor = CONFIG_SUBSYSTEM_VENDOR_ID;
590 if (CONFIG_SUBSYSTEM_DEVICE_ID)
591 dev->subsystem_device = CONFIG_SUBSYSTEM_DEVICE_ID;
Sven Schnelle91321022011-03-01 19:58:47 +0000592 printk(BIOS_DEBUG, "%s subsystem <- %04x/%04x\n",
593 dev_path(dev), dev->subsystem_vendor,
594 dev->subsystem_device);
595 ops->set_subsystem(dev, dev->subsystem_vendor,
596 dev->subsystem_device);
Eric Biederman03acab62004-10-14 21:25:53 +0000597 }
Eric Biedermane9a271e32003-09-02 03:36:25 +0000598 command = pci_read_config16(dev, PCI_COMMAND);
599 command |= dev->command;
Uwe Hermanne4870472010-11-04 23:23:47 +0000600
Myles Watson29cc9ed2009-07-02 18:56:24 +0000601 /* v3 has
602 * command |= (PCI_COMMAND_PARITY + PCI_COMMAND_SERR); // Error check.
603 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000604
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000605 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000606 pci_write_config16(dev, PCI_COMMAND, command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000607}
608
609void pci_bus_enable_resources(struct device *dev)
610{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000611 u16 ctrl;
612
Uwe Hermanne4870472010-11-04 23:23:47 +0000613 /*
614 * Enable I/O in command register if there is VGA card
Myles Watson29cc9ed2009-07-02 18:56:24 +0000615 * connected with (even it does not claim I/O resource).
616 */
Myles Watson894a3472010-06-09 22:41:35 +0000617 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
Li-Ta Lo515f6c72005-01-11 22:48:54 +0000618 dev->command |= PCI_COMMAND_IO;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000619 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +0000620 ctrl |= dev->link_list->bridge_ctrl;
Uwe Hermanne4870472010-11-04 23:23:47 +0000621 ctrl |= (PCI_BRIDGE_CTL_PARITY + PCI_BRIDGE_CTL_SERR); /* Error check. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000622 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000623 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
624
625 pci_dev_enable_resources(dev);
626}
627
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000628void pci_bus_reset(struct bus *bus)
629{
Uwe Hermanne4870472010-11-04 23:23:47 +0000630 u16 ctl;
631
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000632 ctl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
633 ctl |= PCI_BRIDGE_CTL_BUS_RESET;
634 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
635 mdelay(10);
Uwe Hermanne4870472010-11-04 23:23:47 +0000636
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000637 ctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
638 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
639 delay(1);
640}
641
Myles Watson29cc9ed2009-07-02 18:56:24 +0000642void pci_dev_set_subsystem(struct device *dev, unsigned vendor, unsigned device)
Eric Biederman03acab62004-10-14 21:25:53 +0000643{
Myles Watson032a9652009-05-11 22:24:53 +0000644 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
Myles Watson29cc9ed2009-07-02 18:56:24 +0000645 ((device & 0xffff) << 16) | (vendor & 0xffff));
Eric Biederman03acab62004-10-14 21:25:53 +0000646}
647
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300648#if CONFIG_VGA_ROM_RUN
649static int should_run_oprom(struct device *dev)
650{
651 static int should_run = -1;
652
653 if (should_run >= 0)
654 return should_run;
655
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200656 /* Don't run VGA option ROMs, unless we have to print
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300657 * something on the screen before the kernel is loaded.
658 */
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200659 should_run = !IS_ENABLED(CONFIG_BOOTMODE_STRAPS) ||
660 developer_mode_enabled() || recovery_mode_enabled();
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300661
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200662#if CONFIG_CHROMEOS
663 if (!should_run)
664 should_run = vboot_wants_oprom();
665#endif
666 if (!should_run)
667 printk(BIOS_DEBUG, "Not running VGA Option ROM\n");
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300668 return should_run;
669}
670
671static int should_load_oprom(struct device *dev)
672{
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300673 /* If S3_VGA_ROM_RUN is disabled, skip running VGA option
674 * ROMs when coming out of an S3 resume.
675 */
Kyösti Mälkki58ceb002014-06-20 06:21:01 +0300676 if (!IS_ENABLED(CONFIG_S3_VGA_ROM_RUN) && acpi_is_wakeup_s3() &&
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300677 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
678 return 0;
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300679 if (IS_ENABLED(CONFIG_ALWAYS_LOAD_OPROM))
680 return 1;
681 if (should_run_oprom(dev))
682 return 1;
683
684 return 0;
685}
686#endif /* CONFIG_VGA_ROM_RUN */
687
Uwe Hermanne4870472010-11-04 23:23:47 +0000688/** Default handler: only runs the relevant PCI BIOS. */
Li-Ta Lo883b8792005-01-10 23:16:22 +0000689void pci_dev_init(struct device *dev)
690{
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100691#if CONFIG_VGA_ROM_RUN
Li-Ta Lo883b8792005-01-10 23:16:22 +0000692 struct rom_header *rom, *ram;
693
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100694 /* Only execute VGA ROMs. */
695 if (((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
Myles Watson17aeeca2009-10-07 18:41:08 +0000696 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000697
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300698 if (!should_load_oprom(dev))
Stefan Reinauer74a0efe2012-03-30 17:10:49 -0700699 return;
Aaron Durbince872cb2013-03-28 15:59:19 -0500700
701 rom = pci_rom_probe(dev);
702 if (rom == NULL)
703 return;
704
705 ram = pci_rom_load(dev, rom);
706 if (ram == NULL)
707 return;
708
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300709 if (!should_run_oprom(dev))
710 return;
711
Stefan Reinauerd98cf5b2008-08-01 11:25:41 +0000712 run_bios(dev, (unsigned long)ram);
Kyösti Mälkkiab56b3b2013-11-28 16:44:51 +0200713 gfx_set_init_done(1);
714 printk(BIOS_DEBUG, "VGA Option ROM was run\n");
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100715#endif /* CONFIG_VGA_ROM_RUN */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000716}
Li-Ta Lo883b8792005-01-10 23:16:22 +0000717
Li-Ta Loe5266692004-03-23 21:28:05 +0000718/** Default device operation for PCI devices */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000719static struct pci_operations pci_dev_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000720 .set_subsystem = pci_dev_set_subsystem,
721};
722
Eric Biederman8ca8d762003-04-22 19:02:15 +0000723struct device_operations default_pci_ops_dev = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000724 .read_resources = pci_dev_read_resources,
725 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000726 .enable_resources = pci_dev_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000727 .init = pci_dev_init,
728 .scan_bus = 0,
729 .enable = 0,
730 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000731};
Li-Ta Loe5266692004-03-23 21:28:05 +0000732
733/** Default device operations for PCI bridges */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000734static struct pci_operations pci_bus_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000735 .set_subsystem = 0,
736};
Li-Ta Lo883b8792005-01-10 23:16:22 +0000737
Eric Biederman8ca8d762003-04-22 19:02:15 +0000738struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000739 .read_resources = pci_bus_read_resources,
740 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000741 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000742 .init = 0,
743 .scan_bus = pci_scan_bridge,
744 .enable = 0,
745 .reset_bus = pci_bus_reset,
746 .ops_pci = &pci_bus_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000747};
Li-Ta Loe5266692004-03-23 21:28:05 +0000748
749/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000750 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000751 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000752 * This function is a heuristic to detect which type of bus is downstream
753 * of a PCI-to-PCI bridge. This functions by looking for various capability
754 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
755 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000756 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000757 * When only a PCI-Express capability is found the type is examined to see
758 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000759 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000760 * @param dev Pointer to the device structure of the bridge.
761 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000762 */
763static struct device_operations *get_pci_bridge_ops(device_t dev)
764{
Patrick Georgie1667822012-05-05 15:29:32 +0200765#if CONFIG_PCIX_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800766 unsigned int pcixpos;
767 pcixpos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
768 if (pcixpos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000769 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000770 return &default_pcix_ops_bus;
771 }
772#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200773#if CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800774 unsigned int htpos = 0;
775 while ((htpos = pci_find_next_capability(dev, PCI_CAP_ID_HT, htpos))) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000776 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800777 flags = pci_read_config16(dev, htpos + PCI_CAP_FLAGS);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000778 if ((flags >> 13) == 1) {
779 /* Host or Secondary Interface */
Uwe Hermanne4870472010-11-04 23:23:47 +0000780 printk(BIOS_DEBUG, "%s subordinate bus HT\n",
781 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000782 return &default_ht_ops_bus;
783 }
784 }
785#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200786#if CONFIG_PCIEXP_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800787 unsigned int pciexpos;
788 pciexpos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
789 if (pciexpos) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000790 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800791 flags = pci_read_config16(dev, pciexpos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000792 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000793 case PCI_EXP_TYPE_ROOT_PORT:
794 case PCI_EXP_TYPE_UPSTREAM:
795 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000796 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000797 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000798 return &default_pciexp_ops_bus;
799 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +0000800 printk(BIOS_DEBUG, "%s subordinate PCI\n",
801 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000802 return &default_pci_ops_bus;
803 default:
804 break;
805 }
806 }
807#endif
808 return &default_pci_ops_bus;
809}
810
811/**
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700812 * Check if a device id matches a PCI driver entry.
813 *
814 * The driver entry can either point at a zero terminated array of acceptable
815 * device IDs, or include a single device ID.
816 *
Martin Roth98b698c2015-01-06 21:02:52 -0700817 * @param driver pointer to the PCI driver entry being checked
818 * @param device_id PCI device ID of the device being matched
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700819 */
820static int device_id_match(struct pci_driver *driver, unsigned short device_id)
821{
822 if (driver->devices) {
823 unsigned short check_id;
824 const unsigned short *device_list = driver->devices;
825 while ((check_id = *device_list++) != 0)
826 if (check_id == device_id)
827 return 1;
828 }
829
830 return (driver->device == device_id);
831}
832
833/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000834 * Set up PCI device operation.
835 *
836 * Check if it already has a driver. If not, use find_device_operations(),
837 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +0000838 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000839 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +0000840 * @see pci_drivers
841 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000842static void set_pci_ops(struct device *dev)
843{
844 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +0000845
Uwe Hermanne4870472010-11-04 23:23:47 +0000846 if (dev->ops)
847 return;
848
849 /*
850 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +0000851 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000852 */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000853 for (driver = &pci_drivers[0]; driver != &epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000854 if ((driver->vendor == dev->vendor) &&
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700855 device_id_match(driver, dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +0000856 dev->ops = (struct device_operations *)driver->ops;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000857 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000858 dev_path(dev), driver->vendor, driver->device,
859 (driver->ops->scan_bus ? "bus " : ""));
Eric Biederman5899fd82003-04-24 06:25:08 +0000860 return;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000861 }
862 }
Li-Ta Loe5266692004-03-23 21:28:05 +0000863
Uwe Hermanne4870472010-11-04 23:23:47 +0000864 /* If I don't have a specific driver use the default operations. */
865 switch (dev->hdr_type & 0x7f) { /* Header type */
866 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +0000867 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
868 goto bad;
869 dev->ops = &default_pci_ops_dev;
870 break;
871 case PCI_HEADER_TYPE_BRIDGE:
872 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
873 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000874 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000875 break;
Patrick Georgie1667822012-05-05 15:29:32 +0200876#if CONFIG_CARDBUS_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000877 case PCI_HEADER_TYPE_CARDBUS:
878 dev->ops = &default_cardbus_ops_bus;
879 break;
880#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000881default:
882bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000883 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000884 printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "
885 "header type %02x, ignoring.\n", dev_path(dev),
886 dev->vendor, dev->device,
887 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +0000888 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000889 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000890}
891
892/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000893 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +0000894 *
895 * Given a linked list of PCI device structures and a devfn number, find the
Li-Ta Lo3a812852004-12-03 22:39:34 +0000896 * device structure correspond to the devfn, if present. This function also
897 * removes the device structure from the linked list.
Li-Ta Loe5266692004-03-23 21:28:05 +0000898 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000899 * @param list The device structure list.
900 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000901 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +0000902 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000903 */
Eric Biedermanb78c1972004-10-14 20:54:17 +0000904static struct device *pci_scan_get_dev(struct device **list, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000905{
Eric Biedermanb78c1972004-10-14 20:54:17 +0000906 struct device *dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000907
Eric Biedermanb78c1972004-10-14 20:54:17 +0000908 dev = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000909 for (; *list; list = &(*list)->sibling) {
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000910 if ((*list)->path.type != DEVICE_PATH_PCI) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000911 printk(BIOS_ERR, "child %s not a PCI device\n",
912 dev_path(*list));
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000913 continue;
914 }
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000915 if ((*list)->path.pci.devfn == devfn) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000916 /* Unlink from the list. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000917 dev = *list;
918 *list = (*list)->sibling;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000919 dev->sibling = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000920 break;
921 }
922 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000923
Uwe Hermanne4870472010-11-04 23:23:47 +0000924 /*
925 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +0000926 * bus. When the list of devices was formed we removed all of the
927 * parents children, and now we are interleaving static and dynamic
928 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000929 */
Eric Biedermane9a271e32003-09-02 03:36:25 +0000930 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000931 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +0000932
Myles Watson29cc9ed2009-07-02 18:56:24 +0000933 /* Find the last child of our parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000934 for (child = dev->bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000935 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +0000936
Myles Watson29cc9ed2009-07-02 18:56:24 +0000937 /* Place the device on the list of children of its parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000938 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000939 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000940 else
Eric Biedermane9a271e32003-09-02 03:36:25 +0000941 dev->bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000942 }
943
Eric Biederman8ca8d762003-04-22 19:02:15 +0000944 return dev;
945}
946
Myles Watson032a9652009-05-11 22:24:53 +0000947/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000948 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +0000949 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000950 * Determine the existence of a given PCI device. Allocate a new struct device
951 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000952 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000953 * @param dev Pointer to the dev structure.
954 * @param bus Pointer to the bus structure.
955 * @param devfn A device/function number to look at.
956 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000957 */
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000958device_t pci_probe_dev(device_t dev, struct bus *bus, unsigned devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000959{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000960 u32 id, class;
961 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000962
Myles Watson29cc9ed2009-07-02 18:56:24 +0000963 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000964 if (!dev) {
965 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +0000966
Myles Watson29cc9ed2009-07-02 18:56:24 +0000967 dummy.bus = bus;
968 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000969 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +0000970
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000971 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000972 /*
973 * Have we found something? Some broken boards return 0 if a
974 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000975 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000976 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +0000977 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000978
Stefan Reinauer7355c752010-04-02 16:30:25 +0000979 if ((id == 0x00000000) || (id == 0x0000ffff) ||
980 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000981 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
982 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000983 return NULL;
984 }
985 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000986 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +0000987 /*
988 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +0000989 * specific operations this operations we will disable the
990 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +0000991 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000992 * This is geared toward devices that have subfunctions
993 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +0000994 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000995 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +0000996 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000997 */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000998 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000999 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001000 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +00001001
Myles Watson29cc9ed2009-07-02 18:56:24 +00001002 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001003 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +00001004
Uwe Hermanne4870472010-11-04 23:23:47 +00001005 /*
1006 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +00001007 * this is because we have already disabled the device. But
1008 * this also handles optional devices that may not always
1009 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001010 */
1011 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001012 if ((id == 0xffffffff) || (id == 0x00000000) ||
1013 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001014 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001015 printk(BIOS_INFO, "PCI: Static device %s not "
1016 "found, disabling it.\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001017 dev->enabled = 0;
1018 }
1019 return dev;
1020 }
1021 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001022
Myles Watson29cc9ed2009-07-02 18:56:24 +00001023 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001024 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
1025 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +00001026
Myles Watson29cc9ed2009-07-02 18:56:24 +00001027 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001028 dev->vendor = id & 0xffff;
1029 dev->device = (id >> 16) & 0xffff;
1030 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001031
1032 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001033 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +00001034
Myles Watson29cc9ed2009-07-02 18:56:24 +00001035 /* Architectural/System devices always need to be bus masters. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001036 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001037 dev->command |= PCI_COMMAND_MASTER;
Uwe Hermanne4870472010-11-04 23:23:47 +00001038
1039 /*
1040 * Look at the vendor and device ID, or at least the header type and
Myles Watson29cc9ed2009-07-02 18:56:24 +00001041 * class and figure out which set of configuration methods to use.
1042 * Unless we already have some PCI ops.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001043 */
1044 set_pci_ops(dev);
1045
Myles Watson29cc9ed2009-07-02 18:56:24 +00001046 /* Now run the magic enable/disable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001047 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001048 dev->ops->enable(dev);
Myles Watson032a9652009-05-11 22:24:53 +00001049
Myles Watson29cc9ed2009-07-02 18:56:24 +00001050 /* Display the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001051 printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
1052 dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
1053 dev->ops ? "" : " No operations");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001054
1055 return dev;
1056}
1057
Myles Watson032a9652009-05-11 22:24:53 +00001058/**
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001059 * Test for match between romstage and ramstage device instance.
1060 *
1061 * @param dev Pointer to the device structure.
1062 * @param sdev Simple device model identifier, created with PCI_DEV().
1063 * @return Non-zero if bus:dev.fn of device matches.
1064 */
1065unsigned int pci_match_simple_dev(device_t dev, pci_devfn_t sdev)
1066{
1067 return dev->bus->secondary == PCI_DEV2SEGBUS(sdev) &&
1068 dev->path.pci.devfn == PCI_DEV2DEVFN(sdev);
1069}
1070
1071/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001072 * Scan a PCI bus.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001073 *
Li-Ta Loe5266692004-03-23 21:28:05 +00001074 * Determine the existence of devices and bridges on a PCI bus. If there are
1075 * bridges on the bus, recursively scan the buses behind the bridges.
1076 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001077 * @param bus Pointer to the bus structure.
1078 * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1079 * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001080 */
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001081void pci_scan_bus(struct bus *bus, unsigned min_devfn,
1082 unsigned max_devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001083{
1084 unsigned int devfn;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001085 struct device *old_devices;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001086
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001087 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %02x\n", bus->secondary);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001088
Uwe Hermanne4870472010-11-04 23:23:47 +00001089 /* Maximum sane devfn is 0xFF. */
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001090 if (max_devfn > 0xff) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001091 printk(BIOS_ERR, "PCI: pci_scan_bus limits devfn %x - "
1092 "devfn %x\n", min_devfn, max_devfn);
1093 printk(BIOS_ERR, "PCI: pci_scan_bus upper limit too big. "
1094 "Using 0xff.\n");
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001095 max_devfn=0xff;
1096 }
1097
Eric Biederman8ca8d762003-04-22 19:02:15 +00001098 old_devices = bus->children;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001099 bus->children = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001100
1101 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001102
1103 /*
1104 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001105 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001106 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001107 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Myles Watson29cc9ed2009-07-02 18:56:24 +00001108 struct device *dev;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001109
Uwe Hermanne4870472010-11-04 23:23:47 +00001110 /* First thing setup the device structure. */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001111 dev = pci_scan_get_dev(&old_devices, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001112
Myles Watson29cc9ed2009-07-02 18:56:24 +00001113 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001114 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001115
Uwe Hermanne4870472010-11-04 23:23:47 +00001116 /*
1117 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001118 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001119 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001120 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001121 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001122 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001123 devfn += 0x07;
1124 }
1125 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001126
Eric Biederman8ca8d762003-04-22 19:02:15 +00001127 post_code(0x25);
1128
Uwe Hermanne4870472010-11-04 23:23:47 +00001129 /*
1130 * Warn if any leftover static devices are are found.
1131 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001132 */
1133 if (old_devices) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001134 device_t left;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001135 printk(BIOS_WARNING, "PCI: Left over static devices:\n");
Uwe Hermanne4870472010-11-04 23:23:47 +00001136 for (left = old_devices; left; left = left->sibling)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001137 printk(BIOS_WARNING, "%s\n", dev_path(left));
Uwe Hermanne4870472010-11-04 23:23:47 +00001138
1139 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001140 }
1141
Uwe Hermanne4870472010-11-04 23:23:47 +00001142 /*
1143 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001144 * scan the bus behind that child.
1145 */
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001146
Kyösti Mälkki2d2367c2015-02-20 21:28:31 +02001147 scan_bridges(bus);
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001148
Uwe Hermanne4870472010-11-04 23:23:47 +00001149 /*
1150 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001151 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001152 * Return how far we've got finding sub-buses.
1153 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001154 post_code(0x55);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001155}
1156
Kyösti Mälkki33452402015-02-23 06:58:26 +02001157typedef enum {
1158 PCI_ROUTE_CLOSE,
1159 PCI_ROUTE_SCAN,
1160 PCI_ROUTE_FINAL,
1161} scan_state;
1162
1163static void pci_bridge_route(struct bus *link, scan_state state)
1164{
1165 struct device *dev = link->dev;
1166 struct bus *parent = dev->bus;
1167 u32 reg, buses = 0;
1168
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001169 if (state == PCI_ROUTE_SCAN) {
1170 link->secondary = parent->subordinate + 1;
1171 link->subordinate = link->secondary;
1172 }
1173
Kyösti Mälkki33452402015-02-23 06:58:26 +02001174 if (state == PCI_ROUTE_CLOSE) {
1175 buses |= 0xfeff << 8;
1176 } else if (state == PCI_ROUTE_SCAN) {
1177 buses |= ((u32) link->secondary & 0xff) << 8;
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001178 buses |= 0xff << 16; /* MAX PCI_BUS number here */
Kyösti Mälkki33452402015-02-23 06:58:26 +02001179 } else if (state == PCI_ROUTE_FINAL) {
1180 buses |= parent->secondary & 0xff;
1181 buses |= ((u32) link->secondary & 0xff) << 8;
1182 buses |= ((u32) link->subordinate & 0xff) << 16;
1183 }
1184
1185 if (state == PCI_ROUTE_SCAN) {
1186 /* Clear all status bits and turn off memory, I/O and master enables. */
1187 link->bridge_cmd = pci_read_config16(dev, PCI_COMMAND);
1188 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1189 pci_write_config16(dev, PCI_STATUS, 0xffff);
1190 }
1191
1192 /*
1193 * Configure the bus numbers for this bridge: the configuration
1194 * transactions will not be propagated by the bridge if it is not
1195 * correctly configured.
1196 */
1197
1198 reg = pci_read_config32(dev, PCI_PRIMARY_BUS);
1199 reg &= 0xff000000;
1200 reg |= buses;
1201 pci_write_config32(dev, PCI_PRIMARY_BUS, reg);
1202
1203 if (state == PCI_ROUTE_FINAL) {
1204 pci_write_config16(dev, PCI_COMMAND, link->bridge_cmd);
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001205 parent->subordinate = link->subordinate;
Kyösti Mälkki33452402015-02-23 06:58:26 +02001206 }
1207}
1208
Li-Ta Loe5266692004-03-23 21:28:05 +00001209/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001210 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001211 *
1212 * Determine the existence of buses behind the bridge. Set up the bridge
1213 * according to the result of the scan.
1214 *
1215 * This function is the default scan_bus() method for PCI bridge devices.
1216 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001217 * @param dev Pointer to the bridge device.
1218 * @param max The highest bus number assigned up to now.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001219 * @param do_scan_bus TODO
Myles Watson29cc9ed2009-07-02 18:56:24 +00001220 * @return The maximum bus number found, after scanning all subordinate buses.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001221 */
Myles Watson032a9652009-05-11 22:24:53 +00001222unsigned int do_pci_scan_bridge(struct device *dev, unsigned int max,
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001223 void (*do_scan_bus) (struct bus * bus,
Myles Watson29cc9ed2009-07-02 18:56:24 +00001224 unsigned min_devfn,
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001225 unsigned max_devfn))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001226{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001227 struct bus *bus;
Eric Biederman83b991a2003-10-11 06:20:25 +00001228
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001229 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001230
Myles Watson894a3472010-06-09 22:41:35 +00001231 if (dev->link_list == NULL) {
1232 struct bus *link;
1233 link = malloc(sizeof(*link));
1234 if (link == NULL)
1235 die("Couldn't allocate a link!\n");
1236 memset(link, 0, sizeof(*link));
1237 link->dev = dev;
1238 dev->link_list = link;
1239 }
1240
1241 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001242
Kyösti Mälkki33452402015-02-23 06:58:26 +02001243 pci_bridge_route(bus, PCI_ROUTE_SCAN);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001244
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001245 do_scan_bus(bus, 0x00, 0xff);
Kyösti Mälkki33452402015-02-23 06:58:26 +02001246
1247 pci_bridge_route(bus, PCI_ROUTE_FINAL);
Myles Watson032a9652009-05-11 22:24:53 +00001248
Kyösti Mälkki757c8b42015-02-23 06:58:26 +02001249 return bus->subordinate;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001250}
Li-Ta Loe5266692004-03-23 21:28:05 +00001251
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001252/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001253 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001254 *
1255 * Determine the existence of buses behind the bridge. Set up the bridge
1256 * according to the result of the scan.
1257 *
1258 * This function is the default scan_bus() method for PCI bridge devices.
1259 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001260 * @param dev Pointer to the bridge device.
1261 * @param max The highest bus number assigned up to now.
1262 * @return The maximum bus number found, after scanning all subordinate buses.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001263 */
1264unsigned int pci_scan_bridge(struct device *dev, unsigned int max)
1265{
1266 return do_pci_scan_bridge(dev, max, pci_scan_bus);
1267}
1268
Myles Watson29cc9ed2009-07-02 18:56:24 +00001269/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001270 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001271 *
1272 * This function is the default scan_bus() method for PCI domains.
1273 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001274 * @param dev Pointer to the domain.
1275 * @param max The highest bus number assigned up to now.
1276 * @return The maximum bus number found, after scanning all subordinate busses.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001277 */
Kyösti Mälkki6f370172015-03-19 15:26:52 +02001278unsigned int pci_domain_scan_bus(device_t dev, unsigned int unused)
Myles Watson29cc9ed2009-07-02 18:56:24 +00001279{
Kyösti Mälkki6f370172015-03-19 15:26:52 +02001280 struct bus *link = dev->link_list;
Kyösti Mälkkide271a82015-03-18 13:09:47 +02001281 pci_scan_bus(link, PCI_DEVFN(0, 0), 0xff);
Kyösti Mälkki6f370172015-03-19 15:26:52 +02001282 return unused;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001283}
1284
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001285/**
1286 * Take an INT_PIN number (0, 1 - 4) and convert
1287 * it to a string ("NO PIN", "PIN A" - "PIN D")
1288 *
1289 * @param pin PCI Interrupt Pin number (0, 1 - 4)
1290 * @return A string corresponding to the pin number or "Invalid"
1291 */
1292const char *pin_to_str(int pin)
1293{
1294 const char *str[5] = {
1295 "NO PIN",
1296 "PIN A",
1297 "PIN B",
1298 "PIN C",
1299 "PIN D",
1300 };
1301
1302 if (pin >= 0 && pin <= 4)
1303 return str[pin];
1304 else
1305 return "Invalid PIN, not 0 - 4";
1306}
1307
1308/**
1309 * Get the PCI INT_PIN swizzle for a device defined as:
1310 * pin_parent = (pin_child + devn_child) % 4 + 1
1311 * where PIN A = 1 ... PIN_D = 4
1312 *
1313 * Given a PCI device structure 'dev', find the interrupt pin
1314 * that will be triggered on its parent bridge device when
1315 * generating an interrupt. For example: Device 1:3.2 may
1316 * use INT_PIN A but will trigger PIN D on its parent bridge
1317 * device. In this case, this function will return 4 (PIN D).
1318 *
1319 * @param dev A PCI device structure to swizzle interrupt pins for
Martin Roth32bc6b62015-01-04 16:54:35 -07001320 * @param *parent_bridge The PCI device structure for the bridge
Mike Loptien0f5cf5e2014-05-12 21:46:31 -06001321 * device 'dev' is attached to
1322 * @return The interrupt pin number (1 - 4) that 'dev' will
1323 * trigger when generating an interrupt
1324 */
1325static int swizzle_irq_pins(device_t dev, device_t *parent_bridge)
1326{
1327 device_t parent; /* Our current device's parent device */
1328 device_t child; /* The child device of the parent */
1329 uint8_t parent_bus = 0; /* Parent Bus number */
1330 uint16_t parent_devfn = 0; /* Parent Device and Function number */
1331 uint16_t child_devfn = 0; /* Child Device and Function number */
1332 uint8_t swizzled_pin = 0; /* Pin swizzled across a bridge */
1333
1334 /* Start with PIN A = 0 ... D = 3 */
1335 swizzled_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN) - 1;
1336
1337 /* While our current device has parent devices */
1338 child = dev;
1339 for (parent = child->bus->dev; parent; parent = parent->bus->dev) {
1340 parent_bus = parent->bus->secondary;
1341 parent_devfn = parent->path.pci.devfn;
1342 child_devfn = child->path.pci.devfn;
1343
1344 /* Swizzle the INT_PIN for any bridges not on root bus */
1345 swizzled_pin = (PCI_SLOT(child_devfn) + swizzled_pin) % 4;
1346 printk(BIOS_SPEW, "\tWith INT_PIN swizzled to %s\n"
1347 "\tAttached to bridge device %01X:%02Xh.%02Xh\n",
1348 pin_to_str(swizzled_pin + 1), parent_bus,
1349 PCI_SLOT(parent_devfn), PCI_FUNC(parent_devfn));
1350
1351 /* Continue until we find the root bus */
1352 if (parent_bus > 0) {
1353 /*
1354 * We will go on to the next parent so this parent
1355 * becomes the child
1356 */
1357 child = parent;
1358 continue;
1359 } else {
1360 /*
1361 * Found the root bridge device,
1362 * fill in the structure and exit
1363 */
1364 *parent_bridge = parent;
1365 break;
1366 }
1367 }
1368
1369 /* End with PIN A = 1 ... D = 4 */
1370 return swizzled_pin + 1;
1371}
1372
1373/**
1374 * Given a device structure 'dev', find its interrupt pin
1375 * and its parent bridge 'parent_bdg' device structure.
1376 * If it is behind a bridge, it will return the interrupt
1377 * pin number (1 - 4) of the parent bridge that the device
1378 * interrupt pin has been swizzled to, otherwise it will
1379 * return the interrupt pin that is programmed into the
1380 * PCI config space of the target device. If 'dev' is
1381 * behind a bridge, it will fill in 'parent_bdg' with the
1382 * device structure of the bridge it is behind, otherwise
1383 * it will copy 'dev' into 'parent_bdg'.
1384 *
1385 * @param dev A PCI device structure to get interrupt pins for.
1386 * @param *parent_bdg The PCI device structure for the bridge
1387 * device 'dev' is attached to.
1388 * @return The interrupt pin number (1 - 4) that 'dev' will
1389 * trigger when generating an interrupt.
1390 * Errors: -1 is returned if the device is not enabled
1391 * -2 is returned if a parent bridge could not be found.
1392 */
1393int get_pci_irq_pins(device_t dev, device_t *parent_bdg)
1394{
1395 uint8_t bus = 0; /* The bus this device is on */
1396 uint16_t devfn = 0; /* This device's device and function numbers */
1397 uint8_t int_pin = 0; /* Interrupt pin used by the device */
1398 uint8_t target_pin = 0; /* Interrupt pin we want to assign an IRQ to */
1399
1400 /* Make sure this device is enabled */
1401 if (!(dev->enabled && (dev->path.type == DEVICE_PATH_PCI)))
1402 return -1;
1403
1404 bus = dev->bus->secondary;
1405 devfn = dev->path.pci.devfn;
1406
1407 /* Get and validate the interrupt pin used. Only 1-4 are allowed */
1408 int_pin = pci_read_config8(dev, PCI_INTERRUPT_PIN);
1409 if (int_pin < 1 || int_pin > 4)
1410 return -1;
1411
1412 printk(BIOS_SPEW, "PCI IRQ: Found device %01X:%02X.%02X using %s\n",
1413 bus, PCI_SLOT(devfn), PCI_FUNC(devfn), pin_to_str(int_pin));
1414
1415 /* If this device is on a bridge, swizzle its INT_PIN */
1416 if (bus) {
1417 /* Swizzle its INT_PINs */
1418 target_pin = swizzle_irq_pins(dev, parent_bdg);
1419
1420 /* Make sure the swizzle returned valid structures */
1421 if (parent_bdg == NULL) {
1422 printk(BIOS_WARNING,
1423 "Warning: Could not find parent bridge for this device!\n");
1424 return -2;
1425 }
1426 } else { /* Device is not behind a bridge */
1427 target_pin = int_pin; /* Return its own interrupt pin */
1428 *parent_bdg = dev; /* Return its own structure */
1429 }
1430
1431 /* Target pin is the interrupt pin we want to assign an IRQ to */
1432 return target_pin;
1433}
1434
Patrick Georgie1667822012-05-05 15:29:32 +02001435#if CONFIG_PC80_SYSTEM
Myles Watson29cc9ed2009-07-02 18:56:24 +00001436/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001437 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001438 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001439 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001440 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001441 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001442 *
1443 * This function should be called for each PCI slot in your system.
1444 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001445 * @param bus Pointer to the bus structure.
1446 * @param slot TODO
1447 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1448 * of this slot. The particular IRQ #s that are passed in depend on the
1449 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001450 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001451void pci_assign_irqs(unsigned bus, unsigned slot,
Uwe Hermanne4870472010-11-04 23:23:47 +00001452 const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001453{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001454 unsigned int funct;
1455 device_t pdev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001456 u8 line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001457
Uwe Hermanne4870472010-11-04 23:23:47 +00001458 /* Each slot may contain up to eight functions. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001459 for (funct = 0; funct < 8; funct++) {
1460 pdev = dev_find_slot(bus, (slot << 3) + funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001461
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001462 if (!pdev)
1463 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001464
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001465 line = pci_read_config8(pdev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001466
Uwe Hermanne4870472010-11-04 23:23:47 +00001467 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001468 if ((line < 1) || (line > 4))
1469 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001470
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001471 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001472
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001473 printk(BIOS_DEBUG, "Assigning IRQ %d to %d:%x.%d\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001474 irq, bus, slot, funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001475
Stefan Reinauer14e22772010-04-27 06:56:47 +00001476 pci_write_config8(pdev, PCI_INTERRUPT_LINE,
Uwe Hermanne4870472010-11-04 23:23:47 +00001477 pIntAtoD[line - 1]);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001478
1479#ifdef PARANOID_IRQ_ASSIGNMENTS
Myles Watson17aeeca2009-10-07 18:41:08 +00001480 irq = pci_read_config8(pdev, PCI_INTERRUPT_LINE);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001481 printk(BIOS_DEBUG, " Readback = %d\n", irq);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001482#endif
1483
Patrick Georgie1667822012-05-05 15:29:32 +02001484#if CONFIG_PC80_SYSTEM
Uwe Hermanne4870472010-11-04 23:23:47 +00001485 /* Change to level triggered. */
1486 i8259_configure_irq_trigger(pIntAtoD[line - 1],
1487 IRQ_LEVEL_TRIGGERED);
Stefan Reinauer5fb62162010-12-16 23:52:04 +00001488#endif
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001489 }
1490}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001491#endif