blob: aa0d954480e829a835a83383279773cd143f0a97 [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
26#include <console/console.h>
27#include <stdlib.h>
28#include <stdint.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000029#include <string.h>
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +000030#include <arch/io.h>
Eric Biederman5899fd82003-04-24 06:25:08 +000031#include <device/device.h>
32#include <device/pci.h>
33#include <device/pci_ids.h>
Eric Biederman03acab62004-10-14 21:25:53 +000034#include <delay.h>
Patrick Georgie1667822012-05-05 15:29:32 +020035#if CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000036#include <device/hypertransport.h>
37#endif
Patrick Georgie1667822012-05-05 15:29:32 +020038#if CONFIG_PCIX_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000039#include <device/pcix.h>
40#endif
Patrick Georgie1667822012-05-05 15:29:32 +020041#if CONFIG_PCIEXP_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000042#include <device/pciexp.h>
43#endif
Patrick Georgie1667822012-05-05 15:29:32 +020044#if CONFIG_AGP_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000045#include <device/agp.h>
46#endif
Patrick Georgie1667822012-05-05 15:29:32 +020047#if CONFIG_CARDBUS_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000048#include <device/cardbus.h>
49#endif
Patrick Georgie1667822012-05-05 15:29:32 +020050#if CONFIG_PC80_SYSTEM
Stefan Reinauer4d933dd2009-07-21 21:36:41 +000051#include <pc80/i8259.h>
52#endif
Stefan Reinauer0a500842011-09-23 10:33:58 -070053#if CONFIG_HAVE_ACPI_RESUME && !CONFIG_S3_VGA_ROM_RUN
54#include <arch/acpi.h>
55#endif
Stefan Reinauer74a0efe2012-03-30 17:10:49 -070056#if CONFIG_CHROMEOS
57#include <vendorcode/google/chromeos/chromeos.h>
58#endif
Eric Biederman03acab62004-10-14 21:25:53 +000059
Myles Watson29cc9ed2009-07-02 18:56:24 +000060u8 pci_moving_config8(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000061{
Myles Watson29cc9ed2009-07-02 18:56:24 +000062 u8 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000063
Eric Biederman03acab62004-10-14 21:25:53 +000064 value = pci_read_config8(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000065
Eric Biederman03acab62004-10-14 21:25:53 +000066 pci_write_config8(dev, reg, 0xff);
67 ones = pci_read_config8(dev, reg);
68
69 pci_write_config8(dev, reg, 0x00);
70 zeroes = pci_read_config8(dev, reg);
71
72 pci_write_config8(dev, reg, value);
73
74 return ones ^ zeroes;
75}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +000076
Uwe Hermanne4870472010-11-04 23:23:47 +000077u16 pci_moving_config16(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000078{
Myles Watson29cc9ed2009-07-02 18:56:24 +000079 u16 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000080
Eric Biederman03acab62004-10-14 21:25:53 +000081 value = pci_read_config16(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000082
Eric Biederman03acab62004-10-14 21:25:53 +000083 pci_write_config16(dev, reg, 0xffff);
84 ones = pci_read_config16(dev, reg);
85
86 pci_write_config16(dev, reg, 0x0000);
87 zeroes = pci_read_config16(dev, reg);
88
89 pci_write_config16(dev, reg, value);
90
91 return ones ^ zeroes;
92}
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +000093
Uwe Hermanne4870472010-11-04 23:23:47 +000094u32 pci_moving_config32(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000095{
Myles Watson29cc9ed2009-07-02 18:56:24 +000096 u32 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000097
Eric Biederman03acab62004-10-14 21:25:53 +000098 value = pci_read_config32(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000099
Eric Biederman03acab62004-10-14 21:25:53 +0000100 pci_write_config32(dev, reg, 0xffffffff);
101 ones = pci_read_config32(dev, reg);
102
103 pci_write_config32(dev, reg, 0x00000000);
104 zeroes = pci_read_config32(dev, reg);
105
106 pci_write_config32(dev, reg, value);
107
108 return ones ^ zeroes;
109}
110
Myles Watson29cc9ed2009-07-02 18:56:24 +0000111/**
112 * Given a device, a capability type, and a last position, return the next
113 * matching capability. Always start at the head of the list.
114 *
115 * @param dev Pointer to the device structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000116 * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000117 * @param last Location of the PCI capability register to start from.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000118 * @return The next matching capability.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000119 */
120unsigned pci_find_next_capability(struct device *dev, unsigned cap,
121 unsigned last)
Eric Biederman03acab62004-10-14 21:25:53 +0000122{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +0000123 unsigned pos = 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000124 u16 status;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000125 unsigned reps = 48;
Stefan Reinauer4d933dd2009-07-21 21:36:41 +0000126
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000127 status = pci_read_config16(dev, PCI_STATUS);
Uwe Hermanne4870472010-11-04 23:23:47 +0000128 if (!(status & PCI_STATUS_CAP_LIST))
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000129 return 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000130
Myles Watson29cc9ed2009-07-02 18:56:24 +0000131 switch (dev->hdr_type & 0x7f) {
Eric Biederman03acab62004-10-14 21:25:53 +0000132 case PCI_HEADER_TYPE_NORMAL:
133 case PCI_HEADER_TYPE_BRIDGE:
134 pos = PCI_CAPABILITY_LIST;
135 break;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000136 case PCI_HEADER_TYPE_CARDBUS:
137 pos = PCI_CB_CAPABILITY_LIST;
138 break;
139 default:
140 return 0;
Eric Biederman03acab62004-10-14 21:25:53 +0000141 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000142
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000143 pos = pci_read_config8(dev, pos);
Uwe Hermanne4870472010-11-04 23:23:47 +0000144 while (reps-- && (pos >= 0x40)) { /* Loop through the linked list. */
Eric Biederman03acab62004-10-14 21:25:53 +0000145 int this_cap;
Uwe Hermanne4870472010-11-04 23:23:47 +0000146
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000147 pos &= ~3;
Eric Biederman03acab62004-10-14 21:25:53 +0000148 this_cap = pci_read_config8(dev, pos + PCI_CAP_LIST_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000149 printk(BIOS_SPEW, "Capability: type 0x%02x @ 0x%02x\n",
150 this_cap, pos);
151 if (this_cap == 0xff)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000152 break;
Uwe Hermanne4870472010-11-04 23:23:47 +0000153
154 if (!last && (this_cap == cap))
Eric Biederman03acab62004-10-14 21:25:53 +0000155 return pos;
Uwe Hermanne4870472010-11-04 23:23:47 +0000156
157 if (last == pos)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000158 last = 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000159
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000160 pos = pci_read_config8(dev, pos + PCI_CAP_LIST_NEXT);
Eric Biederman03acab62004-10-14 21:25:53 +0000161 }
162 return 0;
163}
164
Myles Watson29cc9ed2009-07-02 18:56:24 +0000165/**
166 * Given a device, and a capability type, return the next matching
167 * capability. Always start at the head of the list.
168 *
169 * @param dev Pointer to the device structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000170 * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
171 * @return The next matching capability.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000172 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000173unsigned pci_find_capability(device_t dev, unsigned cap)
174{
175 return pci_find_next_capability(dev, cap, 0);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000176}
177
Myles Watson29cc9ed2009-07-02 18:56:24 +0000178/**
179 * Given a device and register, read the size of the BAR for that register.
180 *
181 * @param dev Pointer to the device structure.
182 * @param index Address of the PCI configuration register.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000183 * @return TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +0000184 */
Eric Biederman03acab62004-10-14 21:25:53 +0000185struct resource *pci_get_resource(struct device *dev, unsigned long index)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000186{
Eric Biederman5cd81732004-03-11 15:01:31 +0000187 struct resource *resource;
Eric Biederman03acab62004-10-14 21:25:53 +0000188 unsigned long value, attr;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000189 resource_t moving, limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000190
Myles Watson29cc9ed2009-07-02 18:56:24 +0000191 /* Initialize the resources to nothing. */
Eric Biederman03acab62004-10-14 21:25:53 +0000192 resource = new_resource(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000193
Myles Watson29cc9ed2009-07-02 18:56:24 +0000194 /* Get the initial value. */
Eric Biederman03acab62004-10-14 21:25:53 +0000195 value = pci_read_config32(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000196
Myles Watson29cc9ed2009-07-02 18:56:24 +0000197 /* See which bits move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000198 moving = pci_moving_config32(dev, index);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000199
Myles Watson29cc9ed2009-07-02 18:56:24 +0000200 /* Initialize attr to the bits that do not move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000201 attr = value & ~moving;
202
Myles Watson29cc9ed2009-07-02 18:56:24 +0000203 /* If it is a 64bit resource look at the high half as well. */
Eric Biederman03acab62004-10-14 21:25:53 +0000204 if (((attr & PCI_BASE_ADDRESS_SPACE_IO) == 0) &&
Myles Watson29cc9ed2009-07-02 18:56:24 +0000205 ((attr & PCI_BASE_ADDRESS_MEM_LIMIT_MASK) ==
206 PCI_BASE_ADDRESS_MEM_LIMIT_64)) {
207 /* Find the high bits that move. */
208 moving |=
209 ((resource_t) pci_moving_config32(dev, index + 4)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000210 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000211
Myles Watson032a9652009-05-11 22:24:53 +0000212 /* Find the resource constraints.
Eric Biederman03acab62004-10-14 21:25:53 +0000213 * Start by finding the bits that move. From there:
214 * - Size is the least significant bit of the bits that move.
215 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000216 * See PCI Spec 6.2.5.1.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000217 */
Eric Biederman03acab62004-10-14 21:25:53 +0000218 limit = 0;
219 if (moving) {
220 resource->size = 1;
221 resource->align = resource->gran = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000222 while (!(moving & resource->size)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000223 resource->size <<= 1;
224 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000225 resource->gran += 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000226 }
227 resource->limit = limit = moving | (resource->size - 1);
228 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000229
Uwe Hermanne4870472010-11-04 23:23:47 +0000230 /*
231 * Some broken hardware has read-only registers that do not
Eric Biederman03acab62004-10-14 21:25:53 +0000232 * really size correctly.
Uwe Hermanne4870472010-11-04 23:23:47 +0000233 *
234 * Example: the Acer M7229 has BARs 1-4 normally read-only,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000235 * so BAR1 at offset 0x10 reads 0x1f1. If you size that register
Uwe Hermanne4870472010-11-04 23:23:47 +0000236 * by writing 0xffffffff to it, it will read back as 0x1f1 -- which
237 * is a violation of the spec.
238 *
239 * We catch this case and ignore it by observing which bits move.
240 *
241 * This also catches the common case of unimplemented registers
Eric Biederman03acab62004-10-14 21:25:53 +0000242 * that always read back as 0.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000243 */
Eric Biederman03acab62004-10-14 21:25:53 +0000244 if (moving == 0) {
245 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000246 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
247 "read-only ignoring it\n",
248 dev_path(dev), index, value);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000249 }
250 resource->flags = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000251 } else if (attr & PCI_BASE_ADDRESS_SPACE_IO) {
252 /* An I/O mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000253 attr &= PCI_BASE_ADDRESS_IO_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000254 resource->flags |= IORESOURCE_IO;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000255 /* I don't want to deal with 32bit I/O resources. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000256 resource->limit = 0xffff;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000257 } else {
258 /* A Memory mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000259 attr &= PCI_BASE_ADDRESS_MEM_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000260 resource->flags |= IORESOURCE_MEM;
Uwe Hermanne4870472010-11-04 23:23:47 +0000261 if (attr & PCI_BASE_ADDRESS_MEM_PREFETCH)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000262 resource->flags |= IORESOURCE_PREFETCH;
Eric Biederman03acab62004-10-14 21:25:53 +0000263 attr &= PCI_BASE_ADDRESS_MEM_LIMIT_MASK;
264 if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_32) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000265 /* 32bit limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000266 resource->limit = 0xffffffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000267 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_1M) {
268 /* 1MB limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000269 resource->limit = 0x000fffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000270 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_64) {
271 /* 64bit limit. */
Eric Biederman03acab62004-10-14 21:25:53 +0000272 resource->limit = 0xffffffffffffffffULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000273 resource->flags |= IORESOURCE_PCI64;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000274 } else {
275 /* Invalid value. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000276 printk(BIOS_ERR, "Broken BAR with value %lx\n", attr);
277 printk(BIOS_ERR, " on dev %s at index %02lx\n",
Myles Watson29cc9ed2009-07-02 18:56:24 +0000278 dev_path(dev), index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000279 resource->flags = 0;
280 }
281 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000282
Myles Watson29cc9ed2009-07-02 18:56:24 +0000283 /* Don't let the limit exceed which bits can move. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000284 if (resource->limit > limit)
Eric Biederman03acab62004-10-14 21:25:53 +0000285 resource->limit = limit;
Eric Biederman03acab62004-10-14 21:25:53 +0000286
Eric Biederman5cd81732004-03-11 15:01:31 +0000287 return resource;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000288}
289
Myles Watson29cc9ed2009-07-02 18:56:24 +0000290/**
291 * Given a device and an index, read the size of the BAR for that register.
292 *
293 * @param dev Pointer to the device structure.
294 * @param index Address of the PCI configuration register.
295 */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000296static void pci_get_rom_resource(struct device *dev, unsigned long index)
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000297{
298 struct resource *resource;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000299 unsigned long value;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000300 resource_t moving;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000301
Myles Watson29cc9ed2009-07-02 18:56:24 +0000302 /* Initialize the resources to nothing. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000303 resource = new_resource(dev, index);
304
Myles Watson29cc9ed2009-07-02 18:56:24 +0000305 /* Get the initial value. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000306 value = pci_read_config32(dev, index);
307
Myles Watson29cc9ed2009-07-02 18:56:24 +0000308 /* See which bits move. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000309 moving = pci_moving_config32(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000310
311 /* Clear the Enable bit. */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000312 moving = moving & ~PCI_ROM_ADDRESS_ENABLE;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000313
Myles Watson032a9652009-05-11 22:24:53 +0000314 /* Find the resource constraints.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000315 * Start by finding the bits that move. From there:
316 * - Size is the least significant bit of the bits that move.
317 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000318 * See PCI Spec 6.2.5.1.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000319 */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000320 if (moving) {
321 resource->size = 1;
322 resource->align = resource->gran = 0;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000323 while (!(moving & resource->size)) {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000324 resource->size <<= 1;
325 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000326 resource->gran += 1;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000327 }
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000328 resource->limit = moving | (resource->size - 1);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000329 resource->flags |= IORESOURCE_MEM | IORESOURCE_READONLY;
330 } else {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000331 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000332 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
333 "read-only ignoring it\n",
334 dev_path(dev), index, value);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000335 }
336 resource->flags = 0;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000337 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000338 compact_resources(dev);
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000339}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000340
Myles Watson29cc9ed2009-07-02 18:56:24 +0000341/**
342 * Read the base address registers for a given device.
343 *
344 * @param dev Pointer to the dev structure.
345 * @param howmany How many registers to read (6 for device, 2 for bridge).
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000346 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000347static void pci_read_bases(struct device *dev, unsigned int howmany)
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000348{
349 unsigned long index;
350
Myles Watson29cc9ed2009-07-02 18:56:24 +0000351 for (index = PCI_BASE_ADDRESS_0;
352 (index < PCI_BASE_ADDRESS_0 + (howmany << 2));) {
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000353 struct resource *resource;
354 resource = pci_get_resource(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000355 index += (resource->flags & IORESOURCE_PCI64) ? 8 : 4;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000356 }
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000357
358 compact_resources(dev);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000359}
360
Myles Watson29cc9ed2009-07-02 18:56:24 +0000361static void pci_record_bridge_resource(struct device *dev, resource_t moving,
362 unsigned index, unsigned long type)
Eric Biederman03acab62004-10-14 21:25:53 +0000363{
Eric Biederman03acab62004-10-14 21:25:53 +0000364 struct resource *resource;
Uwe Hermanne4870472010-11-04 23:23:47 +0000365 unsigned long gran;
366 resource_t step;
367
Myles Watson29cc9ed2009-07-02 18:56:24 +0000368 resource = NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000369
370 if (!moving)
371 return;
372
373 /* Initialize the constraints on the current bus. */
374 resource = new_resource(dev, index);
375 resource->size = 0;
376 gran = 0;
377 step = 1;
378 while ((moving & step) == 0) {
379 gran += 1;
380 step <<= 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000381 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000382 resource->gran = gran;
383 resource->align = gran;
384 resource->limit = moving | (step - 1);
385 resource->flags = type | IORESOURCE_PCI_BRIDGE |
386 IORESOURCE_BRIDGE;
Eric Biederman03acab62004-10-14 21:25:53 +0000387}
388
Eric Biederman8ca8d762003-04-22 19:02:15 +0000389static void pci_bridge_read_bases(struct device *dev)
390{
Eric Biederman03acab62004-10-14 21:25:53 +0000391 resource_t moving_base, moving_limit, moving;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000392
Myles Watson29cc9ed2009-07-02 18:56:24 +0000393 /* See if the bridge I/O resources are implemented. */
394 moving_base = ((u32) pci_moving_config8(dev, PCI_IO_BASE)) << 8;
395 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000396 ((u32) pci_moving_config16(dev, PCI_IO_BASE_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000397
Myles Watson29cc9ed2009-07-02 18:56:24 +0000398 moving_limit = ((u32) pci_moving_config8(dev, PCI_IO_LIMIT)) << 8;
399 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000400 ((u32) pci_moving_config16(dev, PCI_IO_LIMIT_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000401
402 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000403
Myles Watson29cc9ed2009-07-02 18:56:24 +0000404 /* Initialize the I/O space constraints on the current bus. */
405 pci_record_bridge_resource(dev, moving, PCI_IO_BASE, IORESOURCE_IO);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000406
Myles Watson29cc9ed2009-07-02 18:56:24 +0000407 /* See if the bridge prefmem resources are implemented. */
408 moving_base =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000409 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_BASE)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000410 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000411 ((resource_t) pci_moving_config32(dev, PCI_PREF_BASE_UPPER32)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000412
Myles Watson29cc9ed2009-07-02 18:56:24 +0000413 moving_limit =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000414 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_LIMIT)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000415 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000416 ((resource_t) pci_moving_config32(dev, PCI_PREF_LIMIT_UPPER32)) << 32;
Myles Watson032a9652009-05-11 22:24:53 +0000417
Eric Biederman03acab62004-10-14 21:25:53 +0000418 moving = moving_base & moving_limit;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000419 /* Initialize the prefetchable memory constraints on the current bus. */
420 pci_record_bridge_resource(dev, moving, PCI_PREF_MEMORY_BASE,
421 IORESOURCE_MEM | IORESOURCE_PREFETCH);
Myles Watson032a9652009-05-11 22:24:53 +0000422
Myles Watson29cc9ed2009-07-02 18:56:24 +0000423 /* See if the bridge mem resources are implemented. */
424 moving_base = ((u32) pci_moving_config16(dev, PCI_MEMORY_BASE)) << 16;
425 moving_limit = ((u32) pci_moving_config16(dev, PCI_MEMORY_LIMIT)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000426
427 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000428
Myles Watson29cc9ed2009-07-02 18:56:24 +0000429 /* Initialize the memory resources on the current bus. */
430 pci_record_bridge_resource(dev, moving, PCI_MEMORY_BASE,
431 IORESOURCE_MEM);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000432
Eric Biederman5cd81732004-03-11 15:01:31 +0000433 compact_resources(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000434}
435
Eric Biederman5899fd82003-04-24 06:25:08 +0000436void pci_dev_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000437{
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000438 pci_read_bases(dev, 6);
439 pci_get_rom_resource(dev, PCI_ROM_ADDRESS);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000440}
441
Eric Biederman5899fd82003-04-24 06:25:08 +0000442void pci_bus_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000443{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000444 pci_bridge_read_bases(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000445 pci_read_bases(dev, 2);
446 pci_get_rom_resource(dev, PCI_ROM_ADDRESS1);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000447}
448
Myles Watson29cc9ed2009-07-02 18:56:24 +0000449void pci_domain_read_resources(struct device *dev)
450{
451 struct resource *res;
452
453 /* Initialize the system-wide I/O space constraints. */
454 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
455 res->limit = 0xffffUL;
456 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
457 IORESOURCE_ASSIGNED;
458
459 /* Initialize the system-wide memory resources constraints. */
460 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
461 res->limit = 0xffffffffULL;
462 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
463 IORESOURCE_ASSIGNED;
464}
465
Eric Biederman8ca8d762003-04-22 19:02:15 +0000466static void pci_set_resource(struct device *dev, struct resource *resource)
467{
Eric Biederman03acab62004-10-14 21:25:53 +0000468 resource_t base, end;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000469
Myles Watson29cc9ed2009-07-02 18:56:24 +0000470 /* Make certain the resource has actually been assigned a value. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000471 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000472 printk(BIOS_ERR, "ERROR: %s %02lx %s size: 0x%010llx not "
473 "assigned\n", dev_path(dev), resource->index,
474 resource_type(resource), resource->size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000475 return;
476 }
477
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000478 /* If this resource is fixed don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000479 if (resource->flags & IORESOURCE_FIXED)
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000480 return;
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000481
Myles Watson29cc9ed2009-07-02 18:56:24 +0000482 /* If I have already stored this resource don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000483 if (resource->flags & IORESOURCE_STORED)
Eric Biederman5cd81732004-03-11 15:01:31 +0000484 return;
Eric Biederman5cd81732004-03-11 15:01:31 +0000485
Myles Watson29cc9ed2009-07-02 18:56:24 +0000486 /* If the resource is subtractive don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000487 if (resource->flags & IORESOURCE_SUBTRACTIVE)
Eric Biederman03acab62004-10-14 21:25:53 +0000488 return;
Eric Biederman03acab62004-10-14 21:25:53 +0000489
Myles Watson29cc9ed2009-07-02 18:56:24 +0000490 /* Only handle PCI memory and I/O resources for now. */
491 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Eric Biederman8ca8d762003-04-22 19:02:15 +0000492 return;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000493
Myles Watson29cc9ed2009-07-02 18:56:24 +0000494 /* Enable the resources in the command register. */
Eric Biederman03acab62004-10-14 21:25:53 +0000495 if (resource->size) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000496 if (resource->flags & IORESOURCE_MEM)
Eric Biederman03acab62004-10-14 21:25:53 +0000497 dev->command |= PCI_COMMAND_MEMORY;
Uwe Hermanne4870472010-11-04 23:23:47 +0000498 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000499 dev->command |= PCI_COMMAND_IO;
Uwe Hermanne4870472010-11-04 23:23:47 +0000500 if (resource->flags & IORESOURCE_PCI_BRIDGE)
Eric Biederman03acab62004-10-14 21:25:53 +0000501 dev->command |= PCI_COMMAND_MASTER;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000502 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000503
Myles Watson29cc9ed2009-07-02 18:56:24 +0000504 /* Get the base address. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000505 base = resource->base;
Eric Biederman5cd81732004-03-11 15:01:31 +0000506
Myles Watson29cc9ed2009-07-02 18:56:24 +0000507 /* Get the end. */
Eric Biederman03acab62004-10-14 21:25:53 +0000508 end = resource_end(resource);
Myles Watson032a9652009-05-11 22:24:53 +0000509
Myles Watson29cc9ed2009-07-02 18:56:24 +0000510 /* Now store the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000511 resource->flags |= IORESOURCE_STORED;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000512
Uwe Hermanne4870472010-11-04 23:23:47 +0000513 /*
514 * PCI bridges have no enable bit. They are disabled if the base of
515 * the range is greater than the limit. If the size is zero, disable
Myles Watson29cc9ed2009-07-02 18:56:24 +0000516 * by setting the base = limit and end = limit - 2^gran.
517 */
518 if (resource->size == 0 && (resource->flags & IORESOURCE_PCI_BRIDGE)) {
519 base = resource->limit;
520 end = resource->limit - (1 << resource->gran);
521 resource->base = base;
522 }
523
Eric Biederman8ca8d762003-04-22 19:02:15 +0000524 if (!(resource->flags & IORESOURCE_PCI_BRIDGE)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000525 unsigned long base_lo, base_hi;
Uwe Hermanne4870472010-11-04 23:23:47 +0000526
527 /*
528 * Some chipsets allow us to set/clear the I/O bit
529 * (e.g. VIA 82C686A). So set it to be safe.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000530 */
Eric Biederman03acab62004-10-14 21:25:53 +0000531 base_lo = base & 0xffffffff;
532 base_hi = (base >> 32) & 0xffffffff;
Uwe Hermanne4870472010-11-04 23:23:47 +0000533 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000534 base_lo |= PCI_BASE_ADDRESS_SPACE_IO;
Eric Biederman03acab62004-10-14 21:25:53 +0000535 pci_write_config32(dev, resource->index, base_lo);
Uwe Hermanne4870472010-11-04 23:23:47 +0000536 if (resource->flags & IORESOURCE_PCI64)
Eric Biederman03acab62004-10-14 21:25:53 +0000537 pci_write_config32(dev, resource->index + 4, base_hi);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000538 } else if (resource->index == PCI_IO_BASE) {
539 /* Set the I/O ranges. */
540 pci_write_config8(dev, PCI_IO_BASE, base >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000541 pci_write_config16(dev, PCI_IO_BASE_UPPER16, base >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000542 pci_write_config8(dev, PCI_IO_LIMIT, end >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000543 pci_write_config16(dev, PCI_IO_LIMIT_UPPER16, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000544 } else if (resource->index == PCI_MEMORY_BASE) {
545 /* Set the memory range. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000546 pci_write_config16(dev, PCI_MEMORY_BASE, base >> 16);
Eric Biederman03acab62004-10-14 21:25:53 +0000547 pci_write_config16(dev, PCI_MEMORY_LIMIT, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000548 } else if (resource->index == PCI_PREF_MEMORY_BASE) {
549 /* Set the prefetchable memory range. */
Eric Biederman03acab62004-10-14 21:25:53 +0000550 pci_write_config16(dev, PCI_PREF_MEMORY_BASE, base >> 16);
551 pci_write_config32(dev, PCI_PREF_BASE_UPPER32, base >> 32);
552 pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, end >> 16);
553 pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, end >> 32);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000554 } else {
555 /* Don't let me think I stored the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000556 resource->flags &= ~IORESOURCE_STORED;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000557 printk(BIOS_ERR, "ERROR: invalid resource->index %lx\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000558 resource->index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000559 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000560
Eric Biederman03acab62004-10-14 21:25:53 +0000561 report_resource_stored(dev, resource, "");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000562}
563
Eric Biederman5899fd82003-04-24 06:25:08 +0000564void pci_dev_set_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000565{
Myles Watsonc25cc112010-05-21 14:33:48 +0000566 struct resource *res;
Myles Watson894a3472010-06-09 22:41:35 +0000567 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000568 u8 line;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000569
Uwe Hermanne4870472010-11-04 23:23:47 +0000570 for (res = dev->resource_list; res; res = res->next)
Myles Watsonc25cc112010-05-21 14:33:48 +0000571 pci_set_resource(dev, res);
Uwe Hermanne4870472010-11-04 23:23:47 +0000572
Myles Watson894a3472010-06-09 22:41:35 +0000573 for (bus = dev->link_list; bus; bus = bus->next) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000574 if (bus->children)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000575 assign_resources(bus);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000576 }
577
Myles Watson29cc9ed2009-07-02 18:56:24 +0000578 /* Set a default latency timer. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000579 pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000580
Myles Watson29cc9ed2009-07-02 18:56:24 +0000581 /* Set a default secondary latency timer. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000582 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000583 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000584
Myles Watson29cc9ed2009-07-02 18:56:24 +0000585 /* Zero the IRQ settings. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000586 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Uwe Hermanne4870472010-11-04 23:23:47 +0000587 if (line)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000588 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
Uwe Hermanne4870472010-11-04 23:23:47 +0000589
Myles Watson29cc9ed2009-07-02 18:56:24 +0000590 /* Set the cache line size, so far 64 bytes is good for everyone. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000591 pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000592}
593
Eric Biedermane9a271e32003-09-02 03:36:25 +0000594void pci_dev_enable_resources(struct device *dev)
595{
Eric Biedermana9e632c2004-11-18 22:38:08 +0000596 const struct pci_operations *ops;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000597 u16 command;
Eric Biederman03acab62004-10-14 21:25:53 +0000598
Uwe Hermanne4870472010-11-04 23:23:47 +0000599 /* Set the subsystem vendor and device ID for mainboard devices. */
Eric Biederman03acab62004-10-14 21:25:53 +0000600 ops = ops_pci(dev);
Eric Biedermandbec2d42004-10-21 10:44:08 +0000601 if (dev->on_mainboard && ops && ops->set_subsystem) {
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700602 if (CONFIG_SUBSYSTEM_VENDOR_ID)
603 dev->subsystem_vendor = CONFIG_SUBSYSTEM_VENDOR_ID;
604 if (CONFIG_SUBSYSTEM_DEVICE_ID)
605 dev->subsystem_device = CONFIG_SUBSYSTEM_DEVICE_ID;
Sven Schnelle91321022011-03-01 19:58:47 +0000606 printk(BIOS_DEBUG, "%s subsystem <- %04x/%04x\n",
607 dev_path(dev), dev->subsystem_vendor,
608 dev->subsystem_device);
609 ops->set_subsystem(dev, dev->subsystem_vendor,
610 dev->subsystem_device);
Eric Biederman03acab62004-10-14 21:25:53 +0000611 }
Eric Biedermane9a271e32003-09-02 03:36:25 +0000612 command = pci_read_config16(dev, PCI_COMMAND);
613 command |= dev->command;
Uwe Hermanne4870472010-11-04 23:23:47 +0000614
Myles Watson29cc9ed2009-07-02 18:56:24 +0000615 /* v3 has
616 * command |= (PCI_COMMAND_PARITY + PCI_COMMAND_SERR); // Error check.
617 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000618
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000619 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000620 pci_write_config16(dev, PCI_COMMAND, command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000621}
622
623void pci_bus_enable_resources(struct device *dev)
624{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000625 u16 ctrl;
626
Uwe Hermanne4870472010-11-04 23:23:47 +0000627 /*
628 * Enable I/O in command register if there is VGA card
Myles Watson29cc9ed2009-07-02 18:56:24 +0000629 * connected with (even it does not claim I/O resource).
630 */
Myles Watson894a3472010-06-09 22:41:35 +0000631 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
Li-Ta Lo515f6c72005-01-11 22:48:54 +0000632 dev->command |= PCI_COMMAND_IO;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000633 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +0000634 ctrl |= dev->link_list->bridge_ctrl;
Uwe Hermanne4870472010-11-04 23:23:47 +0000635 ctrl |= (PCI_BRIDGE_CTL_PARITY + PCI_BRIDGE_CTL_SERR); /* Error check. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000636 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000637 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
638
639 pci_dev_enable_resources(dev);
640}
641
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000642void pci_bus_reset(struct bus *bus)
643{
Uwe Hermanne4870472010-11-04 23:23:47 +0000644 u16 ctl;
645
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000646 ctl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
647 ctl |= PCI_BRIDGE_CTL_BUS_RESET;
648 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
649 mdelay(10);
Uwe Hermanne4870472010-11-04 23:23:47 +0000650
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000651 ctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
652 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
653 delay(1);
654}
655
Myles Watson29cc9ed2009-07-02 18:56:24 +0000656void pci_dev_set_subsystem(struct device *dev, unsigned vendor, unsigned device)
Eric Biederman03acab62004-10-14 21:25:53 +0000657{
Myles Watson032a9652009-05-11 22:24:53 +0000658 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
Myles Watson29cc9ed2009-07-02 18:56:24 +0000659 ((device & 0xffff) << 16) | (vendor & 0xffff));
Eric Biederman03acab62004-10-14 21:25:53 +0000660}
661
Bill Richardson0a405ba2012-06-26 16:33:45 -0700662#if CONFIG_CHROMEOS
663int oprom_is_loaded = 0;
664#endif
665
Uwe Hermanne4870472010-11-04 23:23:47 +0000666/** Default handler: only runs the relevant PCI BIOS. */
Li-Ta Lo883b8792005-01-10 23:16:22 +0000667void pci_dev_init(struct device *dev)
668{
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100669#if CONFIG_VGA_ROM_RUN
Li-Ta Lo883b8792005-01-10 23:16:22 +0000670 struct rom_header *rom, *ram;
671
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100672 /* Only execute VGA ROMs. */
673 if (((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
Myles Watson17aeeca2009-10-07 18:41:08 +0000674 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000675
Stefan Reinauer74a0efe2012-03-30 17:10:49 -0700676#if CONFIG_CHROMEOS
677 /* In ChromeOS we want to boot blazingly fast. Therefore
678 * we don't run (VGA) option ROMs, unless we have to print
679 * something on the screen before the kernel is loaded.
680 */
Bill Richardson0a405ba2012-06-26 16:33:45 -0700681 if (!developer_mode_enabled() && !recovery_mode_enabled() &&
682 !vboot_wants_oprom()) {
683 printk(BIOS_DEBUG, "Not loading VGA Option ROM\n");
Stefan Reinauer74a0efe2012-03-30 17:10:49 -0700684 return;
Bill Richardson0a405ba2012-06-26 16:33:45 -0700685 }
Stefan Reinauer74a0efe2012-03-30 17:10:49 -0700686#endif
687
Stefan Reinauer0a500842011-09-23 10:33:58 -0700688#if CONFIG_HAVE_ACPI_RESUME && !CONFIG_S3_VGA_ROM_RUN
689 /* If S3_VGA_ROM_RUN is disabled, skip running VGA option
690 * ROMs when coming out of an S3 resume.
691 */
692 if ((acpi_slp_type == 3) &&
693 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
694 return;
695#endif
Aaron Durbince872cb2013-03-28 15:59:19 -0500696
697 rom = pci_rom_probe(dev);
698 if (rom == NULL)
699 return;
700
701 ram = pci_rom_load(dev, rom);
702 if (ram == NULL)
703 return;
704
Stefan Reinauerd98cf5b2008-08-01 11:25:41 +0000705 run_bios(dev, (unsigned long)ram);
Bill Richardson0a405ba2012-06-26 16:33:45 -0700706#if CONFIG_CHROMEOS
707 oprom_is_loaded = 1;
708 printk(BIOS_DEBUG, "VGA Option ROM has been loaded\n");
709#endif
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100710#endif /* CONFIG_VGA_ROM_RUN */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000711}
Li-Ta Lo883b8792005-01-10 23:16:22 +0000712
Li-Ta Loe5266692004-03-23 21:28:05 +0000713/** Default device operation for PCI devices */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000714static struct pci_operations pci_dev_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000715 .set_subsystem = pci_dev_set_subsystem,
716};
717
Eric Biederman8ca8d762003-04-22 19:02:15 +0000718struct device_operations default_pci_ops_dev = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000719 .read_resources = pci_dev_read_resources,
720 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000721 .enable_resources = pci_dev_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000722 .init = pci_dev_init,
723 .scan_bus = 0,
724 .enable = 0,
725 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000726};
Li-Ta Loe5266692004-03-23 21:28:05 +0000727
728/** Default device operations for PCI bridges */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000729static struct pci_operations pci_bus_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000730 .set_subsystem = 0,
731};
Li-Ta Lo883b8792005-01-10 23:16:22 +0000732
Eric Biederman8ca8d762003-04-22 19:02:15 +0000733struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000734 .read_resources = pci_bus_read_resources,
735 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000736 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000737 .init = 0,
738 .scan_bus = pci_scan_bridge,
739 .enable = 0,
740 .reset_bus = pci_bus_reset,
741 .ops_pci = &pci_bus_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000742};
Li-Ta Loe5266692004-03-23 21:28:05 +0000743
744/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000745 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000746 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000747 * This function is a heuristic to detect which type of bus is downstream
748 * of a PCI-to-PCI bridge. This functions by looking for various capability
749 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
750 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000751 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000752 * When only a PCI-Express capability is found the type is examined to see
753 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000754 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000755 * @param dev Pointer to the device structure of the bridge.
756 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000757 */
758static struct device_operations *get_pci_bridge_ops(device_t dev)
759{
Patrick Georgie1667822012-05-05 15:29:32 +0200760#if CONFIG_PCIX_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800761 unsigned int pcixpos;
762 pcixpos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
763 if (pcixpos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000764 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000765 return &default_pcix_ops_bus;
766 }
767#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200768#if CONFIG_AGP_PLUGIN_SUPPORT
Uwe Hermanne4870472010-11-04 23:23:47 +0000769 /* How do I detect a PCI to AGP bridge? */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000770#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200771#if CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800772 unsigned int htpos = 0;
773 while ((htpos = pci_find_next_capability(dev, PCI_CAP_ID_HT, htpos))) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000774 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800775 flags = pci_read_config16(dev, htpos + PCI_CAP_FLAGS);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000776 if ((flags >> 13) == 1) {
777 /* Host or Secondary Interface */
Uwe Hermanne4870472010-11-04 23:23:47 +0000778 printk(BIOS_DEBUG, "%s subordinate bus HT\n",
779 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000780 return &default_ht_ops_bus;
781 }
782 }
783#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200784#if CONFIG_PCIEXP_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800785 unsigned int pciexpos;
786 pciexpos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
787 if (pciexpos) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000788 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800789 flags = pci_read_config16(dev, pciexpos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000790 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000791 case PCI_EXP_TYPE_ROOT_PORT:
792 case PCI_EXP_TYPE_UPSTREAM:
793 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000794 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000795 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000796 return &default_pciexp_ops_bus;
797 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +0000798 printk(BIOS_DEBUG, "%s subordinate PCI\n",
799 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000800 return &default_pci_ops_bus;
801 default:
802 break;
803 }
804 }
805#endif
806 return &default_pci_ops_bus;
807}
808
809/**
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700810 * Check if a device id matches a PCI driver entry.
811 *
812 * The driver entry can either point at a zero terminated array of acceptable
813 * device IDs, or include a single device ID.
814 *
815 * @driver pointer to the PCI driver entry being checked
816 * @device_id PCI device ID of the device being matched
817 */
818static int device_id_match(struct pci_driver *driver, unsigned short device_id)
819{
820 if (driver->devices) {
821 unsigned short check_id;
822 const unsigned short *device_list = driver->devices;
823 while ((check_id = *device_list++) != 0)
824 if (check_id == device_id)
825 return 1;
826 }
827
828 return (driver->device == device_id);
829}
830
831/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000832 * Set up PCI device operation.
833 *
834 * Check if it already has a driver. If not, use find_device_operations(),
835 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +0000836 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000837 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +0000838 * @see pci_drivers
839 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000840static void set_pci_ops(struct device *dev)
841{
842 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +0000843
Uwe Hermanne4870472010-11-04 23:23:47 +0000844 if (dev->ops)
845 return;
846
847 /*
848 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +0000849 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000850 */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000851 for (driver = &pci_drivers[0]; driver != &epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000852 if ((driver->vendor == dev->vendor) &&
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700853 device_id_match(driver, dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +0000854 dev->ops = (struct device_operations *)driver->ops;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000855 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000856 dev_path(dev), driver->vendor, driver->device,
857 (driver->ops->scan_bus ? "bus " : ""));
Eric Biederman5899fd82003-04-24 06:25:08 +0000858 return;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000859 }
860 }
Li-Ta Loe5266692004-03-23 21:28:05 +0000861
Uwe Hermanne4870472010-11-04 23:23:47 +0000862 /* If I don't have a specific driver use the default operations. */
863 switch (dev->hdr_type & 0x7f) { /* Header type */
864 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +0000865 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
866 goto bad;
867 dev->ops = &default_pci_ops_dev;
868 break;
869 case PCI_HEADER_TYPE_BRIDGE:
870 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
871 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000872 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000873 break;
Patrick Georgie1667822012-05-05 15:29:32 +0200874#if CONFIG_CARDBUS_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000875 case PCI_HEADER_TYPE_CARDBUS:
876 dev->ops = &default_cardbus_ops_bus;
877 break;
878#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000879default:
880bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000881 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000882 printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "
883 "header type %02x, ignoring.\n", dev_path(dev),
884 dev->vendor, dev->device,
885 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +0000886 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000887 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000888}
889
890/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000891 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +0000892 *
893 * Given a linked list of PCI device structures and a devfn number, find the
Li-Ta Lo3a812852004-12-03 22:39:34 +0000894 * device structure correspond to the devfn, if present. This function also
895 * removes the device structure from the linked list.
Li-Ta Loe5266692004-03-23 21:28:05 +0000896 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000897 * @param list The device structure list.
898 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000899 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +0000900 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000901 */
Eric Biedermanb78c1972004-10-14 20:54:17 +0000902static struct device *pci_scan_get_dev(struct device **list, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000903{
Eric Biedermanb78c1972004-10-14 20:54:17 +0000904 struct device *dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000905
Eric Biedermanb78c1972004-10-14 20:54:17 +0000906 dev = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000907 for (; *list; list = &(*list)->sibling) {
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000908 if ((*list)->path.type != DEVICE_PATH_PCI) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000909 printk(BIOS_ERR, "child %s not a PCI device\n",
910 dev_path(*list));
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000911 continue;
912 }
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000913 if ((*list)->path.pci.devfn == devfn) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000914 /* Unlink from the list. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000915 dev = *list;
916 *list = (*list)->sibling;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000917 dev->sibling = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000918 break;
919 }
920 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000921
Uwe Hermanne4870472010-11-04 23:23:47 +0000922 /*
923 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +0000924 * bus. When the list of devices was formed we removed all of the
925 * parents children, and now we are interleaving static and dynamic
926 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000927 */
Eric Biedermane9a271e32003-09-02 03:36:25 +0000928 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000929 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +0000930
Myles Watson29cc9ed2009-07-02 18:56:24 +0000931 /* Find the last child of our parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000932 for (child = dev->bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000933 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +0000934
Myles Watson29cc9ed2009-07-02 18:56:24 +0000935 /* Place the device on the list of children of its parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000936 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000937 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000938 else
Eric Biedermane9a271e32003-09-02 03:36:25 +0000939 dev->bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000940 }
941
Eric Biederman8ca8d762003-04-22 19:02:15 +0000942 return dev;
943}
944
Myles Watson032a9652009-05-11 22:24:53 +0000945/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000946 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +0000947 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000948 * Determine the existence of a given PCI device. Allocate a new struct device
949 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000950 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000951 * @param dev Pointer to the dev structure.
952 * @param bus Pointer to the bus structure.
953 * @param devfn A device/function number to look at.
954 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000955 */
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000956device_t pci_probe_dev(device_t dev, struct bus *bus, unsigned devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000957{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000958 u32 id, class;
959 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000960
Myles Watson29cc9ed2009-07-02 18:56:24 +0000961 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000962 if (!dev) {
963 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +0000964
Myles Watson29cc9ed2009-07-02 18:56:24 +0000965 dummy.bus = bus;
966 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000967 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +0000968
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000969 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000970 /*
971 * Have we found something? Some broken boards return 0 if a
972 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000973 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000974 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +0000975 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000976
Stefan Reinauer7355c752010-04-02 16:30:25 +0000977 if ((id == 0x00000000) || (id == 0x0000ffff) ||
978 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000979 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
980 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000981 return NULL;
982 }
983 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000984 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +0000985 /*
986 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +0000987 * specific operations this operations we will disable the
988 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +0000989 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000990 * This is geared toward devices that have subfunctions
991 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +0000992 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000993 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +0000994 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000995 */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000996 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000997 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000998 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +0000999
Myles Watson29cc9ed2009-07-02 18:56:24 +00001000 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001001 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +00001002
Uwe Hermanne4870472010-11-04 23:23:47 +00001003 /*
1004 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +00001005 * this is because we have already disabled the device. But
1006 * this also handles optional devices that may not always
1007 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001008 */
1009 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001010 if ((id == 0xffffffff) || (id == 0x00000000) ||
1011 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001012 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001013 printk(BIOS_INFO, "PCI: Static device %s not "
1014 "found, disabling it.\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001015 dev->enabled = 0;
1016 }
1017 return dev;
1018 }
1019 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001020
Myles Watson29cc9ed2009-07-02 18:56:24 +00001021 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001022 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
1023 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +00001024
Myles Watson29cc9ed2009-07-02 18:56:24 +00001025 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001026 dev->vendor = id & 0xffff;
1027 dev->device = (id >> 16) & 0xffff;
1028 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001029
1030 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001031 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +00001032
Myles Watson29cc9ed2009-07-02 18:56:24 +00001033 /* Architectural/System devices always need to be bus masters. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001034 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001035 dev->command |= PCI_COMMAND_MASTER;
Uwe Hermanne4870472010-11-04 23:23:47 +00001036
1037 /*
1038 * Look at the vendor and device ID, or at least the header type and
Myles Watson29cc9ed2009-07-02 18:56:24 +00001039 * class and figure out which set of configuration methods to use.
1040 * Unless we already have some PCI ops.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001041 */
1042 set_pci_ops(dev);
1043
Myles Watson29cc9ed2009-07-02 18:56:24 +00001044 /* Now run the magic enable/disable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001045 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001046 dev->ops->enable(dev);
Myles Watson032a9652009-05-11 22:24:53 +00001047
Myles Watson29cc9ed2009-07-02 18:56:24 +00001048 /* Display the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001049 printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
1050 dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
1051 dev->ops ? "" : " No operations");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001052
1053 return dev;
1054}
1055
Myles Watson032a9652009-05-11 22:24:53 +00001056/**
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001057 * Test for match between romstage and ramstage device instance.
1058 *
1059 * @param dev Pointer to the device structure.
1060 * @param sdev Simple device model identifier, created with PCI_DEV().
1061 * @return Non-zero if bus:dev.fn of device matches.
1062 */
1063unsigned int pci_match_simple_dev(device_t dev, pci_devfn_t sdev)
1064{
1065 return dev->bus->secondary == PCI_DEV2SEGBUS(sdev) &&
1066 dev->path.pci.devfn == PCI_DEV2DEVFN(sdev);
1067}
1068
1069/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001070 * Scan a PCI bus.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001071 *
Li-Ta Loe5266692004-03-23 21:28:05 +00001072 * Determine the existence of devices and bridges on a PCI bus. If there are
1073 * bridges on the bus, recursively scan the buses behind the bridges.
1074 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001075 * This function is the default scan_bus() method for the root device
1076 * 'dev_root'.
1077 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001078 * @param bus Pointer to the bus structure.
1079 * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1080 * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
1081 * @param max Current bus number.
1082 * @return The maximum bus number found, after scanning all subordinate busses.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001083 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001084unsigned int pci_scan_bus(struct bus *bus, unsigned min_devfn,
1085 unsigned max_devfn, unsigned int max)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001086{
1087 unsigned int devfn;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001088 struct device *old_devices;
1089 struct device *child;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001090
Stefan Reinauer08670622009-06-30 15:17:49 +00001091#if CONFIG_PCI_BUS_SEGN_BITS
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001092 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %04x:%02x\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001093 bus->secondary >> 8, bus->secondary & 0xff);
Yinghai Lu5f9624d2006-10-04 22:56:21 +00001094#else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001095 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %02x\n", bus->secondary);
Yinghai Lu5f9624d2006-10-04 22:56:21 +00001096#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +00001097
Uwe Hermanne4870472010-11-04 23:23:47 +00001098 /* Maximum sane devfn is 0xFF. */
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001099 if (max_devfn > 0xff) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001100 printk(BIOS_ERR, "PCI: pci_scan_bus limits devfn %x - "
1101 "devfn %x\n", min_devfn, max_devfn);
1102 printk(BIOS_ERR, "PCI: pci_scan_bus upper limit too big. "
1103 "Using 0xff.\n");
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001104 max_devfn=0xff;
1105 }
1106
Eric Biederman8ca8d762003-04-22 19:02:15 +00001107 old_devices = bus->children;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001108 bus->children = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001109
1110 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001111
1112 /*
1113 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001114 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001115 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001116 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Myles Watson29cc9ed2009-07-02 18:56:24 +00001117 struct device *dev;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001118
Uwe Hermanne4870472010-11-04 23:23:47 +00001119 /* First thing setup the device structure. */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001120 dev = pci_scan_get_dev(&old_devices, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001121
Myles Watson29cc9ed2009-07-02 18:56:24 +00001122 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001123 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001124
Uwe Hermanne4870472010-11-04 23:23:47 +00001125 /*
1126 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001127 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001128 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001129 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001130 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001131 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001132 devfn += 0x07;
1133 }
1134 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001135
Eric Biederman8ca8d762003-04-22 19:02:15 +00001136 post_code(0x25);
1137
Uwe Hermanne4870472010-11-04 23:23:47 +00001138 /*
1139 * Warn if any leftover static devices are are found.
1140 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001141 */
1142 if (old_devices) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001143 device_t left;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001144 printk(BIOS_WARNING, "PCI: Left over static devices:\n");
Uwe Hermanne4870472010-11-04 23:23:47 +00001145 for (left = old_devices; left; left = left->sibling)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001146 printk(BIOS_WARNING, "%s\n", dev_path(left));
Uwe Hermanne4870472010-11-04 23:23:47 +00001147
1148 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001149 }
1150
Uwe Hermanne4870472010-11-04 23:23:47 +00001151 /*
1152 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001153 * scan the bus behind that child.
1154 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001155 for (child = bus->children; child; child = child->sibling)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001156 max = scan_bus(child, max);
Li-Ta Loe5266692004-03-23 21:28:05 +00001157
Uwe Hermanne4870472010-11-04 23:23:47 +00001158 /*
1159 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001160 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001161 * Return how far we've got finding sub-buses.
1162 */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001163 printk(BIOS_DEBUG, "PCI: pci_scan_bus returning with max=%03x\n", max);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001164 post_code(0x55);
1165 return max;
1166}
1167
Li-Ta Loe5266692004-03-23 21:28:05 +00001168/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001169 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001170 *
1171 * Determine the existence of buses behind the bridge. Set up the bridge
1172 * according to the result of the scan.
1173 *
1174 * This function is the default scan_bus() method for PCI bridge devices.
1175 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001176 * @param dev Pointer to the bridge device.
1177 * @param max The highest bus number assigned up to now.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001178 * @param do_scan_bus TODO
Myles Watson29cc9ed2009-07-02 18:56:24 +00001179 * @return The maximum bus number found, after scanning all subordinate buses.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001180 */
Myles Watson032a9652009-05-11 22:24:53 +00001181unsigned int do_pci_scan_bridge(struct device *dev, unsigned int max,
Myles Watson29cc9ed2009-07-02 18:56:24 +00001182 unsigned int (*do_scan_bus) (struct bus * bus,
1183 unsigned min_devfn,
1184 unsigned max_devfn,
1185 unsigned int max))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001186{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001187 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001188 u32 buses;
1189 u16 cr;
Eric Biederman83b991a2003-10-11 06:20:25 +00001190
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001191 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001192
Myles Watson894a3472010-06-09 22:41:35 +00001193 if (dev->link_list == NULL) {
1194 struct bus *link;
1195 link = malloc(sizeof(*link));
1196 if (link == NULL)
1197 die("Couldn't allocate a link!\n");
1198 memset(link, 0, sizeof(*link));
1199 link->dev = dev;
1200 dev->link_list = link;
1201 }
1202
1203 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001204
Uwe Hermanne4870472010-11-04 23:23:47 +00001205 /*
1206 * Set up the primary, secondary and subordinate bus numbers. We have
Eric Biederman8ca8d762003-04-22 19:02:15 +00001207 * no idea how many buses are behind this bridge yet, so we set the
Myles Watson032a9652009-05-11 22:24:53 +00001208 * subordinate bus number to 0xff for the moment.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001209 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001210 bus->secondary = ++max;
1211 bus->subordinate = 0xff;
Li-Ta Loe5266692004-03-23 21:28:05 +00001212
Eric Biederman8ca8d762003-04-22 19:02:15 +00001213 /* Clear all status bits and turn off memory, I/O and master enables. */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001214 cr = pci_read_config16(dev, PCI_COMMAND);
1215 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1216 pci_write_config16(dev, PCI_STATUS, 0xffff);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001217
Uwe Hermanne4870472010-11-04 23:23:47 +00001218 /*
1219 * Read the existing primary/secondary/subordinate bus
Eric Biedermanb78c1972004-10-14 20:54:17 +00001220 * number configuration.
1221 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001222 buses = pci_read_config32(dev, PCI_PRIMARY_BUS);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001223
Uwe Hermanne4870472010-11-04 23:23:47 +00001224 /*
1225 * Configure the bus numbers for this bridge: the configuration
Eric Biederman8ca8d762003-04-22 19:02:15 +00001226 * transactions will not be propagated by the bridge if it is not
Eric Biedermanb78c1972004-10-14 20:54:17 +00001227 * correctly configured.
1228 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001229 buses &= 0xff000000;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001230 buses |= (((unsigned int)(dev->bus->secondary) << 0) |
1231 ((unsigned int)(bus->secondary) << 8) |
1232 ((unsigned int)(bus->subordinate) << 16));
Eric Biedermane9a271e32003-09-02 03:36:25 +00001233 pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001234
Uwe Hermanne4870472010-11-04 23:23:47 +00001235 /* Now we can scan all subordinate buses (those behind the bridge). */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001236 max = do_scan_bus(bus, 0x00, 0xff, max);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001237
Uwe Hermanne4870472010-11-04 23:23:47 +00001238 /*
1239 * We know the number of buses behind this bridge. Set the subordinate
Eric Biedermanb78c1972004-10-14 20:54:17 +00001240 * bus number to its real value.
1241 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001242 bus->subordinate = max;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001243 buses = (buses & 0xff00ffff) | ((unsigned int)(bus->subordinate) << 16);
Eric Biedermane9a271e32003-09-02 03:36:25 +00001244 pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
1245 pci_write_config16(dev, PCI_COMMAND, cr);
Myles Watson032a9652009-05-11 22:24:53 +00001246
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001247 printk(BIOS_SPEW, "%s returns max %d\n", __func__, max);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001248 return max;
1249}
Li-Ta Loe5266692004-03-23 21:28:05 +00001250
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001251/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001252 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001253 *
1254 * Determine the existence of buses behind the bridge. Set up the bridge
1255 * according to the result of the scan.
1256 *
1257 * This function is the default scan_bus() method for PCI bridge devices.
1258 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001259 * @param dev Pointer to the bridge device.
1260 * @param max The highest bus number assigned up to now.
1261 * @return The maximum bus number found, after scanning all subordinate buses.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001262 */
1263unsigned int pci_scan_bridge(struct device *dev, unsigned int max)
1264{
1265 return do_pci_scan_bridge(dev, max, pci_scan_bus);
1266}
1267
Myles Watson29cc9ed2009-07-02 18:56:24 +00001268/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001269 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001270 *
1271 * This function is the default scan_bus() method for PCI domains.
1272 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001273 * @param dev Pointer to the domain.
1274 * @param max The highest bus number assigned up to now.
1275 * @return The maximum bus number found, after scanning all subordinate busses.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001276 */
1277unsigned int pci_domain_scan_bus(device_t dev, unsigned int max)
1278{
Myles Watson894a3472010-06-09 22:41:35 +00001279 max = pci_scan_bus(dev->link_list, PCI_DEVFN(0, 0), 0xff, max);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001280 return max;
1281}
1282
Patrick Georgie1667822012-05-05 15:29:32 +02001283#if CONFIG_PC80_SYSTEM
Myles Watson29cc9ed2009-07-02 18:56:24 +00001284/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001285 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001286 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001287 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001288 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001289 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001290 *
1291 * This function should be called for each PCI slot in your system.
1292 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001293 * @param bus Pointer to the bus structure.
1294 * @param slot TODO
1295 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1296 * of this slot. The particular IRQ #s that are passed in depend on the
1297 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001298 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001299void pci_assign_irqs(unsigned bus, unsigned slot,
Uwe Hermanne4870472010-11-04 23:23:47 +00001300 const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001301{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001302 unsigned int funct;
1303 device_t pdev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001304 u8 line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001305
Uwe Hermanne4870472010-11-04 23:23:47 +00001306 /* Each slot may contain up to eight functions. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001307 for (funct = 0; funct < 8; funct++) {
1308 pdev = dev_find_slot(bus, (slot << 3) + funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001309
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001310 if (!pdev)
1311 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001312
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001313 line = pci_read_config8(pdev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001314
Uwe Hermanne4870472010-11-04 23:23:47 +00001315 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001316 if ((line < 1) || (line > 4))
1317 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001318
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001319 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001320
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001321 printk(BIOS_DEBUG, "Assigning IRQ %d to %d:%x.%d\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001322 irq, bus, slot, funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001323
Stefan Reinauer14e22772010-04-27 06:56:47 +00001324 pci_write_config8(pdev, PCI_INTERRUPT_LINE,
Uwe Hermanne4870472010-11-04 23:23:47 +00001325 pIntAtoD[line - 1]);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001326
1327#ifdef PARANOID_IRQ_ASSIGNMENTS
Myles Watson17aeeca2009-10-07 18:41:08 +00001328 irq = pci_read_config8(pdev, PCI_INTERRUPT_LINE);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001329 printk(BIOS_DEBUG, " Readback = %d\n", irq);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001330#endif
1331
Patrick Georgie1667822012-05-05 15:29:32 +02001332#if CONFIG_PC80_SYSTEM
Uwe Hermanne4870472010-11-04 23:23:47 +00001333 /* Change to level triggered. */
1334 i8259_configure_irq_trigger(pIntAtoD[line - 1],
1335 IRQ_LEVEL_TRIGGERED);
Stefan Reinauer5fb62162010-12-16 23:52:04 +00001336#endif
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001337 }
1338}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001339#endif