blob: ca3604611df8cbc9f3e5267344453065cc7fbafc [file] [log] [blame]
Eric Biederman8ca8d762003-04-22 19:02:15 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Uwe Hermannb80dbf02007-04-22 19:08:13 +00003 *
4 * It was originally based on the Linux kernel (drivers/pci/pci.c).
5 *
6 * Modifications are:
7 * Copyright (C) 2003-2004 Linux Networx
8 * (Written by Eric Biederman <ebiederman@lnxi.com> for Linux Networx)
9 * Copyright (C) 2003-2006 Ronald G. Minnich <rminnich@gmail.com>
10 * Copyright (C) 2004-2005 Li-Ta Lo <ollie@lanl.gov>
11 * Copyright (C) 2005-2006 Tyan
12 * (Written by Yinghai Lu <yhlu@tyan.com> for Tyan)
Patrick Georgi16cdbb22009-04-21 20:14:31 +000013 * Copyright (C) 2005-2009 coresystems GmbH
14 * (Written by Stefan Reinauer <stepan@coresystems.de> for coresystems GmbH)
Uwe Hermannb80dbf02007-04-22 19:08:13 +000015 */
16
17/*
Myles Watson29cc9ed2009-07-02 18:56:24 +000018 * PCI Bus Services, see include/linux/pci.h for further explanation.
Eric Biederman8ca8d762003-04-22 19:02:15 +000019 *
Myles Watson29cc9ed2009-07-02 18:56:24 +000020 * Copyright 1993 -- 1997 Drew Eckhardt, Frederic Potter,
21 * David Mosberger-Tang
Eric Biederman8ca8d762003-04-22 19:02:15 +000022 *
Myles Watson29cc9ed2009-07-02 18:56:24 +000023 * Copyright 1997 -- 1999 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
Eric Biederman8ca8d762003-04-22 19:02:15 +000024 */
25
Kyösti Mälkki580e5642014-05-01 16:31:34 +030026#include <kconfig.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000027#include <console/console.h>
28#include <stdlib.h>
29#include <stdint.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000030#include <string.h>
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +000031#include <arch/io.h>
Eric Biederman5899fd82003-04-24 06:25:08 +000032#include <device/device.h>
33#include <device/pci.h>
34#include <device/pci_ids.h>
Eric Biederman03acab62004-10-14 21:25:53 +000035#include <delay.h>
Patrick Georgie1667822012-05-05 15:29:32 +020036#if CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000037#include <device/hypertransport.h>
38#endif
Patrick Georgie1667822012-05-05 15:29:32 +020039#if CONFIG_PCIX_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000040#include <device/pcix.h>
41#endif
Patrick Georgie1667822012-05-05 15:29:32 +020042#if CONFIG_PCIEXP_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000043#include <device/pciexp.h>
44#endif
Patrick Georgie1667822012-05-05 15:29:32 +020045#if CONFIG_AGP_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000046#include <device/agp.h>
47#endif
Patrick Georgie1667822012-05-05 15:29:32 +020048#if CONFIG_CARDBUS_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000049#include <device/cardbus.h>
50#endif
Patrick Georgie1667822012-05-05 15:29:32 +020051#if CONFIG_PC80_SYSTEM
Stefan Reinauer4d933dd2009-07-21 21:36:41 +000052#include <pc80/i8259.h>
53#endif
Stefan Reinauer0a500842011-09-23 10:33:58 -070054#if CONFIG_HAVE_ACPI_RESUME && !CONFIG_S3_VGA_ROM_RUN
55#include <arch/acpi.h>
56#endif
Stefan Reinauer74a0efe2012-03-30 17:10:49 -070057#if CONFIG_CHROMEOS
58#include <vendorcode/google/chromeos/chromeos.h>
59#endif
Eric Biederman03acab62004-10-14 21:25:53 +000060
Myles Watson29cc9ed2009-07-02 18:56:24 +000061u8 pci_moving_config8(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000062{
Myles Watson29cc9ed2009-07-02 18:56:24 +000063 u8 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000064
Eric Biederman03acab62004-10-14 21:25:53 +000065 value = pci_read_config8(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000066
Eric Biederman03acab62004-10-14 21:25:53 +000067 pci_write_config8(dev, reg, 0xff);
68 ones = pci_read_config8(dev, reg);
69
70 pci_write_config8(dev, reg, 0x00);
71 zeroes = pci_read_config8(dev, reg);
72
73 pci_write_config8(dev, reg, value);
74
75 return ones ^ zeroes;
76}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +000077
Uwe Hermanne4870472010-11-04 23:23:47 +000078u16 pci_moving_config16(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000079{
Myles Watson29cc9ed2009-07-02 18:56:24 +000080 u16 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000081
Eric Biederman03acab62004-10-14 21:25:53 +000082 value = pci_read_config16(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000083
Eric Biederman03acab62004-10-14 21:25:53 +000084 pci_write_config16(dev, reg, 0xffff);
85 ones = pci_read_config16(dev, reg);
86
87 pci_write_config16(dev, reg, 0x0000);
88 zeroes = pci_read_config16(dev, reg);
89
90 pci_write_config16(dev, reg, value);
91
92 return ones ^ zeroes;
93}
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +000094
Uwe Hermanne4870472010-11-04 23:23:47 +000095u32 pci_moving_config32(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000096{
Myles Watson29cc9ed2009-07-02 18:56:24 +000097 u32 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000098
Eric Biederman03acab62004-10-14 21:25:53 +000099 value = pci_read_config32(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +0000100
Eric Biederman03acab62004-10-14 21:25:53 +0000101 pci_write_config32(dev, reg, 0xffffffff);
102 ones = pci_read_config32(dev, reg);
103
104 pci_write_config32(dev, reg, 0x00000000);
105 zeroes = pci_read_config32(dev, reg);
106
107 pci_write_config32(dev, reg, value);
108
109 return ones ^ zeroes;
110}
111
Myles Watson29cc9ed2009-07-02 18:56:24 +0000112/**
113 * Given a device, a capability type, and a last position, return the next
114 * matching capability. Always start at the head of the list.
115 *
116 * @param dev Pointer to the device structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000117 * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000118 * @param last Location of the PCI capability register to start from.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000119 * @return The next matching capability.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000120 */
121unsigned pci_find_next_capability(struct device *dev, unsigned cap,
122 unsigned last)
Eric Biederman03acab62004-10-14 21:25:53 +0000123{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +0000124 unsigned pos = 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000125 u16 status;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000126 unsigned reps = 48;
Stefan Reinauer4d933dd2009-07-21 21:36:41 +0000127
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000128 status = pci_read_config16(dev, PCI_STATUS);
Uwe Hermanne4870472010-11-04 23:23:47 +0000129 if (!(status & PCI_STATUS_CAP_LIST))
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000130 return 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000131
Myles Watson29cc9ed2009-07-02 18:56:24 +0000132 switch (dev->hdr_type & 0x7f) {
Eric Biederman03acab62004-10-14 21:25:53 +0000133 case PCI_HEADER_TYPE_NORMAL:
134 case PCI_HEADER_TYPE_BRIDGE:
135 pos = PCI_CAPABILITY_LIST;
136 break;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000137 case PCI_HEADER_TYPE_CARDBUS:
138 pos = PCI_CB_CAPABILITY_LIST;
139 break;
140 default:
141 return 0;
Eric Biederman03acab62004-10-14 21:25:53 +0000142 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000143
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000144 pos = pci_read_config8(dev, pos);
Uwe Hermanne4870472010-11-04 23:23:47 +0000145 while (reps-- && (pos >= 0x40)) { /* Loop through the linked list. */
Eric Biederman03acab62004-10-14 21:25:53 +0000146 int this_cap;
Uwe Hermanne4870472010-11-04 23:23:47 +0000147
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000148 pos &= ~3;
Eric Biederman03acab62004-10-14 21:25:53 +0000149 this_cap = pci_read_config8(dev, pos + PCI_CAP_LIST_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000150 printk(BIOS_SPEW, "Capability: type 0x%02x @ 0x%02x\n",
151 this_cap, pos);
152 if (this_cap == 0xff)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000153 break;
Uwe Hermanne4870472010-11-04 23:23:47 +0000154
155 if (!last && (this_cap == cap))
Eric Biederman03acab62004-10-14 21:25:53 +0000156 return pos;
Uwe Hermanne4870472010-11-04 23:23:47 +0000157
158 if (last == pos)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000159 last = 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000160
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000161 pos = pci_read_config8(dev, pos + PCI_CAP_LIST_NEXT);
Eric Biederman03acab62004-10-14 21:25:53 +0000162 }
163 return 0;
164}
165
Myles Watson29cc9ed2009-07-02 18:56:24 +0000166/**
167 * Given a device, and a capability type, return the next matching
168 * capability. Always start at the head of the list.
169 *
170 * @param dev Pointer to the device structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000171 * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
172 * @return The next matching capability.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000173 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000174unsigned pci_find_capability(device_t dev, unsigned cap)
175{
176 return pci_find_next_capability(dev, cap, 0);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000177}
178
Myles Watson29cc9ed2009-07-02 18:56:24 +0000179/**
180 * Given a device and register, read the size of the BAR for that register.
181 *
182 * @param dev Pointer to the device structure.
183 * @param index Address of the PCI configuration register.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000184 * @return TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +0000185 */
Eric Biederman03acab62004-10-14 21:25:53 +0000186struct resource *pci_get_resource(struct device *dev, unsigned long index)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000187{
Eric Biederman5cd81732004-03-11 15:01:31 +0000188 struct resource *resource;
Eric Biederman03acab62004-10-14 21:25:53 +0000189 unsigned long value, attr;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000190 resource_t moving, limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000191
Myles Watson29cc9ed2009-07-02 18:56:24 +0000192 /* Initialize the resources to nothing. */
Eric Biederman03acab62004-10-14 21:25:53 +0000193 resource = new_resource(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000194
Myles Watson29cc9ed2009-07-02 18:56:24 +0000195 /* Get the initial value. */
Eric Biederman03acab62004-10-14 21:25:53 +0000196 value = pci_read_config32(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000197
Myles Watson29cc9ed2009-07-02 18:56:24 +0000198 /* See which bits move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000199 moving = pci_moving_config32(dev, index);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000200
Myles Watson29cc9ed2009-07-02 18:56:24 +0000201 /* Initialize attr to the bits that do not move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000202 attr = value & ~moving;
203
Myles Watson29cc9ed2009-07-02 18:56:24 +0000204 /* If it is a 64bit resource look at the high half as well. */
Eric Biederman03acab62004-10-14 21:25:53 +0000205 if (((attr & PCI_BASE_ADDRESS_SPACE_IO) == 0) &&
Myles Watson29cc9ed2009-07-02 18:56:24 +0000206 ((attr & PCI_BASE_ADDRESS_MEM_LIMIT_MASK) ==
207 PCI_BASE_ADDRESS_MEM_LIMIT_64)) {
208 /* Find the high bits that move. */
209 moving |=
210 ((resource_t) pci_moving_config32(dev, index + 4)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000211 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000212
Myles Watson032a9652009-05-11 22:24:53 +0000213 /* Find the resource constraints.
Eric Biederman03acab62004-10-14 21:25:53 +0000214 * Start by finding the bits that move. From there:
215 * - Size is the least significant bit of the bits that move.
216 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000217 * See PCI Spec 6.2.5.1.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000218 */
Eric Biederman03acab62004-10-14 21:25:53 +0000219 limit = 0;
220 if (moving) {
221 resource->size = 1;
222 resource->align = resource->gran = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000223 while (!(moving & resource->size)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000224 resource->size <<= 1;
225 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000226 resource->gran += 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000227 }
228 resource->limit = limit = moving | (resource->size - 1);
229 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000230
Uwe Hermanne4870472010-11-04 23:23:47 +0000231 /*
232 * Some broken hardware has read-only registers that do not
Eric Biederman03acab62004-10-14 21:25:53 +0000233 * really size correctly.
Uwe Hermanne4870472010-11-04 23:23:47 +0000234 *
235 * Example: the Acer M7229 has BARs 1-4 normally read-only,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000236 * so BAR1 at offset 0x10 reads 0x1f1. If you size that register
Uwe Hermanne4870472010-11-04 23:23:47 +0000237 * by writing 0xffffffff to it, it will read back as 0x1f1 -- which
238 * is a violation of the spec.
239 *
240 * We catch this case and ignore it by observing which bits move.
241 *
242 * This also catches the common case of unimplemented registers
Eric Biederman03acab62004-10-14 21:25:53 +0000243 * that always read back as 0.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000244 */
Eric Biederman03acab62004-10-14 21:25:53 +0000245 if (moving == 0) {
246 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000247 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
248 "read-only ignoring it\n",
249 dev_path(dev), index, value);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000250 }
251 resource->flags = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000252 } else if (attr & PCI_BASE_ADDRESS_SPACE_IO) {
253 /* An I/O mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000254 attr &= PCI_BASE_ADDRESS_IO_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000255 resource->flags |= IORESOURCE_IO;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000256 /* I don't want to deal with 32bit I/O resources. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000257 resource->limit = 0xffff;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000258 } else {
259 /* A Memory mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000260 attr &= PCI_BASE_ADDRESS_MEM_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000261 resource->flags |= IORESOURCE_MEM;
Uwe Hermanne4870472010-11-04 23:23:47 +0000262 if (attr & PCI_BASE_ADDRESS_MEM_PREFETCH)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000263 resource->flags |= IORESOURCE_PREFETCH;
Eric Biederman03acab62004-10-14 21:25:53 +0000264 attr &= PCI_BASE_ADDRESS_MEM_LIMIT_MASK;
265 if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_32) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000266 /* 32bit limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000267 resource->limit = 0xffffffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000268 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_1M) {
269 /* 1MB limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000270 resource->limit = 0x000fffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000271 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_64) {
272 /* 64bit limit. */
Eric Biederman03acab62004-10-14 21:25:53 +0000273 resource->limit = 0xffffffffffffffffULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000274 resource->flags |= IORESOURCE_PCI64;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000275 } else {
276 /* Invalid value. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000277 printk(BIOS_ERR, "Broken BAR with value %lx\n", attr);
278 printk(BIOS_ERR, " on dev %s at index %02lx\n",
Myles Watson29cc9ed2009-07-02 18:56:24 +0000279 dev_path(dev), index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000280 resource->flags = 0;
281 }
282 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000283
Myles Watson29cc9ed2009-07-02 18:56:24 +0000284 /* Don't let the limit exceed which bits can move. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000285 if (resource->limit > limit)
Eric Biederman03acab62004-10-14 21:25:53 +0000286 resource->limit = limit;
Eric Biederman03acab62004-10-14 21:25:53 +0000287
Eric Biederman5cd81732004-03-11 15:01:31 +0000288 return resource;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000289}
290
Myles Watson29cc9ed2009-07-02 18:56:24 +0000291/**
292 * Given a device and an index, read the size of the BAR for that register.
293 *
294 * @param dev Pointer to the device structure.
295 * @param index Address of the PCI configuration register.
296 */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000297static void pci_get_rom_resource(struct device *dev, unsigned long index)
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000298{
299 struct resource *resource;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000300 unsigned long value;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000301 resource_t moving;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000302
Myles Watson29cc9ed2009-07-02 18:56:24 +0000303 /* Initialize the resources to nothing. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000304 resource = new_resource(dev, index);
305
Myles Watson29cc9ed2009-07-02 18:56:24 +0000306 /* Get the initial value. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000307 value = pci_read_config32(dev, index);
308
Myles Watson29cc9ed2009-07-02 18:56:24 +0000309 /* See which bits move. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000310 moving = pci_moving_config32(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000311
312 /* Clear the Enable bit. */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000313 moving = moving & ~PCI_ROM_ADDRESS_ENABLE;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000314
Myles Watson032a9652009-05-11 22:24:53 +0000315 /* Find the resource constraints.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000316 * Start by finding the bits that move. From there:
317 * - Size is the least significant bit of the bits that move.
318 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000319 * See PCI Spec 6.2.5.1.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000320 */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000321 if (moving) {
322 resource->size = 1;
323 resource->align = resource->gran = 0;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000324 while (!(moving & resource->size)) {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000325 resource->size <<= 1;
326 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000327 resource->gran += 1;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000328 }
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000329 resource->limit = moving | (resource->size - 1);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000330 resource->flags |= IORESOURCE_MEM | IORESOURCE_READONLY;
331 } else {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000332 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000333 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
334 "read-only ignoring it\n",
335 dev_path(dev), index, value);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000336 }
337 resource->flags = 0;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000338 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000339 compact_resources(dev);
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000340}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000341
Myles Watson29cc9ed2009-07-02 18:56:24 +0000342/**
343 * Read the base address registers for a given device.
344 *
345 * @param dev Pointer to the dev structure.
346 * @param howmany How many registers to read (6 for device, 2 for bridge).
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000347 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000348static void pci_read_bases(struct device *dev, unsigned int howmany)
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000349{
350 unsigned long index;
351
Myles Watson29cc9ed2009-07-02 18:56:24 +0000352 for (index = PCI_BASE_ADDRESS_0;
353 (index < PCI_BASE_ADDRESS_0 + (howmany << 2));) {
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000354 struct resource *resource;
355 resource = pci_get_resource(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000356 index += (resource->flags & IORESOURCE_PCI64) ? 8 : 4;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000357 }
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000358
359 compact_resources(dev);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000360}
361
Myles Watson29cc9ed2009-07-02 18:56:24 +0000362static void pci_record_bridge_resource(struct device *dev, resource_t moving,
363 unsigned index, unsigned long type)
Eric Biederman03acab62004-10-14 21:25:53 +0000364{
Eric Biederman03acab62004-10-14 21:25:53 +0000365 struct resource *resource;
Uwe Hermanne4870472010-11-04 23:23:47 +0000366 unsigned long gran;
367 resource_t step;
368
Myles Watson29cc9ed2009-07-02 18:56:24 +0000369 resource = NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000370
371 if (!moving)
372 return;
373
374 /* Initialize the constraints on the current bus. */
375 resource = new_resource(dev, index);
376 resource->size = 0;
377 gran = 0;
378 step = 1;
379 while ((moving & step) == 0) {
380 gran += 1;
381 step <<= 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000382 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000383 resource->gran = gran;
384 resource->align = gran;
385 resource->limit = moving | (step - 1);
386 resource->flags = type | IORESOURCE_PCI_BRIDGE |
387 IORESOURCE_BRIDGE;
Eric Biederman03acab62004-10-14 21:25:53 +0000388}
389
Eric Biederman8ca8d762003-04-22 19:02:15 +0000390static void pci_bridge_read_bases(struct device *dev)
391{
Eric Biederman03acab62004-10-14 21:25:53 +0000392 resource_t moving_base, moving_limit, moving;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000393
Myles Watson29cc9ed2009-07-02 18:56:24 +0000394 /* See if the bridge I/O resources are implemented. */
395 moving_base = ((u32) pci_moving_config8(dev, PCI_IO_BASE)) << 8;
396 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000397 ((u32) pci_moving_config16(dev, PCI_IO_BASE_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000398
Myles Watson29cc9ed2009-07-02 18:56:24 +0000399 moving_limit = ((u32) pci_moving_config8(dev, PCI_IO_LIMIT)) << 8;
400 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000401 ((u32) pci_moving_config16(dev, PCI_IO_LIMIT_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000402
403 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000404
Myles Watson29cc9ed2009-07-02 18:56:24 +0000405 /* Initialize the I/O space constraints on the current bus. */
406 pci_record_bridge_resource(dev, moving, PCI_IO_BASE, IORESOURCE_IO);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000407
Myles Watson29cc9ed2009-07-02 18:56:24 +0000408 /* See if the bridge prefmem resources are implemented. */
409 moving_base =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000410 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_BASE)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000411 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000412 ((resource_t) pci_moving_config32(dev, PCI_PREF_BASE_UPPER32)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000413
Myles Watson29cc9ed2009-07-02 18:56:24 +0000414 moving_limit =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000415 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_LIMIT)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000416 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000417 ((resource_t) pci_moving_config32(dev, PCI_PREF_LIMIT_UPPER32)) << 32;
Myles Watson032a9652009-05-11 22:24:53 +0000418
Eric Biederman03acab62004-10-14 21:25:53 +0000419 moving = moving_base & moving_limit;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000420 /* Initialize the prefetchable memory constraints on the current bus. */
421 pci_record_bridge_resource(dev, moving, PCI_PREF_MEMORY_BASE,
422 IORESOURCE_MEM | IORESOURCE_PREFETCH);
Myles Watson032a9652009-05-11 22:24:53 +0000423
Myles Watson29cc9ed2009-07-02 18:56:24 +0000424 /* See if the bridge mem resources are implemented. */
425 moving_base = ((u32) pci_moving_config16(dev, PCI_MEMORY_BASE)) << 16;
426 moving_limit = ((u32) pci_moving_config16(dev, PCI_MEMORY_LIMIT)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000427
428 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000429
Myles Watson29cc9ed2009-07-02 18:56:24 +0000430 /* Initialize the memory resources on the current bus. */
431 pci_record_bridge_resource(dev, moving, PCI_MEMORY_BASE,
432 IORESOURCE_MEM);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000433
Eric Biederman5cd81732004-03-11 15:01:31 +0000434 compact_resources(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000435}
436
Eric Biederman5899fd82003-04-24 06:25:08 +0000437void pci_dev_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000438{
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000439 pci_read_bases(dev, 6);
440 pci_get_rom_resource(dev, PCI_ROM_ADDRESS);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000441}
442
Eric Biederman5899fd82003-04-24 06:25:08 +0000443void pci_bus_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000444{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000445 pci_bridge_read_bases(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000446 pci_read_bases(dev, 2);
447 pci_get_rom_resource(dev, PCI_ROM_ADDRESS1);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000448}
449
Myles Watson29cc9ed2009-07-02 18:56:24 +0000450void pci_domain_read_resources(struct device *dev)
451{
452 struct resource *res;
453
454 /* Initialize the system-wide I/O space constraints. */
455 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
456 res->limit = 0xffffUL;
457 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
458 IORESOURCE_ASSIGNED;
459
460 /* Initialize the system-wide memory resources constraints. */
461 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
462 res->limit = 0xffffffffULL;
463 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
464 IORESOURCE_ASSIGNED;
465}
466
Eric Biederman8ca8d762003-04-22 19:02:15 +0000467static void pci_set_resource(struct device *dev, struct resource *resource)
468{
Eric Biederman03acab62004-10-14 21:25:53 +0000469 resource_t base, end;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000470
Myles Watson29cc9ed2009-07-02 18:56:24 +0000471 /* Make certain the resource has actually been assigned a value. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000472 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000473 printk(BIOS_ERR, "ERROR: %s %02lx %s size: 0x%010llx not "
474 "assigned\n", dev_path(dev), resource->index,
475 resource_type(resource), resource->size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000476 return;
477 }
478
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000479 /* If this resource is fixed don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000480 if (resource->flags & IORESOURCE_FIXED)
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000481 return;
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000482
Myles Watson29cc9ed2009-07-02 18:56:24 +0000483 /* If I have already stored this resource don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000484 if (resource->flags & IORESOURCE_STORED)
Eric Biederman5cd81732004-03-11 15:01:31 +0000485 return;
Eric Biederman5cd81732004-03-11 15:01:31 +0000486
Myles Watson29cc9ed2009-07-02 18:56:24 +0000487 /* If the resource is subtractive don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000488 if (resource->flags & IORESOURCE_SUBTRACTIVE)
Eric Biederman03acab62004-10-14 21:25:53 +0000489 return;
Eric Biederman03acab62004-10-14 21:25:53 +0000490
Myles Watson29cc9ed2009-07-02 18:56:24 +0000491 /* Only handle PCI memory and I/O resources for now. */
492 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Eric Biederman8ca8d762003-04-22 19:02:15 +0000493 return;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000494
Myles Watson29cc9ed2009-07-02 18:56:24 +0000495 /* Enable the resources in the command register. */
Eric Biederman03acab62004-10-14 21:25:53 +0000496 if (resource->size) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000497 if (resource->flags & IORESOURCE_MEM)
Eric Biederman03acab62004-10-14 21:25:53 +0000498 dev->command |= PCI_COMMAND_MEMORY;
Uwe Hermanne4870472010-11-04 23:23:47 +0000499 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000500 dev->command |= PCI_COMMAND_IO;
Uwe Hermanne4870472010-11-04 23:23:47 +0000501 if (resource->flags & IORESOURCE_PCI_BRIDGE)
Eric Biederman03acab62004-10-14 21:25:53 +0000502 dev->command |= PCI_COMMAND_MASTER;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000503 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000504
Myles Watson29cc9ed2009-07-02 18:56:24 +0000505 /* Get the base address. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000506 base = resource->base;
Eric Biederman5cd81732004-03-11 15:01:31 +0000507
Myles Watson29cc9ed2009-07-02 18:56:24 +0000508 /* Get the end. */
Eric Biederman03acab62004-10-14 21:25:53 +0000509 end = resource_end(resource);
Myles Watson032a9652009-05-11 22:24:53 +0000510
Myles Watson29cc9ed2009-07-02 18:56:24 +0000511 /* Now store the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000512 resource->flags |= IORESOURCE_STORED;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000513
Uwe Hermanne4870472010-11-04 23:23:47 +0000514 /*
515 * PCI bridges have no enable bit. They are disabled if the base of
516 * the range is greater than the limit. If the size is zero, disable
Myles Watson29cc9ed2009-07-02 18:56:24 +0000517 * by setting the base = limit and end = limit - 2^gran.
518 */
519 if (resource->size == 0 && (resource->flags & IORESOURCE_PCI_BRIDGE)) {
520 base = resource->limit;
521 end = resource->limit - (1 << resource->gran);
522 resource->base = base;
523 }
524
Eric Biederman8ca8d762003-04-22 19:02:15 +0000525 if (!(resource->flags & IORESOURCE_PCI_BRIDGE)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000526 unsigned long base_lo, base_hi;
Uwe Hermanne4870472010-11-04 23:23:47 +0000527
528 /*
529 * Some chipsets allow us to set/clear the I/O bit
530 * (e.g. VIA 82C686A). So set it to be safe.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000531 */
Eric Biederman03acab62004-10-14 21:25:53 +0000532 base_lo = base & 0xffffffff;
533 base_hi = (base >> 32) & 0xffffffff;
Uwe Hermanne4870472010-11-04 23:23:47 +0000534 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000535 base_lo |= PCI_BASE_ADDRESS_SPACE_IO;
Eric Biederman03acab62004-10-14 21:25:53 +0000536 pci_write_config32(dev, resource->index, base_lo);
Uwe Hermanne4870472010-11-04 23:23:47 +0000537 if (resource->flags & IORESOURCE_PCI64)
Eric Biederman03acab62004-10-14 21:25:53 +0000538 pci_write_config32(dev, resource->index + 4, base_hi);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000539 } else if (resource->index == PCI_IO_BASE) {
540 /* Set the I/O ranges. */
541 pci_write_config8(dev, PCI_IO_BASE, base >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000542 pci_write_config16(dev, PCI_IO_BASE_UPPER16, base >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000543 pci_write_config8(dev, PCI_IO_LIMIT, end >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000544 pci_write_config16(dev, PCI_IO_LIMIT_UPPER16, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000545 } else if (resource->index == PCI_MEMORY_BASE) {
546 /* Set the memory range. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000547 pci_write_config16(dev, PCI_MEMORY_BASE, base >> 16);
Eric Biederman03acab62004-10-14 21:25:53 +0000548 pci_write_config16(dev, PCI_MEMORY_LIMIT, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000549 } else if (resource->index == PCI_PREF_MEMORY_BASE) {
550 /* Set the prefetchable memory range. */
Eric Biederman03acab62004-10-14 21:25:53 +0000551 pci_write_config16(dev, PCI_PREF_MEMORY_BASE, base >> 16);
552 pci_write_config32(dev, PCI_PREF_BASE_UPPER32, base >> 32);
553 pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, end >> 16);
554 pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, end >> 32);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000555 } else {
556 /* Don't let me think I stored the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000557 resource->flags &= ~IORESOURCE_STORED;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000558 printk(BIOS_ERR, "ERROR: invalid resource->index %lx\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000559 resource->index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000560 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000561
Eric Biederman03acab62004-10-14 21:25:53 +0000562 report_resource_stored(dev, resource, "");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000563}
564
Eric Biederman5899fd82003-04-24 06:25:08 +0000565void pci_dev_set_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000566{
Myles Watsonc25cc112010-05-21 14:33:48 +0000567 struct resource *res;
Myles Watson894a3472010-06-09 22:41:35 +0000568 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000569 u8 line;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000570
Uwe Hermanne4870472010-11-04 23:23:47 +0000571 for (res = dev->resource_list; res; res = res->next)
Myles Watsonc25cc112010-05-21 14:33:48 +0000572 pci_set_resource(dev, res);
Uwe Hermanne4870472010-11-04 23:23:47 +0000573
Myles Watson894a3472010-06-09 22:41:35 +0000574 for (bus = dev->link_list; bus; bus = bus->next) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000575 if (bus->children)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000576 assign_resources(bus);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000577 }
578
Myles Watson29cc9ed2009-07-02 18:56:24 +0000579 /* Set a default latency timer. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000580 pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000581
Myles Watson29cc9ed2009-07-02 18:56:24 +0000582 /* Set a default secondary latency timer. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000583 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000584 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000585
Myles Watson29cc9ed2009-07-02 18:56:24 +0000586 /* Zero the IRQ settings. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000587 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Uwe Hermanne4870472010-11-04 23:23:47 +0000588 if (line)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000589 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
Uwe Hermanne4870472010-11-04 23:23:47 +0000590
Myles Watson29cc9ed2009-07-02 18:56:24 +0000591 /* Set the cache line size, so far 64 bytes is good for everyone. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000592 pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000593}
594
Eric Biedermane9a271e32003-09-02 03:36:25 +0000595void pci_dev_enable_resources(struct device *dev)
596{
Eric Biedermana9e632c2004-11-18 22:38:08 +0000597 const struct pci_operations *ops;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000598 u16 command;
Eric Biederman03acab62004-10-14 21:25:53 +0000599
Uwe Hermanne4870472010-11-04 23:23:47 +0000600 /* Set the subsystem vendor and device ID for mainboard devices. */
Eric Biederman03acab62004-10-14 21:25:53 +0000601 ops = ops_pci(dev);
Eric Biedermandbec2d42004-10-21 10:44:08 +0000602 if (dev->on_mainboard && ops && ops->set_subsystem) {
Duncan Laurie7e1c83e2013-08-09 07:55:10 -0700603 if (CONFIG_SUBSYSTEM_VENDOR_ID)
604 dev->subsystem_vendor = CONFIG_SUBSYSTEM_VENDOR_ID;
605 if (CONFIG_SUBSYSTEM_DEVICE_ID)
606 dev->subsystem_device = CONFIG_SUBSYSTEM_DEVICE_ID;
Sven Schnelle91321022011-03-01 19:58:47 +0000607 printk(BIOS_DEBUG, "%s subsystem <- %04x/%04x\n",
608 dev_path(dev), dev->subsystem_vendor,
609 dev->subsystem_device);
610 ops->set_subsystem(dev, dev->subsystem_vendor,
611 dev->subsystem_device);
Eric Biederman03acab62004-10-14 21:25:53 +0000612 }
Eric Biedermane9a271e32003-09-02 03:36:25 +0000613 command = pci_read_config16(dev, PCI_COMMAND);
614 command |= dev->command;
Uwe Hermanne4870472010-11-04 23:23:47 +0000615
Myles Watson29cc9ed2009-07-02 18:56:24 +0000616 /* v3 has
617 * command |= (PCI_COMMAND_PARITY + PCI_COMMAND_SERR); // Error check.
618 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000619
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000620 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000621 pci_write_config16(dev, PCI_COMMAND, command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000622}
623
624void pci_bus_enable_resources(struct device *dev)
625{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000626 u16 ctrl;
627
Uwe Hermanne4870472010-11-04 23:23:47 +0000628 /*
629 * Enable I/O in command register if there is VGA card
Myles Watson29cc9ed2009-07-02 18:56:24 +0000630 * connected with (even it does not claim I/O resource).
631 */
Myles Watson894a3472010-06-09 22:41:35 +0000632 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
Li-Ta Lo515f6c72005-01-11 22:48:54 +0000633 dev->command |= PCI_COMMAND_IO;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000634 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +0000635 ctrl |= dev->link_list->bridge_ctrl;
Uwe Hermanne4870472010-11-04 23:23:47 +0000636 ctrl |= (PCI_BRIDGE_CTL_PARITY + PCI_BRIDGE_CTL_SERR); /* Error check. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000637 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000638 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
639
640 pci_dev_enable_resources(dev);
641}
642
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000643void pci_bus_reset(struct bus *bus)
644{
Uwe Hermanne4870472010-11-04 23:23:47 +0000645 u16 ctl;
646
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000647 ctl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
648 ctl |= PCI_BRIDGE_CTL_BUS_RESET;
649 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
650 mdelay(10);
Uwe Hermanne4870472010-11-04 23:23:47 +0000651
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000652 ctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
653 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
654 delay(1);
655}
656
Myles Watson29cc9ed2009-07-02 18:56:24 +0000657void pci_dev_set_subsystem(struct device *dev, unsigned vendor, unsigned device)
Eric Biederman03acab62004-10-14 21:25:53 +0000658{
Myles Watson032a9652009-05-11 22:24:53 +0000659 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
Myles Watson29cc9ed2009-07-02 18:56:24 +0000660 ((device & 0xffff) << 16) | (vendor & 0xffff));
Eric Biederman03acab62004-10-14 21:25:53 +0000661}
662
Bill Richardson0a405ba2012-06-26 16:33:45 -0700663#if CONFIG_CHROMEOS
664int oprom_is_loaded = 0;
665#endif
666
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300667#if CONFIG_VGA_ROM_RUN
668static int should_run_oprom(struct device *dev)
669{
670 static int should_run = -1;
671
672 if (should_run >= 0)
673 return should_run;
674
675#if CONFIG_CHROMEOS
676 /* In ChromeOS we want to boot blazingly fast. Therefore
677 * we don't run (VGA) option ROMs, unless we have to print
678 * something on the screen before the kernel is loaded.
679 */
680 if (!developer_mode_enabled() && !recovery_mode_enabled() &&
681 !vboot_wants_oprom()) {
682 printk(BIOS_DEBUG, "Not running VGA Option ROM\n");
683 should_run = 0;
684 return should_run;
685 }
686#endif
687 should_run = 1;
688
689 return should_run;
690}
691
692static int should_load_oprom(struct device *dev)
693{
694#if CONFIG_HAVE_ACPI_RESUME && !CONFIG_S3_VGA_ROM_RUN
695 /* If S3_VGA_ROM_RUN is disabled, skip running VGA option
696 * ROMs when coming out of an S3 resume.
697 */
698 if ((acpi_slp_type == 3) &&
699 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
700 return 0;
701#endif
702 if (IS_ENABLED(CONFIG_ALWAYS_LOAD_OPROM))
703 return 1;
704 if (should_run_oprom(dev))
705 return 1;
706
707 return 0;
708}
709#endif /* CONFIG_VGA_ROM_RUN */
710
Uwe Hermanne4870472010-11-04 23:23:47 +0000711/** Default handler: only runs the relevant PCI BIOS. */
Li-Ta Lo883b8792005-01-10 23:16:22 +0000712void pci_dev_init(struct device *dev)
713{
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100714#if CONFIG_VGA_ROM_RUN
Li-Ta Lo883b8792005-01-10 23:16:22 +0000715 struct rom_header *rom, *ram;
716
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100717 /* Only execute VGA ROMs. */
718 if (((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
Myles Watson17aeeca2009-10-07 18:41:08 +0000719 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000720
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300721 if (!should_load_oprom(dev))
Stefan Reinauer74a0efe2012-03-30 17:10:49 -0700722 return;
Aaron Durbince872cb2013-03-28 15:59:19 -0500723
724 rom = pci_rom_probe(dev);
725 if (rom == NULL)
726 return;
727
728 ram = pci_rom_load(dev, rom);
729 if (ram == NULL)
730 return;
731
Kyösti Mälkki580e5642014-05-01 16:31:34 +0300732 if (!should_run_oprom(dev))
733 return;
734
Stefan Reinauerd98cf5b2008-08-01 11:25:41 +0000735 run_bios(dev, (unsigned long)ram);
Bill Richardson0a405ba2012-06-26 16:33:45 -0700736#if CONFIG_CHROMEOS
737 oprom_is_loaded = 1;
738 printk(BIOS_DEBUG, "VGA Option ROM has been loaded\n");
739#endif
Vladimir Serbinenkob32816e2013-12-20 17:47:19 +0100740#endif /* CONFIG_VGA_ROM_RUN */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000741}
Li-Ta Lo883b8792005-01-10 23:16:22 +0000742
Li-Ta Loe5266692004-03-23 21:28:05 +0000743/** Default device operation for PCI devices */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000744static struct pci_operations pci_dev_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000745 .set_subsystem = pci_dev_set_subsystem,
746};
747
Eric Biederman8ca8d762003-04-22 19:02:15 +0000748struct device_operations default_pci_ops_dev = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000749 .read_resources = pci_dev_read_resources,
750 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000751 .enable_resources = pci_dev_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000752 .init = pci_dev_init,
753 .scan_bus = 0,
754 .enable = 0,
755 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000756};
Li-Ta Loe5266692004-03-23 21:28:05 +0000757
758/** Default device operations for PCI bridges */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000759static struct pci_operations pci_bus_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000760 .set_subsystem = 0,
761};
Li-Ta Lo883b8792005-01-10 23:16:22 +0000762
Eric Biederman8ca8d762003-04-22 19:02:15 +0000763struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000764 .read_resources = pci_bus_read_resources,
765 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000766 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000767 .init = 0,
768 .scan_bus = pci_scan_bridge,
769 .enable = 0,
770 .reset_bus = pci_bus_reset,
771 .ops_pci = &pci_bus_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000772};
Li-Ta Loe5266692004-03-23 21:28:05 +0000773
774/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000775 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000776 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000777 * This function is a heuristic to detect which type of bus is downstream
778 * of a PCI-to-PCI bridge. This functions by looking for various capability
779 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
780 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000781 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000782 * When only a PCI-Express capability is found the type is examined to see
783 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000784 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000785 * @param dev Pointer to the device structure of the bridge.
786 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000787 */
788static struct device_operations *get_pci_bridge_ops(device_t dev)
789{
Patrick Georgie1667822012-05-05 15:29:32 +0200790#if CONFIG_PCIX_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800791 unsigned int pcixpos;
792 pcixpos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
793 if (pcixpos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000794 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000795 return &default_pcix_ops_bus;
796 }
797#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200798#if CONFIG_AGP_PLUGIN_SUPPORT
Uwe Hermanne4870472010-11-04 23:23:47 +0000799 /* How do I detect a PCI to AGP bridge? */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000800#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200801#if CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800802 unsigned int htpos = 0;
803 while ((htpos = pci_find_next_capability(dev, PCI_CAP_ID_HT, htpos))) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000804 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800805 flags = pci_read_config16(dev, htpos + PCI_CAP_FLAGS);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000806 if ((flags >> 13) == 1) {
807 /* Host or Secondary Interface */
Uwe Hermanne4870472010-11-04 23:23:47 +0000808 printk(BIOS_DEBUG, "%s subordinate bus HT\n",
809 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000810 return &default_ht_ops_bus;
811 }
812 }
813#endif
Patrick Georgie1667822012-05-05 15:29:32 +0200814#if CONFIG_PCIEXP_PLUGIN_SUPPORT
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800815 unsigned int pciexpos;
816 pciexpos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
817 if (pciexpos) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000818 u16 flags;
Ronald G. Minnich78a16672012-11-29 16:28:21 -0800819 flags = pci_read_config16(dev, pciexpos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000820 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000821 case PCI_EXP_TYPE_ROOT_PORT:
822 case PCI_EXP_TYPE_UPSTREAM:
823 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000824 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000825 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000826 return &default_pciexp_ops_bus;
827 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +0000828 printk(BIOS_DEBUG, "%s subordinate PCI\n",
829 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000830 return &default_pci_ops_bus;
831 default:
832 break;
833 }
834 }
835#endif
836 return &default_pci_ops_bus;
837}
838
839/**
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700840 * Check if a device id matches a PCI driver entry.
841 *
842 * The driver entry can either point at a zero terminated array of acceptable
843 * device IDs, or include a single device ID.
844 *
845 * @driver pointer to the PCI driver entry being checked
846 * @device_id PCI device ID of the device being matched
847 */
848static int device_id_match(struct pci_driver *driver, unsigned short device_id)
849{
850 if (driver->devices) {
851 unsigned short check_id;
852 const unsigned short *device_list = driver->devices;
853 while ((check_id = *device_list++) != 0)
854 if (check_id == device_id)
855 return 1;
856 }
857
858 return (driver->device == device_id);
859}
860
861/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000862 * Set up PCI device operation.
863 *
864 * Check if it already has a driver. If not, use find_device_operations(),
865 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +0000866 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000867 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +0000868 * @see pci_drivers
869 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000870static void set_pci_ops(struct device *dev)
871{
872 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +0000873
Uwe Hermanne4870472010-11-04 23:23:47 +0000874 if (dev->ops)
875 return;
876
877 /*
878 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +0000879 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000880 */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000881 for (driver = &pci_drivers[0]; driver != &epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000882 if ((driver->vendor == dev->vendor) &&
Vadim Bendebury8049fc92012-04-24 12:53:19 -0700883 device_id_match(driver, dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +0000884 dev->ops = (struct device_operations *)driver->ops;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000885 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000886 dev_path(dev), driver->vendor, driver->device,
887 (driver->ops->scan_bus ? "bus " : ""));
Eric Biederman5899fd82003-04-24 06:25:08 +0000888 return;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000889 }
890 }
Li-Ta Loe5266692004-03-23 21:28:05 +0000891
Uwe Hermanne4870472010-11-04 23:23:47 +0000892 /* If I don't have a specific driver use the default operations. */
893 switch (dev->hdr_type & 0x7f) { /* Header type */
894 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +0000895 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
896 goto bad;
897 dev->ops = &default_pci_ops_dev;
898 break;
899 case PCI_HEADER_TYPE_BRIDGE:
900 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
901 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000902 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000903 break;
Patrick Georgie1667822012-05-05 15:29:32 +0200904#if CONFIG_CARDBUS_PLUGIN_SUPPORT
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000905 case PCI_HEADER_TYPE_CARDBUS:
906 dev->ops = &default_cardbus_ops_bus;
907 break;
908#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000909default:
910bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000911 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000912 printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "
913 "header type %02x, ignoring.\n", dev_path(dev),
914 dev->vendor, dev->device,
915 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +0000916 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000917 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000918}
919
920/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000921 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +0000922 *
923 * Given a linked list of PCI device structures and a devfn number, find the
Li-Ta Lo3a812852004-12-03 22:39:34 +0000924 * device structure correspond to the devfn, if present. This function also
925 * removes the device structure from the linked list.
Li-Ta Loe5266692004-03-23 21:28:05 +0000926 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000927 * @param list The device structure list.
928 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000929 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +0000930 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000931 */
Eric Biedermanb78c1972004-10-14 20:54:17 +0000932static struct device *pci_scan_get_dev(struct device **list, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000933{
Eric Biedermanb78c1972004-10-14 20:54:17 +0000934 struct device *dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000935
Eric Biedermanb78c1972004-10-14 20:54:17 +0000936 dev = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000937 for (; *list; list = &(*list)->sibling) {
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000938 if ((*list)->path.type != DEVICE_PATH_PCI) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000939 printk(BIOS_ERR, "child %s not a PCI device\n",
940 dev_path(*list));
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000941 continue;
942 }
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000943 if ((*list)->path.pci.devfn == devfn) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000944 /* Unlink from the list. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000945 dev = *list;
946 *list = (*list)->sibling;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000947 dev->sibling = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000948 break;
949 }
950 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000951
Uwe Hermanne4870472010-11-04 23:23:47 +0000952 /*
953 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +0000954 * bus. When the list of devices was formed we removed all of the
955 * parents children, and now we are interleaving static and dynamic
956 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000957 */
Eric Biedermane9a271e32003-09-02 03:36:25 +0000958 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000959 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +0000960
Myles Watson29cc9ed2009-07-02 18:56:24 +0000961 /* Find the last child of our parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000962 for (child = dev->bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000963 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +0000964
Myles Watson29cc9ed2009-07-02 18:56:24 +0000965 /* Place the device on the list of children of its parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000966 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000967 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000968 else
Eric Biedermane9a271e32003-09-02 03:36:25 +0000969 dev->bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000970 }
971
Eric Biederman8ca8d762003-04-22 19:02:15 +0000972 return dev;
973}
974
Myles Watson032a9652009-05-11 22:24:53 +0000975/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000976 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +0000977 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000978 * Determine the existence of a given PCI device. Allocate a new struct device
979 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000980 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000981 * @param dev Pointer to the dev structure.
982 * @param bus Pointer to the bus structure.
983 * @param devfn A device/function number to look at.
984 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000985 */
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000986device_t pci_probe_dev(device_t dev, struct bus *bus, unsigned devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000987{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000988 u32 id, class;
989 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000990
Myles Watson29cc9ed2009-07-02 18:56:24 +0000991 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000992 if (!dev) {
993 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +0000994
Myles Watson29cc9ed2009-07-02 18:56:24 +0000995 dummy.bus = bus;
996 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000997 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +0000998
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000999 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +00001000 /*
1001 * Have we found something? Some broken boards return 0 if a
1002 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001003 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001004 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +00001005 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +00001006
Stefan Reinauer7355c752010-04-02 16:30:25 +00001007 if ((id == 0x00000000) || (id == 0x0000ffff) ||
1008 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001009 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
1010 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001011 return NULL;
1012 }
1013 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001014 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +00001015 /*
1016 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +00001017 * specific operations this operations we will disable the
1018 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +00001019 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001020 * This is geared toward devices that have subfunctions
1021 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +00001022 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001023 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +00001024 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001025 */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001026 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001027 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001028 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +00001029
Myles Watson29cc9ed2009-07-02 18:56:24 +00001030 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001031 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +00001032
Uwe Hermanne4870472010-11-04 23:23:47 +00001033 /*
1034 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +00001035 * this is because we have already disabled the device. But
1036 * this also handles optional devices that may not always
1037 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001038 */
1039 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +00001040 if ((id == 0xffffffff) || (id == 0x00000000) ||
1041 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001042 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001043 printk(BIOS_INFO, "PCI: Static device %s not "
1044 "found, disabling it.\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001045 dev->enabled = 0;
1046 }
1047 return dev;
1048 }
1049 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001050
Myles Watson29cc9ed2009-07-02 18:56:24 +00001051 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001052 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
1053 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +00001054
Myles Watson29cc9ed2009-07-02 18:56:24 +00001055 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001056 dev->vendor = id & 0xffff;
1057 dev->device = (id >> 16) & 0xffff;
1058 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001059
1060 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001061 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +00001062
Myles Watson29cc9ed2009-07-02 18:56:24 +00001063 /* Architectural/System devices always need to be bus masters. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001064 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001065 dev->command |= PCI_COMMAND_MASTER;
Uwe Hermanne4870472010-11-04 23:23:47 +00001066
1067 /*
1068 * Look at the vendor and device ID, or at least the header type and
Myles Watson29cc9ed2009-07-02 18:56:24 +00001069 * class and figure out which set of configuration methods to use.
1070 * Unless we already have some PCI ops.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001071 */
1072 set_pci_ops(dev);
1073
Myles Watson29cc9ed2009-07-02 18:56:24 +00001074 /* Now run the magic enable/disable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001075 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001076 dev->ops->enable(dev);
Myles Watson032a9652009-05-11 22:24:53 +00001077
Myles Watson29cc9ed2009-07-02 18:56:24 +00001078 /* Display the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001079 printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
1080 dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
1081 dev->ops ? "" : " No operations");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001082
1083 return dev;
1084}
1085
Myles Watson032a9652009-05-11 22:24:53 +00001086/**
Kyösti Mälkkic73acdb2013-06-15 17:16:56 +03001087 * Test for match between romstage and ramstage device instance.
1088 *
1089 * @param dev Pointer to the device structure.
1090 * @param sdev Simple device model identifier, created with PCI_DEV().
1091 * @return Non-zero if bus:dev.fn of device matches.
1092 */
1093unsigned int pci_match_simple_dev(device_t dev, pci_devfn_t sdev)
1094{
1095 return dev->bus->secondary == PCI_DEV2SEGBUS(sdev) &&
1096 dev->path.pci.devfn == PCI_DEV2DEVFN(sdev);
1097}
1098
1099/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001100 * Scan a PCI bus.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001101 *
Li-Ta Loe5266692004-03-23 21:28:05 +00001102 * Determine the existence of devices and bridges on a PCI bus. If there are
1103 * bridges on the bus, recursively scan the buses behind the bridges.
1104 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001105 * This function is the default scan_bus() method for the root device
1106 * 'dev_root'.
1107 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001108 * @param bus Pointer to the bus structure.
1109 * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1110 * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
1111 * @param max Current bus number.
1112 * @return The maximum bus number found, after scanning all subordinate busses.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001113 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001114unsigned int pci_scan_bus(struct bus *bus, unsigned min_devfn,
1115 unsigned max_devfn, unsigned int max)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001116{
1117 unsigned int devfn;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001118 struct device *old_devices;
1119 struct device *child;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001120
Stefan Reinauer08670622009-06-30 15:17:49 +00001121#if CONFIG_PCI_BUS_SEGN_BITS
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001122 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %04x:%02x\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001123 bus->secondary >> 8, bus->secondary & 0xff);
Yinghai Lu5f9624d2006-10-04 22:56:21 +00001124#else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001125 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %02x\n", bus->secondary);
Yinghai Lu5f9624d2006-10-04 22:56:21 +00001126#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +00001127
Uwe Hermanne4870472010-11-04 23:23:47 +00001128 /* Maximum sane devfn is 0xFF. */
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001129 if (max_devfn > 0xff) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001130 printk(BIOS_ERR, "PCI: pci_scan_bus limits devfn %x - "
1131 "devfn %x\n", min_devfn, max_devfn);
1132 printk(BIOS_ERR, "PCI: pci_scan_bus upper limit too big. "
1133 "Using 0xff.\n");
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001134 max_devfn=0xff;
1135 }
1136
Eric Biederman8ca8d762003-04-22 19:02:15 +00001137 old_devices = bus->children;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001138 bus->children = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001139
1140 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001141
1142 /*
1143 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001144 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001145 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001146 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Myles Watson29cc9ed2009-07-02 18:56:24 +00001147 struct device *dev;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001148
Uwe Hermanne4870472010-11-04 23:23:47 +00001149 /* First thing setup the device structure. */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001150 dev = pci_scan_get_dev(&old_devices, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001151
Myles Watson29cc9ed2009-07-02 18:56:24 +00001152 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001153 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001154
Uwe Hermanne4870472010-11-04 23:23:47 +00001155 /*
1156 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001157 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001158 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001159 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001160 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001161 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001162 devfn += 0x07;
1163 }
1164 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001165
Eric Biederman8ca8d762003-04-22 19:02:15 +00001166 post_code(0x25);
1167
Uwe Hermanne4870472010-11-04 23:23:47 +00001168 /*
1169 * Warn if any leftover static devices are are found.
1170 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001171 */
1172 if (old_devices) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001173 device_t left;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001174 printk(BIOS_WARNING, "PCI: Left over static devices:\n");
Uwe Hermanne4870472010-11-04 23:23:47 +00001175 for (left = old_devices; left; left = left->sibling)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001176 printk(BIOS_WARNING, "%s\n", dev_path(left));
Uwe Hermanne4870472010-11-04 23:23:47 +00001177
1178 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001179 }
1180
Uwe Hermanne4870472010-11-04 23:23:47 +00001181 /*
1182 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001183 * scan the bus behind that child.
1184 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001185 for (child = bus->children; child; child = child->sibling)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001186 max = scan_bus(child, max);
Li-Ta Loe5266692004-03-23 21:28:05 +00001187
Uwe Hermanne4870472010-11-04 23:23:47 +00001188 /*
1189 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001190 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001191 * Return how far we've got finding sub-buses.
1192 */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001193 printk(BIOS_DEBUG, "PCI: pci_scan_bus returning with max=%03x\n", max);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001194 post_code(0x55);
1195 return max;
1196}
1197
Li-Ta Loe5266692004-03-23 21:28:05 +00001198/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001199 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001200 *
1201 * Determine the existence of buses behind the bridge. Set up the bridge
1202 * according to the result of the scan.
1203 *
1204 * This function is the default scan_bus() method for PCI bridge devices.
1205 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001206 * @param dev Pointer to the bridge device.
1207 * @param max The highest bus number assigned up to now.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001208 * @param do_scan_bus TODO
Myles Watson29cc9ed2009-07-02 18:56:24 +00001209 * @return The maximum bus number found, after scanning all subordinate buses.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001210 */
Myles Watson032a9652009-05-11 22:24:53 +00001211unsigned int do_pci_scan_bridge(struct device *dev, unsigned int max,
Myles Watson29cc9ed2009-07-02 18:56:24 +00001212 unsigned int (*do_scan_bus) (struct bus * bus,
1213 unsigned min_devfn,
1214 unsigned max_devfn,
1215 unsigned int max))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001216{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001217 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001218 u32 buses;
1219 u16 cr;
Eric Biederman83b991a2003-10-11 06:20:25 +00001220
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001221 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001222
Myles Watson894a3472010-06-09 22:41:35 +00001223 if (dev->link_list == NULL) {
1224 struct bus *link;
1225 link = malloc(sizeof(*link));
1226 if (link == NULL)
1227 die("Couldn't allocate a link!\n");
1228 memset(link, 0, sizeof(*link));
1229 link->dev = dev;
1230 dev->link_list = link;
1231 }
1232
1233 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001234
Uwe Hermanne4870472010-11-04 23:23:47 +00001235 /*
1236 * Set up the primary, secondary and subordinate bus numbers. We have
Eric Biederman8ca8d762003-04-22 19:02:15 +00001237 * no idea how many buses are behind this bridge yet, so we set the
Myles Watson032a9652009-05-11 22:24:53 +00001238 * subordinate bus number to 0xff for the moment.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001239 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001240 bus->secondary = ++max;
1241 bus->subordinate = 0xff;
Li-Ta Loe5266692004-03-23 21:28:05 +00001242
Eric Biederman8ca8d762003-04-22 19:02:15 +00001243 /* Clear all status bits and turn off memory, I/O and master enables. */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001244 cr = pci_read_config16(dev, PCI_COMMAND);
1245 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1246 pci_write_config16(dev, PCI_STATUS, 0xffff);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001247
Uwe Hermanne4870472010-11-04 23:23:47 +00001248 /*
1249 * Read the existing primary/secondary/subordinate bus
Eric Biedermanb78c1972004-10-14 20:54:17 +00001250 * number configuration.
1251 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001252 buses = pci_read_config32(dev, PCI_PRIMARY_BUS);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001253
Uwe Hermanne4870472010-11-04 23:23:47 +00001254 /*
1255 * Configure the bus numbers for this bridge: the configuration
Eric Biederman8ca8d762003-04-22 19:02:15 +00001256 * transactions will not be propagated by the bridge if it is not
Eric Biedermanb78c1972004-10-14 20:54:17 +00001257 * correctly configured.
1258 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001259 buses &= 0xff000000;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001260 buses |= (((unsigned int)(dev->bus->secondary) << 0) |
1261 ((unsigned int)(bus->secondary) << 8) |
1262 ((unsigned int)(bus->subordinate) << 16));
Eric Biedermane9a271e32003-09-02 03:36:25 +00001263 pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001264
Uwe Hermanne4870472010-11-04 23:23:47 +00001265 /* Now we can scan all subordinate buses (those behind the bridge). */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001266 max = do_scan_bus(bus, 0x00, 0xff, max);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001267
Uwe Hermanne4870472010-11-04 23:23:47 +00001268 /*
1269 * We know the number of buses behind this bridge. Set the subordinate
Eric Biedermanb78c1972004-10-14 20:54:17 +00001270 * bus number to its real value.
1271 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001272 bus->subordinate = max;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001273 buses = (buses & 0xff00ffff) | ((unsigned int)(bus->subordinate) << 16);
Eric Biedermane9a271e32003-09-02 03:36:25 +00001274 pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
1275 pci_write_config16(dev, PCI_COMMAND, cr);
Myles Watson032a9652009-05-11 22:24:53 +00001276
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001277 printk(BIOS_SPEW, "%s returns max %d\n", __func__, max);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001278 return max;
1279}
Li-Ta Loe5266692004-03-23 21:28:05 +00001280
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001281/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001282 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001283 *
1284 * Determine the existence of buses behind the bridge. Set up the bridge
1285 * according to the result of the scan.
1286 *
1287 * This function is the default scan_bus() method for PCI bridge devices.
1288 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001289 * @param dev Pointer to the bridge device.
1290 * @param max The highest bus number assigned up to now.
1291 * @return The maximum bus number found, after scanning all subordinate buses.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001292 */
1293unsigned int pci_scan_bridge(struct device *dev, unsigned int max)
1294{
1295 return do_pci_scan_bridge(dev, max, pci_scan_bus);
1296}
1297
Myles Watson29cc9ed2009-07-02 18:56:24 +00001298/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001299 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001300 *
1301 * This function is the default scan_bus() method for PCI domains.
1302 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001303 * @param dev Pointer to the domain.
1304 * @param max The highest bus number assigned up to now.
1305 * @return The maximum bus number found, after scanning all subordinate busses.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001306 */
1307unsigned int pci_domain_scan_bus(device_t dev, unsigned int max)
1308{
Myles Watson894a3472010-06-09 22:41:35 +00001309 max = pci_scan_bus(dev->link_list, PCI_DEVFN(0, 0), 0xff, max);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001310 return max;
1311}
1312
Patrick Georgie1667822012-05-05 15:29:32 +02001313#if CONFIG_PC80_SYSTEM
Myles Watson29cc9ed2009-07-02 18:56:24 +00001314/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001315 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001316 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001317 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001318 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001319 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001320 *
1321 * This function should be called for each PCI slot in your system.
1322 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001323 * @param bus Pointer to the bus structure.
1324 * @param slot TODO
1325 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1326 * of this slot. The particular IRQ #s that are passed in depend on the
1327 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001328 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001329void pci_assign_irqs(unsigned bus, unsigned slot,
Uwe Hermanne4870472010-11-04 23:23:47 +00001330 const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001331{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001332 unsigned int funct;
1333 device_t pdev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001334 u8 line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001335
Uwe Hermanne4870472010-11-04 23:23:47 +00001336 /* Each slot may contain up to eight functions. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001337 for (funct = 0; funct < 8; funct++) {
1338 pdev = dev_find_slot(bus, (slot << 3) + funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001339
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001340 if (!pdev)
1341 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001342
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001343 line = pci_read_config8(pdev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001344
Uwe Hermanne4870472010-11-04 23:23:47 +00001345 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001346 if ((line < 1) || (line > 4))
1347 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001348
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001349 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001350
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001351 printk(BIOS_DEBUG, "Assigning IRQ %d to %d:%x.%d\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001352 irq, bus, slot, funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001353
Stefan Reinauer14e22772010-04-27 06:56:47 +00001354 pci_write_config8(pdev, PCI_INTERRUPT_LINE,
Uwe Hermanne4870472010-11-04 23:23:47 +00001355 pIntAtoD[line - 1]);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001356
1357#ifdef PARANOID_IRQ_ASSIGNMENTS
Myles Watson17aeeca2009-10-07 18:41:08 +00001358 irq = pci_read_config8(pdev, PCI_INTERRUPT_LINE);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001359 printk(BIOS_DEBUG, " Readback = %d\n", irq);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001360#endif
1361
Patrick Georgie1667822012-05-05 15:29:32 +02001362#if CONFIG_PC80_SYSTEM
Uwe Hermanne4870472010-11-04 23:23:47 +00001363 /* Change to level triggered. */
1364 i8259_configure_irq_trigger(pIntAtoD[line - 1],
1365 IRQ_LEVEL_TRIGGERED);
Stefan Reinauer5fb62162010-12-16 23:52:04 +00001366#endif
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001367 }
1368}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001369#endif