blob: ff334fee0eaa13d5a2ada7c7532e7d953f216a45 [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) {
Sven Schnelle91321022011-03-01 19:58:47 +0000602 printk(BIOS_DEBUG, "%s subsystem <- %04x/%04x\n",
603 dev_path(dev), dev->subsystem_vendor,
604 dev->subsystem_device);
605 ops->set_subsystem(dev, dev->subsystem_vendor,
606 dev->subsystem_device);
Eric Biederman03acab62004-10-14 21:25:53 +0000607 }
Eric Biedermane9a271e32003-09-02 03:36:25 +0000608 command = pci_read_config16(dev, PCI_COMMAND);
609 command |= dev->command;
Uwe Hermanne4870472010-11-04 23:23:47 +0000610
Myles Watson29cc9ed2009-07-02 18:56:24 +0000611 /* v3 has
612 * command |= (PCI_COMMAND_PARITY + PCI_COMMAND_SERR); // Error check.
613 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000614
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000615 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000616 pci_write_config16(dev, PCI_COMMAND, command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000617}
618
619void pci_bus_enable_resources(struct device *dev)
620{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000621 u16 ctrl;
622
Uwe Hermanne4870472010-11-04 23:23:47 +0000623 /*
624 * Enable I/O in command register if there is VGA card
Myles Watson29cc9ed2009-07-02 18:56:24 +0000625 * connected with (even it does not claim I/O resource).
626 */
Myles Watson894a3472010-06-09 22:41:35 +0000627 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
Li-Ta Lo515f6c72005-01-11 22:48:54 +0000628 dev->command |= PCI_COMMAND_IO;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000629 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +0000630 ctrl |= dev->link_list->bridge_ctrl;
Uwe Hermanne4870472010-11-04 23:23:47 +0000631 ctrl |= (PCI_BRIDGE_CTL_PARITY + PCI_BRIDGE_CTL_SERR); /* Error check. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000632 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000633 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
634
635 pci_dev_enable_resources(dev);
636}
637
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000638void pci_bus_reset(struct bus *bus)
639{
Uwe Hermanne4870472010-11-04 23:23:47 +0000640 u16 ctl;
641
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000642 ctl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
643 ctl |= PCI_BRIDGE_CTL_BUS_RESET;
644 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
645 mdelay(10);
Uwe Hermanne4870472010-11-04 23:23:47 +0000646
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000647 ctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
648 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
649 delay(1);
650}
651
Myles Watson29cc9ed2009-07-02 18:56:24 +0000652void pci_dev_set_subsystem(struct device *dev, unsigned vendor, unsigned device)
Eric Biederman03acab62004-10-14 21:25:53 +0000653{
Myles Watson032a9652009-05-11 22:24:53 +0000654 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
Myles Watson29cc9ed2009-07-02 18:56:24 +0000655 ((device & 0xffff) << 16) | (vendor & 0xffff));
Eric Biederman03acab62004-10-14 21:25:53 +0000656}
657
Bill Richardson0a405ba2012-06-26 16:33:45 -0700658#if CONFIG_CHROMEOS
659int oprom_is_loaded = 0;
660#endif
661
Uwe Hermanne4870472010-11-04 23:23:47 +0000662/** Default handler: only runs the relevant PCI BIOS. */
Li-Ta Lo883b8792005-01-10 23:16:22 +0000663void pci_dev_init(struct device *dev)
664{
Stefan Reinauer8ada1522012-11-16 13:34:48 -0800665#if CONFIG_PCI_ROM_RUN || CONFIG_VGA_ROM_RUN
Li-Ta Lo883b8792005-01-10 23:16:22 +0000666 struct rom_header *rom, *ram;
667
Myles Watson17aeeca2009-10-07 18:41:08 +0000668 if (CONFIG_PCI_ROM_RUN != 1 && /* Only execute VGA ROMs. */
669 ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
Roman Kononov778a42b2007-04-06 18:34:39 +0000670 return;
Myles Watson17aeeca2009-10-07 18:41:08 +0000671
672 if (CONFIG_VGA_ROM_RUN != 1 && /* Only execute non-VGA ROMs. */
673 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
674 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
Li-Ta Lo883b8792005-01-10 23:16:22 +0000688 rom = pci_rom_probe(dev);
689 if (rom == NULL)
690 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000691
Li-Ta Lo883b8792005-01-10 23:16:22 +0000692 ram = pci_rom_load(dev, rom);
Yinghai Lu9e4faef2005-01-14 22:04:49 +0000693 if (ram == NULL)
694 return;
Li-Ta Lo883b8792005-01-10 23:16:22 +0000695
Stefan Reinauer0a500842011-09-23 10:33:58 -0700696#if CONFIG_HAVE_ACPI_RESUME && !CONFIG_S3_VGA_ROM_RUN
697 /* If S3_VGA_ROM_RUN is disabled, skip running VGA option
698 * ROMs when coming out of an S3 resume.
699 */
700 if ((acpi_slp_type == 3) &&
701 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
702 return;
703#endif
Stefan Reinauerd98cf5b2008-08-01 11:25:41 +0000704 run_bios(dev, (unsigned long)ram);
Bill Richardson0a405ba2012-06-26 16:33:45 -0700705#if CONFIG_CHROMEOS
706 oprom_is_loaded = 1;
707 printk(BIOS_DEBUG, "VGA Option ROM has been loaded\n");
708#endif
Torsten Duwe1f2f8002008-01-06 01:10:54 +0000709#endif /* CONFIG_PCI_ROM_RUN || CONFIG_VGA_ROM_RUN */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000710}
Li-Ta Lo883b8792005-01-10 23:16:22 +0000711
Li-Ta Loe5266692004-03-23 21:28:05 +0000712/** Default device operation for PCI devices */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000713static struct pci_operations pci_dev_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000714 .set_subsystem = pci_dev_set_subsystem,
715};
716
Eric Biederman8ca8d762003-04-22 19:02:15 +0000717struct device_operations default_pci_ops_dev = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000718 .read_resources = pci_dev_read_resources,
719 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000720 .enable_resources = pci_dev_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000721 .init = pci_dev_init,
722 .scan_bus = 0,
723 .enable = 0,
724 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000725};
Li-Ta Loe5266692004-03-23 21:28:05 +0000726
727/** Default device operations for PCI bridges */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000728static struct pci_operations pci_bus_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000729 .set_subsystem = 0,
730};
Li-Ta Lo883b8792005-01-10 23:16:22 +0000731
Eric Biederman8ca8d762003-04-22 19:02:15 +0000732struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000733 .read_resources = pci_bus_read_resources,
734 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000735 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000736 .init = 0,
737 .scan_bus = pci_scan_bridge,
738 .enable = 0,
739 .reset_bus = pci_bus_reset,
740 .ops_pci = &pci_bus_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000741};
Li-Ta Loe5266692004-03-23 21:28:05 +0000742
743/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000744 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000745 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000746 * This function is a heuristic to detect which type of bus is downstream
747 * of a PCI-to-PCI bridge. This functions by looking for various capability
748 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
749 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000750 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000751 * When only a PCI-Express capability is found the type is examined to see
752 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000753 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000754 * @param dev Pointer to the device structure of the bridge.
755 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000756 */
757static struct device_operations *get_pci_bridge_ops(device_t dev)
758{
Patrick Georgie1667822012-05-05 15:29:32 +0200759#if CONFIG_PCIX_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800760 unsigned int pcixpos;
761 pcixpos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
762 if (pcixpos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000763 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000764 return &default_pcix_ops_bus;
765 }
766#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200767#if CONFIG_AGP_PLUGIN_SUPPORT
Uwe Hermanne4870472010-11-04 23:23:47 +0000768 /* How do I detect a PCI to AGP bridge? */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000769#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200770#if CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800771 unsigned int htpos = 0;
772 while ((htpos = pci_find_next_capability(dev, PCI_CAP_ID_HT, htpos))) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000773 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800774 flags = pci_read_config16(dev, htpos + PCI_CAP_FLAGS);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000775 if ((flags >> 13) == 1) {
776 /* Host or Secondary Interface */
Uwe Hermanne4870472010-11-04 23:23:47 +0000777 printk(BIOS_DEBUG, "%s subordinate bus HT\n",
778 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000779 return &default_ht_ops_bus;
780 }
781 }
782#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200783#if CONFIG_PCIEXP_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800784 unsigned int pciexpos;
785 pciexpos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
786 if (pciexpos) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000787 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800788 flags = pci_read_config16(dev, pciexpos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000789 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000790 case PCI_EXP_TYPE_ROOT_PORT:
791 case PCI_EXP_TYPE_UPSTREAM:
792 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000793 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000794 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000795 return &default_pciexp_ops_bus;
796 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +0000797 printk(BIOS_DEBUG, "%s subordinate PCI\n",
798 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000799 return &default_pci_ops_bus;
800 default:
801 break;
802 }
803 }
804#endif
805 return &default_pci_ops_bus;
806}
807
808/**
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700809 * Check if a device id matches a PCI driver entry.
810 *
811 * The driver entry can either point at a zero terminated array of acceptable
812 * device IDs, or include a single device ID.
813 *
814 * @driver pointer to the PCI driver entry being checked
815 * @device_id PCI device ID of the device being matched
816 */
817static int device_id_match(struct pci_driver *driver, unsigned short device_id)
818{
819 if (driver->devices) {
820 unsigned short check_id;
821 const unsigned short *device_list = driver->devices;
822 while ((check_id = *device_list++) != 0)
823 if (check_id == device_id)
824 return 1;
825 }
826
827 return (driver->device == device_id);
828}
829
830/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000831 * Set up PCI device operation.
832 *
833 * Check if it already has a driver. If not, use find_device_operations(),
834 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +0000835 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000836 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +0000837 * @see pci_drivers
838 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000839static void set_pci_ops(struct device *dev)
840{
841 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +0000842
Uwe Hermanne4870472010-11-04 23:23:47 +0000843 if (dev->ops)
844 return;
845
846 /*
847 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +0000848 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000849 */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000850 for (driver = &pci_drivers[0]; driver != &epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000851 if ((driver->vendor == dev->vendor) &&
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700852 device_id_match(driver, dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +0000853 dev->ops = (struct device_operations *)driver->ops;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000854 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000855 dev_path(dev), driver->vendor, driver->device,
856 (driver->ops->scan_bus ? "bus " : ""));
Eric Biederman5899fd82003-04-24 06:25:08 +0000857 return;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000858 }
859 }
Li-Ta Loe5266692004-03-23 21:28:05 +0000860
Uwe Hermanne4870472010-11-04 23:23:47 +0000861 /* If I don't have a specific driver use the default operations. */
862 switch (dev->hdr_type & 0x7f) { /* Header type */
863 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +0000864 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
865 goto bad;
866 dev->ops = &default_pci_ops_dev;
867 break;
868 case PCI_HEADER_TYPE_BRIDGE:
869 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
870 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000871 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000872 break;
Patrick Georgie1667822012-05-05 15:29:32 +0200873#if CONFIG_CARDBUS_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000874 case PCI_HEADER_TYPE_CARDBUS:
875 dev->ops = &default_cardbus_ops_bus;
876 break;
877#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000878default:
879bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000880 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000881 printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "
882 "header type %02x, ignoring.\n", dev_path(dev),
883 dev->vendor, dev->device,
884 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +0000885 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000886 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000887}
888
889/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000890 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +0000891 *
892 * Given a linked list of PCI device structures and a devfn number, find the
Li-Ta Lo3a812852004-12-03 22:39:34 +0000893 * device structure correspond to the devfn, if present. This function also
894 * removes the device structure from the linked list.
Li-Ta Loe5266692004-03-23 21:28:05 +0000895 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000896 * @param list The device structure list.
897 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000898 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +0000899 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000900 */
Eric Biedermanb78c1972004-10-14 20:54:17 +0000901static struct device *pci_scan_get_dev(struct device **list, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000902{
Eric Biedermanb78c1972004-10-14 20:54:17 +0000903 struct device *dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000904
Eric Biedermanb78c1972004-10-14 20:54:17 +0000905 dev = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000906 for (; *list; list = &(*list)->sibling) {
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000907 if ((*list)->path.type != DEVICE_PATH_PCI) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000908 printk(BIOS_ERR, "child %s not a PCI device\n",
909 dev_path(*list));
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000910 continue;
911 }
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000912 if ((*list)->path.pci.devfn == devfn) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000913 /* Unlink from the list. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000914 dev = *list;
915 *list = (*list)->sibling;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000916 dev->sibling = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000917 break;
918 }
919 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000920
Uwe Hermanne4870472010-11-04 23:23:47 +0000921 /*
922 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +0000923 * bus. When the list of devices was formed we removed all of the
924 * parents children, and now we are interleaving static and dynamic
925 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000926 */
Eric Biedermane9a271e32003-09-02 03:36:25 +0000927 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000928 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +0000929
Myles Watson29cc9ed2009-07-02 18:56:24 +0000930 /* Find the last child of our parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000931 for (child = dev->bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000932 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +0000933
Myles Watson29cc9ed2009-07-02 18:56:24 +0000934 /* Place the device on the list of children of its parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000935 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000936 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000937 else
Eric Biedermane9a271e32003-09-02 03:36:25 +0000938 dev->bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000939 }
940
Eric Biederman8ca8d762003-04-22 19:02:15 +0000941 return dev;
942}
943
Myles Watson032a9652009-05-11 22:24:53 +0000944/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000945 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +0000946 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000947 * Determine the existence of a given PCI device. Allocate a new struct device
948 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000949 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000950 * @param dev Pointer to the dev structure.
951 * @param bus Pointer to the bus structure.
952 * @param devfn A device/function number to look at.
953 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000954 */
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000955device_t pci_probe_dev(device_t dev, struct bus *bus, unsigned devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000956{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000957 u32 id, class;
958 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000959
Myles Watson29cc9ed2009-07-02 18:56:24 +0000960 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000961 if (!dev) {
962 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +0000963
Myles Watson29cc9ed2009-07-02 18:56:24 +0000964 dummy.bus = bus;
965 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000966 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +0000967
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000968 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000969 /*
970 * Have we found something? Some broken boards return 0 if a
971 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000972 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000973 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +0000974 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000975
Stefan Reinauer7355c752010-04-02 16:30:25 +0000976 if ((id == 0x00000000) || (id == 0x0000ffff) ||
977 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000978 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
979 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000980 return NULL;
981 }
982 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000983 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +0000984 /*
985 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +0000986 * specific operations this operations we will disable the
987 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +0000988 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000989 * This is geared toward devices that have subfunctions
990 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +0000991 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000992 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +0000993 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000994 */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000995 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000996 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000997 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +0000998
Myles Watson29cc9ed2009-07-02 18:56:24 +0000999 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001000 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +00001001
Uwe Hermanne4870472010-11-04 23:23:47 +00001002 /*
1003 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +00001004 * this is because we have already disabled the device. But
1005 * this also handles optional devices that may not always
1006 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001007 */
1008 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001009 if ((id == 0xffffffff) || (id == 0x00000000) ||
1010 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001011 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001012 printk(BIOS_INFO, "PCI: Static device %s not "
1013 "found, disabling it.\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001014 dev->enabled = 0;
1015 }
1016 return dev;
1017 }
1018 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001019
Myles Watson29cc9ed2009-07-02 18:56:24 +00001020 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001021 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
1022 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +00001023
Myles Watson29cc9ed2009-07-02 18:56:24 +00001024 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001025 dev->vendor = id & 0xffff;
1026 dev->device = (id >> 16) & 0xffff;
1027 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001028
1029 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001030 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +00001031
Myles Watson29cc9ed2009-07-02 18:56:24 +00001032 /* Architectural/System devices always need to be bus masters. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001033 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001034 dev->command |= PCI_COMMAND_MASTER;
Uwe Hermanne4870472010-11-04 23:23:47 +00001035
1036 /*
1037 * Look at the vendor and device ID, or at least the header type and
Myles Watson29cc9ed2009-07-02 18:56:24 +00001038 * class and figure out which set of configuration methods to use.
1039 * Unless we already have some PCI ops.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001040 */
1041 set_pci_ops(dev);
1042
Myles Watson29cc9ed2009-07-02 18:56:24 +00001043 /* Now run the magic enable/disable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001044 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001045 dev->ops->enable(dev);
Myles Watson032a9652009-05-11 22:24:53 +00001046
Myles Watson29cc9ed2009-07-02 18:56:24 +00001047 /* Display the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001048 printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
1049 dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
1050 dev->ops ? "" : " No operations");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001051
1052 return dev;
1053}
1054
Myles Watson032a9652009-05-11 22:24:53 +00001055/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001056 * Scan a PCI bus.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001057 *
Li-Ta Loe5266692004-03-23 21:28:05 +00001058 * Determine the existence of devices and bridges on a PCI bus. If there are
1059 * bridges on the bus, recursively scan the buses behind the bridges.
1060 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001061 * This function is the default scan_bus() method for the root device
1062 * 'dev_root'.
1063 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001064 * @param bus Pointer to the bus structure.
1065 * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1066 * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
1067 * @param max Current bus number.
1068 * @return The maximum bus number found, after scanning all subordinate busses.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001069 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001070unsigned int pci_scan_bus(struct bus *bus, unsigned min_devfn,
1071 unsigned max_devfn, unsigned int max)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001072{
1073 unsigned int devfn;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001074 struct device *old_devices;
1075 struct device *child;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001076
Stefan Reinauer08670622009-06-30 15:17:49 +00001077#if CONFIG_PCI_BUS_SEGN_BITS
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001078 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %04x:%02x\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001079 bus->secondary >> 8, bus->secondary & 0xff);
Yinghai Lu5f9624d2006-10-04 22:56:21 +00001080#else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001081 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %02x\n", bus->secondary);
Yinghai Lu5f9624d2006-10-04 22:56:21 +00001082#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +00001083
Uwe Hermanne4870472010-11-04 23:23:47 +00001084 /* Maximum sane devfn is 0xFF. */
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001085 if (max_devfn > 0xff) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001086 printk(BIOS_ERR, "PCI: pci_scan_bus limits devfn %x - "
1087 "devfn %x\n", min_devfn, max_devfn);
1088 printk(BIOS_ERR, "PCI: pci_scan_bus upper limit too big. "
1089 "Using 0xff.\n");
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001090 max_devfn=0xff;
1091 }
1092
Eric Biederman8ca8d762003-04-22 19:02:15 +00001093 old_devices = bus->children;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001094 bus->children = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001095
1096 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001097
1098 /*
1099 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001100 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001101 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001102 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Myles Watson29cc9ed2009-07-02 18:56:24 +00001103 struct device *dev;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001104
Uwe Hermanne4870472010-11-04 23:23:47 +00001105 /* First thing setup the device structure. */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001106 dev = pci_scan_get_dev(&old_devices, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001107
Myles Watson29cc9ed2009-07-02 18:56:24 +00001108 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001109 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001110
Uwe Hermanne4870472010-11-04 23:23:47 +00001111 /*
1112 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001113 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001114 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001115 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001116 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001117 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001118 devfn += 0x07;
1119 }
1120 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001121
Eric Biederman8ca8d762003-04-22 19:02:15 +00001122 post_code(0x25);
1123
Uwe Hermanne4870472010-11-04 23:23:47 +00001124 /*
1125 * Warn if any leftover static devices are are found.
1126 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001127 */
1128 if (old_devices) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001129 device_t left;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001130 printk(BIOS_WARNING, "PCI: Left over static devices:\n");
Uwe Hermanne4870472010-11-04 23:23:47 +00001131 for (left = old_devices; left; left = left->sibling)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001132 printk(BIOS_WARNING, "%s\n", dev_path(left));
Uwe Hermanne4870472010-11-04 23:23:47 +00001133
1134 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001135 }
1136
Uwe Hermanne4870472010-11-04 23:23:47 +00001137 /*
1138 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001139 * scan the bus behind that child.
1140 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001141 for (child = bus->children; child; child = child->sibling)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001142 max = scan_bus(child, max);
Li-Ta Loe5266692004-03-23 21:28:05 +00001143
Uwe Hermanne4870472010-11-04 23:23:47 +00001144 /*
1145 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001146 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001147 * Return how far we've got finding sub-buses.
1148 */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001149 printk(BIOS_DEBUG, "PCI: pci_scan_bus returning with max=%03x\n", max);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001150 post_code(0x55);
1151 return max;
1152}
1153
Li-Ta Loe5266692004-03-23 21:28:05 +00001154/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001155 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001156 *
1157 * Determine the existence of buses behind the bridge. Set up the bridge
1158 * according to the result of the scan.
1159 *
1160 * This function is the default scan_bus() method for PCI bridge devices.
1161 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001162 * @param dev Pointer to the bridge device.
1163 * @param max The highest bus number assigned up to now.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001164 * @param do_scan_bus TODO
Myles Watson29cc9ed2009-07-02 18:56:24 +00001165 * @return The maximum bus number found, after scanning all subordinate buses.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001166 */
Myles Watson032a9652009-05-11 22:24:53 +00001167unsigned int do_pci_scan_bridge(struct device *dev, unsigned int max,
Myles Watson29cc9ed2009-07-02 18:56:24 +00001168 unsigned int (*do_scan_bus) (struct bus * bus,
1169 unsigned min_devfn,
1170 unsigned max_devfn,
1171 unsigned int max))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001172{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001173 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001174 u32 buses;
1175 u16 cr;
Eric Biederman83b991a2003-10-11 06:20:25 +00001176
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001177 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001178
Myles Watson894a3472010-06-09 22:41:35 +00001179 if (dev->link_list == NULL) {
1180 struct bus *link;
1181 link = malloc(sizeof(*link));
1182 if (link == NULL)
1183 die("Couldn't allocate a link!\n");
1184 memset(link, 0, sizeof(*link));
1185 link->dev = dev;
1186 dev->link_list = link;
1187 }
1188
1189 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001190
Uwe Hermanne4870472010-11-04 23:23:47 +00001191 /*
1192 * Set up the primary, secondary and subordinate bus numbers. We have
Eric Biederman8ca8d762003-04-22 19:02:15 +00001193 * no idea how many buses are behind this bridge yet, so we set the
Myles Watson032a9652009-05-11 22:24:53 +00001194 * subordinate bus number to 0xff for the moment.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001195 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001196 bus->secondary = ++max;
1197 bus->subordinate = 0xff;
Li-Ta Loe5266692004-03-23 21:28:05 +00001198
Eric Biederman8ca8d762003-04-22 19:02:15 +00001199 /* Clear all status bits and turn off memory, I/O and master enables. */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001200 cr = pci_read_config16(dev, PCI_COMMAND);
1201 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1202 pci_write_config16(dev, PCI_STATUS, 0xffff);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001203
Uwe Hermanne4870472010-11-04 23:23:47 +00001204 /*
1205 * Read the existing primary/secondary/subordinate bus
Eric Biedermanb78c1972004-10-14 20:54:17 +00001206 * number configuration.
1207 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001208 buses = pci_read_config32(dev, PCI_PRIMARY_BUS);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001209
Uwe Hermanne4870472010-11-04 23:23:47 +00001210 /*
1211 * Configure the bus numbers for this bridge: the configuration
Eric Biederman8ca8d762003-04-22 19:02:15 +00001212 * transactions will not be propagated by the bridge if it is not
Eric Biedermanb78c1972004-10-14 20:54:17 +00001213 * correctly configured.
1214 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001215 buses &= 0xff000000;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001216 buses |= (((unsigned int)(dev->bus->secondary) << 0) |
1217 ((unsigned int)(bus->secondary) << 8) |
1218 ((unsigned int)(bus->subordinate) << 16));
Eric Biedermane9a271e32003-09-02 03:36:25 +00001219 pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001220
Uwe Hermanne4870472010-11-04 23:23:47 +00001221 /* Now we can scan all subordinate buses (those behind the bridge). */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001222 max = do_scan_bus(bus, 0x00, 0xff, max);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001223
Uwe Hermanne4870472010-11-04 23:23:47 +00001224 /*
1225 * We know the number of buses behind this bridge. Set the subordinate
Eric Biedermanb78c1972004-10-14 20:54:17 +00001226 * bus number to its real value.
1227 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001228 bus->subordinate = max;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001229 buses = (buses & 0xff00ffff) | ((unsigned int)(bus->subordinate) << 16);
Eric Biedermane9a271e32003-09-02 03:36:25 +00001230 pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
1231 pci_write_config16(dev, PCI_COMMAND, cr);
Myles Watson032a9652009-05-11 22:24:53 +00001232
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001233 printk(BIOS_SPEW, "%s returns max %d\n", __func__, max);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001234 return max;
1235}
Li-Ta Loe5266692004-03-23 21:28:05 +00001236
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001237/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001238 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001239 *
1240 * Determine the existence of buses behind the bridge. Set up the bridge
1241 * according to the result of the scan.
1242 *
1243 * This function is the default scan_bus() method for PCI bridge devices.
1244 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001245 * @param dev Pointer to the bridge device.
1246 * @param max The highest bus number assigned up to now.
1247 * @return The maximum bus number found, after scanning all subordinate buses.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001248 */
1249unsigned int pci_scan_bridge(struct device *dev, unsigned int max)
1250{
1251 return do_pci_scan_bridge(dev, max, pci_scan_bus);
1252}
1253
Myles Watson29cc9ed2009-07-02 18:56:24 +00001254/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001255 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001256 *
1257 * This function is the default scan_bus() method for PCI domains.
1258 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001259 * @param dev Pointer to the domain.
1260 * @param max The highest bus number assigned up to now.
1261 * @return The maximum bus number found, after scanning all subordinate busses.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001262 */
1263unsigned int pci_domain_scan_bus(device_t dev, unsigned int max)
1264{
Myles Watson894a3472010-06-09 22:41:35 +00001265 max = pci_scan_bus(dev->link_list, PCI_DEVFN(0, 0), 0xff, max);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001266 return max;
1267}
1268
Patrick Georgie1667822012-05-05 15:29:32 +02001269#if CONFIG_PC80_SYSTEM
Myles Watson29cc9ed2009-07-02 18:56:24 +00001270/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001271 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001272 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001273 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001274 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001275 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001276 *
1277 * This function should be called for each PCI slot in your system.
1278 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001279 * @param bus Pointer to the bus structure.
1280 * @param slot TODO
1281 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1282 * of this slot. The particular IRQ #s that are passed in depend on the
1283 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001284 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001285void pci_assign_irqs(unsigned bus, unsigned slot,
Uwe Hermanne4870472010-11-04 23:23:47 +00001286 const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001287{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001288 unsigned int funct;
1289 device_t pdev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001290 u8 line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001291
Uwe Hermanne4870472010-11-04 23:23:47 +00001292 /* Each slot may contain up to eight functions. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001293 for (funct = 0; funct < 8; funct++) {
1294 pdev = dev_find_slot(bus, (slot << 3) + funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001295
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001296 if (!pdev)
1297 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001298
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001299 line = pci_read_config8(pdev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001300
Uwe Hermanne4870472010-11-04 23:23:47 +00001301 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001302 if ((line < 1) || (line > 4))
1303 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001304
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001305 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001306
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001307 printk(BIOS_DEBUG, "Assigning IRQ %d to %d:%x.%d\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001308 irq, bus, slot, funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001309
Stefan Reinauer14e22772010-04-27 06:56:47 +00001310 pci_write_config8(pdev, PCI_INTERRUPT_LINE,
Uwe Hermanne4870472010-11-04 23:23:47 +00001311 pIntAtoD[line - 1]);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001312
1313#ifdef PARANOID_IRQ_ASSIGNMENTS
Myles Watson17aeeca2009-10-07 18:41:08 +00001314 irq = pci_read_config8(pdev, PCI_INTERRUPT_LINE);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001315 printk(BIOS_DEBUG, " Readback = %d\n", irq);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001316#endif
1317
Patrick Georgie1667822012-05-05 15:29:32 +02001318#if CONFIG_PC80_SYSTEM
Uwe Hermanne4870472010-11-04 23:23:47 +00001319 /* Change to level triggered. */
1320 i8259_configure_irq_trigger(pIntAtoD[line - 1],
1321 IRQ_LEVEL_TRIGGERED);
Stefan Reinauer5fb62162010-12-16 23:52:04 +00001322#endif
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001323 }
1324}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001325#endif