blob: f09fcaa8de1dfb7cdad7c941512cfa262b39a127 [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
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200672 /* Don't run VGA option ROMs, unless we have to print
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300673 * something on the screen before the kernel is loaded.
674 */
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200675 should_run = !IS_ENABLED(CONFIG_BOOTMODE_STRAPS) ||
676 developer_mode_enabled() || recovery_mode_enabled();
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300677
Kyösti Mälkki9ab1c102013-12-22 00:22:49 +0200678#if CONFIG_CHROMEOS
679 if (!should_run)
680 should_run = vboot_wants_oprom();
681#endif
682 if (!should_run)
683 printk(BIOS_DEBUG, "Not running VGA Option ROM\n");
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300684 return should_run;
685}
686
687static int should_load_oprom(struct device *dev)
688{
689#if CONFIG_HAVE_ACPI_RESUME && !CONFIG_S3_VGA_ROM_RUN
690 /* If S3_VGA_ROM_RUN is disabled, skip running VGA option
691 * ROMs when coming out of an S3 resume.
692 */
693 if ((acpi_slp_type == 3) &&
694 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
695 return 0;
696#endif
697 if (IS_ENABLED(CONFIG_ALWAYS_LOAD_OPROM))
698 return 1;
699 if (should_run_oprom(dev))
700 return 1;
701
702 return 0;
703}
704#endif /* CONFIG_VGA_ROM_RUN */
705
Uwe Hermanne4870472010-11-04 23:23:47 +0000706/** Default handler: only runs the relevant PCI BIOS. */
Li-Ta Lo883b8792005-01-10 23:16:22 +0000707void pci_dev_init(struct device *dev)
708{
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100709#if CONFIG_VGA_ROM_RUN
Li-Ta Lo883b8792005-01-10 23:16:22 +0000710 struct rom_header *rom, *ram;
711
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100712 /* Only execute VGA ROMs. */
713 if (((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
Myles Watson17aeeca2009-10-07 18:41:08 +0000714 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000715
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300716 if (!should_load_oprom(dev))
Stefan Reinauer74a0efe2012-03-30 17:10:49 -0700717 return;
Aaron Durbince872cb2013-03-28 15:59:19 -0500718
719 rom = pci_rom_probe(dev);
720 if (rom == NULL)
721 return;
722
723 ram = pci_rom_load(dev, rom);
724 if (ram == NULL)
725 return;
726
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300727 if (!should_run_oprom(dev))
728 return;
729
Stefan Reinauerd98cf5b2008-08-01 11:25:41 +0000730 run_bios(dev, (unsigned long)ram);
Kyösti Mälkkiab56b3b2013-11-28 16:44:51 +0200731 gfx_set_init_done(1);
732 printk(BIOS_DEBUG, "VGA Option ROM was run\n");
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100733#endif /* CONFIG_VGA_ROM_RUN */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000734}
Li-Ta Lo883b8792005-01-10 23:16:22 +0000735
Li-Ta Loe5266692004-03-23 21:28:05 +0000736/** Default device operation for PCI devices */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000737static struct pci_operations pci_dev_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000738 .set_subsystem = pci_dev_set_subsystem,
739};
740
Eric Biederman8ca8d762003-04-22 19:02:15 +0000741struct device_operations default_pci_ops_dev = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000742 .read_resources = pci_dev_read_resources,
743 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000744 .enable_resources = pci_dev_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000745 .init = pci_dev_init,
746 .scan_bus = 0,
747 .enable = 0,
748 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000749};
Li-Ta Loe5266692004-03-23 21:28:05 +0000750
751/** Default device operations for PCI bridges */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000752static struct pci_operations pci_bus_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000753 .set_subsystem = 0,
754};
Li-Ta Lo883b8792005-01-10 23:16:22 +0000755
Eric Biederman8ca8d762003-04-22 19:02:15 +0000756struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000757 .read_resources = pci_bus_read_resources,
758 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000759 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000760 .init = 0,
761 .scan_bus = pci_scan_bridge,
762 .enable = 0,
763 .reset_bus = pci_bus_reset,
764 .ops_pci = &pci_bus_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000765};
Li-Ta Loe5266692004-03-23 21:28:05 +0000766
767/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000768 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000769 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000770 * This function is a heuristic to detect which type of bus is downstream
771 * of a PCI-to-PCI bridge. This functions by looking for various capability
772 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
773 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000774 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000775 * When only a PCI-Express capability is found the type is examined to see
776 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000777 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000778 * @param dev Pointer to the device structure of the bridge.
779 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000780 */
781static struct device_operations *get_pci_bridge_ops(device_t dev)
782{
Patrick Georgie1667822012-05-05 15:29:32 +0200783#if CONFIG_PCIX_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800784 unsigned int pcixpos;
785 pcixpos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
786 if (pcixpos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000787 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000788 return &default_pcix_ops_bus;
789 }
790#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200791#if CONFIG_AGP_PLUGIN_SUPPORT
Uwe Hermanne4870472010-11-04 23:23:47 +0000792 /* How do I detect a PCI to AGP bridge? */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000793#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200794#if CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800795 unsigned int htpos = 0;
796 while ((htpos = pci_find_next_capability(dev, PCI_CAP_ID_HT, htpos))) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000797 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800798 flags = pci_read_config16(dev, htpos + PCI_CAP_FLAGS);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000799 if ((flags >> 13) == 1) {
800 /* Host or Secondary Interface */
Uwe Hermanne4870472010-11-04 23:23:47 +0000801 printk(BIOS_DEBUG, "%s subordinate bus HT\n",
802 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000803 return &default_ht_ops_bus;
804 }
805 }
806#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200807#if CONFIG_PCIEXP_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800808 unsigned int pciexpos;
809 pciexpos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
810 if (pciexpos) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000811 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800812 flags = pci_read_config16(dev, pciexpos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000813 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000814 case PCI_EXP_TYPE_ROOT_PORT:
815 case PCI_EXP_TYPE_UPSTREAM:
816 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000817 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000818 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000819 return &default_pciexp_ops_bus;
820 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +0000821 printk(BIOS_DEBUG, "%s subordinate PCI\n",
822 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000823 return &default_pci_ops_bus;
824 default:
825 break;
826 }
827 }
828#endif
829 return &default_pci_ops_bus;
830}
831
832/**
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700833 * Check if a device id matches a PCI driver entry.
834 *
835 * The driver entry can either point at a zero terminated array of acceptable
836 * device IDs, or include a single device ID.
837 *
838 * @driver pointer to the PCI driver entry being checked
839 * @device_id PCI device ID of the device being matched
840 */
841static int device_id_match(struct pci_driver *driver, unsigned short device_id)
842{
843 if (driver->devices) {
844 unsigned short check_id;
845 const unsigned short *device_list = driver->devices;
846 while ((check_id = *device_list++) != 0)
847 if (check_id == device_id)
848 return 1;
849 }
850
851 return (driver->device == device_id);
852}
853
854/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000855 * Set up PCI device operation.
856 *
857 * Check if it already has a driver. If not, use find_device_operations(),
858 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +0000859 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000860 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +0000861 * @see pci_drivers
862 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000863static void set_pci_ops(struct device *dev)
864{
865 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +0000866
Uwe Hermanne4870472010-11-04 23:23:47 +0000867 if (dev->ops)
868 return;
869
870 /*
871 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +0000872 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000873 */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000874 for (driver = &pci_drivers[0]; driver != &epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000875 if ((driver->vendor == dev->vendor) &&
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700876 device_id_match(driver, dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +0000877 dev->ops = (struct device_operations *)driver->ops;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000878 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000879 dev_path(dev), driver->vendor, driver->device,
880 (driver->ops->scan_bus ? "bus " : ""));
Eric Biederman5899fd82003-04-24 06:25:08 +0000881 return;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000882 }
883 }
Li-Ta Loe5266692004-03-23 21:28:05 +0000884
Uwe Hermanne4870472010-11-04 23:23:47 +0000885 /* If I don't have a specific driver use the default operations. */
886 switch (dev->hdr_type & 0x7f) { /* Header type */
887 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +0000888 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
889 goto bad;
890 dev->ops = &default_pci_ops_dev;
891 break;
892 case PCI_HEADER_TYPE_BRIDGE:
893 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
894 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000895 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000896 break;
Patrick Georgie1667822012-05-05 15:29:32 +0200897#if CONFIG_CARDBUS_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000898 case PCI_HEADER_TYPE_CARDBUS:
899 dev->ops = &default_cardbus_ops_bus;
900 break;
901#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000902default:
903bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000904 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000905 printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "
906 "header type %02x, ignoring.\n", dev_path(dev),
907 dev->vendor, dev->device,
908 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +0000909 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000910 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000911}
912
913/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000914 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +0000915 *
916 * Given a linked list of PCI device structures and a devfn number, find the
Li-Ta Lo3a812852004-12-03 22:39:34 +0000917 * device structure correspond to the devfn, if present. This function also
918 * removes the device structure from the linked list.
Li-Ta Loe5266692004-03-23 21:28:05 +0000919 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000920 * @param list The device structure list.
921 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000922 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +0000923 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000924 */
Eric Biedermanb78c1972004-10-14 20:54:17 +0000925static struct device *pci_scan_get_dev(struct device **list, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000926{
Eric Biedermanb78c1972004-10-14 20:54:17 +0000927 struct device *dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000928
Eric Biedermanb78c1972004-10-14 20:54:17 +0000929 dev = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000930 for (; *list; list = &(*list)->sibling) {
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000931 if ((*list)->path.type != DEVICE_PATH_PCI) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000932 printk(BIOS_ERR, "child %s not a PCI device\n",
933 dev_path(*list));
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000934 continue;
935 }
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000936 if ((*list)->path.pci.devfn == devfn) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000937 /* Unlink from the list. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000938 dev = *list;
939 *list = (*list)->sibling;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000940 dev->sibling = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000941 break;
942 }
943 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000944
Uwe Hermanne4870472010-11-04 23:23:47 +0000945 /*
946 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +0000947 * bus. When the list of devices was formed we removed all of the
948 * parents children, and now we are interleaving static and dynamic
949 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000950 */
Eric Biedermane9a271e32003-09-02 03:36:25 +0000951 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000952 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +0000953
Myles Watson29cc9ed2009-07-02 18:56:24 +0000954 /* Find the last child of our parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000955 for (child = dev->bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000956 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +0000957
Myles Watson29cc9ed2009-07-02 18:56:24 +0000958 /* Place the device on the list of children of its parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000959 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000960 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000961 else
Eric Biedermane9a271e32003-09-02 03:36:25 +0000962 dev->bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000963 }
964
Eric Biederman8ca8d762003-04-22 19:02:15 +0000965 return dev;
966}
967
Myles Watson032a9652009-05-11 22:24:53 +0000968/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000969 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +0000970 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000971 * Determine the existence of a given PCI device. Allocate a new struct device
972 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000973 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000974 * @param dev Pointer to the dev structure.
975 * @param bus Pointer to the bus structure.
976 * @param devfn A device/function number to look at.
977 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000978 */
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000979device_t pci_probe_dev(device_t dev, struct bus *bus, unsigned devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000980{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000981 u32 id, class;
982 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000983
Myles Watson29cc9ed2009-07-02 18:56:24 +0000984 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000985 if (!dev) {
986 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +0000987
Myles Watson29cc9ed2009-07-02 18:56:24 +0000988 dummy.bus = bus;
989 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000990 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +0000991
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000992 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000993 /*
994 * Have we found something? Some broken boards return 0 if a
995 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000996 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000997 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +0000998 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000999
Stefan Reinauer7355c752010-04-02 16:30:25 +00001000 if ((id == 0x00000000) || (id == 0x0000ffff) ||
1001 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001002 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
1003 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001004 return NULL;
1005 }
1006 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001007 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +00001008 /*
1009 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +00001010 * specific operations this operations we will disable the
1011 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +00001012 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001013 * This is geared toward devices that have subfunctions
1014 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +00001015 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001016 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +00001017 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001018 */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001019 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001020 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001021 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +00001022
Myles Watson29cc9ed2009-07-02 18:56:24 +00001023 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001024 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +00001025
Uwe Hermanne4870472010-11-04 23:23:47 +00001026 /*
1027 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +00001028 * this is because we have already disabled the device. But
1029 * this also handles optional devices that may not always
1030 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001031 */
1032 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001033 if ((id == 0xffffffff) || (id == 0x00000000) ||
1034 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001035 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001036 printk(BIOS_INFO, "PCI: Static device %s not "
1037 "found, disabling it.\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001038 dev->enabled = 0;
1039 }
1040 return dev;
1041 }
1042 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001043
Myles Watson29cc9ed2009-07-02 18:56:24 +00001044 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001045 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
1046 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +00001047
Myles Watson29cc9ed2009-07-02 18:56:24 +00001048 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001049 dev->vendor = id & 0xffff;
1050 dev->device = (id >> 16) & 0xffff;
1051 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001052
1053 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001054 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +00001055
Myles Watson29cc9ed2009-07-02 18:56:24 +00001056 /* Architectural/System devices always need to be bus masters. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001057 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001058 dev->command |= PCI_COMMAND_MASTER;
Uwe Hermanne4870472010-11-04 23:23:47 +00001059
1060 /*
1061 * Look at the vendor and device ID, or at least the header type and
Myles Watson29cc9ed2009-07-02 18:56:24 +00001062 * class and figure out which set of configuration methods to use.
1063 * Unless we already have some PCI ops.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001064 */
1065 set_pci_ops(dev);
1066
Myles Watson29cc9ed2009-07-02 18:56:24 +00001067 /* Now run the magic enable/disable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001068 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001069 dev->ops->enable(dev);
Myles Watson032a9652009-05-11 22:24:53 +00001070
Myles Watson29cc9ed2009-07-02 18:56:24 +00001071 /* Display the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001072 printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
1073 dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
1074 dev->ops ? "" : " No operations");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001075
1076 return dev;
1077}
1078
Myles Watson032a9652009-05-11 22:24:53 +00001079/**
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001080 * Test for match between romstage and ramstage device instance.
1081 *
1082 * @param dev Pointer to the device structure.
1083 * @param sdev Simple device model identifier, created with PCI_DEV().
1084 * @return Non-zero if bus:dev.fn of device matches.
1085 */
1086unsigned int pci_match_simple_dev(device_t dev, pci_devfn_t sdev)
1087{
1088 return dev->bus->secondary == PCI_DEV2SEGBUS(sdev) &&
1089 dev->path.pci.devfn == PCI_DEV2DEVFN(sdev);
1090}
1091
1092/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001093 * Scan a PCI bus.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001094 *
Li-Ta Loe5266692004-03-23 21:28:05 +00001095 * Determine the existence of devices and bridges on a PCI bus. If there are
1096 * bridges on the bus, recursively scan the buses behind the bridges.
1097 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001098 * This function is the default scan_bus() method for the root device
1099 * 'dev_root'.
1100 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001101 * @param bus Pointer to the bus structure.
1102 * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1103 * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
1104 * @param max Current bus number.
1105 * @return The maximum bus number found, after scanning all subordinate busses.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001106 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001107unsigned int pci_scan_bus(struct bus *bus, unsigned min_devfn,
1108 unsigned max_devfn, unsigned int max)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001109{
1110 unsigned int devfn;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001111 struct device *old_devices;
1112 struct device *child;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001113
Stefan Reinauer08670622009-06-30 15:17:49 +00001114#if CONFIG_PCI_BUS_SEGN_BITS
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001115 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %04x:%02x\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001116 bus->secondary >> 8, bus->secondary & 0xff);
Yinghai Lu5f9624d2006-10-04 22:56:21 +00001117#else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001118 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %02x\n", bus->secondary);
Yinghai Lu5f9624d2006-10-04 22:56:21 +00001119#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +00001120
Uwe Hermanne4870472010-11-04 23:23:47 +00001121 /* Maximum sane devfn is 0xFF. */
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001122 if (max_devfn > 0xff) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001123 printk(BIOS_ERR, "PCI: pci_scan_bus limits devfn %x - "
1124 "devfn %x\n", min_devfn, max_devfn);
1125 printk(BIOS_ERR, "PCI: pci_scan_bus upper limit too big. "
1126 "Using 0xff.\n");
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001127 max_devfn=0xff;
1128 }
1129
Eric Biederman8ca8d762003-04-22 19:02:15 +00001130 old_devices = bus->children;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001131 bus->children = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001132
1133 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001134
1135 /*
1136 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001137 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001138 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001139 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Myles Watson29cc9ed2009-07-02 18:56:24 +00001140 struct device *dev;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001141
Uwe Hermanne4870472010-11-04 23:23:47 +00001142 /* First thing setup the device structure. */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001143 dev = pci_scan_get_dev(&old_devices, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001144
Myles Watson29cc9ed2009-07-02 18:56:24 +00001145 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001146 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001147
Uwe Hermanne4870472010-11-04 23:23:47 +00001148 /*
1149 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001150 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001151 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001152 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001153 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001154 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001155 devfn += 0x07;
1156 }
1157 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001158
Eric Biederman8ca8d762003-04-22 19:02:15 +00001159 post_code(0x25);
1160
Uwe Hermanne4870472010-11-04 23:23:47 +00001161 /*
1162 * Warn if any leftover static devices are are found.
1163 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001164 */
1165 if (old_devices) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001166 device_t left;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001167 printk(BIOS_WARNING, "PCI: Left over static devices:\n");
Uwe Hermanne4870472010-11-04 23:23:47 +00001168 for (left = old_devices; left; left = left->sibling)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001169 printk(BIOS_WARNING, "%s\n", dev_path(left));
Uwe Hermanne4870472010-11-04 23:23:47 +00001170
1171 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001172 }
1173
Uwe Hermanne4870472010-11-04 23:23:47 +00001174 /*
1175 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001176 * scan the bus behind that child.
1177 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001178 for (child = bus->children; child; child = child->sibling)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001179 max = scan_bus(child, max);
Li-Ta Loe5266692004-03-23 21:28:05 +00001180
Uwe Hermanne4870472010-11-04 23:23:47 +00001181 /*
1182 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001183 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001184 * Return how far we've got finding sub-buses.
1185 */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001186 printk(BIOS_DEBUG, "PCI: pci_scan_bus returning with max=%03x\n", max);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001187 post_code(0x55);
1188 return max;
1189}
1190
Li-Ta Loe5266692004-03-23 21:28:05 +00001191/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001192 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001193 *
1194 * Determine the existence of buses behind the bridge. Set up the bridge
1195 * according to the result of the scan.
1196 *
1197 * This function is the default scan_bus() method for PCI bridge devices.
1198 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001199 * @param dev Pointer to the bridge device.
1200 * @param max The highest bus number assigned up to now.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001201 * @param do_scan_bus TODO
Myles Watson29cc9ed2009-07-02 18:56:24 +00001202 * @return The maximum bus number found, after scanning all subordinate buses.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001203 */
Myles Watson032a9652009-05-11 22:24:53 +00001204unsigned int do_pci_scan_bridge(struct device *dev, unsigned int max,
Myles Watson29cc9ed2009-07-02 18:56:24 +00001205 unsigned int (*do_scan_bus) (struct bus * bus,
1206 unsigned min_devfn,
1207 unsigned max_devfn,
1208 unsigned int max))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001209{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001210 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001211 u32 buses;
1212 u16 cr;
Eric Biederman83b991a2003-10-11 06:20:25 +00001213
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001214 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001215
Myles Watson894a3472010-06-09 22:41:35 +00001216 if (dev->link_list == NULL) {
1217 struct bus *link;
1218 link = malloc(sizeof(*link));
1219 if (link == NULL)
1220 die("Couldn't allocate a link!\n");
1221 memset(link, 0, sizeof(*link));
1222 link->dev = dev;
1223 dev->link_list = link;
1224 }
1225
1226 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001227
Uwe Hermanne4870472010-11-04 23:23:47 +00001228 /*
1229 * Set up the primary, secondary and subordinate bus numbers. We have
Eric Biederman8ca8d762003-04-22 19:02:15 +00001230 * no idea how many buses are behind this bridge yet, so we set the
Myles Watson032a9652009-05-11 22:24:53 +00001231 * subordinate bus number to 0xff for the moment.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001232 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001233 bus->secondary = ++max;
1234 bus->subordinate = 0xff;
Li-Ta Loe5266692004-03-23 21:28:05 +00001235
Eric Biederman8ca8d762003-04-22 19:02:15 +00001236 /* Clear all status bits and turn off memory, I/O and master enables. */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001237 cr = pci_read_config16(dev, PCI_COMMAND);
1238 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1239 pci_write_config16(dev, PCI_STATUS, 0xffff);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001240
Uwe Hermanne4870472010-11-04 23:23:47 +00001241 /*
1242 * Read the existing primary/secondary/subordinate bus
Eric Biedermanb78c1972004-10-14 20:54:17 +00001243 * number configuration.
1244 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001245 buses = pci_read_config32(dev, PCI_PRIMARY_BUS);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001246
Uwe Hermanne4870472010-11-04 23:23:47 +00001247 /*
1248 * Configure the bus numbers for this bridge: the configuration
Eric Biederman8ca8d762003-04-22 19:02:15 +00001249 * transactions will not be propagated by the bridge if it is not
Eric Biedermanb78c1972004-10-14 20:54:17 +00001250 * correctly configured.
1251 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001252 buses &= 0xff000000;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001253 buses |= (((unsigned int)(dev->bus->secondary) << 0) |
1254 ((unsigned int)(bus->secondary) << 8) |
1255 ((unsigned int)(bus->subordinate) << 16));
Eric Biedermane9a271e32003-09-02 03:36:25 +00001256 pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001257
Uwe Hermanne4870472010-11-04 23:23:47 +00001258 /* Now we can scan all subordinate buses (those behind the bridge). */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001259 max = do_scan_bus(bus, 0x00, 0xff, max);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001260
Uwe Hermanne4870472010-11-04 23:23:47 +00001261 /*
1262 * We know the number of buses behind this bridge. Set the subordinate
Eric Biedermanb78c1972004-10-14 20:54:17 +00001263 * bus number to its real value.
1264 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001265 bus->subordinate = max;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001266 buses = (buses & 0xff00ffff) | ((unsigned int)(bus->subordinate) << 16);
Eric Biedermane9a271e32003-09-02 03:36:25 +00001267 pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
1268 pci_write_config16(dev, PCI_COMMAND, cr);
Myles Watson032a9652009-05-11 22:24:53 +00001269
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001270 printk(BIOS_SPEW, "%s returns max %d\n", __func__, max);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001271 return max;
1272}
Li-Ta Loe5266692004-03-23 21:28:05 +00001273
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001274/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001275 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001276 *
1277 * Determine the existence of buses behind the bridge. Set up the bridge
1278 * according to the result of the scan.
1279 *
1280 * This function is the default scan_bus() method for PCI bridge devices.
1281 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001282 * @param dev Pointer to the bridge device.
1283 * @param max The highest bus number assigned up to now.
1284 * @return The maximum bus number found, after scanning all subordinate buses.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001285 */
1286unsigned int pci_scan_bridge(struct device *dev, unsigned int max)
1287{
1288 return do_pci_scan_bridge(dev, max, pci_scan_bus);
1289}
1290
Myles Watson29cc9ed2009-07-02 18:56:24 +00001291/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001292 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001293 *
1294 * This function is the default scan_bus() method for PCI domains.
1295 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001296 * @param dev Pointer to the domain.
1297 * @param max The highest bus number assigned up to now.
1298 * @return The maximum bus number found, after scanning all subordinate busses.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001299 */
1300unsigned int pci_domain_scan_bus(device_t dev, unsigned int max)
1301{
Myles Watson894a3472010-06-09 22:41:35 +00001302 max = pci_scan_bus(dev->link_list, PCI_DEVFN(0, 0), 0xff, max);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001303 return max;
1304}
1305
Patrick Georgie1667822012-05-05 15:29:32 +02001306#if CONFIG_PC80_SYSTEM
Myles Watson29cc9ed2009-07-02 18:56:24 +00001307/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001308 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001309 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001310 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001311 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001312 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001313 *
1314 * This function should be called for each PCI slot in your system.
1315 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001316 * @param bus Pointer to the bus structure.
1317 * @param slot TODO
1318 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1319 * of this slot. The particular IRQ #s that are passed in depend on the
1320 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001321 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001322void pci_assign_irqs(unsigned bus, unsigned slot,
Uwe Hermanne4870472010-11-04 23:23:47 +00001323 const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001324{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001325 unsigned int funct;
1326 device_t pdev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001327 u8 line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001328
Uwe Hermanne4870472010-11-04 23:23:47 +00001329 /* Each slot may contain up to eight functions. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001330 for (funct = 0; funct < 8; funct++) {
1331 pdev = dev_find_slot(bus, (slot << 3) + funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001332
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001333 if (!pdev)
1334 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001335
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001336 line = pci_read_config8(pdev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001337
Uwe Hermanne4870472010-11-04 23:23:47 +00001338 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001339 if ((line < 1) || (line > 4))
1340 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001341
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001342 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001343
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001344 printk(BIOS_DEBUG, "Assigning IRQ %d to %d:%x.%d\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001345 irq, bus, slot, funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001346
Stefan Reinauer14e22772010-04-27 06:56:47 +00001347 pci_write_config8(pdev, PCI_INTERRUPT_LINE,
Uwe Hermanne4870472010-11-04 23:23:47 +00001348 pIntAtoD[line - 1]);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001349
1350#ifdef PARANOID_IRQ_ASSIGNMENTS
Myles Watson17aeeca2009-10-07 18:41:08 +00001351 irq = pci_read_config8(pdev, PCI_INTERRUPT_LINE);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001352 printk(BIOS_DEBUG, " Readback = %d\n", irq);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001353#endif
1354
Patrick Georgie1667822012-05-05 15:29:32 +02001355#if CONFIG_PC80_SYSTEM
Uwe Hermanne4870472010-11-04 23:23:47 +00001356 /* Change to level triggered. */
1357 i8259_configure_irq_trigger(pIntAtoD[line - 1],
1358 IRQ_LEVEL_TRIGGERED);
Stefan Reinauer5fb62162010-12-16 23:52:04 +00001359#endif
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001360 }
1361}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001362#endif