blob: 0a870b84cfe63ee5e57e24a0ec1f122be34853fe [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>
29#include <bitops.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>
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000036#if CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT == 1
37#include <device/hypertransport.h>
38#endif
39#if CONFIG_PCIX_PLUGIN_SUPPORT == 1
40#include <device/pcix.h>
41#endif
42#if CONFIG_PCIEXP_PLUGIN_SUPPORT == 1
43#include <device/pciexp.h>
44#endif
Stefan Reinauerec75a572009-03-16 15:27:00 +000045#if CONFIG_AGP_PLUGIN_SUPPORT == 1
Yinghai Lu13f1c2a2005-07-08 02:49:49 +000046#include <device/agp.h>
47#endif
48#if CONFIG_CARDBUS_PLUGIN_SUPPORT == 1
49#include <device/cardbus.h>
50#endif
Stefan Reinauer4d933dd2009-07-21 21:36:41 +000051#if CONFIG_PC80_SYSTEM == 1
52#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
Eric Biederman03acab62004-10-14 21:25:53 +000057
Myles Watson29cc9ed2009-07-02 18:56:24 +000058u8 pci_moving_config8(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000059{
Myles Watson29cc9ed2009-07-02 18:56:24 +000060 u8 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000061
Eric Biederman03acab62004-10-14 21:25:53 +000062 value = pci_read_config8(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000063
Eric Biederman03acab62004-10-14 21:25:53 +000064 pci_write_config8(dev, reg, 0xff);
65 ones = pci_read_config8(dev, reg);
66
67 pci_write_config8(dev, reg, 0x00);
68 zeroes = pci_read_config8(dev, reg);
69
70 pci_write_config8(dev, reg, value);
71
72 return ones ^ zeroes;
73}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +000074
Uwe Hermanne4870472010-11-04 23:23:47 +000075u16 pci_moving_config16(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000076{
Myles Watson29cc9ed2009-07-02 18:56:24 +000077 u16 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000078
Eric Biederman03acab62004-10-14 21:25:53 +000079 value = pci_read_config16(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000080
Eric Biederman03acab62004-10-14 21:25:53 +000081 pci_write_config16(dev, reg, 0xffff);
82 ones = pci_read_config16(dev, reg);
83
84 pci_write_config16(dev, reg, 0x0000);
85 zeroes = pci_read_config16(dev, reg);
86
87 pci_write_config16(dev, reg, value);
88
89 return ones ^ zeroes;
90}
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +000091
Uwe Hermanne4870472010-11-04 23:23:47 +000092u32 pci_moving_config32(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000093{
Myles Watson29cc9ed2009-07-02 18:56:24 +000094 u32 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000095
Eric Biederman03acab62004-10-14 21:25:53 +000096 value = pci_read_config32(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000097
Eric Biederman03acab62004-10-14 21:25:53 +000098 pci_write_config32(dev, reg, 0xffffffff);
99 ones = pci_read_config32(dev, reg);
100
101 pci_write_config32(dev, reg, 0x00000000);
102 zeroes = pci_read_config32(dev, reg);
103
104 pci_write_config32(dev, reg, value);
105
106 return ones ^ zeroes;
107}
108
Myles Watson29cc9ed2009-07-02 18:56:24 +0000109/**
110 * Given a device, a capability type, and a last position, return the next
111 * matching capability. Always start at the head of the list.
112 *
113 * @param dev Pointer to the device structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000114 * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000115 * @param last Location of the PCI capability register to start from.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000116 * @return The next matching capability.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000117 */
118unsigned pci_find_next_capability(struct device *dev, unsigned cap,
119 unsigned last)
Eric Biederman03acab62004-10-14 21:25:53 +0000120{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +0000121 unsigned pos = 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000122 u16 status;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000123 unsigned reps = 48;
Stefan Reinauer4d933dd2009-07-21 21:36:41 +0000124
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000125 status = pci_read_config16(dev, PCI_STATUS);
Uwe Hermanne4870472010-11-04 23:23:47 +0000126 if (!(status & PCI_STATUS_CAP_LIST))
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000127 return 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000128
Myles Watson29cc9ed2009-07-02 18:56:24 +0000129 switch (dev->hdr_type & 0x7f) {
Eric Biederman03acab62004-10-14 21:25:53 +0000130 case PCI_HEADER_TYPE_NORMAL:
131 case PCI_HEADER_TYPE_BRIDGE:
132 pos = PCI_CAPABILITY_LIST;
133 break;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000134 case PCI_HEADER_TYPE_CARDBUS:
135 pos = PCI_CB_CAPABILITY_LIST;
136 break;
137 default:
138 return 0;
Eric Biederman03acab62004-10-14 21:25:53 +0000139 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000140
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000141 pos = pci_read_config8(dev, pos);
Uwe Hermanne4870472010-11-04 23:23:47 +0000142 while (reps-- && (pos >= 0x40)) { /* Loop through the linked list. */
Eric Biederman03acab62004-10-14 21:25:53 +0000143 int this_cap;
Uwe Hermanne4870472010-11-04 23:23:47 +0000144
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000145 pos &= ~3;
Eric Biederman03acab62004-10-14 21:25:53 +0000146 this_cap = pci_read_config8(dev, pos + PCI_CAP_LIST_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000147 printk(BIOS_SPEW, "Capability: type 0x%02x @ 0x%02x\n",
148 this_cap, pos);
149 if (this_cap == 0xff)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000150 break;
Uwe Hermanne4870472010-11-04 23:23:47 +0000151
152 if (!last && (this_cap == cap))
Eric Biederman03acab62004-10-14 21:25:53 +0000153 return pos;
Uwe Hermanne4870472010-11-04 23:23:47 +0000154
155 if (last == pos)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000156 last = 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000157
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000158 pos = pci_read_config8(dev, pos + PCI_CAP_LIST_NEXT);
Eric Biederman03acab62004-10-14 21:25:53 +0000159 }
160 return 0;
161}
162
Myles Watson29cc9ed2009-07-02 18:56:24 +0000163/**
164 * Given a device, and a capability type, return the next matching
165 * capability. Always start at the head of the list.
166 *
167 * @param dev Pointer to the device structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000168 * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
169 * @return The next matching capability.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000170 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000171unsigned pci_find_capability(device_t dev, unsigned cap)
172{
173 return pci_find_next_capability(dev, cap, 0);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000174}
175
Myles Watson29cc9ed2009-07-02 18:56:24 +0000176/**
177 * Given a device and register, read the size of the BAR for that register.
178 *
179 * @param dev Pointer to the device structure.
180 * @param index Address of the PCI configuration register.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000181 * @return TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +0000182 */
Eric Biederman03acab62004-10-14 21:25:53 +0000183struct resource *pci_get_resource(struct device *dev, unsigned long index)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000184{
Eric Biederman5cd81732004-03-11 15:01:31 +0000185 struct resource *resource;
Eric Biederman03acab62004-10-14 21:25:53 +0000186 unsigned long value, attr;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000187 resource_t moving, limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000188
Myles Watson29cc9ed2009-07-02 18:56:24 +0000189 /* Initialize the resources to nothing. */
Eric Biederman03acab62004-10-14 21:25:53 +0000190 resource = new_resource(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000191
Myles Watson29cc9ed2009-07-02 18:56:24 +0000192 /* Get the initial value. */
Eric Biederman03acab62004-10-14 21:25:53 +0000193 value = pci_read_config32(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000194
Myles Watson29cc9ed2009-07-02 18:56:24 +0000195 /* See which bits move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000196 moving = pci_moving_config32(dev, index);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000197
Myles Watson29cc9ed2009-07-02 18:56:24 +0000198 /* Initialize attr to the bits that do not move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000199 attr = value & ~moving;
200
Myles Watson29cc9ed2009-07-02 18:56:24 +0000201 /* If it is a 64bit resource look at the high half as well. */
Eric Biederman03acab62004-10-14 21:25:53 +0000202 if (((attr & PCI_BASE_ADDRESS_SPACE_IO) == 0) &&
Myles Watson29cc9ed2009-07-02 18:56:24 +0000203 ((attr & PCI_BASE_ADDRESS_MEM_LIMIT_MASK) ==
204 PCI_BASE_ADDRESS_MEM_LIMIT_64)) {
205 /* Find the high bits that move. */
206 moving |=
207 ((resource_t) pci_moving_config32(dev, index + 4)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000208 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000209
Myles Watson032a9652009-05-11 22:24:53 +0000210 /* Find the resource constraints.
Eric Biederman03acab62004-10-14 21:25:53 +0000211 * Start by finding the bits that move. From there:
212 * - Size is the least significant bit of the bits that move.
213 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000214 * See PCI Spec 6.2.5.1.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000215 */
Eric Biederman03acab62004-10-14 21:25:53 +0000216 limit = 0;
217 if (moving) {
218 resource->size = 1;
219 resource->align = resource->gran = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000220 while (!(moving & resource->size)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000221 resource->size <<= 1;
222 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000223 resource->gran += 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000224 }
225 resource->limit = limit = moving | (resource->size - 1);
226 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000227
Uwe Hermanne4870472010-11-04 23:23:47 +0000228 /*
229 * Some broken hardware has read-only registers that do not
Eric Biederman03acab62004-10-14 21:25:53 +0000230 * really size correctly.
Uwe Hermanne4870472010-11-04 23:23:47 +0000231 *
232 * Example: the Acer M7229 has BARs 1-4 normally read-only,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000233 * so BAR1 at offset 0x10 reads 0x1f1. If you size that register
Uwe Hermanne4870472010-11-04 23:23:47 +0000234 * by writing 0xffffffff to it, it will read back as 0x1f1 -- which
235 * is a violation of the spec.
236 *
237 * We catch this case and ignore it by observing which bits move.
238 *
239 * This also catches the common case of unimplemented registers
Eric Biederman03acab62004-10-14 21:25:53 +0000240 * that always read back as 0.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000241 */
Eric Biederman03acab62004-10-14 21:25:53 +0000242 if (moving == 0) {
243 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000244 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
245 "read-only ignoring it\n",
246 dev_path(dev), index, value);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000247 }
248 resource->flags = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000249 } else if (attr & PCI_BASE_ADDRESS_SPACE_IO) {
250 /* An I/O mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000251 attr &= PCI_BASE_ADDRESS_IO_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000252 resource->flags |= IORESOURCE_IO;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000253 /* I don't want to deal with 32bit I/O resources. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000254 resource->limit = 0xffff;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000255 } else {
256 /* A Memory mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000257 attr &= PCI_BASE_ADDRESS_MEM_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000258 resource->flags |= IORESOURCE_MEM;
Uwe Hermanne4870472010-11-04 23:23:47 +0000259 if (attr & PCI_BASE_ADDRESS_MEM_PREFETCH)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000260 resource->flags |= IORESOURCE_PREFETCH;
Eric Biederman03acab62004-10-14 21:25:53 +0000261 attr &= PCI_BASE_ADDRESS_MEM_LIMIT_MASK;
262 if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_32) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000263 /* 32bit limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000264 resource->limit = 0xffffffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000265 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_1M) {
266 /* 1MB limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000267 resource->limit = 0x000fffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000268 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_64) {
269 /* 64bit limit. */
Eric Biederman03acab62004-10-14 21:25:53 +0000270 resource->limit = 0xffffffffffffffffULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000271 resource->flags |= IORESOURCE_PCI64;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000272 } else {
273 /* Invalid value. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000274 printk(BIOS_ERR, "Broken BAR with value %lx\n", attr);
275 printk(BIOS_ERR, " on dev %s at index %02lx\n",
Myles Watson29cc9ed2009-07-02 18:56:24 +0000276 dev_path(dev), index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000277 resource->flags = 0;
278 }
279 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000280
Myles Watson29cc9ed2009-07-02 18:56:24 +0000281 /* Don't let the limit exceed which bits can move. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000282 if (resource->limit > limit)
Eric Biederman03acab62004-10-14 21:25:53 +0000283 resource->limit = limit;
Eric Biederman03acab62004-10-14 21:25:53 +0000284
Eric Biederman5cd81732004-03-11 15:01:31 +0000285 return resource;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000286}
287
Myles Watson29cc9ed2009-07-02 18:56:24 +0000288/**
289 * Given a device and an index, read the size of the BAR for that register.
290 *
291 * @param dev Pointer to the device structure.
292 * @param index Address of the PCI configuration register.
293 */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000294static void pci_get_rom_resource(struct device *dev, unsigned long index)
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000295{
296 struct resource *resource;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000297 unsigned long value;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000298 resource_t moving;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000299
Myles Watson29cc9ed2009-07-02 18:56:24 +0000300 /* Initialize the resources to nothing. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000301 resource = new_resource(dev, index);
302
Myles Watson29cc9ed2009-07-02 18:56:24 +0000303 /* Get the initial value. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000304 value = pci_read_config32(dev, index);
305
Myles Watson29cc9ed2009-07-02 18:56:24 +0000306 /* See which bits move. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000307 moving = pci_moving_config32(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000308
309 /* Clear the Enable bit. */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000310 moving = moving & ~PCI_ROM_ADDRESS_ENABLE;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000311
Myles Watson032a9652009-05-11 22:24:53 +0000312 /* Find the resource constraints.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000313 * Start by finding the bits that move. From there:
314 * - Size is the least significant bit of the bits that move.
315 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000316 * See PCI Spec 6.2.5.1.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000317 */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000318 if (moving) {
319 resource->size = 1;
320 resource->align = resource->gran = 0;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000321 while (!(moving & resource->size)) {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000322 resource->size <<= 1;
323 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000324 resource->gran += 1;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000325 }
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000326 resource->limit = moving | (resource->size - 1);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000327 resource->flags |= IORESOURCE_MEM | IORESOURCE_READONLY;
328 } else {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000329 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000330 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
331 "read-only ignoring it\n",
332 dev_path(dev), index, value);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000333 }
334 resource->flags = 0;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000335 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000336 compact_resources(dev);
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000337}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000338
Myles Watson29cc9ed2009-07-02 18:56:24 +0000339/**
340 * Read the base address registers for a given device.
341 *
342 * @param dev Pointer to the dev structure.
343 * @param howmany How many registers to read (6 for device, 2 for bridge).
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000344 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000345static void pci_read_bases(struct device *dev, unsigned int howmany)
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000346{
347 unsigned long index;
348
Myles Watson29cc9ed2009-07-02 18:56:24 +0000349 for (index = PCI_BASE_ADDRESS_0;
350 (index < PCI_BASE_ADDRESS_0 + (howmany << 2));) {
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000351 struct resource *resource;
352 resource = pci_get_resource(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000353 index += (resource->flags & IORESOURCE_PCI64) ? 8 : 4;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000354 }
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000355
356 compact_resources(dev);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000357}
358
Myles Watson29cc9ed2009-07-02 18:56:24 +0000359static void pci_record_bridge_resource(struct device *dev, resource_t moving,
360 unsigned index, unsigned long type)
Eric Biederman03acab62004-10-14 21:25:53 +0000361{
Eric Biederman03acab62004-10-14 21:25:53 +0000362 struct resource *resource;
Uwe Hermanne4870472010-11-04 23:23:47 +0000363 unsigned long gran;
364 resource_t step;
365
Myles Watson29cc9ed2009-07-02 18:56:24 +0000366 resource = NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000367
368 if (!moving)
369 return;
370
371 /* Initialize the constraints on the current bus. */
372 resource = new_resource(dev, index);
373 resource->size = 0;
374 gran = 0;
375 step = 1;
376 while ((moving & step) == 0) {
377 gran += 1;
378 step <<= 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000379 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000380 resource->gran = gran;
381 resource->align = gran;
382 resource->limit = moving | (step - 1);
383 resource->flags = type | IORESOURCE_PCI_BRIDGE |
384 IORESOURCE_BRIDGE;
Eric Biederman03acab62004-10-14 21:25:53 +0000385}
386
Eric Biederman8ca8d762003-04-22 19:02:15 +0000387static void pci_bridge_read_bases(struct device *dev)
388{
Eric Biederman03acab62004-10-14 21:25:53 +0000389 resource_t moving_base, moving_limit, moving;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000390
Myles Watson29cc9ed2009-07-02 18:56:24 +0000391 /* See if the bridge I/O resources are implemented. */
392 moving_base = ((u32) pci_moving_config8(dev, PCI_IO_BASE)) << 8;
393 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000394 ((u32) pci_moving_config16(dev, PCI_IO_BASE_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000395
Myles Watson29cc9ed2009-07-02 18:56:24 +0000396 moving_limit = ((u32) pci_moving_config8(dev, PCI_IO_LIMIT)) << 8;
397 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000398 ((u32) pci_moving_config16(dev, PCI_IO_LIMIT_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000399
400 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000401
Myles Watson29cc9ed2009-07-02 18:56:24 +0000402 /* Initialize the I/O space constraints on the current bus. */
403 pci_record_bridge_resource(dev, moving, PCI_IO_BASE, IORESOURCE_IO);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000404
Myles Watson29cc9ed2009-07-02 18:56:24 +0000405 /* See if the bridge prefmem resources are implemented. */
406 moving_base =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000407 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_BASE)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000408 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000409 ((resource_t) pci_moving_config32(dev, PCI_PREF_BASE_UPPER32)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000410
Myles Watson29cc9ed2009-07-02 18:56:24 +0000411 moving_limit =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000412 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_LIMIT)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000413 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000414 ((resource_t) pci_moving_config32(dev, PCI_PREF_LIMIT_UPPER32)) << 32;
Myles Watson032a9652009-05-11 22:24:53 +0000415
Eric Biederman03acab62004-10-14 21:25:53 +0000416 moving = moving_base & moving_limit;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000417 /* Initialize the prefetchable memory constraints on the current bus. */
418 pci_record_bridge_resource(dev, moving, PCI_PREF_MEMORY_BASE,
419 IORESOURCE_MEM | IORESOURCE_PREFETCH);
Myles Watson032a9652009-05-11 22:24:53 +0000420
Myles Watson29cc9ed2009-07-02 18:56:24 +0000421 /* See if the bridge mem resources are implemented. */
422 moving_base = ((u32) pci_moving_config16(dev, PCI_MEMORY_BASE)) << 16;
423 moving_limit = ((u32) pci_moving_config16(dev, PCI_MEMORY_LIMIT)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000424
425 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000426
Myles Watson29cc9ed2009-07-02 18:56:24 +0000427 /* Initialize the memory resources on the current bus. */
428 pci_record_bridge_resource(dev, moving, PCI_MEMORY_BASE,
429 IORESOURCE_MEM);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000430
Eric Biederman5cd81732004-03-11 15:01:31 +0000431 compact_resources(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000432}
433
Eric Biederman5899fd82003-04-24 06:25:08 +0000434void pci_dev_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000435{
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000436 pci_read_bases(dev, 6);
437 pci_get_rom_resource(dev, PCI_ROM_ADDRESS);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000438}
439
Eric Biederman5899fd82003-04-24 06:25:08 +0000440void pci_bus_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000441{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000442 pci_bridge_read_bases(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000443 pci_read_bases(dev, 2);
444 pci_get_rom_resource(dev, PCI_ROM_ADDRESS1);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000445}
446
Myles Watson29cc9ed2009-07-02 18:56:24 +0000447void pci_domain_read_resources(struct device *dev)
448{
449 struct resource *res;
450
451 /* Initialize the system-wide I/O space constraints. */
452 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
453 res->limit = 0xffffUL;
454 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
455 IORESOURCE_ASSIGNED;
456
457 /* Initialize the system-wide memory resources constraints. */
458 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
459 res->limit = 0xffffffffULL;
460 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
461 IORESOURCE_ASSIGNED;
462}
463
Eric Biederman8ca8d762003-04-22 19:02:15 +0000464static void pci_set_resource(struct device *dev, struct resource *resource)
465{
Eric Biederman03acab62004-10-14 21:25:53 +0000466 resource_t base, end;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000467
Myles Watson29cc9ed2009-07-02 18:56:24 +0000468 /* Make certain the resource has actually been assigned a value. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000469 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000470 printk(BIOS_ERR, "ERROR: %s %02lx %s size: 0x%010llx not "
471 "assigned\n", dev_path(dev), resource->index,
472 resource_type(resource), resource->size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000473 return;
474 }
475
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000476 /* If this resource is fixed don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000477 if (resource->flags & IORESOURCE_FIXED)
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000478 return;
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000479
Myles Watson29cc9ed2009-07-02 18:56:24 +0000480 /* If I have already stored this resource don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000481 if (resource->flags & IORESOURCE_STORED)
Eric Biederman5cd81732004-03-11 15:01:31 +0000482 return;
Eric Biederman5cd81732004-03-11 15:01:31 +0000483
Myles Watson29cc9ed2009-07-02 18:56:24 +0000484 /* If the resource is subtractive don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000485 if (resource->flags & IORESOURCE_SUBTRACTIVE)
Eric Biederman03acab62004-10-14 21:25:53 +0000486 return;
Eric Biederman03acab62004-10-14 21:25:53 +0000487
Myles Watson29cc9ed2009-07-02 18:56:24 +0000488 /* Only handle PCI memory and I/O resources for now. */
489 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Eric Biederman8ca8d762003-04-22 19:02:15 +0000490 return;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000491
Myles Watson29cc9ed2009-07-02 18:56:24 +0000492 /* Enable the resources in the command register. */
Eric Biederman03acab62004-10-14 21:25:53 +0000493 if (resource->size) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000494 if (resource->flags & IORESOURCE_MEM)
Eric Biederman03acab62004-10-14 21:25:53 +0000495 dev->command |= PCI_COMMAND_MEMORY;
Uwe Hermanne4870472010-11-04 23:23:47 +0000496 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000497 dev->command |= PCI_COMMAND_IO;
Uwe Hermanne4870472010-11-04 23:23:47 +0000498 if (resource->flags & IORESOURCE_PCI_BRIDGE)
Eric Biederman03acab62004-10-14 21:25:53 +0000499 dev->command |= PCI_COMMAND_MASTER;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000500 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000501
Myles Watson29cc9ed2009-07-02 18:56:24 +0000502 /* Get the base address. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000503 base = resource->base;
Eric Biederman5cd81732004-03-11 15:01:31 +0000504
Myles Watson29cc9ed2009-07-02 18:56:24 +0000505 /* Get the end. */
Eric Biederman03acab62004-10-14 21:25:53 +0000506 end = resource_end(resource);
Myles Watson032a9652009-05-11 22:24:53 +0000507
Myles Watson29cc9ed2009-07-02 18:56:24 +0000508 /* Now store the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000509 resource->flags |= IORESOURCE_STORED;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000510
Uwe Hermanne4870472010-11-04 23:23:47 +0000511 /*
512 * PCI bridges have no enable bit. They are disabled if the base of
513 * the range is greater than the limit. If the size is zero, disable
Myles Watson29cc9ed2009-07-02 18:56:24 +0000514 * by setting the base = limit and end = limit - 2^gran.
515 */
516 if (resource->size == 0 && (resource->flags & IORESOURCE_PCI_BRIDGE)) {
517 base = resource->limit;
518 end = resource->limit - (1 << resource->gran);
519 resource->base = base;
520 }
521
Eric Biederman8ca8d762003-04-22 19:02:15 +0000522 if (!(resource->flags & IORESOURCE_PCI_BRIDGE)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000523 unsigned long base_lo, base_hi;
Uwe Hermanne4870472010-11-04 23:23:47 +0000524
525 /*
526 * Some chipsets allow us to set/clear the I/O bit
527 * (e.g. VIA 82C686A). So set it to be safe.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000528 */
Eric Biederman03acab62004-10-14 21:25:53 +0000529 base_lo = base & 0xffffffff;
530 base_hi = (base >> 32) & 0xffffffff;
Uwe Hermanne4870472010-11-04 23:23:47 +0000531 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000532 base_lo |= PCI_BASE_ADDRESS_SPACE_IO;
Eric Biederman03acab62004-10-14 21:25:53 +0000533 pci_write_config32(dev, resource->index, base_lo);
Uwe Hermanne4870472010-11-04 23:23:47 +0000534 if (resource->flags & IORESOURCE_PCI64)
Eric Biederman03acab62004-10-14 21:25:53 +0000535 pci_write_config32(dev, resource->index + 4, base_hi);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000536 } else if (resource->index == PCI_IO_BASE) {
537 /* Set the I/O ranges. */
538 pci_write_config8(dev, PCI_IO_BASE, base >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000539 pci_write_config16(dev, PCI_IO_BASE_UPPER16, base >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000540 pci_write_config8(dev, PCI_IO_LIMIT, end >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000541 pci_write_config16(dev, PCI_IO_LIMIT_UPPER16, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000542 } else if (resource->index == PCI_MEMORY_BASE) {
543 /* Set the memory range. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000544 pci_write_config16(dev, PCI_MEMORY_BASE, base >> 16);
Eric Biederman03acab62004-10-14 21:25:53 +0000545 pci_write_config16(dev, PCI_MEMORY_LIMIT, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000546 } else if (resource->index == PCI_PREF_MEMORY_BASE) {
547 /* Set the prefetchable memory range. */
Eric Biederman03acab62004-10-14 21:25:53 +0000548 pci_write_config16(dev, PCI_PREF_MEMORY_BASE, base >> 16);
549 pci_write_config32(dev, PCI_PREF_BASE_UPPER32, base >> 32);
550 pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, end >> 16);
551 pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, end >> 32);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000552 } else {
553 /* Don't let me think I stored the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000554 resource->flags &= ~IORESOURCE_STORED;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000555 printk(BIOS_ERR, "ERROR: invalid resource->index %lx\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000556 resource->index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000557 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000558
Eric Biederman03acab62004-10-14 21:25:53 +0000559 report_resource_stored(dev, resource, "");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000560}
561
Eric Biederman5899fd82003-04-24 06:25:08 +0000562void pci_dev_set_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000563{
Myles Watsonc25cc112010-05-21 14:33:48 +0000564 struct resource *res;
Myles Watson894a3472010-06-09 22:41:35 +0000565 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000566 u8 line;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000567
Uwe Hermanne4870472010-11-04 23:23:47 +0000568 for (res = dev->resource_list; res; res = res->next)
Myles Watsonc25cc112010-05-21 14:33:48 +0000569 pci_set_resource(dev, res);
Uwe Hermanne4870472010-11-04 23:23:47 +0000570
Myles Watson894a3472010-06-09 22:41:35 +0000571 for (bus = dev->link_list; bus; bus = bus->next) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000572 if (bus->children)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000573 assign_resources(bus);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000574 }
575
Myles Watson29cc9ed2009-07-02 18:56:24 +0000576 /* Set a default latency timer. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000577 pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000578
Myles Watson29cc9ed2009-07-02 18:56:24 +0000579 /* Set a default secondary latency timer. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000580 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000581 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000582
Myles Watson29cc9ed2009-07-02 18:56:24 +0000583 /* Zero the IRQ settings. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000584 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Uwe Hermanne4870472010-11-04 23:23:47 +0000585 if (line)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000586 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
Uwe Hermanne4870472010-11-04 23:23:47 +0000587
Myles Watson29cc9ed2009-07-02 18:56:24 +0000588 /* Set the cache line size, so far 64 bytes is good for everyone. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000589 pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000590}
591
Eric Biedermane9a271e32003-09-02 03:36:25 +0000592void pci_dev_enable_resources(struct device *dev)
593{
Eric Biedermana9e632c2004-11-18 22:38:08 +0000594 const struct pci_operations *ops;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000595 u16 command;
Eric Biederman03acab62004-10-14 21:25:53 +0000596
Uwe Hermanne4870472010-11-04 23:23:47 +0000597 /* Set the subsystem vendor and device ID for mainboard devices. */
Eric Biederman03acab62004-10-14 21:25:53 +0000598 ops = ops_pci(dev);
Eric Biedermandbec2d42004-10-21 10:44:08 +0000599 if (dev->on_mainboard && ops && ops->set_subsystem) {
Sven Schnelle91321022011-03-01 19:58:47 +0000600 printk(BIOS_DEBUG, "%s subsystem <- %04x/%04x\n",
601 dev_path(dev), dev->subsystem_vendor,
602 dev->subsystem_device);
603 ops->set_subsystem(dev, dev->subsystem_vendor,
604 dev->subsystem_device);
Eric Biederman03acab62004-10-14 21:25:53 +0000605 }
Eric Biedermane9a271e32003-09-02 03:36:25 +0000606 command = pci_read_config16(dev, PCI_COMMAND);
607 command |= dev->command;
Uwe Hermanne4870472010-11-04 23:23:47 +0000608
Myles Watson29cc9ed2009-07-02 18:56:24 +0000609 /* v3 has
610 * command |= (PCI_COMMAND_PARITY + PCI_COMMAND_SERR); // Error check.
611 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000612
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000613 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000614 pci_write_config16(dev, PCI_COMMAND, command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000615}
616
617void pci_bus_enable_resources(struct device *dev)
618{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000619 u16 ctrl;
620
Uwe Hermanne4870472010-11-04 23:23:47 +0000621 /*
622 * Enable I/O in command register if there is VGA card
Myles Watson29cc9ed2009-07-02 18:56:24 +0000623 * connected with (even it does not claim I/O resource).
624 */
Myles Watson894a3472010-06-09 22:41:35 +0000625 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
Li-Ta Lo515f6c72005-01-11 22:48:54 +0000626 dev->command |= PCI_COMMAND_IO;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000627 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +0000628 ctrl |= dev->link_list->bridge_ctrl;
Uwe Hermanne4870472010-11-04 23:23:47 +0000629 ctrl |= (PCI_BRIDGE_CTL_PARITY + PCI_BRIDGE_CTL_SERR); /* Error check. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000630 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000631 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
632
633 pci_dev_enable_resources(dev);
634}
635
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000636void pci_bus_reset(struct bus *bus)
637{
Uwe Hermanne4870472010-11-04 23:23:47 +0000638 u16 ctl;
639
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000640 ctl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
641 ctl |= PCI_BRIDGE_CTL_BUS_RESET;
642 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
643 mdelay(10);
Uwe Hermanne4870472010-11-04 23:23:47 +0000644
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000645 ctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
646 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
647 delay(1);
648}
649
Myles Watson29cc9ed2009-07-02 18:56:24 +0000650void pci_dev_set_subsystem(struct device *dev, unsigned vendor, unsigned device)
Eric Biederman03acab62004-10-14 21:25:53 +0000651{
Myles Watson032a9652009-05-11 22:24:53 +0000652 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
Myles Watson29cc9ed2009-07-02 18:56:24 +0000653 ((device & 0xffff) << 16) | (vendor & 0xffff));
Eric Biederman03acab62004-10-14 21:25:53 +0000654}
655
Uwe Hermanne4870472010-11-04 23:23:47 +0000656/** Default handler: only runs the relevant PCI BIOS. */
Li-Ta Lo883b8792005-01-10 23:16:22 +0000657void pci_dev_init(struct device *dev)
658{
Torsten Duwe1f2f8002008-01-06 01:10:54 +0000659#if CONFIG_PCI_ROM_RUN == 1 || CONFIG_VGA_ROM_RUN == 1
Li-Ta Lo883b8792005-01-10 23:16:22 +0000660 struct rom_header *rom, *ram;
661
Myles Watson17aeeca2009-10-07 18:41:08 +0000662 if (CONFIG_PCI_ROM_RUN != 1 && /* Only execute VGA ROMs. */
663 ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
Roman Kononov778a42b2007-04-06 18:34:39 +0000664 return;
Myles Watson17aeeca2009-10-07 18:41:08 +0000665
666 if (CONFIG_VGA_ROM_RUN != 1 && /* Only execute non-VGA ROMs. */
667 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
668 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000669
Li-Ta Lo883b8792005-01-10 23:16:22 +0000670 rom = pci_rom_probe(dev);
671 if (rom == NULL)
672 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000673
Li-Ta Lo883b8792005-01-10 23:16:22 +0000674 ram = pci_rom_load(dev, rom);
Yinghai Lu9e4faef2005-01-14 22:04:49 +0000675 if (ram == NULL)
676 return;
Li-Ta Lo883b8792005-01-10 23:16:22 +0000677
Stefan Reinauer0a500842011-09-23 10:33:58 -0700678#if CONFIG_HAVE_ACPI_RESUME && !CONFIG_S3_VGA_ROM_RUN
679 /* If S3_VGA_ROM_RUN is disabled, skip running VGA option
680 * ROMs when coming out of an S3 resume.
681 */
682 if ((acpi_slp_type == 3) &&
683 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
684 return;
685#endif
Stefan Reinauerd98cf5b2008-08-01 11:25:41 +0000686 run_bios(dev, (unsigned long)ram);
Torsten Duwe1f2f8002008-01-06 01:10:54 +0000687#endif /* CONFIG_PCI_ROM_RUN || CONFIG_VGA_ROM_RUN */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000688}
Li-Ta Lo883b8792005-01-10 23:16:22 +0000689
Li-Ta Loe5266692004-03-23 21:28:05 +0000690/** Default device operation for PCI devices */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000691static struct pci_operations pci_dev_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000692 .set_subsystem = pci_dev_set_subsystem,
693};
694
Eric Biederman8ca8d762003-04-22 19:02:15 +0000695struct device_operations default_pci_ops_dev = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000696 .read_resources = pci_dev_read_resources,
697 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000698 .enable_resources = pci_dev_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000699 .init = pci_dev_init,
700 .scan_bus = 0,
701 .enable = 0,
702 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000703};
Li-Ta Loe5266692004-03-23 21:28:05 +0000704
705/** Default device operations for PCI bridges */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000706static struct pci_operations pci_bus_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000707 .set_subsystem = 0,
708};
Li-Ta Lo883b8792005-01-10 23:16:22 +0000709
Eric Biederman8ca8d762003-04-22 19:02:15 +0000710struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000711 .read_resources = pci_bus_read_resources,
712 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000713 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000714 .init = 0,
715 .scan_bus = pci_scan_bridge,
716 .enable = 0,
717 .reset_bus = pci_bus_reset,
718 .ops_pci = &pci_bus_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000719};
Li-Ta Loe5266692004-03-23 21:28:05 +0000720
721/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000722 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000723 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000724 * This function is a heuristic to detect which type of bus is downstream
725 * of a PCI-to-PCI bridge. This functions by looking for various capability
726 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
727 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000728 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000729 * When only a PCI-Express capability is found the type is examined to see
730 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000731 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000732 * @param dev Pointer to the device structure of the bridge.
733 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000734 */
735static struct device_operations *get_pci_bridge_ops(device_t dev)
736{
Uwe Hermanne4870472010-11-04 23:23:47 +0000737 unsigned int pos;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000738
739#if CONFIG_PCIX_PLUGIN_SUPPORT == 1
740 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
741 if (pos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000742 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000743 return &default_pcix_ops_bus;
744 }
745#endif
746#if CONFIG_AGP_PLUGIN_SUPPORT == 1
Uwe Hermanne4870472010-11-04 23:23:47 +0000747 /* How do I detect a PCI to AGP bridge? */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000748#endif
749#if CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT == 1
750 pos = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000751 while ((pos = pci_find_next_capability(dev, PCI_CAP_ID_HT, pos))) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000752 u16 flags;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000753 flags = pci_read_config16(dev, pos + PCI_CAP_FLAGS);
754 if ((flags >> 13) == 1) {
755 /* Host or Secondary Interface */
Uwe Hermanne4870472010-11-04 23:23:47 +0000756 printk(BIOS_DEBUG, "%s subordinate bus HT\n",
757 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000758 return &default_ht_ops_bus;
759 }
760 }
761#endif
762#if CONFIG_PCIEXP_PLUGIN_SUPPORT == 1
763 pos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
764 if (pos) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000765 u16 flags;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000766 flags = pci_read_config16(dev, pos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000767 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000768 case PCI_EXP_TYPE_ROOT_PORT:
769 case PCI_EXP_TYPE_UPSTREAM:
770 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000771 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000772 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000773 return &default_pciexp_ops_bus;
774 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +0000775 printk(BIOS_DEBUG, "%s subordinate PCI\n",
776 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000777 return &default_pci_ops_bus;
778 default:
779 break;
780 }
781 }
782#endif
783 return &default_pci_ops_bus;
784}
785
786/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000787 * Set up PCI device operation.
788 *
789 * Check if it already has a driver. If not, use find_device_operations(),
790 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +0000791 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000792 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +0000793 * @see pci_drivers
794 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000795static void set_pci_ops(struct device *dev)
796{
797 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +0000798
Uwe Hermanne4870472010-11-04 23:23:47 +0000799 if (dev->ops)
800 return;
801
802 /*
803 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +0000804 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000805 */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000806 for (driver = &pci_drivers[0]; driver != &epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000807 if ((driver->vendor == dev->vendor) &&
Myles Watson29cc9ed2009-07-02 18:56:24 +0000808 (driver->device == dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +0000809 dev->ops = (struct device_operations *)driver->ops;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000810 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000811 dev_path(dev), driver->vendor, driver->device,
812 (driver->ops->scan_bus ? "bus " : ""));
Eric Biederman5899fd82003-04-24 06:25:08 +0000813 return;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000814 }
815 }
Li-Ta Loe5266692004-03-23 21:28:05 +0000816
Uwe Hermanne4870472010-11-04 23:23:47 +0000817 /* If I don't have a specific driver use the default operations. */
818 switch (dev->hdr_type & 0x7f) { /* Header type */
819 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +0000820 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
821 goto bad;
822 dev->ops = &default_pci_ops_dev;
823 break;
824 case PCI_HEADER_TYPE_BRIDGE:
825 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
826 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000827 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000828 break;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000829#if CONFIG_CARDBUS_PLUGIN_SUPPORT == 1
830 case PCI_HEADER_TYPE_CARDBUS:
831 dev->ops = &default_cardbus_ops_bus;
832 break;
833#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000834default:
835bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000836 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000837 printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "
838 "header type %02x, ignoring.\n", dev_path(dev),
839 dev->vendor, dev->device,
840 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +0000841 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000842 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000843}
844
845/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000846 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +0000847 *
848 * Given a linked list of PCI device structures and a devfn number, find the
Li-Ta Lo3a812852004-12-03 22:39:34 +0000849 * device structure correspond to the devfn, if present. This function also
850 * removes the device structure from the linked list.
Li-Ta Loe5266692004-03-23 21:28:05 +0000851 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000852 * @param list The device structure list.
853 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000854 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +0000855 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000856 */
Eric Biedermanb78c1972004-10-14 20:54:17 +0000857static struct device *pci_scan_get_dev(struct device **list, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000858{
Eric Biedermanb78c1972004-10-14 20:54:17 +0000859 struct device *dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000860
Eric Biedermanb78c1972004-10-14 20:54:17 +0000861 dev = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000862 for (; *list; list = &(*list)->sibling) {
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000863 if ((*list)->path.type != DEVICE_PATH_PCI) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000864 printk(BIOS_ERR, "child %s not a PCI device\n",
865 dev_path(*list));
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000866 continue;
867 }
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000868 if ((*list)->path.pci.devfn == devfn) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000869 /* Unlink from the list. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000870 dev = *list;
871 *list = (*list)->sibling;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000872 dev->sibling = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000873 break;
874 }
875 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000876
Uwe Hermanne4870472010-11-04 23:23:47 +0000877 /*
878 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +0000879 * bus. When the list of devices was formed we removed all of the
880 * parents children, and now we are interleaving static and dynamic
881 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000882 */
Eric Biedermane9a271e32003-09-02 03:36:25 +0000883 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000884 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +0000885
Myles Watson29cc9ed2009-07-02 18:56:24 +0000886 /* Find the last child of our parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000887 for (child = dev->bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000888 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +0000889
Myles Watson29cc9ed2009-07-02 18:56:24 +0000890 /* Place the device on the list of children of its parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000891 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000892 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000893 else
Eric Biedermane9a271e32003-09-02 03:36:25 +0000894 dev->bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000895 }
896
Eric Biederman8ca8d762003-04-22 19:02:15 +0000897 return dev;
898}
899
Myles Watson032a9652009-05-11 22:24:53 +0000900/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000901 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +0000902 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000903 * Determine the existence of a given PCI device. Allocate a new struct device
904 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000905 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000906 * @param dev Pointer to the dev structure.
907 * @param bus Pointer to the bus structure.
908 * @param devfn A device/function number to look at.
909 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000910 */
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000911device_t pci_probe_dev(device_t dev, struct bus *bus, unsigned devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000912{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000913 u32 id, class;
914 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000915
Myles Watson29cc9ed2009-07-02 18:56:24 +0000916 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000917 if (!dev) {
918 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +0000919
Myles Watson29cc9ed2009-07-02 18:56:24 +0000920 dummy.bus = bus;
921 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000922 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +0000923
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000924 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000925 /*
926 * Have we found something? Some broken boards return 0 if a
927 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000928 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000929 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +0000930 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000931
Stefan Reinauer7355c752010-04-02 16:30:25 +0000932 if ((id == 0x00000000) || (id == 0x0000ffff) ||
933 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000934 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
935 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000936 return NULL;
937 }
938 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000939 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +0000940 /*
941 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +0000942 * specific operations this operations we will disable the
943 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +0000944 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000945 * This is geared toward devices that have subfunctions
946 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +0000947 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000948 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +0000949 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000950 */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000951 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000952 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000953 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +0000954
Myles Watson29cc9ed2009-07-02 18:56:24 +0000955 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000956 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +0000957
Uwe Hermanne4870472010-11-04 23:23:47 +0000958 /*
959 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +0000960 * this is because we have already disabled the device. But
961 * this also handles optional devices that may not always
962 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000963 */
964 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000965 if ((id == 0xffffffff) || (id == 0x00000000) ||
966 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000967 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000968 printk(BIOS_INFO, "PCI: Static device %s not "
969 "found, disabling it.\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000970 dev->enabled = 0;
971 }
972 return dev;
973 }
974 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000975
Myles Watson29cc9ed2009-07-02 18:56:24 +0000976 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000977 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
978 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +0000979
Myles Watson29cc9ed2009-07-02 18:56:24 +0000980 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000981 dev->vendor = id & 0xffff;
982 dev->device = (id >> 16) & 0xffff;
983 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000984
985 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000986 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +0000987
Myles Watson29cc9ed2009-07-02 18:56:24 +0000988 /* Architectural/System devices always need to be bus masters. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000989 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000990 dev->command |= PCI_COMMAND_MASTER;
Uwe Hermanne4870472010-11-04 23:23:47 +0000991
992 /*
993 * Look at the vendor and device ID, or at least the header type and
Myles Watson29cc9ed2009-07-02 18:56:24 +0000994 * class and figure out which set of configuration methods to use.
995 * Unless we already have some PCI ops.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000996 */
997 set_pci_ops(dev);
998
Myles Watson29cc9ed2009-07-02 18:56:24 +0000999 /* Now run the magic enable/disable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001000 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001001 dev->ops->enable(dev);
Myles Watson032a9652009-05-11 22:24:53 +00001002
Myles Watson29cc9ed2009-07-02 18:56:24 +00001003 /* Display the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001004 printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
1005 dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
1006 dev->ops ? "" : " No operations");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001007
1008 return dev;
1009}
1010
Myles Watson032a9652009-05-11 22:24:53 +00001011/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001012 * Scan a PCI bus.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001013 *
Li-Ta Loe5266692004-03-23 21:28:05 +00001014 * Determine the existence of devices and bridges on a PCI bus. If there are
1015 * bridges on the bus, recursively scan the buses behind the bridges.
1016 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001017 * This function is the default scan_bus() method for the root device
1018 * 'dev_root'.
1019 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001020 * @param bus Pointer to the bus structure.
1021 * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1022 * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
1023 * @param max Current bus number.
1024 * @return The maximum bus number found, after scanning all subordinate busses.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001025 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001026unsigned int pci_scan_bus(struct bus *bus, unsigned min_devfn,
1027 unsigned max_devfn, unsigned int max)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001028{
1029 unsigned int devfn;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001030 struct device *old_devices;
1031 struct device *child;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001032
Stefan Reinauer08670622009-06-30 15:17:49 +00001033#if CONFIG_PCI_BUS_SEGN_BITS
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001034 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %04x:%02x\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001035 bus->secondary >> 8, bus->secondary & 0xff);
Yinghai Lu5f9624d2006-10-04 22:56:21 +00001036#else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001037 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %02x\n", bus->secondary);
Yinghai Lu5f9624d2006-10-04 22:56:21 +00001038#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +00001039
Uwe Hermanne4870472010-11-04 23:23:47 +00001040 /* Maximum sane devfn is 0xFF. */
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001041 if (max_devfn > 0xff) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001042 printk(BIOS_ERR, "PCI: pci_scan_bus limits devfn %x - "
1043 "devfn %x\n", min_devfn, max_devfn);
1044 printk(BIOS_ERR, "PCI: pci_scan_bus upper limit too big. "
1045 "Using 0xff.\n");
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001046 max_devfn=0xff;
1047 }
1048
Eric Biederman8ca8d762003-04-22 19:02:15 +00001049 old_devices = bus->children;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001050 bus->children = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001051
1052 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001053
1054 /*
1055 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001056 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001057 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001058 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Myles Watson29cc9ed2009-07-02 18:56:24 +00001059 struct device *dev;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001060
Uwe Hermanne4870472010-11-04 23:23:47 +00001061 /* First thing setup the device structure. */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001062 dev = pci_scan_get_dev(&old_devices, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001063
Myles Watson29cc9ed2009-07-02 18:56:24 +00001064 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001065 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001066
Uwe Hermanne4870472010-11-04 23:23:47 +00001067 /*
1068 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001069 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001070 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001071 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001072 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001073 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001074 devfn += 0x07;
1075 }
1076 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001077
Eric Biederman8ca8d762003-04-22 19:02:15 +00001078 post_code(0x25);
1079
Uwe Hermanne4870472010-11-04 23:23:47 +00001080 /*
1081 * Warn if any leftover static devices are are found.
1082 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001083 */
1084 if (old_devices) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001085 device_t left;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001086 printk(BIOS_WARNING, "PCI: Left over static devices:\n");
Uwe Hermanne4870472010-11-04 23:23:47 +00001087 for (left = old_devices; left; left = left->sibling)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001088 printk(BIOS_WARNING, "%s\n", dev_path(left));
Uwe Hermanne4870472010-11-04 23:23:47 +00001089
1090 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001091 }
1092
Uwe Hermanne4870472010-11-04 23:23:47 +00001093 /*
1094 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001095 * scan the bus behind that child.
1096 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001097 for (child = bus->children; child; child = child->sibling)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001098 max = scan_bus(child, max);
Li-Ta Loe5266692004-03-23 21:28:05 +00001099
Uwe Hermanne4870472010-11-04 23:23:47 +00001100 /*
1101 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001102 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001103 * Return how far we've got finding sub-buses.
1104 */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001105 printk(BIOS_DEBUG, "PCI: pci_scan_bus returning with max=%03x\n", max);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001106 post_code(0x55);
1107 return max;
1108}
1109
Li-Ta Loe5266692004-03-23 21:28:05 +00001110/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001111 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001112 *
1113 * Determine the existence of buses behind the bridge. Set up the bridge
1114 * according to the result of the scan.
1115 *
1116 * This function is the default scan_bus() method for PCI bridge devices.
1117 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001118 * @param dev Pointer to the bridge device.
1119 * @param max The highest bus number assigned up to now.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001120 * @param do_scan_bus TODO
Myles Watson29cc9ed2009-07-02 18:56:24 +00001121 * @return The maximum bus number found, after scanning all subordinate buses.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001122 */
Myles Watson032a9652009-05-11 22:24:53 +00001123unsigned int do_pci_scan_bridge(struct device *dev, unsigned int max,
Myles Watson29cc9ed2009-07-02 18:56:24 +00001124 unsigned int (*do_scan_bus) (struct bus * bus,
1125 unsigned min_devfn,
1126 unsigned max_devfn,
1127 unsigned int max))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001128{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001129 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001130 u32 buses;
1131 u16 cr;
Eric Biederman83b991a2003-10-11 06:20:25 +00001132
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001133 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001134
Myles Watson894a3472010-06-09 22:41:35 +00001135 if (dev->link_list == NULL) {
1136 struct bus *link;
1137 link = malloc(sizeof(*link));
1138 if (link == NULL)
1139 die("Couldn't allocate a link!\n");
1140 memset(link, 0, sizeof(*link));
1141 link->dev = dev;
1142 dev->link_list = link;
1143 }
1144
1145 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001146
Uwe Hermanne4870472010-11-04 23:23:47 +00001147 /*
1148 * Set up the primary, secondary and subordinate bus numbers. We have
Eric Biederman8ca8d762003-04-22 19:02:15 +00001149 * no idea how many buses are behind this bridge yet, so we set the
Myles Watson032a9652009-05-11 22:24:53 +00001150 * subordinate bus number to 0xff for the moment.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001151 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001152 bus->secondary = ++max;
1153 bus->subordinate = 0xff;
Li-Ta Loe5266692004-03-23 21:28:05 +00001154
Eric Biederman8ca8d762003-04-22 19:02:15 +00001155 /* Clear all status bits and turn off memory, I/O and master enables. */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001156 cr = pci_read_config16(dev, PCI_COMMAND);
1157 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1158 pci_write_config16(dev, PCI_STATUS, 0xffff);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001159
Uwe Hermanne4870472010-11-04 23:23:47 +00001160 /*
1161 * Read the existing primary/secondary/subordinate bus
Eric Biedermanb78c1972004-10-14 20:54:17 +00001162 * number configuration.
1163 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001164 buses = pci_read_config32(dev, PCI_PRIMARY_BUS);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001165
Uwe Hermanne4870472010-11-04 23:23:47 +00001166 /*
1167 * Configure the bus numbers for this bridge: the configuration
Eric Biederman8ca8d762003-04-22 19:02:15 +00001168 * transactions will not be propagated by the bridge if it is not
Eric Biedermanb78c1972004-10-14 20:54:17 +00001169 * correctly configured.
1170 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001171 buses &= 0xff000000;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001172 buses |= (((unsigned int)(dev->bus->secondary) << 0) |
1173 ((unsigned int)(bus->secondary) << 8) |
1174 ((unsigned int)(bus->subordinate) << 16));
Eric Biedermane9a271e32003-09-02 03:36:25 +00001175 pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001176
Uwe Hermanne4870472010-11-04 23:23:47 +00001177 /* Now we can scan all subordinate buses (those behind the bridge). */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001178 max = do_scan_bus(bus, 0x00, 0xff, max);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001179
Uwe Hermanne4870472010-11-04 23:23:47 +00001180 /*
1181 * We know the number of buses behind this bridge. Set the subordinate
Eric Biedermanb78c1972004-10-14 20:54:17 +00001182 * bus number to its real value.
1183 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001184 bus->subordinate = max;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001185 buses = (buses & 0xff00ffff) | ((unsigned int)(bus->subordinate) << 16);
Eric Biedermane9a271e32003-09-02 03:36:25 +00001186 pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
1187 pci_write_config16(dev, PCI_COMMAND, cr);
Myles Watson032a9652009-05-11 22:24:53 +00001188
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001189 printk(BIOS_SPEW, "%s returns max %d\n", __func__, max);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001190 return max;
1191}
Li-Ta Loe5266692004-03-23 21:28:05 +00001192
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001193/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001194 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001195 *
1196 * Determine the existence of buses behind the bridge. Set up the bridge
1197 * according to the result of the scan.
1198 *
1199 * This function is the default scan_bus() method for PCI bridge devices.
1200 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001201 * @param dev Pointer to the bridge device.
1202 * @param max The highest bus number assigned up to now.
1203 * @return The maximum bus number found, after scanning all subordinate buses.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001204 */
1205unsigned int pci_scan_bridge(struct device *dev, unsigned int max)
1206{
1207 return do_pci_scan_bridge(dev, max, pci_scan_bus);
1208}
1209
Myles Watson29cc9ed2009-07-02 18:56:24 +00001210/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001211 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001212 *
1213 * This function is the default scan_bus() method for PCI domains.
1214 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001215 * @param dev Pointer to the domain.
1216 * @param max The highest bus number assigned up to now.
1217 * @return The maximum bus number found, after scanning all subordinate busses.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001218 */
1219unsigned int pci_domain_scan_bus(device_t dev, unsigned int max)
1220{
Myles Watson894a3472010-06-09 22:41:35 +00001221 max = pci_scan_bus(dev->link_list, PCI_DEVFN(0, 0), 0xff, max);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001222 return max;
1223}
1224
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001225#if CONFIG_PC80_SYSTEM == 1
Myles Watson29cc9ed2009-07-02 18:56:24 +00001226/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001227 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001228 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001229 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001230 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001231 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001232 *
1233 * This function should be called for each PCI slot in your system.
1234 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001235 * @param bus Pointer to the bus structure.
1236 * @param slot TODO
1237 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1238 * of this slot. The particular IRQ #s that are passed in depend on the
1239 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001240 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001241void pci_assign_irqs(unsigned bus, unsigned slot,
Uwe Hermanne4870472010-11-04 23:23:47 +00001242 const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001243{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001244 unsigned int funct;
1245 device_t pdev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001246 u8 line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001247
Uwe Hermanne4870472010-11-04 23:23:47 +00001248 /* Each slot may contain up to eight functions. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001249 for (funct = 0; funct < 8; funct++) {
1250 pdev = dev_find_slot(bus, (slot << 3) + funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001251
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001252 if (!pdev)
1253 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001254
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001255 line = pci_read_config8(pdev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001256
Uwe Hermanne4870472010-11-04 23:23:47 +00001257 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001258 if ((line < 1) || (line > 4))
1259 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001260
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001261 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001262
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001263 printk(BIOS_DEBUG, "Assigning IRQ %d to %d:%x.%d\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001264 irq, bus, slot, funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001265
Stefan Reinauer14e22772010-04-27 06:56:47 +00001266 pci_write_config8(pdev, PCI_INTERRUPT_LINE,
Uwe Hermanne4870472010-11-04 23:23:47 +00001267 pIntAtoD[line - 1]);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001268
1269#ifdef PARANOID_IRQ_ASSIGNMENTS
Myles Watson17aeeca2009-10-07 18:41:08 +00001270 irq = pci_read_config8(pdev, PCI_INTERRUPT_LINE);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001271 printk(BIOS_DEBUG, " Readback = %d\n", irq);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001272#endif
1273
Stefan Reinauer5fb62162010-12-16 23:52:04 +00001274#if CONFIG_PC80_SYSTEM == 1
Uwe Hermanne4870472010-11-04 23:23:47 +00001275 /* Change to level triggered. */
1276 i8259_configure_irq_trigger(pIntAtoD[line - 1],
1277 IRQ_LEVEL_TRIGGERED);
Stefan Reinauer5fb62162010-12-16 23:52:04 +00001278#endif
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001279 }
1280}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001281#endif