blob: 01fd815f4d694a3b22ff10f1a9cf82af0a8cd2c1 [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#define CONFIG_PC80_SYSTEM 1
52#if CONFIG_PC80_SYSTEM == 1
53#include <pc80/i8259.h>
54#endif
Eric Biederman03acab62004-10-14 21:25:53 +000055
Myles Watson29cc9ed2009-07-02 18:56:24 +000056u8 pci_moving_config8(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000057{
Myles Watson29cc9ed2009-07-02 18:56:24 +000058 u8 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000059
Eric Biederman03acab62004-10-14 21:25:53 +000060 value = pci_read_config8(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000061
Eric Biederman03acab62004-10-14 21:25:53 +000062 pci_write_config8(dev, reg, 0xff);
63 ones = pci_read_config8(dev, reg);
64
65 pci_write_config8(dev, reg, 0x00);
66 zeroes = pci_read_config8(dev, reg);
67
68 pci_write_config8(dev, reg, value);
69
70 return ones ^ zeroes;
71}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +000072
Uwe Hermanne4870472010-11-04 23:23:47 +000073u16 pci_moving_config16(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000074{
Myles Watson29cc9ed2009-07-02 18:56:24 +000075 u16 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000076
Eric Biederman03acab62004-10-14 21:25:53 +000077 value = pci_read_config16(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000078
Eric Biederman03acab62004-10-14 21:25:53 +000079 pci_write_config16(dev, reg, 0xffff);
80 ones = pci_read_config16(dev, reg);
81
82 pci_write_config16(dev, reg, 0x0000);
83 zeroes = pci_read_config16(dev, reg);
84
85 pci_write_config16(dev, reg, value);
86
87 return ones ^ zeroes;
88}
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +000089
Uwe Hermanne4870472010-11-04 23:23:47 +000090u32 pci_moving_config32(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000091{
Myles Watson29cc9ed2009-07-02 18:56:24 +000092 u32 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000093
Eric Biederman03acab62004-10-14 21:25:53 +000094 value = pci_read_config32(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000095
Eric Biederman03acab62004-10-14 21:25:53 +000096 pci_write_config32(dev, reg, 0xffffffff);
97 ones = pci_read_config32(dev, reg);
98
99 pci_write_config32(dev, reg, 0x00000000);
100 zeroes = pci_read_config32(dev, reg);
101
102 pci_write_config32(dev, reg, value);
103
104 return ones ^ zeroes;
105}
106
Myles Watson29cc9ed2009-07-02 18:56:24 +0000107/**
108 * Given a device, a capability type, and a last position, return the next
109 * matching capability. Always start at the head of the list.
110 *
111 * @param dev Pointer to the device structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000112 * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000113 * @param last Location of the PCI capability register to start from.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000114 * @return The next matching capability.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000115 */
116unsigned pci_find_next_capability(struct device *dev, unsigned cap,
117 unsigned last)
Eric Biederman03acab62004-10-14 21:25:53 +0000118{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +0000119 unsigned pos = 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000120 u16 status;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000121 unsigned reps = 48;
Stefan Reinauer4d933dd2009-07-21 21:36:41 +0000122
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000123 status = pci_read_config16(dev, PCI_STATUS);
Uwe Hermanne4870472010-11-04 23:23:47 +0000124 if (!(status & PCI_STATUS_CAP_LIST))
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000125 return 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000126
Myles Watson29cc9ed2009-07-02 18:56:24 +0000127 switch (dev->hdr_type & 0x7f) {
Eric Biederman03acab62004-10-14 21:25:53 +0000128 case PCI_HEADER_TYPE_NORMAL:
129 case PCI_HEADER_TYPE_BRIDGE:
130 pos = PCI_CAPABILITY_LIST;
131 break;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000132 case PCI_HEADER_TYPE_CARDBUS:
133 pos = PCI_CB_CAPABILITY_LIST;
134 break;
135 default:
136 return 0;
Eric Biederman03acab62004-10-14 21:25:53 +0000137 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000138
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000139 pos = pci_read_config8(dev, pos);
Uwe Hermanne4870472010-11-04 23:23:47 +0000140 while (reps-- && (pos >= 0x40)) { /* Loop through the linked list. */
Eric Biederman03acab62004-10-14 21:25:53 +0000141 int this_cap;
Uwe Hermanne4870472010-11-04 23:23:47 +0000142
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000143 pos &= ~3;
Eric Biederman03acab62004-10-14 21:25:53 +0000144 this_cap = pci_read_config8(dev, pos + PCI_CAP_LIST_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000145 printk(BIOS_SPEW, "Capability: type 0x%02x @ 0x%02x\n",
146 this_cap, pos);
147 if (this_cap == 0xff)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000148 break;
Uwe Hermanne4870472010-11-04 23:23:47 +0000149
150 if (!last && (this_cap == cap))
Eric Biederman03acab62004-10-14 21:25:53 +0000151 return pos;
Uwe Hermanne4870472010-11-04 23:23:47 +0000152
153 if (last == pos)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000154 last = 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000155
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000156 pos = pci_read_config8(dev, pos + PCI_CAP_LIST_NEXT);
Eric Biederman03acab62004-10-14 21:25:53 +0000157 }
158 return 0;
159}
160
Myles Watson29cc9ed2009-07-02 18:56:24 +0000161/**
162 * Given a device, and a capability type, return the next matching
163 * capability. Always start at the head of the list.
164 *
165 * @param dev Pointer to the device structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000166 * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
167 * @return The next matching capability.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000168 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000169unsigned pci_find_capability(device_t dev, unsigned cap)
170{
171 return pci_find_next_capability(dev, cap, 0);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000172}
173
Myles Watson29cc9ed2009-07-02 18:56:24 +0000174/**
175 * Given a device and register, read the size of the BAR for that register.
176 *
177 * @param dev Pointer to the device structure.
178 * @param index Address of the PCI configuration register.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000179 * @return TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +0000180 */
Eric Biederman03acab62004-10-14 21:25:53 +0000181struct resource *pci_get_resource(struct device *dev, unsigned long index)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000182{
Eric Biederman5cd81732004-03-11 15:01:31 +0000183 struct resource *resource;
Eric Biederman03acab62004-10-14 21:25:53 +0000184 unsigned long value, attr;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000185 resource_t moving, limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000186
Myles Watson29cc9ed2009-07-02 18:56:24 +0000187 /* Initialize the resources to nothing. */
Eric Biederman03acab62004-10-14 21:25:53 +0000188 resource = new_resource(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000189
Myles Watson29cc9ed2009-07-02 18:56:24 +0000190 /* Get the initial value. */
Eric Biederman03acab62004-10-14 21:25:53 +0000191 value = pci_read_config32(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000192
Myles Watson29cc9ed2009-07-02 18:56:24 +0000193 /* See which bits move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000194 moving = pci_moving_config32(dev, index);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000195
Myles Watson29cc9ed2009-07-02 18:56:24 +0000196 /* Initialize attr to the bits that do not move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000197 attr = value & ~moving;
198
Myles Watson29cc9ed2009-07-02 18:56:24 +0000199 /* If it is a 64bit resource look at the high half as well. */
Eric Biederman03acab62004-10-14 21:25:53 +0000200 if (((attr & PCI_BASE_ADDRESS_SPACE_IO) == 0) &&
Myles Watson29cc9ed2009-07-02 18:56:24 +0000201 ((attr & PCI_BASE_ADDRESS_MEM_LIMIT_MASK) ==
202 PCI_BASE_ADDRESS_MEM_LIMIT_64)) {
203 /* Find the high bits that move. */
204 moving |=
205 ((resource_t) pci_moving_config32(dev, index + 4)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000206 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000207
Myles Watson032a9652009-05-11 22:24:53 +0000208 /* Find the resource constraints.
Eric Biederman03acab62004-10-14 21:25:53 +0000209 * Start by finding the bits that move. From there:
210 * - Size is the least significant bit of the bits that move.
211 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000212 * See PCI Spec 6.2.5.1.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000213 */
Eric Biederman03acab62004-10-14 21:25:53 +0000214 limit = 0;
215 if (moving) {
216 resource->size = 1;
217 resource->align = resource->gran = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000218 while (!(moving & resource->size)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000219 resource->size <<= 1;
220 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000221 resource->gran += 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000222 }
223 resource->limit = limit = moving | (resource->size - 1);
224 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000225
Uwe Hermanne4870472010-11-04 23:23:47 +0000226 /*
227 * Some broken hardware has read-only registers that do not
Eric Biederman03acab62004-10-14 21:25:53 +0000228 * really size correctly.
Uwe Hermanne4870472010-11-04 23:23:47 +0000229 *
230 * Example: the Acer M7229 has BARs 1-4 normally read-only,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000231 * so BAR1 at offset 0x10 reads 0x1f1. If you size that register
Uwe Hermanne4870472010-11-04 23:23:47 +0000232 * by writing 0xffffffff to it, it will read back as 0x1f1 -- which
233 * is a violation of the spec.
234 *
235 * We catch this case and ignore it by observing which bits move.
236 *
237 * This also catches the common case of unimplemented registers
Eric Biederman03acab62004-10-14 21:25:53 +0000238 * that always read back as 0.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000239 */
Eric Biederman03acab62004-10-14 21:25:53 +0000240 if (moving == 0) {
241 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000242 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
243 "read-only ignoring it\n",
244 dev_path(dev), index, value);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000245 }
246 resource->flags = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000247 } else if (attr & PCI_BASE_ADDRESS_SPACE_IO) {
248 /* An I/O mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000249 attr &= PCI_BASE_ADDRESS_IO_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000250 resource->flags |= IORESOURCE_IO;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000251 /* I don't want to deal with 32bit I/O resources. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000252 resource->limit = 0xffff;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000253 } else {
254 /* A Memory mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000255 attr &= PCI_BASE_ADDRESS_MEM_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000256 resource->flags |= IORESOURCE_MEM;
Uwe Hermanne4870472010-11-04 23:23:47 +0000257 if (attr & PCI_BASE_ADDRESS_MEM_PREFETCH)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000258 resource->flags |= IORESOURCE_PREFETCH;
Eric Biederman03acab62004-10-14 21:25:53 +0000259 attr &= PCI_BASE_ADDRESS_MEM_LIMIT_MASK;
260 if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_32) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000261 /* 32bit limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000262 resource->limit = 0xffffffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000263 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_1M) {
264 /* 1MB limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000265 resource->limit = 0x000fffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000266 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_64) {
267 /* 64bit limit. */
Eric Biederman03acab62004-10-14 21:25:53 +0000268 resource->limit = 0xffffffffffffffffULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000269 resource->flags |= IORESOURCE_PCI64;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000270 } else {
271 /* Invalid value. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000272 printk(BIOS_ERR, "Broken BAR with value %lx\n", attr);
273 printk(BIOS_ERR, " on dev %s at index %02lx\n",
Myles Watson29cc9ed2009-07-02 18:56:24 +0000274 dev_path(dev), index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000275 resource->flags = 0;
276 }
277 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000278
Myles Watson29cc9ed2009-07-02 18:56:24 +0000279 /* Don't let the limit exceed which bits can move. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000280 if (resource->limit > limit)
Eric Biederman03acab62004-10-14 21:25:53 +0000281 resource->limit = limit;
Eric Biederman03acab62004-10-14 21:25:53 +0000282
Eric Biederman5cd81732004-03-11 15:01:31 +0000283 return resource;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000284}
285
Myles Watson29cc9ed2009-07-02 18:56:24 +0000286/**
287 * Given a device and an index, read the size of the BAR for that register.
288 *
289 * @param dev Pointer to the device structure.
290 * @param index Address of the PCI configuration register.
291 */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000292static void pci_get_rom_resource(struct device *dev, unsigned long index)
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000293{
294 struct resource *resource;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000295 unsigned long value;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000296 resource_t moving;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000297
Myles Watson29cc9ed2009-07-02 18:56:24 +0000298 /* Initialize the resources to nothing. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000299 resource = new_resource(dev, index);
300
Myles Watson29cc9ed2009-07-02 18:56:24 +0000301 /* Get the initial value. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000302 value = pci_read_config32(dev, index);
303
Myles Watson29cc9ed2009-07-02 18:56:24 +0000304 /* See which bits move. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000305 moving = pci_moving_config32(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000306
307 /* Clear the Enable bit. */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000308 moving = moving & ~PCI_ROM_ADDRESS_ENABLE;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000309
Myles Watson032a9652009-05-11 22:24:53 +0000310 /* Find the resource constraints.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000311 * Start by finding the bits that move. From there:
312 * - Size is the least significant bit of the bits that move.
313 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000314 * See PCI Spec 6.2.5.1.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000315 */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000316 if (moving) {
317 resource->size = 1;
318 resource->align = resource->gran = 0;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000319 while (!(moving & resource->size)) {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000320 resource->size <<= 1;
321 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000322 resource->gran += 1;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000323 }
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000324 resource->limit = moving | (resource->size - 1);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000325 resource->flags |= IORESOURCE_MEM | IORESOURCE_READONLY;
326 } else {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000327 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000328 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
329 "read-only ignoring it\n",
330 dev_path(dev), index, value);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000331 }
332 resource->flags = 0;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000333 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000334 compact_resources(dev);
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000335}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000336
Myles Watson29cc9ed2009-07-02 18:56:24 +0000337/**
338 * Read the base address registers for a given device.
339 *
340 * @param dev Pointer to the dev structure.
341 * @param howmany How many registers to read (6 for device, 2 for bridge).
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000342 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000343static void pci_read_bases(struct device *dev, unsigned int howmany)
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000344{
345 unsigned long index;
346
Myles Watson29cc9ed2009-07-02 18:56:24 +0000347 for (index = PCI_BASE_ADDRESS_0;
348 (index < PCI_BASE_ADDRESS_0 + (howmany << 2));) {
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000349 struct resource *resource;
350 resource = pci_get_resource(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000351 index += (resource->flags & IORESOURCE_PCI64) ? 8 : 4;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000352 }
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000353
354 compact_resources(dev);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000355}
356
Myles Watson29cc9ed2009-07-02 18:56:24 +0000357static void pci_record_bridge_resource(struct device *dev, resource_t moving,
358 unsigned index, unsigned long type)
Eric Biederman03acab62004-10-14 21:25:53 +0000359{
Eric Biederman03acab62004-10-14 21:25:53 +0000360 struct resource *resource;
Uwe Hermanne4870472010-11-04 23:23:47 +0000361 unsigned long gran;
362 resource_t step;
363
Myles Watson29cc9ed2009-07-02 18:56:24 +0000364 resource = NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000365
366 if (!moving)
367 return;
368
369 /* Initialize the constraints on the current bus. */
370 resource = new_resource(dev, index);
371 resource->size = 0;
372 gran = 0;
373 step = 1;
374 while ((moving & step) == 0) {
375 gran += 1;
376 step <<= 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000377 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000378 resource->gran = gran;
379 resource->align = gran;
380 resource->limit = moving | (step - 1);
381 resource->flags = type | IORESOURCE_PCI_BRIDGE |
382 IORESOURCE_BRIDGE;
Eric Biederman03acab62004-10-14 21:25:53 +0000383}
384
Eric Biederman8ca8d762003-04-22 19:02:15 +0000385static void pci_bridge_read_bases(struct device *dev)
386{
Eric Biederman03acab62004-10-14 21:25:53 +0000387 resource_t moving_base, moving_limit, moving;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000388
Myles Watson29cc9ed2009-07-02 18:56:24 +0000389 /* See if the bridge I/O resources are implemented. */
390 moving_base = ((u32) pci_moving_config8(dev, PCI_IO_BASE)) << 8;
391 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000392 ((u32) pci_moving_config16(dev, PCI_IO_BASE_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000393
Myles Watson29cc9ed2009-07-02 18:56:24 +0000394 moving_limit = ((u32) pci_moving_config8(dev, PCI_IO_LIMIT)) << 8;
395 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000396 ((u32) pci_moving_config16(dev, PCI_IO_LIMIT_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000397
398 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000399
Myles Watson29cc9ed2009-07-02 18:56:24 +0000400 /* Initialize the I/O space constraints on the current bus. */
401 pci_record_bridge_resource(dev, moving, PCI_IO_BASE, IORESOURCE_IO);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000402
Myles Watson29cc9ed2009-07-02 18:56:24 +0000403 /* See if the bridge prefmem resources are implemented. */
404 moving_base =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000405 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_BASE)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000406 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000407 ((resource_t) pci_moving_config32(dev, PCI_PREF_BASE_UPPER32)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000408
Myles Watson29cc9ed2009-07-02 18:56:24 +0000409 moving_limit =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000410 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_LIMIT)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000411 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000412 ((resource_t) pci_moving_config32(dev, PCI_PREF_LIMIT_UPPER32)) << 32;
Myles Watson032a9652009-05-11 22:24:53 +0000413
Eric Biederman03acab62004-10-14 21:25:53 +0000414 moving = moving_base & moving_limit;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000415 /* Initialize the prefetchable memory constraints on the current bus. */
416 pci_record_bridge_resource(dev, moving, PCI_PREF_MEMORY_BASE,
417 IORESOURCE_MEM | IORESOURCE_PREFETCH);
Myles Watson032a9652009-05-11 22:24:53 +0000418
Myles Watson29cc9ed2009-07-02 18:56:24 +0000419 /* See if the bridge mem resources are implemented. */
420 moving_base = ((u32) pci_moving_config16(dev, PCI_MEMORY_BASE)) << 16;
421 moving_limit = ((u32) pci_moving_config16(dev, PCI_MEMORY_LIMIT)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000422
423 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000424
Myles Watson29cc9ed2009-07-02 18:56:24 +0000425 /* Initialize the memory resources on the current bus. */
426 pci_record_bridge_resource(dev, moving, PCI_MEMORY_BASE,
427 IORESOURCE_MEM);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000428
Eric Biederman5cd81732004-03-11 15:01:31 +0000429 compact_resources(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000430}
431
Eric Biederman5899fd82003-04-24 06:25:08 +0000432void pci_dev_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000433{
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000434 pci_read_bases(dev, 6);
435 pci_get_rom_resource(dev, PCI_ROM_ADDRESS);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000436}
437
Eric Biederman5899fd82003-04-24 06:25:08 +0000438void pci_bus_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000439{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000440 pci_bridge_read_bases(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000441 pci_read_bases(dev, 2);
442 pci_get_rom_resource(dev, PCI_ROM_ADDRESS1);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000443}
444
Myles Watson29cc9ed2009-07-02 18:56:24 +0000445void pci_domain_read_resources(struct device *dev)
446{
447 struct resource *res;
448
449 /* Initialize the system-wide I/O space constraints. */
450 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
451 res->limit = 0xffffUL;
452 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
453 IORESOURCE_ASSIGNED;
454
455 /* Initialize the system-wide memory resources constraints. */
456 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
457 res->limit = 0xffffffffULL;
458 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
459 IORESOURCE_ASSIGNED;
460}
461
Eric Biederman8ca8d762003-04-22 19:02:15 +0000462static void pci_set_resource(struct device *dev, struct resource *resource)
463{
Eric Biederman03acab62004-10-14 21:25:53 +0000464 resource_t base, end;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000465
Myles Watson29cc9ed2009-07-02 18:56:24 +0000466 /* Make certain the resource has actually been assigned a value. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000467 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000468 printk(BIOS_ERR, "ERROR: %s %02lx %s size: 0x%010llx not "
469 "assigned\n", dev_path(dev), resource->index,
470 resource_type(resource), resource->size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000471 return;
472 }
473
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000474 /* If this resource is fixed don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000475 if (resource->flags & IORESOURCE_FIXED)
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000476 return;
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000477
Myles Watson29cc9ed2009-07-02 18:56:24 +0000478 /* If I have already stored this resource don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000479 if (resource->flags & IORESOURCE_STORED)
Eric Biederman5cd81732004-03-11 15:01:31 +0000480 return;
Eric Biederman5cd81732004-03-11 15:01:31 +0000481
Myles Watson29cc9ed2009-07-02 18:56:24 +0000482 /* If the resource is subtractive don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000483 if (resource->flags & IORESOURCE_SUBTRACTIVE)
Eric Biederman03acab62004-10-14 21:25:53 +0000484 return;
Eric Biederman03acab62004-10-14 21:25:53 +0000485
Myles Watson29cc9ed2009-07-02 18:56:24 +0000486 /* Only handle PCI memory and I/O resources for now. */
487 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Eric Biederman8ca8d762003-04-22 19:02:15 +0000488 return;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000489
Myles Watson29cc9ed2009-07-02 18:56:24 +0000490 /* Enable the resources in the command register. */
Eric Biederman03acab62004-10-14 21:25:53 +0000491 if (resource->size) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000492 if (resource->flags & IORESOURCE_MEM)
Eric Biederman03acab62004-10-14 21:25:53 +0000493 dev->command |= PCI_COMMAND_MEMORY;
Uwe Hermanne4870472010-11-04 23:23:47 +0000494 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000495 dev->command |= PCI_COMMAND_IO;
Uwe Hermanne4870472010-11-04 23:23:47 +0000496 if (resource->flags & IORESOURCE_PCI_BRIDGE)
Eric Biederman03acab62004-10-14 21:25:53 +0000497 dev->command |= PCI_COMMAND_MASTER;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000498 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000499
Myles Watson29cc9ed2009-07-02 18:56:24 +0000500 /* Get the base address. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000501 base = resource->base;
Eric Biederman5cd81732004-03-11 15:01:31 +0000502
Myles Watson29cc9ed2009-07-02 18:56:24 +0000503 /* Get the end. */
Eric Biederman03acab62004-10-14 21:25:53 +0000504 end = resource_end(resource);
Myles Watson032a9652009-05-11 22:24:53 +0000505
Myles Watson29cc9ed2009-07-02 18:56:24 +0000506 /* Now store the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000507 resource->flags |= IORESOURCE_STORED;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000508
Uwe Hermanne4870472010-11-04 23:23:47 +0000509 /*
510 * PCI bridges have no enable bit. They are disabled if the base of
511 * the range is greater than the limit. If the size is zero, disable
Myles Watson29cc9ed2009-07-02 18:56:24 +0000512 * by setting the base = limit and end = limit - 2^gran.
513 */
514 if (resource->size == 0 && (resource->flags & IORESOURCE_PCI_BRIDGE)) {
515 base = resource->limit;
516 end = resource->limit - (1 << resource->gran);
517 resource->base = base;
518 }
519
Eric Biederman8ca8d762003-04-22 19:02:15 +0000520 if (!(resource->flags & IORESOURCE_PCI_BRIDGE)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000521 unsigned long base_lo, base_hi;
Uwe Hermanne4870472010-11-04 23:23:47 +0000522
523 /*
524 * Some chipsets allow us to set/clear the I/O bit
525 * (e.g. VIA 82C686A). So set it to be safe.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000526 */
Eric Biederman03acab62004-10-14 21:25:53 +0000527 base_lo = base & 0xffffffff;
528 base_hi = (base >> 32) & 0xffffffff;
Uwe Hermanne4870472010-11-04 23:23:47 +0000529 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000530 base_lo |= PCI_BASE_ADDRESS_SPACE_IO;
Eric Biederman03acab62004-10-14 21:25:53 +0000531 pci_write_config32(dev, resource->index, base_lo);
Uwe Hermanne4870472010-11-04 23:23:47 +0000532 if (resource->flags & IORESOURCE_PCI64)
Eric Biederman03acab62004-10-14 21:25:53 +0000533 pci_write_config32(dev, resource->index + 4, base_hi);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000534 } else if (resource->index == PCI_IO_BASE) {
535 /* Set the I/O ranges. */
536 pci_write_config8(dev, PCI_IO_BASE, base >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000537 pci_write_config16(dev, PCI_IO_BASE_UPPER16, base >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000538 pci_write_config8(dev, PCI_IO_LIMIT, end >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000539 pci_write_config16(dev, PCI_IO_LIMIT_UPPER16, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000540 } else if (resource->index == PCI_MEMORY_BASE) {
541 /* Set the memory range. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000542 pci_write_config16(dev, PCI_MEMORY_BASE, base >> 16);
Eric Biederman03acab62004-10-14 21:25:53 +0000543 pci_write_config16(dev, PCI_MEMORY_LIMIT, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000544 } else if (resource->index == PCI_PREF_MEMORY_BASE) {
545 /* Set the prefetchable memory range. */
Eric Biederman03acab62004-10-14 21:25:53 +0000546 pci_write_config16(dev, PCI_PREF_MEMORY_BASE, base >> 16);
547 pci_write_config32(dev, PCI_PREF_BASE_UPPER32, base >> 32);
548 pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, end >> 16);
549 pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, end >> 32);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000550 } else {
551 /* Don't let me think I stored the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000552 resource->flags &= ~IORESOURCE_STORED;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000553 printk(BIOS_ERR, "ERROR: invalid resource->index %lx\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000554 resource->index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000555 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000556
Eric Biederman03acab62004-10-14 21:25:53 +0000557 report_resource_stored(dev, resource, "");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000558}
559
Eric Biederman5899fd82003-04-24 06:25:08 +0000560void pci_dev_set_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000561{
Myles Watsonc25cc112010-05-21 14:33:48 +0000562 struct resource *res;
Myles Watson894a3472010-06-09 22:41:35 +0000563 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000564 u8 line;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000565
Uwe Hermanne4870472010-11-04 23:23:47 +0000566 for (res = dev->resource_list; res; res = res->next)
Myles Watsonc25cc112010-05-21 14:33:48 +0000567 pci_set_resource(dev, res);
Uwe Hermanne4870472010-11-04 23:23:47 +0000568
Myles Watson894a3472010-06-09 22:41:35 +0000569 for (bus = dev->link_list; bus; bus = bus->next) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000570 if (bus->children)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000571 assign_resources(bus);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000572 }
573
Myles Watson29cc9ed2009-07-02 18:56:24 +0000574 /* Set a default latency timer. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000575 pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000576
Myles Watson29cc9ed2009-07-02 18:56:24 +0000577 /* Set a default secondary latency timer. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000578 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000579 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000580
Myles Watson29cc9ed2009-07-02 18:56:24 +0000581 /* Zero the IRQ settings. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000582 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Uwe Hermanne4870472010-11-04 23:23:47 +0000583 if (line)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000584 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
Uwe Hermanne4870472010-11-04 23:23:47 +0000585
Myles Watson29cc9ed2009-07-02 18:56:24 +0000586 /* Set the cache line size, so far 64 bytes is good for everyone. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000587 pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000588}
589
Eric Biedermane9a271e32003-09-02 03:36:25 +0000590void pci_dev_enable_resources(struct device *dev)
591{
Eric Biedermana9e632c2004-11-18 22:38:08 +0000592 const struct pci_operations *ops;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000593 u16 command;
Eric Biederman03acab62004-10-14 21:25:53 +0000594
Uwe Hermanne4870472010-11-04 23:23:47 +0000595 /* Set the subsystem vendor and device ID for mainboard devices. */
Eric Biederman03acab62004-10-14 21:25:53 +0000596 ops = ops_pci(dev);
Eric Biedermandbec2d42004-10-21 10:44:08 +0000597 if (dev->on_mainboard && ops && ops->set_subsystem) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000598 printk(BIOS_DEBUG, "%s subsystem <- %02x/%02x\n", dev_path(dev),
599 CONFIG_MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID,
600 CONFIG_MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID);
Myles Watson032a9652009-05-11 22:24:53 +0000601 ops->set_subsystem(dev,
Myles Watson29cc9ed2009-07-02 18:56:24 +0000602 CONFIG_MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID,
603 CONFIG_MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID);
Eric Biederman03acab62004-10-14 21:25:53 +0000604 }
Eric Biedermane9a271e32003-09-02 03:36:25 +0000605 command = pci_read_config16(dev, PCI_COMMAND);
606 command |= dev->command;
Uwe Hermanne4870472010-11-04 23:23:47 +0000607
Myles Watson29cc9ed2009-07-02 18:56:24 +0000608 /* v3 has
609 * command |= (PCI_COMMAND_PARITY + PCI_COMMAND_SERR); // Error check.
610 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000611
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000612 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000613 pci_write_config16(dev, PCI_COMMAND, command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000614}
615
616void pci_bus_enable_resources(struct device *dev)
617{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000618 u16 ctrl;
619
Uwe Hermanne4870472010-11-04 23:23:47 +0000620 /*
621 * Enable I/O in command register if there is VGA card
Myles Watson29cc9ed2009-07-02 18:56:24 +0000622 * connected with (even it does not claim I/O resource).
623 */
Myles Watson894a3472010-06-09 22:41:35 +0000624 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
Li-Ta Lo515f6c72005-01-11 22:48:54 +0000625 dev->command |= PCI_COMMAND_IO;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000626 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +0000627 ctrl |= dev->link_list->bridge_ctrl;
Uwe Hermanne4870472010-11-04 23:23:47 +0000628 ctrl |= (PCI_BRIDGE_CTL_PARITY + PCI_BRIDGE_CTL_SERR); /* Error check. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000629 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000630 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
631
632 pci_dev_enable_resources(dev);
633}
634
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000635void pci_bus_reset(struct bus *bus)
636{
Uwe Hermanne4870472010-11-04 23:23:47 +0000637 u16 ctl;
638
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000639 ctl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
640 ctl |= PCI_BRIDGE_CTL_BUS_RESET;
641 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
642 mdelay(10);
Uwe Hermanne4870472010-11-04 23:23:47 +0000643
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000644 ctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
645 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
646 delay(1);
647}
648
Myles Watson29cc9ed2009-07-02 18:56:24 +0000649void pci_dev_set_subsystem(struct device *dev, unsigned vendor, unsigned device)
Eric Biederman03acab62004-10-14 21:25:53 +0000650{
Myles Watson032a9652009-05-11 22:24:53 +0000651 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
Myles Watson29cc9ed2009-07-02 18:56:24 +0000652 ((device & 0xffff) << 16) | (vendor & 0xffff));
Eric Biederman03acab62004-10-14 21:25:53 +0000653}
654
Uwe Hermanne4870472010-11-04 23:23:47 +0000655/** Default handler: only runs the relevant PCI BIOS. */
Li-Ta Lo883b8792005-01-10 23:16:22 +0000656void pci_dev_init(struct device *dev)
657{
Torsten Duwe1f2f8002008-01-06 01:10:54 +0000658#if CONFIG_PCI_ROM_RUN == 1 || CONFIG_VGA_ROM_RUN == 1
Li-Ta Lo883b8792005-01-10 23:16:22 +0000659 struct rom_header *rom, *ram;
660
Myles Watson17aeeca2009-10-07 18:41:08 +0000661 if (CONFIG_PCI_ROM_RUN != 1 && /* Only execute VGA ROMs. */
662 ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
Roman Kononov778a42b2007-04-06 18:34:39 +0000663 return;
Myles Watson17aeeca2009-10-07 18:41:08 +0000664
665 if (CONFIG_VGA_ROM_RUN != 1 && /* Only execute non-VGA ROMs. */
666 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
667 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000668
Li-Ta Lo883b8792005-01-10 23:16:22 +0000669 rom = pci_rom_probe(dev);
670 if (rom == NULL)
671 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000672
Li-Ta Lo883b8792005-01-10 23:16:22 +0000673 ram = pci_rom_load(dev, rom);
Yinghai Lu9e4faef2005-01-14 22:04:49 +0000674 if (ram == NULL)
675 return;
Li-Ta Lo883b8792005-01-10 23:16:22 +0000676
Stefan Reinauerd98cf5b2008-08-01 11:25:41 +0000677 run_bios(dev, (unsigned long)ram);
Roman Kononov778a42b2007-04-06 18:34:39 +0000678
679#if CONFIG_CONSOLE_VGA == 1
Uwe Hermanne4870472010-11-04 23:23:47 +0000680 if ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA)
Luc Verhaegen43bc5a9c2009-05-29 03:44:47 +0000681 vga_console_init();
Torsten Duwe1f2f8002008-01-06 01:10:54 +0000682#endif /* CONFIG_CONSOLE_VGA */
683#endif /* CONFIG_PCI_ROM_RUN || CONFIG_VGA_ROM_RUN */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000684}
Li-Ta Lo883b8792005-01-10 23:16:22 +0000685
Li-Ta Loe5266692004-03-23 21:28:05 +0000686/** Default device operation for PCI devices */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000687static struct pci_operations pci_dev_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000688 .set_subsystem = pci_dev_set_subsystem,
689};
690
Eric Biederman8ca8d762003-04-22 19:02:15 +0000691struct device_operations default_pci_ops_dev = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000692 .read_resources = pci_dev_read_resources,
693 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000694 .enable_resources = pci_dev_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000695 .init = pci_dev_init,
696 .scan_bus = 0,
697 .enable = 0,
698 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000699};
Li-Ta Loe5266692004-03-23 21:28:05 +0000700
701/** Default device operations for PCI bridges */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000702static struct pci_operations pci_bus_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000703 .set_subsystem = 0,
704};
Li-Ta Lo883b8792005-01-10 23:16:22 +0000705
Eric Biederman8ca8d762003-04-22 19:02:15 +0000706struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000707 .read_resources = pci_bus_read_resources,
708 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000709 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000710 .init = 0,
711 .scan_bus = pci_scan_bridge,
712 .enable = 0,
713 .reset_bus = pci_bus_reset,
714 .ops_pci = &pci_bus_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000715};
Li-Ta Loe5266692004-03-23 21:28:05 +0000716
717/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000718 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000719 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000720 * This function is a heuristic to detect which type of bus is downstream
721 * of a PCI-to-PCI bridge. This functions by looking for various capability
722 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
723 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000724 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000725 * When only a PCI-Express capability is found the type is examined to see
726 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000727 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000728 * @param dev Pointer to the device structure of the bridge.
729 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000730 */
731static struct device_operations *get_pci_bridge_ops(device_t dev)
732{
Uwe Hermanne4870472010-11-04 23:23:47 +0000733 unsigned int pos;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000734
735#if CONFIG_PCIX_PLUGIN_SUPPORT == 1
736 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
737 if (pos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000738 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000739 return &default_pcix_ops_bus;
740 }
741#endif
742#if CONFIG_AGP_PLUGIN_SUPPORT == 1
Uwe Hermanne4870472010-11-04 23:23:47 +0000743 /* How do I detect a PCI to AGP bridge? */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000744#endif
745#if CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT == 1
746 pos = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000747 while ((pos = pci_find_next_capability(dev, PCI_CAP_ID_HT, pos))) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000748 u16 flags;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000749 flags = pci_read_config16(dev, pos + PCI_CAP_FLAGS);
750 if ((flags >> 13) == 1) {
751 /* Host or Secondary Interface */
Uwe Hermanne4870472010-11-04 23:23:47 +0000752 printk(BIOS_DEBUG, "%s subordinate bus HT\n",
753 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000754 return &default_ht_ops_bus;
755 }
756 }
757#endif
758#if CONFIG_PCIEXP_PLUGIN_SUPPORT == 1
759 pos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
760 if (pos) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000761 u16 flags;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000762 flags = pci_read_config16(dev, pos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000763 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000764 case PCI_EXP_TYPE_ROOT_PORT:
765 case PCI_EXP_TYPE_UPSTREAM:
766 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000767 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000768 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000769 return &default_pciexp_ops_bus;
770 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +0000771 printk(BIOS_DEBUG, "%s subordinate PCI\n",
772 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000773 return &default_pci_ops_bus;
774 default:
775 break;
776 }
777 }
778#endif
779 return &default_pci_ops_bus;
780}
781
782/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000783 * Set up PCI device operation.
784 *
785 * Check if it already has a driver. If not, use find_device_operations(),
786 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +0000787 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000788 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +0000789 * @see pci_drivers
790 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000791static void set_pci_ops(struct device *dev)
792{
793 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +0000794
Uwe Hermanne4870472010-11-04 23:23:47 +0000795 if (dev->ops)
796 return;
797
798 /*
799 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +0000800 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000801 */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000802 for (driver = &pci_drivers[0]; driver != &epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000803 if ((driver->vendor == dev->vendor) &&
Myles Watson29cc9ed2009-07-02 18:56:24 +0000804 (driver->device == dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +0000805 dev->ops = (struct device_operations *)driver->ops;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000806 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000807 dev_path(dev), driver->vendor, driver->device,
808 (driver->ops->scan_bus ? "bus " : ""));
Eric Biederman5899fd82003-04-24 06:25:08 +0000809 return;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000810 }
811 }
Li-Ta Loe5266692004-03-23 21:28:05 +0000812
Uwe Hermanne4870472010-11-04 23:23:47 +0000813 /* If I don't have a specific driver use the default operations. */
814 switch (dev->hdr_type & 0x7f) { /* Header type */
815 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +0000816 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
817 goto bad;
818 dev->ops = &default_pci_ops_dev;
819 break;
820 case PCI_HEADER_TYPE_BRIDGE:
821 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
822 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000823 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000824 break;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000825#if CONFIG_CARDBUS_PLUGIN_SUPPORT == 1
826 case PCI_HEADER_TYPE_CARDBUS:
827 dev->ops = &default_cardbus_ops_bus;
828 break;
829#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000830default:
831bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000832 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000833 printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "
834 "header type %02x, ignoring.\n", dev_path(dev),
835 dev->vendor, dev->device,
836 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +0000837 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000838 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000839}
840
841/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000842 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +0000843 *
844 * Given a linked list of PCI device structures and a devfn number, find the
Li-Ta Lo3a812852004-12-03 22:39:34 +0000845 * device structure correspond to the devfn, if present. This function also
846 * removes the device structure from the linked list.
Li-Ta Loe5266692004-03-23 21:28:05 +0000847 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000848 * @param list The device structure list.
849 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000850 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +0000851 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000852 */
Eric Biedermanb78c1972004-10-14 20:54:17 +0000853static struct device *pci_scan_get_dev(struct device **list, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000854{
Eric Biedermanb78c1972004-10-14 20:54:17 +0000855 struct device *dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000856
Eric Biedermanb78c1972004-10-14 20:54:17 +0000857 dev = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000858 for (; *list; list = &(*list)->sibling) {
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000859 if ((*list)->path.type != DEVICE_PATH_PCI) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000860 printk(BIOS_ERR, "child %s not a PCI device\n",
861 dev_path(*list));
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000862 continue;
863 }
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000864 if ((*list)->path.pci.devfn == devfn) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000865 /* Unlink from the list. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000866 dev = *list;
867 *list = (*list)->sibling;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000868 dev->sibling = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000869 break;
870 }
871 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000872
Uwe Hermanne4870472010-11-04 23:23:47 +0000873 /*
874 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +0000875 * bus. When the list of devices was formed we removed all of the
876 * parents children, and now we are interleaving static and dynamic
877 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000878 */
Eric Biedermane9a271e32003-09-02 03:36:25 +0000879 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000880 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +0000881
Myles Watson29cc9ed2009-07-02 18:56:24 +0000882 /* Find the last child of our parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000883 for (child = dev->bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000884 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +0000885
Myles Watson29cc9ed2009-07-02 18:56:24 +0000886 /* Place the device on the list of children of its parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000887 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000888 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000889 else
Eric Biedermane9a271e32003-09-02 03:36:25 +0000890 dev->bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000891 }
892
Eric Biederman8ca8d762003-04-22 19:02:15 +0000893 return dev;
894}
895
Myles Watson032a9652009-05-11 22:24:53 +0000896/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000897 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +0000898 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000899 * Determine the existence of a given PCI device. Allocate a new struct device
900 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000901 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000902 * @param dev Pointer to the dev structure.
903 * @param bus Pointer to the bus structure.
904 * @param devfn A device/function number to look at.
905 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000906 */
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000907device_t pci_probe_dev(device_t dev, struct bus *bus, unsigned devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000908{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000909 u32 id, class;
910 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000911
Myles Watson29cc9ed2009-07-02 18:56:24 +0000912 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000913 if (!dev) {
914 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +0000915
Myles Watson29cc9ed2009-07-02 18:56:24 +0000916 dummy.bus = bus;
917 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000918 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +0000919
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000920 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000921 /*
922 * Have we found something? Some broken boards return 0 if a
923 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000924 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000925 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +0000926 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000927
Stefan Reinauer7355c752010-04-02 16:30:25 +0000928 if ((id == 0x00000000) || (id == 0x0000ffff) ||
929 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000930 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
931 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000932 return NULL;
933 }
934 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000935 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +0000936 /*
937 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +0000938 * specific operations this operations we will disable the
939 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +0000940 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000941 * This is geared toward devices that have subfunctions
942 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +0000943 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000944 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +0000945 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000946 */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000947 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000948 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000949 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +0000950
Myles Watson29cc9ed2009-07-02 18:56:24 +0000951 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000952 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +0000953
Uwe Hermanne4870472010-11-04 23:23:47 +0000954 /*
955 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +0000956 * this is because we have already disabled the device. But
957 * this also handles optional devices that may not always
958 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000959 */
960 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000961 if ((id == 0xffffffff) || (id == 0x00000000) ||
962 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000963 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000964 printk(BIOS_INFO, "PCI: Static device %s not "
965 "found, disabling it.\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000966 dev->enabled = 0;
967 }
968 return dev;
969 }
970 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000971
Myles Watson29cc9ed2009-07-02 18:56:24 +0000972 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000973 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
974 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +0000975
Myles Watson29cc9ed2009-07-02 18:56:24 +0000976 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000977 dev->vendor = id & 0xffff;
978 dev->device = (id >> 16) & 0xffff;
979 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000980
981 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000982 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +0000983
Myles Watson29cc9ed2009-07-02 18:56:24 +0000984 /* Architectural/System devices always need to be bus masters. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000985 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000986 dev->command |= PCI_COMMAND_MASTER;
Uwe Hermanne4870472010-11-04 23:23:47 +0000987
988 /*
989 * Look at the vendor and device ID, or at least the header type and
Myles Watson29cc9ed2009-07-02 18:56:24 +0000990 * class and figure out which set of configuration methods to use.
991 * Unless we already have some PCI ops.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000992 */
993 set_pci_ops(dev);
994
Myles Watson29cc9ed2009-07-02 18:56:24 +0000995 /* Now run the magic enable/disable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000996 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000997 dev->ops->enable(dev);
Myles Watson032a9652009-05-11 22:24:53 +0000998
Myles Watson29cc9ed2009-07-02 18:56:24 +0000999 /* Display the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +00001000 printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
1001 dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
1002 dev->ops ? "" : " No operations");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001003
1004 return dev;
1005}
1006
Myles Watson032a9652009-05-11 22:24:53 +00001007/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001008 * Scan a PCI bus.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001009 *
Li-Ta Loe5266692004-03-23 21:28:05 +00001010 * Determine the existence of devices and bridges on a PCI bus. If there are
1011 * bridges on the bus, recursively scan the buses behind the bridges.
1012 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001013 * This function is the default scan_bus() method for the root device
1014 * 'dev_root'.
1015 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001016 * @param bus Pointer to the bus structure.
1017 * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1018 * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
1019 * @param max Current bus number.
1020 * @return The maximum bus number found, after scanning all subordinate busses.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001021 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001022unsigned int pci_scan_bus(struct bus *bus, unsigned min_devfn,
1023 unsigned max_devfn, unsigned int max)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001024{
1025 unsigned int devfn;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001026 struct device *old_devices;
1027 struct device *child;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001028
Stefan Reinauer08670622009-06-30 15:17:49 +00001029#if CONFIG_PCI_BUS_SEGN_BITS
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001030 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %04x:%02x\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001031 bus->secondary >> 8, bus->secondary & 0xff);
Yinghai Lu5f9624d2006-10-04 22:56:21 +00001032#else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001033 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %02x\n", bus->secondary);
Yinghai Lu5f9624d2006-10-04 22:56:21 +00001034#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +00001035
Uwe Hermanne4870472010-11-04 23:23:47 +00001036 /* Maximum sane devfn is 0xFF. */
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001037 if (max_devfn > 0xff) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001038 printk(BIOS_ERR, "PCI: pci_scan_bus limits devfn %x - "
1039 "devfn %x\n", min_devfn, max_devfn);
1040 printk(BIOS_ERR, "PCI: pci_scan_bus upper limit too big. "
1041 "Using 0xff.\n");
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001042 max_devfn=0xff;
1043 }
1044
Eric Biederman8ca8d762003-04-22 19:02:15 +00001045 old_devices = bus->children;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001046 bus->children = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001047
1048 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001049
1050 /*
1051 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001052 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001053 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001054 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Myles Watson29cc9ed2009-07-02 18:56:24 +00001055 struct device *dev;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001056
Uwe Hermanne4870472010-11-04 23:23:47 +00001057 /* First thing setup the device structure. */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001058 dev = pci_scan_get_dev(&old_devices, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001059
Myles Watson29cc9ed2009-07-02 18:56:24 +00001060 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001061 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001062
Uwe Hermanne4870472010-11-04 23:23:47 +00001063 /*
1064 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001065 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001066 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001067 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001068 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001069 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001070 devfn += 0x07;
1071 }
1072 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001073
Eric Biederman8ca8d762003-04-22 19:02:15 +00001074 post_code(0x25);
1075
Uwe Hermanne4870472010-11-04 23:23:47 +00001076 /*
1077 * Warn if any leftover static devices are are found.
1078 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001079 */
1080 if (old_devices) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001081 device_t left;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001082 printk(BIOS_WARNING, "PCI: Left over static devices:\n");
Uwe Hermanne4870472010-11-04 23:23:47 +00001083 for (left = old_devices; left; left = left->sibling)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001084 printk(BIOS_WARNING, "%s\n", dev_path(left));
Uwe Hermanne4870472010-11-04 23:23:47 +00001085
1086 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001087 }
1088
Uwe Hermanne4870472010-11-04 23:23:47 +00001089 /*
1090 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001091 * scan the bus behind that child.
1092 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001093 for (child = bus->children; child; child = child->sibling)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001094 max = scan_bus(child, max);
Li-Ta Loe5266692004-03-23 21:28:05 +00001095
Uwe Hermanne4870472010-11-04 23:23:47 +00001096 /*
1097 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001098 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001099 * Return how far we've got finding sub-buses.
1100 */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001101 printk(BIOS_DEBUG, "PCI: pci_scan_bus returning with max=%03x\n", max);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001102 post_code(0x55);
1103 return max;
1104}
1105
Li-Ta Loe5266692004-03-23 21:28:05 +00001106/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001107 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001108 *
1109 * Determine the existence of buses behind the bridge. Set up the bridge
1110 * according to the result of the scan.
1111 *
1112 * This function is the default scan_bus() method for PCI bridge devices.
1113 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001114 * @param dev Pointer to the bridge device.
1115 * @param max The highest bus number assigned up to now.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001116 * @param do_scan_bus TODO
Myles Watson29cc9ed2009-07-02 18:56:24 +00001117 * @return The maximum bus number found, after scanning all subordinate buses.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001118 */
Myles Watson032a9652009-05-11 22:24:53 +00001119unsigned int do_pci_scan_bridge(struct device *dev, unsigned int max,
Myles Watson29cc9ed2009-07-02 18:56:24 +00001120 unsigned int (*do_scan_bus) (struct bus * bus,
1121 unsigned min_devfn,
1122 unsigned max_devfn,
1123 unsigned int max))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001124{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001125 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001126 u32 buses;
1127 u16 cr;
Eric Biederman83b991a2003-10-11 06:20:25 +00001128
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001129 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001130
Myles Watson894a3472010-06-09 22:41:35 +00001131 if (dev->link_list == NULL) {
1132 struct bus *link;
1133 link = malloc(sizeof(*link));
1134 if (link == NULL)
1135 die("Couldn't allocate a link!\n");
1136 memset(link, 0, sizeof(*link));
1137 link->dev = dev;
1138 dev->link_list = link;
1139 }
1140
1141 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001142
Uwe Hermanne4870472010-11-04 23:23:47 +00001143 /*
1144 * Set up the primary, secondary and subordinate bus numbers. We have
Eric Biederman8ca8d762003-04-22 19:02:15 +00001145 * no idea how many buses are behind this bridge yet, so we set the
Myles Watson032a9652009-05-11 22:24:53 +00001146 * subordinate bus number to 0xff for the moment.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001147 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001148 bus->secondary = ++max;
1149 bus->subordinate = 0xff;
Li-Ta Loe5266692004-03-23 21:28:05 +00001150
Eric Biederman8ca8d762003-04-22 19:02:15 +00001151 /* Clear all status bits and turn off memory, I/O and master enables. */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001152 cr = pci_read_config16(dev, PCI_COMMAND);
1153 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1154 pci_write_config16(dev, PCI_STATUS, 0xffff);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001155
Uwe Hermanne4870472010-11-04 23:23:47 +00001156 /*
1157 * Read the existing primary/secondary/subordinate bus
Eric Biedermanb78c1972004-10-14 20:54:17 +00001158 * number configuration.
1159 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001160 buses = pci_read_config32(dev, PCI_PRIMARY_BUS);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001161
Uwe Hermanne4870472010-11-04 23:23:47 +00001162 /*
1163 * Configure the bus numbers for this bridge: the configuration
Eric Biederman8ca8d762003-04-22 19:02:15 +00001164 * transactions will not be propagated by the bridge if it is not
Eric Biedermanb78c1972004-10-14 20:54:17 +00001165 * correctly configured.
1166 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001167 buses &= 0xff000000;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001168 buses |= (((unsigned int)(dev->bus->secondary) << 0) |
1169 ((unsigned int)(bus->secondary) << 8) |
1170 ((unsigned int)(bus->subordinate) << 16));
Eric Biedermane9a271e32003-09-02 03:36:25 +00001171 pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001172
Uwe Hermanne4870472010-11-04 23:23:47 +00001173 /* Now we can scan all subordinate buses (those behind the bridge). */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001174 max = do_scan_bus(bus, 0x00, 0xff, max);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001175
Uwe Hermanne4870472010-11-04 23:23:47 +00001176 /*
1177 * We know the number of buses behind this bridge. Set the subordinate
Eric Biedermanb78c1972004-10-14 20:54:17 +00001178 * bus number to its real value.
1179 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001180 bus->subordinate = max;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001181 buses = (buses & 0xff00ffff) | ((unsigned int)(bus->subordinate) << 16);
Eric Biedermane9a271e32003-09-02 03:36:25 +00001182 pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
1183 pci_write_config16(dev, PCI_COMMAND, cr);
Myles Watson032a9652009-05-11 22:24:53 +00001184
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001185 printk(BIOS_SPEW, "%s returns max %d\n", __func__, max);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001186 return max;
1187}
Li-Ta Loe5266692004-03-23 21:28:05 +00001188
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001189/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001190 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001191 *
1192 * Determine the existence of buses behind the bridge. Set up the bridge
1193 * according to the result of the scan.
1194 *
1195 * This function is the default scan_bus() method for PCI bridge devices.
1196 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001197 * @param dev Pointer to the bridge device.
1198 * @param max The highest bus number assigned up to now.
1199 * @return The maximum bus number found, after scanning all subordinate buses.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001200 */
1201unsigned int pci_scan_bridge(struct device *dev, unsigned int max)
1202{
1203 return do_pci_scan_bridge(dev, max, pci_scan_bus);
1204}
1205
Myles Watson29cc9ed2009-07-02 18:56:24 +00001206/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001207 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001208 *
1209 * This function is the default scan_bus() method for PCI domains.
1210 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001211 * @param dev Pointer to the domain.
1212 * @param max The highest bus number assigned up to now.
1213 * @return The maximum bus number found, after scanning all subordinate busses.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001214 */
1215unsigned int pci_domain_scan_bus(device_t dev, unsigned int max)
1216{
Myles Watson894a3472010-06-09 22:41:35 +00001217 max = pci_scan_bus(dev->link_list, PCI_DEVFN(0, 0), 0xff, max);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001218 return max;
1219}
1220
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001221#if CONFIG_PC80_SYSTEM == 1
Myles Watson29cc9ed2009-07-02 18:56:24 +00001222/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001223 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001224 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001225 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001226 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001227 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001228 *
1229 * This function should be called for each PCI slot in your system.
1230 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001231 * @param bus Pointer to the bus structure.
1232 * @param slot TODO
1233 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1234 * of this slot. The particular IRQ #s that are passed in depend on the
1235 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001236 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001237void pci_assign_irqs(unsigned bus, unsigned slot,
Uwe Hermanne4870472010-11-04 23:23:47 +00001238 const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001239{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001240 unsigned int funct;
1241 device_t pdev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001242 u8 line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001243
Uwe Hermanne4870472010-11-04 23:23:47 +00001244 /* Each slot may contain up to eight functions. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001245 for (funct = 0; funct < 8; funct++) {
1246 pdev = dev_find_slot(bus, (slot << 3) + funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001247
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001248 if (!pdev)
1249 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001250
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001251 line = pci_read_config8(pdev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001252
Uwe Hermanne4870472010-11-04 23:23:47 +00001253 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001254 if ((line < 1) || (line > 4))
1255 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001256
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001257 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001258
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001259 printk(BIOS_DEBUG, "Assigning IRQ %d to %d:%x.%d\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001260 irq, bus, slot, funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001261
Stefan Reinauer14e22772010-04-27 06:56:47 +00001262 pci_write_config8(pdev, PCI_INTERRUPT_LINE,
Uwe Hermanne4870472010-11-04 23:23:47 +00001263 pIntAtoD[line - 1]);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001264
1265#ifdef PARANOID_IRQ_ASSIGNMENTS
Myles Watson17aeeca2009-10-07 18:41:08 +00001266 irq = pci_read_config8(pdev, PCI_INTERRUPT_LINE);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001267 printk(BIOS_DEBUG, " Readback = %d\n", irq);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001268#endif
1269
Uwe Hermanne4870472010-11-04 23:23:47 +00001270 /* Change to level triggered. */
1271 i8259_configure_irq_trigger(pIntAtoD[line - 1],
1272 IRQ_LEVEL_TRIGGERED);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001273 }
1274}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001275#endif