blob: c810483649ebe8575baf6f658695ad2111ccbede [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{
Stefan Reinauer8ada1522012-11-16 13:34:48 -0800669#if CONFIG_PCI_ROM_RUN || CONFIG_VGA_ROM_RUN
Li-Ta Lo883b8792005-01-10 23:16:22 +0000670 struct rom_header *rom, *ram;
671
Myles Watson17aeeca2009-10-07 18:41:08 +0000672 if (CONFIG_PCI_ROM_RUN != 1 && /* Only execute VGA ROMs. */
673 ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
Roman Kononov778a42b2007-04-06 18:34:39 +0000674 return;
Myles Watson17aeeca2009-10-07 18:41:08 +0000675
676 if (CONFIG_VGA_ROM_RUN != 1 && /* Only execute non-VGA ROMs. */
677 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
678 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000679
Stefan Reinauer74a0efe2012-03-30 17:10:49 -0700680#if CONFIG_CHROMEOS
681 /* In ChromeOS we want to boot blazingly fast. Therefore
682 * we don't run (VGA) option ROMs, unless we have to print
683 * something on the screen before the kernel is loaded.
684 */
Bill Richardson0a405ba2012-06-26 16:33:45 -0700685 if (!developer_mode_enabled() && !recovery_mode_enabled() &&
686 !vboot_wants_oprom()) {
687 printk(BIOS_DEBUG, "Not loading VGA Option ROM\n");
Stefan Reinauer74a0efe2012-03-30 17:10:49 -0700688 return;
Bill Richardson0a405ba2012-06-26 16:33:45 -0700689 }
Stefan Reinauer74a0efe2012-03-30 17:10:49 -0700690#endif
691
Stefan Reinauer0a500842011-09-23 10:33:58 -0700692#if CONFIG_HAVE_ACPI_RESUME && !CONFIG_S3_VGA_ROM_RUN
693 /* If S3_VGA_ROM_RUN is disabled, skip running VGA option
694 * ROMs when coming out of an S3 resume.
695 */
696 if ((acpi_slp_type == 3) &&
697 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
698 return;
699#endif
Aaron Durbince872cb2013-03-28 15:59:19 -0500700
701 rom = pci_rom_probe(dev);
702 if (rom == NULL)
703 return;
704
705 ram = pci_rom_load(dev, rom);
706 if (ram == NULL)
707 return;
708
Stefan Reinauerd98cf5b2008-08-01 11:25:41 +0000709 run_bios(dev, (unsigned long)ram);
Bill Richardson0a405ba2012-06-26 16:33:45 -0700710#if CONFIG_CHROMEOS
711 oprom_is_loaded = 1;
712 printk(BIOS_DEBUG, "VGA Option ROM has been loaded\n");
713#endif
Torsten Duwe1f2f8002008-01-06 01:10:54 +0000714#endif /* CONFIG_PCI_ROM_RUN || CONFIG_VGA_ROM_RUN */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000715}
Li-Ta Lo883b8792005-01-10 23:16:22 +0000716
Li-Ta Loe5266692004-03-23 21:28:05 +0000717/** Default device operation for PCI devices */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000718static struct pci_operations pci_dev_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000719 .set_subsystem = pci_dev_set_subsystem,
720};
721
Eric Biederman8ca8d762003-04-22 19:02:15 +0000722struct device_operations default_pci_ops_dev = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000723 .read_resources = pci_dev_read_resources,
724 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000725 .enable_resources = pci_dev_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000726 .init = pci_dev_init,
727 .scan_bus = 0,
728 .enable = 0,
729 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000730};
Li-Ta Loe5266692004-03-23 21:28:05 +0000731
732/** Default device operations for PCI bridges */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000733static struct pci_operations pci_bus_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000734 .set_subsystem = 0,
735};
Li-Ta Lo883b8792005-01-10 23:16:22 +0000736
Eric Biederman8ca8d762003-04-22 19:02:15 +0000737struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000738 .read_resources = pci_bus_read_resources,
739 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000740 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000741 .init = 0,
742 .scan_bus = pci_scan_bridge,
743 .enable = 0,
744 .reset_bus = pci_bus_reset,
745 .ops_pci = &pci_bus_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000746};
Li-Ta Loe5266692004-03-23 21:28:05 +0000747
748/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000749 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000750 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000751 * This function is a heuristic to detect which type of bus is downstream
752 * of a PCI-to-PCI bridge. This functions by looking for various capability
753 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
754 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000755 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000756 * When only a PCI-Express capability is found the type is examined to see
757 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000758 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000759 * @param dev Pointer to the device structure of the bridge.
760 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000761 */
762static struct device_operations *get_pci_bridge_ops(device_t dev)
763{
Patrick Georgie1667822012-05-05 15:29:32 +0200764#if CONFIG_PCIX_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800765 unsigned int pcixpos;
766 pcixpos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
767 if (pcixpos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000768 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000769 return &default_pcix_ops_bus;
770 }
771#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200772#if CONFIG_AGP_PLUGIN_SUPPORT
Uwe Hermanne4870472010-11-04 23:23:47 +0000773 /* How do I detect a PCI to AGP bridge? */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000774#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200775#if CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800776 unsigned int htpos = 0;
777 while ((htpos = pci_find_next_capability(dev, PCI_CAP_ID_HT, htpos))) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000778 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800779 flags = pci_read_config16(dev, htpos + PCI_CAP_FLAGS);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000780 if ((flags >> 13) == 1) {
781 /* Host or Secondary Interface */
Uwe Hermanne4870472010-11-04 23:23:47 +0000782 printk(BIOS_DEBUG, "%s subordinate bus HT\n",
783 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000784 return &default_ht_ops_bus;
785 }
786 }
787#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200788#if CONFIG_PCIEXP_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800789 unsigned int pciexpos;
790 pciexpos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
791 if (pciexpos) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000792 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800793 flags = pci_read_config16(dev, pciexpos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000794 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000795 case PCI_EXP_TYPE_ROOT_PORT:
796 case PCI_EXP_TYPE_UPSTREAM:
797 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000798 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000799 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000800 return &default_pciexp_ops_bus;
801 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +0000802 printk(BIOS_DEBUG, "%s subordinate PCI\n",
803 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000804 return &default_pci_ops_bus;
805 default:
806 break;
807 }
808 }
809#endif
810 return &default_pci_ops_bus;
811}
812
813/**
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700814 * Check if a device id matches a PCI driver entry.
815 *
816 * The driver entry can either point at a zero terminated array of acceptable
817 * device IDs, or include a single device ID.
818 *
819 * @driver pointer to the PCI driver entry being checked
820 * @device_id PCI device ID of the device being matched
821 */
822static int device_id_match(struct pci_driver *driver, unsigned short device_id)
823{
824 if (driver->devices) {
825 unsigned short check_id;
826 const unsigned short *device_list = driver->devices;
827 while ((check_id = *device_list++) != 0)
828 if (check_id == device_id)
829 return 1;
830 }
831
832 return (driver->device == device_id);
833}
834
835/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000836 * Set up PCI device operation.
837 *
838 * Check if it already has a driver. If not, use find_device_operations(),
839 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +0000840 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000841 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +0000842 * @see pci_drivers
843 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000844static void set_pci_ops(struct device *dev)
845{
846 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +0000847
Uwe Hermanne4870472010-11-04 23:23:47 +0000848 if (dev->ops)
849 return;
850
851 /*
852 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +0000853 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000854 */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000855 for (driver = &pci_drivers[0]; driver != &epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000856 if ((driver->vendor == dev->vendor) &&
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700857 device_id_match(driver, dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +0000858 dev->ops = (struct device_operations *)driver->ops;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000859 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000860 dev_path(dev), driver->vendor, driver->device,
861 (driver->ops->scan_bus ? "bus " : ""));
Eric Biederman5899fd82003-04-24 06:25:08 +0000862 return;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000863 }
864 }
Li-Ta Loe5266692004-03-23 21:28:05 +0000865
Uwe Hermanne4870472010-11-04 23:23:47 +0000866 /* If I don't have a specific driver use the default operations. */
867 switch (dev->hdr_type & 0x7f) { /* Header type */
868 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +0000869 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
870 goto bad;
871 dev->ops = &default_pci_ops_dev;
872 break;
873 case PCI_HEADER_TYPE_BRIDGE:
874 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
875 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000876 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000877 break;
Patrick Georgie1667822012-05-05 15:29:32 +0200878#if CONFIG_CARDBUS_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000879 case PCI_HEADER_TYPE_CARDBUS:
880 dev->ops = &default_cardbus_ops_bus;
881 break;
882#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000883default:
884bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000885 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000886 printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "
887 "header type %02x, ignoring.\n", dev_path(dev),
888 dev->vendor, dev->device,
889 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +0000890 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000891 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000892}
893
894/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000895 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +0000896 *
897 * Given a linked list of PCI device structures and a devfn number, find the
Li-Ta Lo3a812852004-12-03 22:39:34 +0000898 * device structure correspond to the devfn, if present. This function also
899 * removes the device structure from the linked list.
Li-Ta Loe5266692004-03-23 21:28:05 +0000900 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000901 * @param list The device structure list.
902 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000903 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +0000904 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000905 */
Eric Biedermanb78c1972004-10-14 20:54:17 +0000906static struct device *pci_scan_get_dev(struct device **list, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000907{
Eric Biedermanb78c1972004-10-14 20:54:17 +0000908 struct device *dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000909
Eric Biedermanb78c1972004-10-14 20:54:17 +0000910 dev = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000911 for (; *list; list = &(*list)->sibling) {
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000912 if ((*list)->path.type != DEVICE_PATH_PCI) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000913 printk(BIOS_ERR, "child %s not a PCI device\n",
914 dev_path(*list));
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000915 continue;
916 }
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000917 if ((*list)->path.pci.devfn == devfn) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000918 /* Unlink from the list. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000919 dev = *list;
920 *list = (*list)->sibling;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000921 dev->sibling = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000922 break;
923 }
924 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000925
Uwe Hermanne4870472010-11-04 23:23:47 +0000926 /*
927 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +0000928 * bus. When the list of devices was formed we removed all of the
929 * parents children, and now we are interleaving static and dynamic
930 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000931 */
Eric Biedermane9a271e32003-09-02 03:36:25 +0000932 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000933 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +0000934
Myles Watson29cc9ed2009-07-02 18:56:24 +0000935 /* Find the last child of our parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000936 for (child = dev->bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000937 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +0000938
Myles Watson29cc9ed2009-07-02 18:56:24 +0000939 /* Place the device on the list of children of its parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000940 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000941 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000942 else
Eric Biedermane9a271e32003-09-02 03:36:25 +0000943 dev->bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000944 }
945
Eric Biederman8ca8d762003-04-22 19:02:15 +0000946 return dev;
947}
948
Myles Watson032a9652009-05-11 22:24:53 +0000949/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000950 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +0000951 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000952 * Determine the existence of a given PCI device. Allocate a new struct device
953 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000954 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000955 * @param dev Pointer to the dev structure.
956 * @param bus Pointer to the bus structure.
957 * @param devfn A device/function number to look at.
958 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000959 */
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000960device_t pci_probe_dev(device_t dev, struct bus *bus, unsigned devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000961{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000962 u32 id, class;
963 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000964
Myles Watson29cc9ed2009-07-02 18:56:24 +0000965 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000966 if (!dev) {
967 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +0000968
Myles Watson29cc9ed2009-07-02 18:56:24 +0000969 dummy.bus = bus;
970 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000971 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +0000972
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000973 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000974 /*
975 * Have we found something? Some broken boards return 0 if a
976 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000977 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000978 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +0000979 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000980
Stefan Reinauer7355c752010-04-02 16:30:25 +0000981 if ((id == 0x00000000) || (id == 0x0000ffff) ||
982 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000983 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
984 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000985 return NULL;
986 }
987 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000988 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +0000989 /*
990 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +0000991 * specific operations this operations we will disable the
992 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +0000993 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000994 * This is geared toward devices that have subfunctions
995 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +0000996 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000997 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +0000998 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000999 */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001000 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001001 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001002 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +00001003
Myles Watson29cc9ed2009-07-02 18:56:24 +00001004 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001005 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +00001006
Uwe Hermanne4870472010-11-04 23:23:47 +00001007 /*
1008 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +00001009 * this is because we have already disabled the device. But
1010 * this also handles optional devices that may not always
1011 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001012 */
1013 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001014 if ((id == 0xffffffff) || (id == 0x00000000) ||
1015 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001016 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001017 printk(BIOS_INFO, "PCI: Static device %s not "
1018 "found, disabling it.\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001019 dev->enabled = 0;
1020 }
1021 return dev;
1022 }
1023 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001024
Myles Watson29cc9ed2009-07-02 18:56:24 +00001025 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001026 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
1027 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +00001028
Myles Watson29cc9ed2009-07-02 18:56:24 +00001029 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001030 dev->vendor = id & 0xffff;
1031 dev->device = (id >> 16) & 0xffff;
1032 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001033
1034 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001035 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +00001036
Myles Watson29cc9ed2009-07-02 18:56:24 +00001037 /* Architectural/System devices always need to be bus masters. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001038 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001039 dev->command |= PCI_COMMAND_MASTER;
Uwe Hermanne4870472010-11-04 23:23:47 +00001040
1041 /*
1042 * Look at the vendor and device ID, or at least the header type and
Myles Watson29cc9ed2009-07-02 18:56:24 +00001043 * class and figure out which set of configuration methods to use.
1044 * Unless we already have some PCI ops.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001045 */
1046 set_pci_ops(dev);
1047
Myles Watson29cc9ed2009-07-02 18:56:24 +00001048 /* Now run the magic enable/disable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001049 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001050 dev->ops->enable(dev);
Myles Watson032a9652009-05-11 22:24:53 +00001051
Myles Watson29cc9ed2009-07-02 18:56:24 +00001052 /* Display the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001053 printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
1054 dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
1055 dev->ops ? "" : " No operations");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001056
1057 return dev;
1058}
1059
Myles Watson032a9652009-05-11 22:24:53 +00001060/**
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001061 * Test for match between romstage and ramstage device instance.
1062 *
1063 * @param dev Pointer to the device structure.
1064 * @param sdev Simple device model identifier, created with PCI_DEV().
1065 * @return Non-zero if bus:dev.fn of device matches.
1066 */
1067unsigned int pci_match_simple_dev(device_t dev, pci_devfn_t sdev)
1068{
1069 return dev->bus->secondary == PCI_DEV2SEGBUS(sdev) &&
1070 dev->path.pci.devfn == PCI_DEV2DEVFN(sdev);
1071}
1072
1073/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001074 * Scan a PCI bus.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001075 *
Li-Ta Loe5266692004-03-23 21:28:05 +00001076 * Determine the existence of devices and bridges on a PCI bus. If there are
1077 * bridges on the bus, recursively scan the buses behind the bridges.
1078 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001079 * This function is the default scan_bus() method for the root device
1080 * 'dev_root'.
1081 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001082 * @param bus Pointer to the bus structure.
1083 * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1084 * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
1085 * @param max Current bus number.
1086 * @return The maximum bus number found, after scanning all subordinate busses.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001087 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001088unsigned int pci_scan_bus(struct bus *bus, unsigned min_devfn,
1089 unsigned max_devfn, unsigned int max)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001090{
1091 unsigned int devfn;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001092 struct device *old_devices;
1093 struct device *child;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001094
Stefan Reinauer08670622009-06-30 15:17:49 +00001095#if CONFIG_PCI_BUS_SEGN_BITS
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001096 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %04x:%02x\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001097 bus->secondary >> 8, bus->secondary & 0xff);
Yinghai Lu5f9624d2006-10-04 22:56:21 +00001098#else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001099 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %02x\n", bus->secondary);
Yinghai Lu5f9624d2006-10-04 22:56:21 +00001100#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +00001101
Uwe Hermanne4870472010-11-04 23:23:47 +00001102 /* Maximum sane devfn is 0xFF. */
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001103 if (max_devfn > 0xff) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001104 printk(BIOS_ERR, "PCI: pci_scan_bus limits devfn %x - "
1105 "devfn %x\n", min_devfn, max_devfn);
1106 printk(BIOS_ERR, "PCI: pci_scan_bus upper limit too big. "
1107 "Using 0xff.\n");
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001108 max_devfn=0xff;
1109 }
1110
Eric Biederman8ca8d762003-04-22 19:02:15 +00001111 old_devices = bus->children;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001112 bus->children = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001113
1114 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001115
1116 /*
1117 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001118 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001119 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001120 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Myles Watson29cc9ed2009-07-02 18:56:24 +00001121 struct device *dev;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001122
Uwe Hermanne4870472010-11-04 23:23:47 +00001123 /* First thing setup the device structure. */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001124 dev = pci_scan_get_dev(&old_devices, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001125
Myles Watson29cc9ed2009-07-02 18:56:24 +00001126 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001127 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001128
Uwe Hermanne4870472010-11-04 23:23:47 +00001129 /*
1130 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001131 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001132 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001133 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001134 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001135 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001136 devfn += 0x07;
1137 }
1138 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001139
Eric Biederman8ca8d762003-04-22 19:02:15 +00001140 post_code(0x25);
1141
Uwe Hermanne4870472010-11-04 23:23:47 +00001142 /*
1143 * Warn if any leftover static devices are are found.
1144 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001145 */
1146 if (old_devices) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001147 device_t left;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001148 printk(BIOS_WARNING, "PCI: Left over static devices:\n");
Uwe Hermanne4870472010-11-04 23:23:47 +00001149 for (left = old_devices; left; left = left->sibling)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001150 printk(BIOS_WARNING, "%s\n", dev_path(left));
Uwe Hermanne4870472010-11-04 23:23:47 +00001151
1152 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001153 }
1154
Uwe Hermanne4870472010-11-04 23:23:47 +00001155 /*
1156 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001157 * scan the bus behind that child.
1158 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001159 for (child = bus->children; child; child = child->sibling)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001160 max = scan_bus(child, max);
Li-Ta Loe5266692004-03-23 21:28:05 +00001161
Uwe Hermanne4870472010-11-04 23:23:47 +00001162 /*
1163 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001164 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001165 * Return how far we've got finding sub-buses.
1166 */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001167 printk(BIOS_DEBUG, "PCI: pci_scan_bus returning with max=%03x\n", max);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001168 post_code(0x55);
1169 return max;
1170}
1171
Li-Ta Loe5266692004-03-23 21:28:05 +00001172/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001173 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001174 *
1175 * Determine the existence of buses behind the bridge. Set up the bridge
1176 * according to the result of the scan.
1177 *
1178 * This function is the default scan_bus() method for PCI bridge devices.
1179 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001180 * @param dev Pointer to the bridge device.
1181 * @param max The highest bus number assigned up to now.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001182 * @param do_scan_bus TODO
Myles Watson29cc9ed2009-07-02 18:56:24 +00001183 * @return The maximum bus number found, after scanning all subordinate buses.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001184 */
Myles Watson032a9652009-05-11 22:24:53 +00001185unsigned int do_pci_scan_bridge(struct device *dev, unsigned int max,
Myles Watson29cc9ed2009-07-02 18:56:24 +00001186 unsigned int (*do_scan_bus) (struct bus * bus,
1187 unsigned min_devfn,
1188 unsigned max_devfn,
1189 unsigned int max))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001190{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001191 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001192 u32 buses;
1193 u16 cr;
Eric Biederman83b991a2003-10-11 06:20:25 +00001194
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001195 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001196
Myles Watson894a3472010-06-09 22:41:35 +00001197 if (dev->link_list == NULL) {
1198 struct bus *link;
1199 link = malloc(sizeof(*link));
1200 if (link == NULL)
1201 die("Couldn't allocate a link!\n");
1202 memset(link, 0, sizeof(*link));
1203 link->dev = dev;
1204 dev->link_list = link;
1205 }
1206
1207 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001208
Uwe Hermanne4870472010-11-04 23:23:47 +00001209 /*
1210 * Set up the primary, secondary and subordinate bus numbers. We have
Eric Biederman8ca8d762003-04-22 19:02:15 +00001211 * no idea how many buses are behind this bridge yet, so we set the
Myles Watson032a9652009-05-11 22:24:53 +00001212 * subordinate bus number to 0xff for the moment.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001213 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001214 bus->secondary = ++max;
1215 bus->subordinate = 0xff;
Li-Ta Loe5266692004-03-23 21:28:05 +00001216
Eric Biederman8ca8d762003-04-22 19:02:15 +00001217 /* Clear all status bits and turn off memory, I/O and master enables. */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001218 cr = pci_read_config16(dev, PCI_COMMAND);
1219 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1220 pci_write_config16(dev, PCI_STATUS, 0xffff);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001221
Uwe Hermanne4870472010-11-04 23:23:47 +00001222 /*
1223 * Read the existing primary/secondary/subordinate bus
Eric Biedermanb78c1972004-10-14 20:54:17 +00001224 * number configuration.
1225 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001226 buses = pci_read_config32(dev, PCI_PRIMARY_BUS);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001227
Uwe Hermanne4870472010-11-04 23:23:47 +00001228 /*
1229 * Configure the bus numbers for this bridge: the configuration
Eric Biederman8ca8d762003-04-22 19:02:15 +00001230 * transactions will not be propagated by the bridge if it is not
Eric Biedermanb78c1972004-10-14 20:54:17 +00001231 * correctly configured.
1232 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001233 buses &= 0xff000000;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001234 buses |= (((unsigned int)(dev->bus->secondary) << 0) |
1235 ((unsigned int)(bus->secondary) << 8) |
1236 ((unsigned int)(bus->subordinate) << 16));
Eric Biedermane9a271e32003-09-02 03:36:25 +00001237 pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001238
Uwe Hermanne4870472010-11-04 23:23:47 +00001239 /* Now we can scan all subordinate buses (those behind the bridge). */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001240 max = do_scan_bus(bus, 0x00, 0xff, max);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001241
Uwe Hermanne4870472010-11-04 23:23:47 +00001242 /*
1243 * We know the number of buses behind this bridge. Set the subordinate
Eric Biedermanb78c1972004-10-14 20:54:17 +00001244 * bus number to its real value.
1245 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001246 bus->subordinate = max;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001247 buses = (buses & 0xff00ffff) | ((unsigned int)(bus->subordinate) << 16);
Eric Biedermane9a271e32003-09-02 03:36:25 +00001248 pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
1249 pci_write_config16(dev, PCI_COMMAND, cr);
Myles Watson032a9652009-05-11 22:24:53 +00001250
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001251 printk(BIOS_SPEW, "%s returns max %d\n", __func__, max);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001252 return max;
1253}
Li-Ta Loe5266692004-03-23 21:28:05 +00001254
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001255/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001256 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001257 *
1258 * Determine the existence of buses behind the bridge. Set up the bridge
1259 * according to the result of the scan.
1260 *
1261 * This function is the default scan_bus() method for PCI bridge devices.
1262 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001263 * @param dev Pointer to the bridge device.
1264 * @param max The highest bus number assigned up to now.
1265 * @return The maximum bus number found, after scanning all subordinate buses.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001266 */
1267unsigned int pci_scan_bridge(struct device *dev, unsigned int max)
1268{
1269 return do_pci_scan_bridge(dev, max, pci_scan_bus);
1270}
1271
Myles Watson29cc9ed2009-07-02 18:56:24 +00001272/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001273 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001274 *
1275 * This function is the default scan_bus() method for PCI domains.
1276 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001277 * @param dev Pointer to the domain.
1278 * @param max The highest bus number assigned up to now.
1279 * @return The maximum bus number found, after scanning all subordinate busses.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001280 */
1281unsigned int pci_domain_scan_bus(device_t dev, unsigned int max)
1282{
Myles Watson894a3472010-06-09 22:41:35 +00001283 max = pci_scan_bus(dev->link_list, PCI_DEVFN(0, 0), 0xff, max);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001284 return max;
1285}
1286
Patrick Georgie1667822012-05-05 15:29:32 +02001287#if CONFIG_PC80_SYSTEM
Myles Watson29cc9ed2009-07-02 18:56:24 +00001288/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001289 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001290 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001291 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001292 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001293 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001294 *
1295 * This function should be called for each PCI slot in your system.
1296 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001297 * @param bus Pointer to the bus structure.
1298 * @param slot TODO
1299 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1300 * of this slot. The particular IRQ #s that are passed in depend on the
1301 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001302 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001303void pci_assign_irqs(unsigned bus, unsigned slot,
Uwe Hermanne4870472010-11-04 23:23:47 +00001304 const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001305{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001306 unsigned int funct;
1307 device_t pdev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001308 u8 line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001309
Uwe Hermanne4870472010-11-04 23:23:47 +00001310 /* Each slot may contain up to eight functions. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001311 for (funct = 0; funct < 8; funct++) {
1312 pdev = dev_find_slot(bus, (slot << 3) + funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001313
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001314 if (!pdev)
1315 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001316
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001317 line = pci_read_config8(pdev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001318
Uwe Hermanne4870472010-11-04 23:23:47 +00001319 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001320 if ((line < 1) || (line > 4))
1321 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001322
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001323 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001324
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001325 printk(BIOS_DEBUG, "Assigning IRQ %d to %d:%x.%d\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001326 irq, bus, slot, funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001327
Stefan Reinauer14e22772010-04-27 06:56:47 +00001328 pci_write_config8(pdev, PCI_INTERRUPT_LINE,
Uwe Hermanne4870472010-11-04 23:23:47 +00001329 pIntAtoD[line - 1]);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001330
1331#ifdef PARANOID_IRQ_ASSIGNMENTS
Myles Watson17aeeca2009-10-07 18:41:08 +00001332 irq = pci_read_config8(pdev, PCI_INTERRUPT_LINE);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001333 printk(BIOS_DEBUG, " Readback = %d\n", irq);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001334#endif
1335
Patrick Georgie1667822012-05-05 15:29:32 +02001336#if CONFIG_PC80_SYSTEM
Uwe Hermanne4870472010-11-04 23:23:47 +00001337 /* Change to level triggered. */
1338 i8259_configure_irq_trigger(pIntAtoD[line - 1],
1339 IRQ_LEVEL_TRIGGERED);
Stefan Reinauer5fb62162010-12-16 23:52:04 +00001340#endif
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001341 }
1342}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001343#endif