blob: dfc08987e7b654402b43ecd20c06c4ec265a2bbd [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)
Uwe Hermannb80dbf02007-04-22 19:08:13 +000015 */
16
17/*
Myles Watson29cc9ed2009-07-02 18:56:24 +000018 * PCI Bus Services, see include/linux/pci.h for further explanation.
Eric Biederman8ca8d762003-04-22 19:02:15 +000019 *
Myles Watson29cc9ed2009-07-02 18:56:24 +000020 * Copyright 1993 -- 1997 Drew Eckhardt, Frederic Potter,
21 * David Mosberger-Tang
Eric Biederman8ca8d762003-04-22 19:02:15 +000022 *
Myles Watson29cc9ed2009-07-02 18:56:24 +000023 * Copyright 1997 -- 1999 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
Eric Biederman8ca8d762003-04-22 19:02:15 +000024 */
25
Kyösti Mälkki580e5642014-05-01 16:31:34 +030026#include <kconfig.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000027#include <console/console.h>
28#include <stdlib.h>
29#include <stdint.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000030#include <string.h>
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +000031#include <arch/io.h>
Eric Biederman5899fd82003-04-24 06:25:08 +000032#include <device/device.h>
33#include <device/pci.h>
34#include <device/pci_ids.h>
Kyösti Mälkkiab56b3b2013-11-28 16:44:51 +020035#include <bootmode.h>
Eric Biederman03acab62004-10-14 21:25:53 +000036#include <delay.h>
Patrick Georgie1667822012-05-05 15:29:32 +020037#if CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000038#include <device/hypertransport.h>
39#endif
Patrick Georgie1667822012-05-05 15:29:32 +020040#if CONFIG_PCIX_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000041#include <device/pcix.h>
42#endif
Patrick Georgie1667822012-05-05 15:29:32 +020043#if CONFIG_PCIEXP_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000044#include <device/pciexp.h>
45#endif
Patrick Georgie1667822012-05-05 15:29:32 +020046#if CONFIG_AGP_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000047#include <device/agp.h>
48#endif
Patrick Georgie1667822012-05-05 15:29:32 +020049#if CONFIG_CARDBUS_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000050#include <device/cardbus.h>
51#endif
Patrick Georgie1667822012-05-05 15:29:32 +020052#if CONFIG_PC80_SYSTEM
Stefan Reinauer4d933dd2009-07-21 21:36:41 +000053#include <pc80/i8259.h>
54#endif
Stefan Reinauer0a500842011-09-23 10:33:58 -070055#if CONFIG_HAVE_ACPI_RESUME && !CONFIG_S3_VGA_ROM_RUN
56#include <arch/acpi.h>
57#endif
Stefan Reinauer74a0efe2012-03-30 17:10:49 -070058#if CONFIG_CHROMEOS
59#include <vendorcode/google/chromeos/chromeos.h>
60#endif
Eric Biederman03acab62004-10-14 21:25:53 +000061
Myles Watson29cc9ed2009-07-02 18:56:24 +000062u8 pci_moving_config8(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000063{
Myles Watson29cc9ed2009-07-02 18:56:24 +000064 u8 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000065
Eric Biederman03acab62004-10-14 21:25:53 +000066 value = pci_read_config8(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000067
Eric Biederman03acab62004-10-14 21:25:53 +000068 pci_write_config8(dev, reg, 0xff);
69 ones = pci_read_config8(dev, reg);
70
71 pci_write_config8(dev, reg, 0x00);
72 zeroes = pci_read_config8(dev, reg);
73
74 pci_write_config8(dev, reg, value);
75
76 return ones ^ zeroes;
77}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +000078
Uwe Hermanne4870472010-11-04 23:23:47 +000079u16 pci_moving_config16(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000080{
Myles Watson29cc9ed2009-07-02 18:56:24 +000081 u16 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000082
Eric Biederman03acab62004-10-14 21:25:53 +000083 value = pci_read_config16(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000084
Eric Biederman03acab62004-10-14 21:25:53 +000085 pci_write_config16(dev, reg, 0xffff);
86 ones = pci_read_config16(dev, reg);
87
88 pci_write_config16(dev, reg, 0x0000);
89 zeroes = pci_read_config16(dev, reg);
90
91 pci_write_config16(dev, reg, value);
92
93 return ones ^ zeroes;
94}
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +000095
Uwe Hermanne4870472010-11-04 23:23:47 +000096u32 pci_moving_config32(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000097{
Myles Watson29cc9ed2009-07-02 18:56:24 +000098 u32 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000099
Eric Biederman03acab62004-10-14 21:25:53 +0000100 value = pci_read_config32(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +0000101
Eric Biederman03acab62004-10-14 21:25:53 +0000102 pci_write_config32(dev, reg, 0xffffffff);
103 ones = pci_read_config32(dev, reg);
104
105 pci_write_config32(dev, reg, 0x00000000);
106 zeroes = pci_read_config32(dev, reg);
107
108 pci_write_config32(dev, reg, value);
109
110 return ones ^ zeroes;
111}
112
Myles Watson29cc9ed2009-07-02 18:56:24 +0000113/**
114 * Given a device, a capability type, and a last position, return the next
115 * matching capability. Always start at the head of the list.
116 *
117 * @param dev Pointer to the device structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000118 * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000119 * @param last Location of the PCI capability register to start from.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000120 * @return The next matching capability.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000121 */
122unsigned pci_find_next_capability(struct device *dev, unsigned cap,
123 unsigned last)
Eric Biederman03acab62004-10-14 21:25:53 +0000124{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +0000125 unsigned pos = 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000126 u16 status;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000127 unsigned reps = 48;
Stefan Reinauer4d933dd2009-07-21 21:36:41 +0000128
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000129 status = pci_read_config16(dev, PCI_STATUS);
Uwe Hermanne4870472010-11-04 23:23:47 +0000130 if (!(status & PCI_STATUS_CAP_LIST))
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000131 return 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000132
Myles Watson29cc9ed2009-07-02 18:56:24 +0000133 switch (dev->hdr_type & 0x7f) {
Eric Biederman03acab62004-10-14 21:25:53 +0000134 case PCI_HEADER_TYPE_NORMAL:
135 case PCI_HEADER_TYPE_BRIDGE:
136 pos = PCI_CAPABILITY_LIST;
137 break;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000138 case PCI_HEADER_TYPE_CARDBUS:
139 pos = PCI_CB_CAPABILITY_LIST;
140 break;
141 default:
142 return 0;
Eric Biederman03acab62004-10-14 21:25:53 +0000143 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000144
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000145 pos = pci_read_config8(dev, pos);
Uwe Hermanne4870472010-11-04 23:23:47 +0000146 while (reps-- && (pos >= 0x40)) { /* Loop through the linked list. */
Eric Biederman03acab62004-10-14 21:25:53 +0000147 int this_cap;
Uwe Hermanne4870472010-11-04 23:23:47 +0000148
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000149 pos &= ~3;
Eric Biederman03acab62004-10-14 21:25:53 +0000150 this_cap = pci_read_config8(dev, pos + PCI_CAP_LIST_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000151 printk(BIOS_SPEW, "Capability: type 0x%02x @ 0x%02x\n",
152 this_cap, pos);
153 if (this_cap == 0xff)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000154 break;
Uwe Hermanne4870472010-11-04 23:23:47 +0000155
156 if (!last && (this_cap == cap))
Eric Biederman03acab62004-10-14 21:25:53 +0000157 return pos;
Uwe Hermanne4870472010-11-04 23:23:47 +0000158
159 if (last == pos)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000160 last = 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000161
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000162 pos = pci_read_config8(dev, pos + PCI_CAP_LIST_NEXT);
Eric Biederman03acab62004-10-14 21:25:53 +0000163 }
164 return 0;
165}
166
Myles Watson29cc9ed2009-07-02 18:56:24 +0000167/**
168 * Given a device, and a capability type, return the next matching
169 * capability. Always start at the head of the list.
170 *
171 * @param dev Pointer to the device structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000172 * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
173 * @return The next matching capability.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000174 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000175unsigned pci_find_capability(device_t dev, unsigned cap)
176{
177 return pci_find_next_capability(dev, cap, 0);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000178}
179
Myles Watson29cc9ed2009-07-02 18:56:24 +0000180/**
181 * Given a device and register, read the size of the BAR for that register.
182 *
183 * @param dev Pointer to the device structure.
184 * @param index Address of the PCI configuration register.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000185 * @return TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +0000186 */
Eric Biederman03acab62004-10-14 21:25:53 +0000187struct resource *pci_get_resource(struct device *dev, unsigned long index)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000188{
Eric Biederman5cd81732004-03-11 15:01:31 +0000189 struct resource *resource;
Eric Biederman03acab62004-10-14 21:25:53 +0000190 unsigned long value, attr;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000191 resource_t moving, limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000192
Myles Watson29cc9ed2009-07-02 18:56:24 +0000193 /* Initialize the resources to nothing. */
Eric Biederman03acab62004-10-14 21:25:53 +0000194 resource = new_resource(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000195
Myles Watson29cc9ed2009-07-02 18:56:24 +0000196 /* Get the initial value. */
Eric Biederman03acab62004-10-14 21:25:53 +0000197 value = pci_read_config32(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000198
Myles Watson29cc9ed2009-07-02 18:56:24 +0000199 /* See which bits move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000200 moving = pci_moving_config32(dev, index);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000201
Myles Watson29cc9ed2009-07-02 18:56:24 +0000202 /* Initialize attr to the bits that do not move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000203 attr = value & ~moving;
204
Myles Watson29cc9ed2009-07-02 18:56:24 +0000205 /* If it is a 64bit resource look at the high half as well. */
Eric Biederman03acab62004-10-14 21:25:53 +0000206 if (((attr & PCI_BASE_ADDRESS_SPACE_IO) == 0) &&
Myles Watson29cc9ed2009-07-02 18:56:24 +0000207 ((attr & PCI_BASE_ADDRESS_MEM_LIMIT_MASK) ==
208 PCI_BASE_ADDRESS_MEM_LIMIT_64)) {
209 /* Find the high bits that move. */
210 moving |=
211 ((resource_t) pci_moving_config32(dev, index + 4)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000212 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000213
Myles Watson032a9652009-05-11 22:24:53 +0000214 /* Find the resource constraints.
Eric Biederman03acab62004-10-14 21:25:53 +0000215 * Start by finding the bits that move. From there:
216 * - Size is the least significant bit of the bits that move.
217 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000218 * See PCI Spec 6.2.5.1.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000219 */
Eric Biederman03acab62004-10-14 21:25:53 +0000220 limit = 0;
221 if (moving) {
222 resource->size = 1;
223 resource->align = resource->gran = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000224 while (!(moving & resource->size)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000225 resource->size <<= 1;
226 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000227 resource->gran += 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000228 }
229 resource->limit = limit = moving | (resource->size - 1);
230 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000231
Uwe Hermanne4870472010-11-04 23:23:47 +0000232 /*
233 * Some broken hardware has read-only registers that do not
Eric Biederman03acab62004-10-14 21:25:53 +0000234 * really size correctly.
Uwe Hermanne4870472010-11-04 23:23:47 +0000235 *
236 * Example: the Acer M7229 has BARs 1-4 normally read-only,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000237 * so BAR1 at offset 0x10 reads 0x1f1. If you size that register
Uwe Hermanne4870472010-11-04 23:23:47 +0000238 * by writing 0xffffffff to it, it will read back as 0x1f1 -- which
239 * is a violation of the spec.
240 *
241 * We catch this case and ignore it by observing which bits move.
242 *
243 * This also catches the common case of unimplemented registers
Eric Biederman03acab62004-10-14 21:25:53 +0000244 * that always read back as 0.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000245 */
Eric Biederman03acab62004-10-14 21:25:53 +0000246 if (moving == 0) {
247 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000248 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
249 "read-only ignoring it\n",
250 dev_path(dev), index, value);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000251 }
252 resource->flags = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000253 } else if (attr & PCI_BASE_ADDRESS_SPACE_IO) {
254 /* An I/O mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000255 attr &= PCI_BASE_ADDRESS_IO_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000256 resource->flags |= IORESOURCE_IO;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000257 /* I don't want to deal with 32bit I/O resources. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000258 resource->limit = 0xffff;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000259 } else {
260 /* A Memory mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000261 attr &= PCI_BASE_ADDRESS_MEM_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000262 resource->flags |= IORESOURCE_MEM;
Uwe Hermanne4870472010-11-04 23:23:47 +0000263 if (attr & PCI_BASE_ADDRESS_MEM_PREFETCH)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000264 resource->flags |= IORESOURCE_PREFETCH;
Eric Biederman03acab62004-10-14 21:25:53 +0000265 attr &= PCI_BASE_ADDRESS_MEM_LIMIT_MASK;
266 if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_32) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000267 /* 32bit limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000268 resource->limit = 0xffffffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000269 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_1M) {
270 /* 1MB limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000271 resource->limit = 0x000fffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000272 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_64) {
273 /* 64bit limit. */
Eric Biederman03acab62004-10-14 21:25:53 +0000274 resource->limit = 0xffffffffffffffffULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000275 resource->flags |= IORESOURCE_PCI64;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000276 } else {
277 /* Invalid value. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000278 printk(BIOS_ERR, "Broken BAR with value %lx\n", attr);
279 printk(BIOS_ERR, " on dev %s at index %02lx\n",
Myles Watson29cc9ed2009-07-02 18:56:24 +0000280 dev_path(dev), index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000281 resource->flags = 0;
282 }
283 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000284
Myles Watson29cc9ed2009-07-02 18:56:24 +0000285 /* Don't let the limit exceed which bits can move. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000286 if (resource->limit > limit)
Eric Biederman03acab62004-10-14 21:25:53 +0000287 resource->limit = limit;
Eric Biederman03acab62004-10-14 21:25:53 +0000288
Eric Biederman5cd81732004-03-11 15:01:31 +0000289 return resource;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000290}
291
Myles Watson29cc9ed2009-07-02 18:56:24 +0000292/**
293 * Given a device and an index, read the size of the BAR for that register.
294 *
295 * @param dev Pointer to the device structure.
296 * @param index Address of the PCI configuration register.
297 */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000298static void pci_get_rom_resource(struct device *dev, unsigned long index)
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000299{
300 struct resource *resource;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000301 unsigned long value;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000302 resource_t moving;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000303
Myles Watson29cc9ed2009-07-02 18:56:24 +0000304 /* Initialize the resources to nothing. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000305 resource = new_resource(dev, index);
306
Myles Watson29cc9ed2009-07-02 18:56:24 +0000307 /* Get the initial value. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000308 value = pci_read_config32(dev, index);
309
Myles Watson29cc9ed2009-07-02 18:56:24 +0000310 /* See which bits move. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000311 moving = pci_moving_config32(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000312
313 /* Clear the Enable bit. */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000314 moving = moving & ~PCI_ROM_ADDRESS_ENABLE;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000315
Myles Watson032a9652009-05-11 22:24:53 +0000316 /* Find the resource constraints.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000317 * Start by finding the bits that move. From there:
318 * - Size is the least significant bit of the bits that move.
319 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000320 * See PCI Spec 6.2.5.1.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000321 */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000322 if (moving) {
323 resource->size = 1;
324 resource->align = resource->gran = 0;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000325 while (!(moving & resource->size)) {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000326 resource->size <<= 1;
327 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000328 resource->gran += 1;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000329 }
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000330 resource->limit = moving | (resource->size - 1);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000331 resource->flags |= IORESOURCE_MEM | IORESOURCE_READONLY;
332 } else {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000333 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000334 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
335 "read-only ignoring it\n",
336 dev_path(dev), index, value);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000337 }
338 resource->flags = 0;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000339 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000340 compact_resources(dev);
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000341}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000342
Myles Watson29cc9ed2009-07-02 18:56:24 +0000343/**
344 * Read the base address registers for a given device.
345 *
346 * @param dev Pointer to the dev structure.
347 * @param howmany How many registers to read (6 for device, 2 for bridge).
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000348 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000349static void pci_read_bases(struct device *dev, unsigned int howmany)
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000350{
351 unsigned long index;
352
Myles Watson29cc9ed2009-07-02 18:56:24 +0000353 for (index = PCI_BASE_ADDRESS_0;
354 (index < PCI_BASE_ADDRESS_0 + (howmany << 2));) {
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000355 struct resource *resource;
356 resource = pci_get_resource(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000357 index += (resource->flags & IORESOURCE_PCI64) ? 8 : 4;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000358 }
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000359
360 compact_resources(dev);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000361}
362
Myles Watson29cc9ed2009-07-02 18:56:24 +0000363static void pci_record_bridge_resource(struct device *dev, resource_t moving,
364 unsigned index, unsigned long type)
Eric Biederman03acab62004-10-14 21:25:53 +0000365{
Eric Biederman03acab62004-10-14 21:25:53 +0000366 struct resource *resource;
Uwe Hermanne4870472010-11-04 23:23:47 +0000367 unsigned long gran;
368 resource_t step;
369
Myles Watson29cc9ed2009-07-02 18:56:24 +0000370 resource = NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000371
372 if (!moving)
373 return;
374
375 /* Initialize the constraints on the current bus. */
376 resource = new_resource(dev, index);
377 resource->size = 0;
378 gran = 0;
379 step = 1;
380 while ((moving & step) == 0) {
381 gran += 1;
382 step <<= 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000383 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000384 resource->gran = gran;
385 resource->align = gran;
386 resource->limit = moving | (step - 1);
387 resource->flags = type | IORESOURCE_PCI_BRIDGE |
388 IORESOURCE_BRIDGE;
Eric Biederman03acab62004-10-14 21:25:53 +0000389}
390
Eric Biederman8ca8d762003-04-22 19:02:15 +0000391static void pci_bridge_read_bases(struct device *dev)
392{
Eric Biederman03acab62004-10-14 21:25:53 +0000393 resource_t moving_base, moving_limit, moving;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000394
Myles Watson29cc9ed2009-07-02 18:56:24 +0000395 /* See if the bridge I/O resources are implemented. */
396 moving_base = ((u32) pci_moving_config8(dev, PCI_IO_BASE)) << 8;
397 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000398 ((u32) pci_moving_config16(dev, PCI_IO_BASE_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000399
Myles Watson29cc9ed2009-07-02 18:56:24 +0000400 moving_limit = ((u32) pci_moving_config8(dev, PCI_IO_LIMIT)) << 8;
401 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000402 ((u32) pci_moving_config16(dev, PCI_IO_LIMIT_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000403
404 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000405
Myles Watson29cc9ed2009-07-02 18:56:24 +0000406 /* Initialize the I/O space constraints on the current bus. */
407 pci_record_bridge_resource(dev, moving, PCI_IO_BASE, IORESOURCE_IO);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000408
Myles Watson29cc9ed2009-07-02 18:56:24 +0000409 /* See if the bridge prefmem resources are implemented. */
410 moving_base =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000411 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_BASE)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000412 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000413 ((resource_t) pci_moving_config32(dev, PCI_PREF_BASE_UPPER32)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000414
Myles Watson29cc9ed2009-07-02 18:56:24 +0000415 moving_limit =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000416 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_LIMIT)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000417 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000418 ((resource_t) pci_moving_config32(dev, PCI_PREF_LIMIT_UPPER32)) << 32;
Myles Watson032a9652009-05-11 22:24:53 +0000419
Eric Biederman03acab62004-10-14 21:25:53 +0000420 moving = moving_base & moving_limit;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000421 /* Initialize the prefetchable memory constraints on the current bus. */
422 pci_record_bridge_resource(dev, moving, PCI_PREF_MEMORY_BASE,
423 IORESOURCE_MEM | IORESOURCE_PREFETCH);
Myles Watson032a9652009-05-11 22:24:53 +0000424
Myles Watson29cc9ed2009-07-02 18:56:24 +0000425 /* See if the bridge mem resources are implemented. */
426 moving_base = ((u32) pci_moving_config16(dev, PCI_MEMORY_BASE)) << 16;
427 moving_limit = ((u32) pci_moving_config16(dev, PCI_MEMORY_LIMIT)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000428
429 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000430
Myles Watson29cc9ed2009-07-02 18:56:24 +0000431 /* Initialize the memory resources on the current bus. */
432 pci_record_bridge_resource(dev, moving, PCI_MEMORY_BASE,
433 IORESOURCE_MEM);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000434
Eric Biederman5cd81732004-03-11 15:01:31 +0000435 compact_resources(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000436}
437
Eric Biederman5899fd82003-04-24 06:25:08 +0000438void pci_dev_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000439{
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000440 pci_read_bases(dev, 6);
441 pci_get_rom_resource(dev, PCI_ROM_ADDRESS);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000442}
443
Eric Biederman5899fd82003-04-24 06:25:08 +0000444void pci_bus_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000445{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000446 pci_bridge_read_bases(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000447 pci_read_bases(dev, 2);
448 pci_get_rom_resource(dev, PCI_ROM_ADDRESS1);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000449}
450
Myles Watson29cc9ed2009-07-02 18:56:24 +0000451void pci_domain_read_resources(struct device *dev)
452{
453 struct resource *res;
454
455 /* Initialize the system-wide I/O space constraints. */
456 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
457 res->limit = 0xffffUL;
458 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
459 IORESOURCE_ASSIGNED;
460
461 /* Initialize the system-wide memory resources constraints. */
462 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
463 res->limit = 0xffffffffULL;
464 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
465 IORESOURCE_ASSIGNED;
466}
467
Eric Biederman8ca8d762003-04-22 19:02:15 +0000468static void pci_set_resource(struct device *dev, struct resource *resource)
469{
Eric Biederman03acab62004-10-14 21:25:53 +0000470 resource_t base, end;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000471
Myles Watson29cc9ed2009-07-02 18:56:24 +0000472 /* Make certain the resource has actually been assigned a value. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000473 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000474 printk(BIOS_ERR, "ERROR: %s %02lx %s size: 0x%010llx not "
475 "assigned\n", dev_path(dev), resource->index,
476 resource_type(resource), resource->size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000477 return;
478 }
479
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000480 /* If this resource is fixed don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000481 if (resource->flags & IORESOURCE_FIXED)
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000482 return;
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000483
Myles Watson29cc9ed2009-07-02 18:56:24 +0000484 /* If I have already stored this resource don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000485 if (resource->flags & IORESOURCE_STORED)
Eric Biederman5cd81732004-03-11 15:01:31 +0000486 return;
Eric Biederman5cd81732004-03-11 15:01:31 +0000487
Myles Watson29cc9ed2009-07-02 18:56:24 +0000488 /* If the resource is subtractive don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000489 if (resource->flags & IORESOURCE_SUBTRACTIVE)
Eric Biederman03acab62004-10-14 21:25:53 +0000490 return;
Eric Biederman03acab62004-10-14 21:25:53 +0000491
Myles Watson29cc9ed2009-07-02 18:56:24 +0000492 /* Only handle PCI memory and I/O resources for now. */
493 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Eric Biederman8ca8d762003-04-22 19:02:15 +0000494 return;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000495
Myles Watson29cc9ed2009-07-02 18:56:24 +0000496 /* Enable the resources in the command register. */
Eric Biederman03acab62004-10-14 21:25:53 +0000497 if (resource->size) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000498 if (resource->flags & IORESOURCE_MEM)
Eric Biederman03acab62004-10-14 21:25:53 +0000499 dev->command |= PCI_COMMAND_MEMORY;
Uwe Hermanne4870472010-11-04 23:23:47 +0000500 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000501 dev->command |= PCI_COMMAND_IO;
Uwe Hermanne4870472010-11-04 23:23:47 +0000502 if (resource->flags & IORESOURCE_PCI_BRIDGE)
Eric Biederman03acab62004-10-14 21:25:53 +0000503 dev->command |= PCI_COMMAND_MASTER;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000504 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000505
Myles Watson29cc9ed2009-07-02 18:56:24 +0000506 /* Get the base address. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000507 base = resource->base;
Eric Biederman5cd81732004-03-11 15:01:31 +0000508
Myles Watson29cc9ed2009-07-02 18:56:24 +0000509 /* Get the end. */
Eric Biederman03acab62004-10-14 21:25:53 +0000510 end = resource_end(resource);
Myles Watson032a9652009-05-11 22:24:53 +0000511
Myles Watson29cc9ed2009-07-02 18:56:24 +0000512 /* Now store the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000513 resource->flags |= IORESOURCE_STORED;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000514
Uwe Hermanne4870472010-11-04 23:23:47 +0000515 /*
516 * PCI bridges have no enable bit. They are disabled if the base of
517 * the range is greater than the limit. If the size is zero, disable
Myles Watson29cc9ed2009-07-02 18:56:24 +0000518 * by setting the base = limit and end = limit - 2^gran.
519 */
520 if (resource->size == 0 && (resource->flags & IORESOURCE_PCI_BRIDGE)) {
521 base = resource->limit;
522 end = resource->limit - (1 << resource->gran);
523 resource->base = base;
524 }
525
Eric Biederman8ca8d762003-04-22 19:02:15 +0000526 if (!(resource->flags & IORESOURCE_PCI_BRIDGE)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000527 unsigned long base_lo, base_hi;
Uwe Hermanne4870472010-11-04 23:23:47 +0000528
529 /*
530 * Some chipsets allow us to set/clear the I/O bit
531 * (e.g. VIA 82C686A). So set it to be safe.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000532 */
Eric Biederman03acab62004-10-14 21:25:53 +0000533 base_lo = base & 0xffffffff;
534 base_hi = (base >> 32) & 0xffffffff;
Uwe Hermanne4870472010-11-04 23:23:47 +0000535 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000536 base_lo |= PCI_BASE_ADDRESS_SPACE_IO;
Eric Biederman03acab62004-10-14 21:25:53 +0000537 pci_write_config32(dev, resource->index, base_lo);
Uwe Hermanne4870472010-11-04 23:23:47 +0000538 if (resource->flags & IORESOURCE_PCI64)
Eric Biederman03acab62004-10-14 21:25:53 +0000539 pci_write_config32(dev, resource->index + 4, base_hi);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000540 } else if (resource->index == PCI_IO_BASE) {
541 /* Set the I/O ranges. */
542 pci_write_config8(dev, PCI_IO_BASE, base >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000543 pci_write_config16(dev, PCI_IO_BASE_UPPER16, base >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000544 pci_write_config8(dev, PCI_IO_LIMIT, end >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000545 pci_write_config16(dev, PCI_IO_LIMIT_UPPER16, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000546 } else if (resource->index == PCI_MEMORY_BASE) {
547 /* Set the memory range. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000548 pci_write_config16(dev, PCI_MEMORY_BASE, base >> 16);
Eric Biederman03acab62004-10-14 21:25:53 +0000549 pci_write_config16(dev, PCI_MEMORY_LIMIT, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000550 } else if (resource->index == PCI_PREF_MEMORY_BASE) {
551 /* Set the prefetchable memory range. */
Eric Biederman03acab62004-10-14 21:25:53 +0000552 pci_write_config16(dev, PCI_PREF_MEMORY_BASE, base >> 16);
553 pci_write_config32(dev, PCI_PREF_BASE_UPPER32, base >> 32);
554 pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, end >> 16);
555 pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, end >> 32);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000556 } else {
557 /* Don't let me think I stored the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000558 resource->flags &= ~IORESOURCE_STORED;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000559 printk(BIOS_ERR, "ERROR: invalid resource->index %lx\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000560 resource->index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000561 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000562
Eric Biederman03acab62004-10-14 21:25:53 +0000563 report_resource_stored(dev, resource, "");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000564}
565
Eric Biederman5899fd82003-04-24 06:25:08 +0000566void pci_dev_set_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000567{
Myles Watsonc25cc112010-05-21 14:33:48 +0000568 struct resource *res;
Myles Watson894a3472010-06-09 22:41:35 +0000569 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000570 u8 line;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000571
Uwe Hermanne4870472010-11-04 23:23:47 +0000572 for (res = dev->resource_list; res; res = res->next)
Myles Watsonc25cc112010-05-21 14:33:48 +0000573 pci_set_resource(dev, res);
Uwe Hermanne4870472010-11-04 23:23:47 +0000574
Myles Watson894a3472010-06-09 22:41:35 +0000575 for (bus = dev->link_list; bus; bus = bus->next) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000576 if (bus->children)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000577 assign_resources(bus);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000578 }
579
Myles Watson29cc9ed2009-07-02 18:56:24 +0000580 /* Set a default latency timer. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000581 pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000582
Myles Watson29cc9ed2009-07-02 18:56:24 +0000583 /* Set a default secondary latency timer. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000584 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000585 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000586
Myles Watson29cc9ed2009-07-02 18:56:24 +0000587 /* Zero the IRQ settings. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000588 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Uwe Hermanne4870472010-11-04 23:23:47 +0000589 if (line)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000590 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
Uwe Hermanne4870472010-11-04 23:23:47 +0000591
Myles Watson29cc9ed2009-07-02 18:56:24 +0000592 /* Set the cache line size, so far 64 bytes is good for everyone. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000593 pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000594}
595
Eric Biedermane9a271e32003-09-02 03:36:25 +0000596void pci_dev_enable_resources(struct device *dev)
597{
Eric Biedermana9e632c2004-11-18 22:38:08 +0000598 const struct pci_operations *ops;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000599 u16 command;
Eric Biederman03acab62004-10-14 21:25:53 +0000600
Uwe Hermanne4870472010-11-04 23:23:47 +0000601 /* Set the subsystem vendor and device ID for mainboard devices. */
Eric Biederman03acab62004-10-14 21:25:53 +0000602 ops = ops_pci(dev);
Eric Biedermandbec2d42004-10-21 10:44:08 +0000603 if (dev->on_mainboard && ops && ops->set_subsystem) {
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700604 if (CONFIG_SUBSYSTEM_VENDOR_ID)
605 dev->subsystem_vendor = CONFIG_SUBSYSTEM_VENDOR_ID;
606 if (CONFIG_SUBSYSTEM_DEVICE_ID)
607 dev->subsystem_device = CONFIG_SUBSYSTEM_DEVICE_ID;
Sven Schnelle91321022011-03-01 19:58:47 +0000608 printk(BIOS_DEBUG, "%s subsystem <- %04x/%04x\n",
609 dev_path(dev), dev->subsystem_vendor,
610 dev->subsystem_device);
611 ops->set_subsystem(dev, dev->subsystem_vendor,
612 dev->subsystem_device);
Eric Biederman03acab62004-10-14 21:25:53 +0000613 }
Eric Biedermane9a271e32003-09-02 03:36:25 +0000614 command = pci_read_config16(dev, PCI_COMMAND);
615 command |= dev->command;
Uwe Hermanne4870472010-11-04 23:23:47 +0000616
Myles Watson29cc9ed2009-07-02 18:56:24 +0000617 /* v3 has
618 * command |= (PCI_COMMAND_PARITY + PCI_COMMAND_SERR); // Error check.
619 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000620
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000621 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000622 pci_write_config16(dev, PCI_COMMAND, command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000623}
624
625void pci_bus_enable_resources(struct device *dev)
626{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000627 u16 ctrl;
628
Uwe Hermanne4870472010-11-04 23:23:47 +0000629 /*
630 * Enable I/O in command register if there is VGA card
Myles Watson29cc9ed2009-07-02 18:56:24 +0000631 * connected with (even it does not claim I/O resource).
632 */
Myles Watson894a3472010-06-09 22:41:35 +0000633 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
Li-Ta Lo515f6c72005-01-11 22:48:54 +0000634 dev->command |= PCI_COMMAND_IO;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000635 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +0000636 ctrl |= dev->link_list->bridge_ctrl;
Uwe Hermanne4870472010-11-04 23:23:47 +0000637 ctrl |= (PCI_BRIDGE_CTL_PARITY + PCI_BRIDGE_CTL_SERR); /* Error check. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000638 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000639 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
640
641 pci_dev_enable_resources(dev);
642}
643
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000644void pci_bus_reset(struct bus *bus)
645{
Uwe Hermanne4870472010-11-04 23:23:47 +0000646 u16 ctl;
647
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000648 ctl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
649 ctl |= PCI_BRIDGE_CTL_BUS_RESET;
650 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
651 mdelay(10);
Uwe Hermanne4870472010-11-04 23:23:47 +0000652
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000653 ctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
654 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
655 delay(1);
656}
657
Myles Watson29cc9ed2009-07-02 18:56:24 +0000658void pci_dev_set_subsystem(struct device *dev, unsigned vendor, unsigned device)
Eric Biederman03acab62004-10-14 21:25:53 +0000659{
Myles Watson032a9652009-05-11 22:24:53 +0000660 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
Myles Watson29cc9ed2009-07-02 18:56:24 +0000661 ((device & 0xffff) << 16) | (vendor & 0xffff));
Eric Biederman03acab62004-10-14 21:25:53 +0000662}
663
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300664#if CONFIG_VGA_ROM_RUN
665static int should_run_oprom(struct device *dev)
666{
667 static int should_run = -1;
668
669 if (should_run >= 0)
670 return should_run;
671
672#if CONFIG_CHROMEOS
673 /* In ChromeOS we want to boot blazingly fast. Therefore
674 * we don't run (VGA) option ROMs, unless we have to print
675 * something on the screen before the kernel is loaded.
676 */
677 if (!developer_mode_enabled() && !recovery_mode_enabled() &&
678 !vboot_wants_oprom()) {
679 printk(BIOS_DEBUG, "Not running VGA Option ROM\n");
680 should_run = 0;
681 return should_run;
682 }
683#endif
684 should_run = 1;
685
686 return should_run;
687}
688
689static int should_load_oprom(struct device *dev)
690{
691#if CONFIG_HAVE_ACPI_RESUME && !CONFIG_S3_VGA_ROM_RUN
692 /* If S3_VGA_ROM_RUN is disabled, skip running VGA option
693 * ROMs when coming out of an S3 resume.
694 */
695 if ((acpi_slp_type == 3) &&
696 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
697 return 0;
698#endif
699 if (IS_ENABLED(CONFIG_ALWAYS_LOAD_OPROM))
700 return 1;
701 if (should_run_oprom(dev))
702 return 1;
703
704 return 0;
705}
706#endif /* CONFIG_VGA_ROM_RUN */
707
Uwe Hermanne4870472010-11-04 23:23:47 +0000708/** Default handler: only runs the relevant PCI BIOS. */
Li-Ta Lo883b8792005-01-10 23:16:22 +0000709void pci_dev_init(struct device *dev)
710{
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100711#if CONFIG_VGA_ROM_RUN
Li-Ta Lo883b8792005-01-10 23:16:22 +0000712 struct rom_header *rom, *ram;
713
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100714 /* Only execute VGA ROMs. */
715 if (((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
Myles Watson17aeeca2009-10-07 18:41:08 +0000716 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000717
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300718 if (!should_load_oprom(dev))
Stefan Reinauer74a0efe2012-03-30 17:10:49 -0700719 return;
Aaron Durbince872cb2013-03-28 15:59:19 -0500720
721 rom = pci_rom_probe(dev);
722 if (rom == NULL)
723 return;
724
725 ram = pci_rom_load(dev, rom);
726 if (ram == NULL)
727 return;
728
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300729 if (!should_run_oprom(dev))
730 return;
731
Stefan Reinauerd98cf5b2008-08-01 11:25:41 +0000732 run_bios(dev, (unsigned long)ram);
Kyösti Mälkkiab56b3b2013-11-28 16:44:51 +0200733 gfx_set_init_done(1);
734 printk(BIOS_DEBUG, "VGA Option ROM was run\n");
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100735#endif /* CONFIG_VGA_ROM_RUN */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000736}
Li-Ta Lo883b8792005-01-10 23:16:22 +0000737
Li-Ta Loe5266692004-03-23 21:28:05 +0000738/** Default device operation for PCI devices */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000739static struct pci_operations pci_dev_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000740 .set_subsystem = pci_dev_set_subsystem,
741};
742
Eric Biederman8ca8d762003-04-22 19:02:15 +0000743struct device_operations default_pci_ops_dev = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000744 .read_resources = pci_dev_read_resources,
745 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000746 .enable_resources = pci_dev_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000747 .init = pci_dev_init,
748 .scan_bus = 0,
749 .enable = 0,
750 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000751};
Li-Ta Loe5266692004-03-23 21:28:05 +0000752
753/** Default device operations for PCI bridges */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000754static struct pci_operations pci_bus_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000755 .set_subsystem = 0,
756};
Li-Ta Lo883b8792005-01-10 23:16:22 +0000757
Eric Biederman8ca8d762003-04-22 19:02:15 +0000758struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000759 .read_resources = pci_bus_read_resources,
760 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000761 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000762 .init = 0,
763 .scan_bus = pci_scan_bridge,
764 .enable = 0,
765 .reset_bus = pci_bus_reset,
766 .ops_pci = &pci_bus_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000767};
Li-Ta Loe5266692004-03-23 21:28:05 +0000768
769/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000770 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000771 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000772 * This function is a heuristic to detect which type of bus is downstream
773 * of a PCI-to-PCI bridge. This functions by looking for various capability
774 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
775 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000776 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000777 * When only a PCI-Express capability is found the type is examined to see
778 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000779 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000780 * @param dev Pointer to the device structure of the bridge.
781 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000782 */
783static struct device_operations *get_pci_bridge_ops(device_t dev)
784{
Patrick Georgie1667822012-05-05 15:29:32 +0200785#if CONFIG_PCIX_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800786 unsigned int pcixpos;
787 pcixpos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
788 if (pcixpos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000789 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000790 return &default_pcix_ops_bus;
791 }
792#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200793#if CONFIG_AGP_PLUGIN_SUPPORT
Uwe Hermanne4870472010-11-04 23:23:47 +0000794 /* How do I detect a PCI to AGP bridge? */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000795#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200796#if CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800797 unsigned int htpos = 0;
798 while ((htpos = pci_find_next_capability(dev, PCI_CAP_ID_HT, htpos))) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000799 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800800 flags = pci_read_config16(dev, htpos + PCI_CAP_FLAGS);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000801 if ((flags >> 13) == 1) {
802 /* Host or Secondary Interface */
Uwe Hermanne4870472010-11-04 23:23:47 +0000803 printk(BIOS_DEBUG, "%s subordinate bus HT\n",
804 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000805 return &default_ht_ops_bus;
806 }
807 }
808#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200809#if CONFIG_PCIEXP_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800810 unsigned int pciexpos;
811 pciexpos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
812 if (pciexpos) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000813 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800814 flags = pci_read_config16(dev, pciexpos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000815 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000816 case PCI_EXP_TYPE_ROOT_PORT:
817 case PCI_EXP_TYPE_UPSTREAM:
818 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000819 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000820 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000821 return &default_pciexp_ops_bus;
822 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +0000823 printk(BIOS_DEBUG, "%s subordinate PCI\n",
824 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000825 return &default_pci_ops_bus;
826 default:
827 break;
828 }
829 }
830#endif
831 return &default_pci_ops_bus;
832}
833
834/**
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700835 * Check if a device id matches a PCI driver entry.
836 *
837 * The driver entry can either point at a zero terminated array of acceptable
838 * device IDs, or include a single device ID.
839 *
840 * @driver pointer to the PCI driver entry being checked
841 * @device_id PCI device ID of the device being matched
842 */
843static int device_id_match(struct pci_driver *driver, unsigned short device_id)
844{
845 if (driver->devices) {
846 unsigned short check_id;
847 const unsigned short *device_list = driver->devices;
848 while ((check_id = *device_list++) != 0)
849 if (check_id == device_id)
850 return 1;
851 }
852
853 return (driver->device == device_id);
854}
855
856/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000857 * Set up PCI device operation.
858 *
859 * Check if it already has a driver. If not, use find_device_operations(),
860 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +0000861 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000862 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +0000863 * @see pci_drivers
864 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000865static void set_pci_ops(struct device *dev)
866{
867 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +0000868
Uwe Hermanne4870472010-11-04 23:23:47 +0000869 if (dev->ops)
870 return;
871
872 /*
873 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +0000874 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000875 */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000876 for (driver = &pci_drivers[0]; driver != &epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000877 if ((driver->vendor == dev->vendor) &&
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700878 device_id_match(driver, dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +0000879 dev->ops = (struct device_operations *)driver->ops;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000880 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000881 dev_path(dev), driver->vendor, driver->device,
882 (driver->ops->scan_bus ? "bus " : ""));
Eric Biederman5899fd82003-04-24 06:25:08 +0000883 return;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000884 }
885 }
Li-Ta Loe5266692004-03-23 21:28:05 +0000886
Uwe Hermanne4870472010-11-04 23:23:47 +0000887 /* If I don't have a specific driver use the default operations. */
888 switch (dev->hdr_type & 0x7f) { /* Header type */
889 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +0000890 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
891 goto bad;
892 dev->ops = &default_pci_ops_dev;
893 break;
894 case PCI_HEADER_TYPE_BRIDGE:
895 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
896 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000897 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000898 break;
Patrick Georgie1667822012-05-05 15:29:32 +0200899#if CONFIG_CARDBUS_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000900 case PCI_HEADER_TYPE_CARDBUS:
901 dev->ops = &default_cardbus_ops_bus;
902 break;
903#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000904default:
905bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000906 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000907 printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "
908 "header type %02x, ignoring.\n", dev_path(dev),
909 dev->vendor, dev->device,
910 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +0000911 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000912 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000913}
914
915/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000916 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +0000917 *
918 * Given a linked list of PCI device structures and a devfn number, find the
Li-Ta Lo3a812852004-12-03 22:39:34 +0000919 * device structure correspond to the devfn, if present. This function also
920 * removes the device structure from the linked list.
Li-Ta Loe5266692004-03-23 21:28:05 +0000921 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000922 * @param list The device structure list.
923 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000924 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +0000925 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000926 */
Eric Biedermanb78c1972004-10-14 20:54:17 +0000927static struct device *pci_scan_get_dev(struct device **list, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000928{
Eric Biedermanb78c1972004-10-14 20:54:17 +0000929 struct device *dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000930
Eric Biedermanb78c1972004-10-14 20:54:17 +0000931 dev = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000932 for (; *list; list = &(*list)->sibling) {
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000933 if ((*list)->path.type != DEVICE_PATH_PCI) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000934 printk(BIOS_ERR, "child %s not a PCI device\n",
935 dev_path(*list));
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000936 continue;
937 }
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000938 if ((*list)->path.pci.devfn == devfn) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000939 /* Unlink from the list. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000940 dev = *list;
941 *list = (*list)->sibling;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000942 dev->sibling = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000943 break;
944 }
945 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000946
Uwe Hermanne4870472010-11-04 23:23:47 +0000947 /*
948 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +0000949 * bus. When the list of devices was formed we removed all of the
950 * parents children, and now we are interleaving static and dynamic
951 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000952 */
Eric Biedermane9a271e32003-09-02 03:36:25 +0000953 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000954 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +0000955
Myles Watson29cc9ed2009-07-02 18:56:24 +0000956 /* Find the last child of our parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000957 for (child = dev->bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000958 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +0000959
Myles Watson29cc9ed2009-07-02 18:56:24 +0000960 /* Place the device on the list of children of its parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000961 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000962 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000963 else
Eric Biedermane9a271e32003-09-02 03:36:25 +0000964 dev->bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000965 }
966
Eric Biederman8ca8d762003-04-22 19:02:15 +0000967 return dev;
968}
969
Myles Watson032a9652009-05-11 22:24:53 +0000970/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000971 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +0000972 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000973 * Determine the existence of a given PCI device. Allocate a new struct device
974 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000975 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000976 * @param dev Pointer to the dev structure.
977 * @param bus Pointer to the bus structure.
978 * @param devfn A device/function number to look at.
979 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000980 */
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000981device_t pci_probe_dev(device_t dev, struct bus *bus, unsigned devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000982{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000983 u32 id, class;
984 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000985
Myles Watson29cc9ed2009-07-02 18:56:24 +0000986 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000987 if (!dev) {
988 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +0000989
Myles Watson29cc9ed2009-07-02 18:56:24 +0000990 dummy.bus = bus;
991 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000992 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +0000993
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000994 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000995 /*
996 * Have we found something? Some broken boards return 0 if a
997 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000998 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000999 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +00001000 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +00001001
Stefan Reinauer7355c752010-04-02 16:30:25 +00001002 if ((id == 0x00000000) || (id == 0x0000ffff) ||
1003 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001004 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
1005 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001006 return NULL;
1007 }
1008 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001009 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +00001010 /*
1011 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +00001012 * specific operations this operations we will disable the
1013 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +00001014 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001015 * This is geared toward devices that have subfunctions
1016 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +00001017 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001018 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +00001019 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001020 */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001021 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001022 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001023 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +00001024
Myles Watson29cc9ed2009-07-02 18:56:24 +00001025 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001026 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +00001027
Uwe Hermanne4870472010-11-04 23:23:47 +00001028 /*
1029 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +00001030 * this is because we have already disabled the device. But
1031 * this also handles optional devices that may not always
1032 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001033 */
1034 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001035 if ((id == 0xffffffff) || (id == 0x00000000) ||
1036 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001037 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001038 printk(BIOS_INFO, "PCI: Static device %s not "
1039 "found, disabling it.\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001040 dev->enabled = 0;
1041 }
1042 return dev;
1043 }
1044 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001045
Myles Watson29cc9ed2009-07-02 18:56:24 +00001046 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001047 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
1048 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +00001049
Myles Watson29cc9ed2009-07-02 18:56:24 +00001050 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001051 dev->vendor = id & 0xffff;
1052 dev->device = (id >> 16) & 0xffff;
1053 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001054
1055 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001056 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +00001057
Myles Watson29cc9ed2009-07-02 18:56:24 +00001058 /* Architectural/System devices always need to be bus masters. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001059 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001060 dev->command |= PCI_COMMAND_MASTER;
Uwe Hermanne4870472010-11-04 23:23:47 +00001061
1062 /*
1063 * Look at the vendor and device ID, or at least the header type and
Myles Watson29cc9ed2009-07-02 18:56:24 +00001064 * class and figure out which set of configuration methods to use.
1065 * Unless we already have some PCI ops.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001066 */
1067 set_pci_ops(dev);
1068
Myles Watson29cc9ed2009-07-02 18:56:24 +00001069 /* Now run the magic enable/disable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001070 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001071 dev->ops->enable(dev);
Myles Watson032a9652009-05-11 22:24:53 +00001072
Myles Watson29cc9ed2009-07-02 18:56:24 +00001073 /* Display the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001074 printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
1075 dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
1076 dev->ops ? "" : " No operations");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001077
1078 return dev;
1079}
1080
Myles Watson032a9652009-05-11 22:24:53 +00001081/**
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001082 * Test for match between romstage and ramstage device instance.
1083 *
1084 * @param dev Pointer to the device structure.
1085 * @param sdev Simple device model identifier, created with PCI_DEV().
1086 * @return Non-zero if bus:dev.fn of device matches.
1087 */
1088unsigned int pci_match_simple_dev(device_t dev, pci_devfn_t sdev)
1089{
1090 return dev->bus->secondary == PCI_DEV2SEGBUS(sdev) &&
1091 dev->path.pci.devfn == PCI_DEV2DEVFN(sdev);
1092}
1093
1094/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001095 * Scan a PCI bus.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001096 *
Li-Ta Loe5266692004-03-23 21:28:05 +00001097 * Determine the existence of devices and bridges on a PCI bus. If there are
1098 * bridges on the bus, recursively scan the buses behind the bridges.
1099 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001100 * This function is the default scan_bus() method for the root device
1101 * 'dev_root'.
1102 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001103 * @param bus Pointer to the bus structure.
1104 * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1105 * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
1106 * @param max Current bus number.
1107 * @return The maximum bus number found, after scanning all subordinate busses.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001108 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001109unsigned int pci_scan_bus(struct bus *bus, unsigned min_devfn,
1110 unsigned max_devfn, unsigned int max)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001111{
1112 unsigned int devfn;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001113 struct device *old_devices;
1114 struct device *child;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001115
Stefan Reinauer08670622009-06-30 15:17:49 +00001116#if CONFIG_PCI_BUS_SEGN_BITS
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001117 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %04x:%02x\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001118 bus->secondary >> 8, bus->secondary & 0xff);
Yinghai Lu5f9624d2006-10-04 22:56:21 +00001119#else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001120 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %02x\n", bus->secondary);
Yinghai Lu5f9624d2006-10-04 22:56:21 +00001121#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +00001122
Uwe Hermanne4870472010-11-04 23:23:47 +00001123 /* Maximum sane devfn is 0xFF. */
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001124 if (max_devfn > 0xff) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001125 printk(BIOS_ERR, "PCI: pci_scan_bus limits devfn %x - "
1126 "devfn %x\n", min_devfn, max_devfn);
1127 printk(BIOS_ERR, "PCI: pci_scan_bus upper limit too big. "
1128 "Using 0xff.\n");
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001129 max_devfn=0xff;
1130 }
1131
Eric Biederman8ca8d762003-04-22 19:02:15 +00001132 old_devices = bus->children;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001133 bus->children = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001134
1135 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001136
1137 /*
1138 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001139 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001140 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001141 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Myles Watson29cc9ed2009-07-02 18:56:24 +00001142 struct device *dev;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001143
Uwe Hermanne4870472010-11-04 23:23:47 +00001144 /* First thing setup the device structure. */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001145 dev = pci_scan_get_dev(&old_devices, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001146
Myles Watson29cc9ed2009-07-02 18:56:24 +00001147 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001148 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001149
Uwe Hermanne4870472010-11-04 23:23:47 +00001150 /*
1151 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001152 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001153 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001154 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001155 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001156 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001157 devfn += 0x07;
1158 }
1159 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001160
Eric Biederman8ca8d762003-04-22 19:02:15 +00001161 post_code(0x25);
1162
Uwe Hermanne4870472010-11-04 23:23:47 +00001163 /*
1164 * Warn if any leftover static devices are are found.
1165 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001166 */
1167 if (old_devices) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001168 device_t left;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001169 printk(BIOS_WARNING, "PCI: Left over static devices:\n");
Uwe Hermanne4870472010-11-04 23:23:47 +00001170 for (left = old_devices; left; left = left->sibling)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001171 printk(BIOS_WARNING, "%s\n", dev_path(left));
Uwe Hermanne4870472010-11-04 23:23:47 +00001172
1173 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001174 }
1175
Uwe Hermanne4870472010-11-04 23:23:47 +00001176 /*
1177 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001178 * scan the bus behind that child.
1179 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001180 for (child = bus->children; child; child = child->sibling)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001181 max = scan_bus(child, max);
Li-Ta Loe5266692004-03-23 21:28:05 +00001182
Uwe Hermanne4870472010-11-04 23:23:47 +00001183 /*
1184 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001185 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001186 * Return how far we've got finding sub-buses.
1187 */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001188 printk(BIOS_DEBUG, "PCI: pci_scan_bus returning with max=%03x\n", max);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001189 post_code(0x55);
1190 return max;
1191}
1192
Li-Ta Loe5266692004-03-23 21:28:05 +00001193/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001194 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001195 *
1196 * Determine the existence of buses behind the bridge. Set up the bridge
1197 * according to the result of the scan.
1198 *
1199 * This function is the default scan_bus() method for PCI bridge devices.
1200 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001201 * @param dev Pointer to the bridge device.
1202 * @param max The highest bus number assigned up to now.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001203 * @param do_scan_bus TODO
Myles Watson29cc9ed2009-07-02 18:56:24 +00001204 * @return The maximum bus number found, after scanning all subordinate buses.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001205 */
Myles Watson032a9652009-05-11 22:24:53 +00001206unsigned int do_pci_scan_bridge(struct device *dev, unsigned int max,
Myles Watson29cc9ed2009-07-02 18:56:24 +00001207 unsigned int (*do_scan_bus) (struct bus * bus,
1208 unsigned min_devfn,
1209 unsigned max_devfn,
1210 unsigned int max))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001211{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001212 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001213 u32 buses;
1214 u16 cr;
Eric Biederman83b991a2003-10-11 06:20:25 +00001215
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001216 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001217
Myles Watson894a3472010-06-09 22:41:35 +00001218 if (dev->link_list == NULL) {
1219 struct bus *link;
1220 link = malloc(sizeof(*link));
1221 if (link == NULL)
1222 die("Couldn't allocate a link!\n");
1223 memset(link, 0, sizeof(*link));
1224 link->dev = dev;
1225 dev->link_list = link;
1226 }
1227
1228 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001229
Uwe Hermanne4870472010-11-04 23:23:47 +00001230 /*
1231 * Set up the primary, secondary and subordinate bus numbers. We have
Eric Biederman8ca8d762003-04-22 19:02:15 +00001232 * no idea how many buses are behind this bridge yet, so we set the
Myles Watson032a9652009-05-11 22:24:53 +00001233 * subordinate bus number to 0xff for the moment.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001234 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001235 bus->secondary = ++max;
1236 bus->subordinate = 0xff;
Li-Ta Loe5266692004-03-23 21:28:05 +00001237
Eric Biederman8ca8d762003-04-22 19:02:15 +00001238 /* Clear all status bits and turn off memory, I/O and master enables. */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001239 cr = pci_read_config16(dev, PCI_COMMAND);
1240 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1241 pci_write_config16(dev, PCI_STATUS, 0xffff);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001242
Uwe Hermanne4870472010-11-04 23:23:47 +00001243 /*
1244 * Read the existing primary/secondary/subordinate bus
Eric Biedermanb78c1972004-10-14 20:54:17 +00001245 * number configuration.
1246 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001247 buses = pci_read_config32(dev, PCI_PRIMARY_BUS);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001248
Uwe Hermanne4870472010-11-04 23:23:47 +00001249 /*
1250 * Configure the bus numbers for this bridge: the configuration
Eric Biederman8ca8d762003-04-22 19:02:15 +00001251 * transactions will not be propagated by the bridge if it is not
Eric Biedermanb78c1972004-10-14 20:54:17 +00001252 * correctly configured.
1253 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001254 buses &= 0xff000000;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001255 buses |= (((unsigned int)(dev->bus->secondary) << 0) |
1256 ((unsigned int)(bus->secondary) << 8) |
1257 ((unsigned int)(bus->subordinate) << 16));
Eric Biedermane9a271e32003-09-02 03:36:25 +00001258 pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001259
Uwe Hermanne4870472010-11-04 23:23:47 +00001260 /* Now we can scan all subordinate buses (those behind the bridge). */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001261 max = do_scan_bus(bus, 0x00, 0xff, max);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001262
Uwe Hermanne4870472010-11-04 23:23:47 +00001263 /*
1264 * We know the number of buses behind this bridge. Set the subordinate
Eric Biedermanb78c1972004-10-14 20:54:17 +00001265 * bus number to its real value.
1266 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001267 bus->subordinate = max;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001268 buses = (buses & 0xff00ffff) | ((unsigned int)(bus->subordinate) << 16);
Eric Biedermane9a271e32003-09-02 03:36:25 +00001269 pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
1270 pci_write_config16(dev, PCI_COMMAND, cr);
Myles Watson032a9652009-05-11 22:24:53 +00001271
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001272 printk(BIOS_SPEW, "%s returns max %d\n", __func__, max);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001273 return max;
1274}
Li-Ta Loe5266692004-03-23 21:28:05 +00001275
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001276/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001277 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001278 *
1279 * Determine the existence of buses behind the bridge. Set up the bridge
1280 * according to the result of the scan.
1281 *
1282 * This function is the default scan_bus() method for PCI bridge devices.
1283 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001284 * @param dev Pointer to the bridge device.
1285 * @param max The highest bus number assigned up to now.
1286 * @return The maximum bus number found, after scanning all subordinate buses.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001287 */
1288unsigned int pci_scan_bridge(struct device *dev, unsigned int max)
1289{
1290 return do_pci_scan_bridge(dev, max, pci_scan_bus);
1291}
1292
Myles Watson29cc9ed2009-07-02 18:56:24 +00001293/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001294 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001295 *
1296 * This function is the default scan_bus() method for PCI domains.
1297 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001298 * @param dev Pointer to the domain.
1299 * @param max The highest bus number assigned up to now.
1300 * @return The maximum bus number found, after scanning all subordinate busses.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001301 */
1302unsigned int pci_domain_scan_bus(device_t dev, unsigned int max)
1303{
Myles Watson894a3472010-06-09 22:41:35 +00001304 max = pci_scan_bus(dev->link_list, PCI_DEVFN(0, 0), 0xff, max);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001305 return max;
1306}
1307
Patrick Georgie1667822012-05-05 15:29:32 +02001308#if CONFIG_PC80_SYSTEM
Myles Watson29cc9ed2009-07-02 18:56:24 +00001309/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001310 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001311 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001312 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001313 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001314 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001315 *
1316 * This function should be called for each PCI slot in your system.
1317 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001318 * @param bus Pointer to the bus structure.
1319 * @param slot TODO
1320 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1321 * of this slot. The particular IRQ #s that are passed in depend on the
1322 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001323 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001324void pci_assign_irqs(unsigned bus, unsigned slot,
Uwe Hermanne4870472010-11-04 23:23:47 +00001325 const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001326{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001327 unsigned int funct;
1328 device_t pdev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001329 u8 line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001330
Uwe Hermanne4870472010-11-04 23:23:47 +00001331 /* Each slot may contain up to eight functions. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001332 for (funct = 0; funct < 8; funct++) {
1333 pdev = dev_find_slot(bus, (slot << 3) + funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001334
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001335 if (!pdev)
1336 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001337
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001338 line = pci_read_config8(pdev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001339
Uwe Hermanne4870472010-11-04 23:23:47 +00001340 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001341 if ((line < 1) || (line > 4))
1342 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001343
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001344 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001345
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001346 printk(BIOS_DEBUG, "Assigning IRQ %d to %d:%x.%d\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001347 irq, bus, slot, funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001348
Stefan Reinauer14e22772010-04-27 06:56:47 +00001349 pci_write_config8(pdev, PCI_INTERRUPT_LINE,
Uwe Hermanne4870472010-11-04 23:23:47 +00001350 pIntAtoD[line - 1]);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001351
1352#ifdef PARANOID_IRQ_ASSIGNMENTS
Myles Watson17aeeca2009-10-07 18:41:08 +00001353 irq = pci_read_config8(pdev, PCI_INTERRUPT_LINE);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001354 printk(BIOS_DEBUG, " Readback = %d\n", irq);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001355#endif
1356
Patrick Georgie1667822012-05-05 15:29:32 +02001357#if CONFIG_PC80_SYSTEM
Uwe Hermanne4870472010-11-04 23:23:47 +00001358 /* Change to level triggered. */
1359 i8259_configure_irq_trigger(pIntAtoD[line - 1],
1360 IRQ_LEVEL_TRIGGERED);
Stefan Reinauer5fb62162010-12-16 23:52:04 +00001361#endif
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001362 }
1363}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001364#endif