blob: 2ccb38a75eed74af175abbc65e2ec5a306068486 [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
Eric Biederman03acab62004-10-14 21:25:53 +000054
Myles Watson29cc9ed2009-07-02 18:56:24 +000055u8 pci_moving_config8(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000056{
Myles Watson29cc9ed2009-07-02 18:56:24 +000057 u8 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000058
Eric Biederman03acab62004-10-14 21:25:53 +000059 value = pci_read_config8(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000060
Eric Biederman03acab62004-10-14 21:25:53 +000061 pci_write_config8(dev, reg, 0xff);
62 ones = pci_read_config8(dev, reg);
63
64 pci_write_config8(dev, reg, 0x00);
65 zeroes = pci_read_config8(dev, reg);
66
67 pci_write_config8(dev, reg, value);
68
69 return ones ^ zeroes;
70}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +000071
Uwe Hermanne4870472010-11-04 23:23:47 +000072u16 pci_moving_config16(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000073{
Myles Watson29cc9ed2009-07-02 18:56:24 +000074 u16 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000075
Eric Biederman03acab62004-10-14 21:25:53 +000076 value = pci_read_config16(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000077
Eric Biederman03acab62004-10-14 21:25:53 +000078 pci_write_config16(dev, reg, 0xffff);
79 ones = pci_read_config16(dev, reg);
80
81 pci_write_config16(dev, reg, 0x0000);
82 zeroes = pci_read_config16(dev, reg);
83
84 pci_write_config16(dev, reg, value);
85
86 return ones ^ zeroes;
87}
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +000088
Uwe Hermanne4870472010-11-04 23:23:47 +000089u32 pci_moving_config32(struct device *dev, unsigned int reg)
Eric Biederman03acab62004-10-14 21:25:53 +000090{
Myles Watson29cc9ed2009-07-02 18:56:24 +000091 u32 value, ones, zeroes;
Uwe Hermanne4870472010-11-04 23:23:47 +000092
Eric Biederman03acab62004-10-14 21:25:53 +000093 value = pci_read_config32(dev, reg);
Myles Watson032a9652009-05-11 22:24:53 +000094
Eric Biederman03acab62004-10-14 21:25:53 +000095 pci_write_config32(dev, reg, 0xffffffff);
96 ones = pci_read_config32(dev, reg);
97
98 pci_write_config32(dev, reg, 0x00000000);
99 zeroes = pci_read_config32(dev, reg);
100
101 pci_write_config32(dev, reg, value);
102
103 return ones ^ zeroes;
104}
105
Myles Watson29cc9ed2009-07-02 18:56:24 +0000106/**
107 * Given a device, a capability type, and a last position, return the next
108 * matching capability. Always start at the head of the list.
109 *
110 * @param dev Pointer to the device structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000111 * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000112 * @param last Location of the PCI capability register to start from.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000113 * @return The next matching capability.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000114 */
115unsigned pci_find_next_capability(struct device *dev, unsigned cap,
116 unsigned last)
Eric Biederman03acab62004-10-14 21:25:53 +0000117{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +0000118 unsigned pos = 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000119 u16 status;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000120 unsigned reps = 48;
Stefan Reinauer4d933dd2009-07-21 21:36:41 +0000121
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000122 status = pci_read_config16(dev, PCI_STATUS);
Uwe Hermanne4870472010-11-04 23:23:47 +0000123 if (!(status & PCI_STATUS_CAP_LIST))
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000124 return 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000125
Myles Watson29cc9ed2009-07-02 18:56:24 +0000126 switch (dev->hdr_type & 0x7f) {
Eric Biederman03acab62004-10-14 21:25:53 +0000127 case PCI_HEADER_TYPE_NORMAL:
128 case PCI_HEADER_TYPE_BRIDGE:
129 pos = PCI_CAPABILITY_LIST;
130 break;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000131 case PCI_HEADER_TYPE_CARDBUS:
132 pos = PCI_CB_CAPABILITY_LIST;
133 break;
134 default:
135 return 0;
Eric Biederman03acab62004-10-14 21:25:53 +0000136 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000137
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000138 pos = pci_read_config8(dev, pos);
Uwe Hermanne4870472010-11-04 23:23:47 +0000139 while (reps-- && (pos >= 0x40)) { /* Loop through the linked list. */
Eric Biederman03acab62004-10-14 21:25:53 +0000140 int this_cap;
Uwe Hermanne4870472010-11-04 23:23:47 +0000141
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000142 pos &= ~3;
Eric Biederman03acab62004-10-14 21:25:53 +0000143 this_cap = pci_read_config8(dev, pos + PCI_CAP_LIST_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000144 printk(BIOS_SPEW, "Capability: type 0x%02x @ 0x%02x\n",
145 this_cap, pos);
146 if (this_cap == 0xff)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000147 break;
Uwe Hermanne4870472010-11-04 23:23:47 +0000148
149 if (!last && (this_cap == cap))
Eric Biederman03acab62004-10-14 21:25:53 +0000150 return pos;
Uwe Hermanne4870472010-11-04 23:23:47 +0000151
152 if (last == pos)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000153 last = 0;
Uwe Hermanne4870472010-11-04 23:23:47 +0000154
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000155 pos = pci_read_config8(dev, pos + PCI_CAP_LIST_NEXT);
Eric Biederman03acab62004-10-14 21:25:53 +0000156 }
157 return 0;
158}
159
Myles Watson29cc9ed2009-07-02 18:56:24 +0000160/**
161 * Given a device, and a capability type, return the next matching
162 * capability. Always start at the head of the list.
163 *
164 * @param dev Pointer to the device structure.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000165 * @param cap PCI_CAP_LIST_ID of the PCI capability we're looking for.
166 * @return The next matching capability.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000167 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000168unsigned pci_find_capability(device_t dev, unsigned cap)
169{
170 return pci_find_next_capability(dev, cap, 0);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000171}
172
Myles Watson29cc9ed2009-07-02 18:56:24 +0000173/**
174 * Given a device and register, read the size of the BAR for that register.
175 *
176 * @param dev Pointer to the device structure.
177 * @param index Address of the PCI configuration register.
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000178 * @return TODO
Eric Biederman8ca8d762003-04-22 19:02:15 +0000179 */
Eric Biederman03acab62004-10-14 21:25:53 +0000180struct resource *pci_get_resource(struct device *dev, unsigned long index)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000181{
Eric Biederman5cd81732004-03-11 15:01:31 +0000182 struct resource *resource;
Eric Biederman03acab62004-10-14 21:25:53 +0000183 unsigned long value, attr;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000184 resource_t moving, limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000185
Myles Watson29cc9ed2009-07-02 18:56:24 +0000186 /* Initialize the resources to nothing. */
Eric Biederman03acab62004-10-14 21:25:53 +0000187 resource = new_resource(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000188
Myles Watson29cc9ed2009-07-02 18:56:24 +0000189 /* Get the initial value. */
Eric Biederman03acab62004-10-14 21:25:53 +0000190 value = pci_read_config32(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000191
Myles Watson29cc9ed2009-07-02 18:56:24 +0000192 /* See which bits move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000193 moving = pci_moving_config32(dev, index);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000194
Myles Watson29cc9ed2009-07-02 18:56:24 +0000195 /* Initialize attr to the bits that do not move. */
Eric Biederman03acab62004-10-14 21:25:53 +0000196 attr = value & ~moving;
197
Myles Watson29cc9ed2009-07-02 18:56:24 +0000198 /* If it is a 64bit resource look at the high half as well. */
Eric Biederman03acab62004-10-14 21:25:53 +0000199 if (((attr & PCI_BASE_ADDRESS_SPACE_IO) == 0) &&
Myles Watson29cc9ed2009-07-02 18:56:24 +0000200 ((attr & PCI_BASE_ADDRESS_MEM_LIMIT_MASK) ==
201 PCI_BASE_ADDRESS_MEM_LIMIT_64)) {
202 /* Find the high bits that move. */
203 moving |=
204 ((resource_t) pci_moving_config32(dev, index + 4)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000205 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000206
Myles Watson032a9652009-05-11 22:24:53 +0000207 /* Find the resource constraints.
Eric Biederman03acab62004-10-14 21:25:53 +0000208 * Start by finding the bits that move. From there:
209 * - Size is the least significant bit of the bits that move.
210 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000211 * See PCI Spec 6.2.5.1.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000212 */
Eric Biederman03acab62004-10-14 21:25:53 +0000213 limit = 0;
214 if (moving) {
215 resource->size = 1;
216 resource->align = resource->gran = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000217 while (!(moving & resource->size)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000218 resource->size <<= 1;
219 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000220 resource->gran += 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000221 }
222 resource->limit = limit = moving | (resource->size - 1);
223 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000224
Uwe Hermanne4870472010-11-04 23:23:47 +0000225 /*
226 * Some broken hardware has read-only registers that do not
Eric Biederman03acab62004-10-14 21:25:53 +0000227 * really size correctly.
Uwe Hermanne4870472010-11-04 23:23:47 +0000228 *
229 * Example: the Acer M7229 has BARs 1-4 normally read-only,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000230 * so BAR1 at offset 0x10 reads 0x1f1. If you size that register
Uwe Hermanne4870472010-11-04 23:23:47 +0000231 * by writing 0xffffffff to it, it will read back as 0x1f1 -- which
232 * is a violation of the spec.
233 *
234 * We catch this case and ignore it by observing which bits move.
235 *
236 * This also catches the common case of unimplemented registers
Eric Biederman03acab62004-10-14 21:25:53 +0000237 * that always read back as 0.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000238 */
Eric Biederman03acab62004-10-14 21:25:53 +0000239 if (moving == 0) {
240 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000241 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
242 "read-only ignoring it\n",
243 dev_path(dev), index, value);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000244 }
245 resource->flags = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000246 } else if (attr & PCI_BASE_ADDRESS_SPACE_IO) {
247 /* An I/O mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000248 attr &= PCI_BASE_ADDRESS_IO_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000249 resource->flags |= IORESOURCE_IO;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000250 /* I don't want to deal with 32bit I/O resources. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000251 resource->limit = 0xffff;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000252 } else {
253 /* A Memory mapped base address. */
Eric Biederman03acab62004-10-14 21:25:53 +0000254 attr &= PCI_BASE_ADDRESS_MEM_ATTR_MASK;
Eric Biederman5cd81732004-03-11 15:01:31 +0000255 resource->flags |= IORESOURCE_MEM;
Uwe Hermanne4870472010-11-04 23:23:47 +0000256 if (attr & PCI_BASE_ADDRESS_MEM_PREFETCH)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000257 resource->flags |= IORESOURCE_PREFETCH;
Eric Biederman03acab62004-10-14 21:25:53 +0000258 attr &= PCI_BASE_ADDRESS_MEM_LIMIT_MASK;
259 if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_32) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000260 /* 32bit limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000261 resource->limit = 0xffffffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000262 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_1M) {
263 /* 1MB limit. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000264 resource->limit = 0x000fffffUL;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000265 } else if (attr == PCI_BASE_ADDRESS_MEM_LIMIT_64) {
266 /* 64bit limit. */
Eric Biederman03acab62004-10-14 21:25:53 +0000267 resource->limit = 0xffffffffffffffffULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000268 resource->flags |= IORESOURCE_PCI64;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000269 } else {
270 /* Invalid value. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000271 printk(BIOS_ERR, "Broken BAR with value %lx\n", attr);
272 printk(BIOS_ERR, " on dev %s at index %02lx\n",
Myles Watson29cc9ed2009-07-02 18:56:24 +0000273 dev_path(dev), index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000274 resource->flags = 0;
275 }
276 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000277
Myles Watson29cc9ed2009-07-02 18:56:24 +0000278 /* Don't let the limit exceed which bits can move. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000279 if (resource->limit > limit)
Eric Biederman03acab62004-10-14 21:25:53 +0000280 resource->limit = limit;
Eric Biederman03acab62004-10-14 21:25:53 +0000281
Eric Biederman5cd81732004-03-11 15:01:31 +0000282 return resource;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000283}
284
Myles Watson29cc9ed2009-07-02 18:56:24 +0000285/**
286 * Given a device and an index, read the size of the BAR for that register.
287 *
288 * @param dev Pointer to the device structure.
289 * @param index Address of the PCI configuration register.
290 */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000291static void pci_get_rom_resource(struct device *dev, unsigned long index)
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000292{
293 struct resource *resource;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000294 unsigned long value;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000295 resource_t moving;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000296
Myles Watson29cc9ed2009-07-02 18:56:24 +0000297 /* Initialize the resources to nothing. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000298 resource = new_resource(dev, index);
299
Myles Watson29cc9ed2009-07-02 18:56:24 +0000300 /* Get the initial value. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000301 value = pci_read_config32(dev, index);
302
Myles Watson29cc9ed2009-07-02 18:56:24 +0000303 /* See which bits move. */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000304 moving = pci_moving_config32(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000305
306 /* Clear the Enable bit. */
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000307 moving = moving & ~PCI_ROM_ADDRESS_ENABLE;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000308
Myles Watson032a9652009-05-11 22:24:53 +0000309 /* Find the resource constraints.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000310 * Start by finding the bits that move. From there:
311 * - Size is the least significant bit of the bits that move.
312 * - Limit is all of the bits that move plus all of the lower bits.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000313 * See PCI Spec 6.2.5.1.
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000314 */
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000315 if (moving) {
316 resource->size = 1;
317 resource->align = resource->gran = 0;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000318 while (!(moving & resource->size)) {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000319 resource->size <<= 1;
320 resource->align += 1;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000321 resource->gran += 1;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000322 }
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000323 resource->limit = moving | (resource->size - 1);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000324 resource->flags |= IORESOURCE_MEM | IORESOURCE_READONLY;
325 } else {
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000326 if (value != 0) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000327 printk(BIOS_DEBUG, "%s register %02lx(%08lx), "
328 "read-only ignoring it\n",
329 dev_path(dev), index, value);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000330 }
331 resource->flags = 0;
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000332 }
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000333 compact_resources(dev);
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000334}
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000335
Myles Watson29cc9ed2009-07-02 18:56:24 +0000336/**
337 * Read the base address registers for a given device.
338 *
339 * @param dev Pointer to the dev structure.
340 * @param howmany How many registers to read (6 for device, 2 for bridge).
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000341 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000342static void pci_read_bases(struct device *dev, unsigned int howmany)
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000343{
344 unsigned long index;
345
Myles Watson29cc9ed2009-07-02 18:56:24 +0000346 for (index = PCI_BASE_ADDRESS_0;
347 (index < PCI_BASE_ADDRESS_0 + (howmany << 2));) {
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000348 struct resource *resource;
349 resource = pci_get_resource(dev, index);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000350 index += (resource->flags & IORESOURCE_PCI64) ? 8 : 4;
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000351 }
Li-Ta Loe8b1c9d2004-12-27 04:25:41 +0000352
353 compact_resources(dev);
Li-Ta Lo9a5b4962004-12-23 21:48:01 +0000354}
355
Myles Watson29cc9ed2009-07-02 18:56:24 +0000356static void pci_record_bridge_resource(struct device *dev, resource_t moving,
357 unsigned index, unsigned long type)
Eric Biederman03acab62004-10-14 21:25:53 +0000358{
Eric Biederman03acab62004-10-14 21:25:53 +0000359 struct resource *resource;
Uwe Hermanne4870472010-11-04 23:23:47 +0000360 unsigned long gran;
361 resource_t step;
362
Myles Watson29cc9ed2009-07-02 18:56:24 +0000363 resource = NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000364
365 if (!moving)
366 return;
367
368 /* Initialize the constraints on the current bus. */
369 resource = new_resource(dev, index);
370 resource->size = 0;
371 gran = 0;
372 step = 1;
373 while ((moving & step) == 0) {
374 gran += 1;
375 step <<= 1;
Eric Biederman03acab62004-10-14 21:25:53 +0000376 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000377 resource->gran = gran;
378 resource->align = gran;
379 resource->limit = moving | (step - 1);
380 resource->flags = type | IORESOURCE_PCI_BRIDGE |
381 IORESOURCE_BRIDGE;
Eric Biederman03acab62004-10-14 21:25:53 +0000382}
383
Eric Biederman8ca8d762003-04-22 19:02:15 +0000384static void pci_bridge_read_bases(struct device *dev)
385{
Eric Biederman03acab62004-10-14 21:25:53 +0000386 resource_t moving_base, moving_limit, moving;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000387
Myles Watson29cc9ed2009-07-02 18:56:24 +0000388 /* See if the bridge I/O resources are implemented. */
389 moving_base = ((u32) pci_moving_config8(dev, PCI_IO_BASE)) << 8;
390 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000391 ((u32) pci_moving_config16(dev, PCI_IO_BASE_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000392
Myles Watson29cc9ed2009-07-02 18:56:24 +0000393 moving_limit = ((u32) pci_moving_config8(dev, PCI_IO_LIMIT)) << 8;
394 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000395 ((u32) pci_moving_config16(dev, PCI_IO_LIMIT_UPPER16)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000396
397 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000398
Myles Watson29cc9ed2009-07-02 18:56:24 +0000399 /* Initialize the I/O space constraints on the current bus. */
400 pci_record_bridge_resource(dev, moving, PCI_IO_BASE, IORESOURCE_IO);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000401
Myles Watson29cc9ed2009-07-02 18:56:24 +0000402 /* See if the bridge prefmem resources are implemented. */
403 moving_base =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000404 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_BASE)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000405 moving_base |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000406 ((resource_t) pci_moving_config32(dev, PCI_PREF_BASE_UPPER32)) << 32;
Eric Biederman03acab62004-10-14 21:25:53 +0000407
Myles Watson29cc9ed2009-07-02 18:56:24 +0000408 moving_limit =
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000409 ((resource_t) pci_moving_config16(dev, PCI_PREF_MEMORY_LIMIT)) << 16;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000410 moving_limit |=
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000411 ((resource_t) pci_moving_config32(dev, PCI_PREF_LIMIT_UPPER32)) << 32;
Myles Watson032a9652009-05-11 22:24:53 +0000412
Eric Biederman03acab62004-10-14 21:25:53 +0000413 moving = moving_base & moving_limit;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000414 /* Initialize the prefetchable memory constraints on the current bus. */
415 pci_record_bridge_resource(dev, moving, PCI_PREF_MEMORY_BASE,
416 IORESOURCE_MEM | IORESOURCE_PREFETCH);
Myles Watson032a9652009-05-11 22:24:53 +0000417
Myles Watson29cc9ed2009-07-02 18:56:24 +0000418 /* See if the bridge mem resources are implemented. */
419 moving_base = ((u32) pci_moving_config16(dev, PCI_MEMORY_BASE)) << 16;
420 moving_limit = ((u32) pci_moving_config16(dev, PCI_MEMORY_LIMIT)) << 16;
Eric Biederman03acab62004-10-14 21:25:53 +0000421
422 moving = moving_base & moving_limit;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000423
Myles Watson29cc9ed2009-07-02 18:56:24 +0000424 /* Initialize the memory resources on the current bus. */
425 pci_record_bridge_resource(dev, moving, PCI_MEMORY_BASE,
426 IORESOURCE_MEM);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000427
Eric Biederman5cd81732004-03-11 15:01:31 +0000428 compact_resources(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000429}
430
Eric Biederman5899fd82003-04-24 06:25:08 +0000431void pci_dev_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000432{
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000433 pci_read_bases(dev, 6);
434 pci_get_rom_resource(dev, PCI_ROM_ADDRESS);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000435}
436
Eric Biederman5899fd82003-04-24 06:25:08 +0000437void pci_bus_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000438{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000439 pci_bridge_read_bases(dev);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000440 pci_read_bases(dev, 2);
441 pci_get_rom_resource(dev, PCI_ROM_ADDRESS1);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000442}
443
Myles Watson29cc9ed2009-07-02 18:56:24 +0000444void pci_domain_read_resources(struct device *dev)
445{
446 struct resource *res;
447
448 /* Initialize the system-wide I/O space constraints. */
449 res = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
450 res->limit = 0xffffUL;
451 res->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE |
452 IORESOURCE_ASSIGNED;
453
454 /* Initialize the system-wide memory resources constraints. */
455 res = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
456 res->limit = 0xffffffffULL;
457 res->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE |
458 IORESOURCE_ASSIGNED;
459}
460
Eric Biederman8ca8d762003-04-22 19:02:15 +0000461static void pci_set_resource(struct device *dev, struct resource *resource)
462{
Eric Biederman03acab62004-10-14 21:25:53 +0000463 resource_t base, end;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000464
Myles Watson29cc9ed2009-07-02 18:56:24 +0000465 /* Make certain the resource has actually been assigned a value. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000466 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000467 printk(BIOS_ERR, "ERROR: %s %02lx %s size: 0x%010llx not "
468 "assigned\n", dev_path(dev), resource->index,
469 resource_type(resource), resource->size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000470 return;
471 }
472
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000473 /* If this resource is fixed don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000474 if (resource->flags & IORESOURCE_FIXED)
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000475 return;
Myles Watsoneb81a5b2009-11-05 20:06:19 +0000476
Myles Watson29cc9ed2009-07-02 18:56:24 +0000477 /* If I have already stored this resource don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000478 if (resource->flags & IORESOURCE_STORED)
Eric Biederman5cd81732004-03-11 15:01:31 +0000479 return;
Eric Biederman5cd81732004-03-11 15:01:31 +0000480
Myles Watson29cc9ed2009-07-02 18:56:24 +0000481 /* If the resource is subtractive don't worry about it. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000482 if (resource->flags & IORESOURCE_SUBTRACTIVE)
Eric Biederman03acab62004-10-14 21:25:53 +0000483 return;
Eric Biederman03acab62004-10-14 21:25:53 +0000484
Myles Watson29cc9ed2009-07-02 18:56:24 +0000485 /* Only handle PCI memory and I/O resources for now. */
486 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Eric Biederman8ca8d762003-04-22 19:02:15 +0000487 return;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000488
Myles Watson29cc9ed2009-07-02 18:56:24 +0000489 /* Enable the resources in the command register. */
Eric Biederman03acab62004-10-14 21:25:53 +0000490 if (resource->size) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000491 if (resource->flags & IORESOURCE_MEM)
Eric Biederman03acab62004-10-14 21:25:53 +0000492 dev->command |= PCI_COMMAND_MEMORY;
Uwe Hermanne4870472010-11-04 23:23:47 +0000493 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000494 dev->command |= PCI_COMMAND_IO;
Uwe Hermanne4870472010-11-04 23:23:47 +0000495 if (resource->flags & IORESOURCE_PCI_BRIDGE)
Eric Biederman03acab62004-10-14 21:25:53 +0000496 dev->command |= PCI_COMMAND_MASTER;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000497 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000498
Myles Watson29cc9ed2009-07-02 18:56:24 +0000499 /* Get the base address. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000500 base = resource->base;
Eric Biederman5cd81732004-03-11 15:01:31 +0000501
Myles Watson29cc9ed2009-07-02 18:56:24 +0000502 /* Get the end. */
Eric Biederman03acab62004-10-14 21:25:53 +0000503 end = resource_end(resource);
Myles Watson032a9652009-05-11 22:24:53 +0000504
Myles Watson29cc9ed2009-07-02 18:56:24 +0000505 /* Now store the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000506 resource->flags |= IORESOURCE_STORED;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000507
Uwe Hermanne4870472010-11-04 23:23:47 +0000508 /*
509 * PCI bridges have no enable bit. They are disabled if the base of
510 * the range is greater than the limit. If the size is zero, disable
Myles Watson29cc9ed2009-07-02 18:56:24 +0000511 * by setting the base = limit and end = limit - 2^gran.
512 */
513 if (resource->size == 0 && (resource->flags & IORESOURCE_PCI_BRIDGE)) {
514 base = resource->limit;
515 end = resource->limit - (1 << resource->gran);
516 resource->base = base;
517 }
518
Eric Biederman8ca8d762003-04-22 19:02:15 +0000519 if (!(resource->flags & IORESOURCE_PCI_BRIDGE)) {
Eric Biederman03acab62004-10-14 21:25:53 +0000520 unsigned long base_lo, base_hi;
Uwe Hermanne4870472010-11-04 23:23:47 +0000521
522 /*
523 * Some chipsets allow us to set/clear the I/O bit
524 * (e.g. VIA 82C686A). So set it to be safe.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000525 */
Eric Biederman03acab62004-10-14 21:25:53 +0000526 base_lo = base & 0xffffffff;
527 base_hi = (base >> 32) & 0xffffffff;
Uwe Hermanne4870472010-11-04 23:23:47 +0000528 if (resource->flags & IORESOURCE_IO)
Eric Biederman03acab62004-10-14 21:25:53 +0000529 base_lo |= PCI_BASE_ADDRESS_SPACE_IO;
Eric Biederman03acab62004-10-14 21:25:53 +0000530 pci_write_config32(dev, resource->index, base_lo);
Uwe Hermanne4870472010-11-04 23:23:47 +0000531 if (resource->flags & IORESOURCE_PCI64)
Eric Biederman03acab62004-10-14 21:25:53 +0000532 pci_write_config32(dev, resource->index + 4, base_hi);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000533 } else if (resource->index == PCI_IO_BASE) {
534 /* Set the I/O ranges. */
535 pci_write_config8(dev, PCI_IO_BASE, base >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000536 pci_write_config16(dev, PCI_IO_BASE_UPPER16, base >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000537 pci_write_config8(dev, PCI_IO_LIMIT, end >> 8);
Eric Biederman03acab62004-10-14 21:25:53 +0000538 pci_write_config16(dev, PCI_IO_LIMIT_UPPER16, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000539 } else if (resource->index == PCI_MEMORY_BASE) {
540 /* Set the memory range. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000541 pci_write_config16(dev, PCI_MEMORY_BASE, base >> 16);
Eric Biederman03acab62004-10-14 21:25:53 +0000542 pci_write_config16(dev, PCI_MEMORY_LIMIT, end >> 16);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000543 } else if (resource->index == PCI_PREF_MEMORY_BASE) {
544 /* Set the prefetchable memory range. */
Eric Biederman03acab62004-10-14 21:25:53 +0000545 pci_write_config16(dev, PCI_PREF_MEMORY_BASE, base >> 16);
546 pci_write_config32(dev, PCI_PREF_BASE_UPPER32, base >> 32);
547 pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, end >> 16);
548 pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, end >> 32);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000549 } else {
550 /* Don't let me think I stored the resource. */
Eric Biederman5cd81732004-03-11 15:01:31 +0000551 resource->flags &= ~IORESOURCE_STORED;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000552 printk(BIOS_ERR, "ERROR: invalid resource->index %lx\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000553 resource->index);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000554 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000555
Eric Biederman03acab62004-10-14 21:25:53 +0000556 report_resource_stored(dev, resource, "");
Eric Biederman8ca8d762003-04-22 19:02:15 +0000557}
558
Eric Biederman5899fd82003-04-24 06:25:08 +0000559void pci_dev_set_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000560{
Myles Watsonc25cc112010-05-21 14:33:48 +0000561 struct resource *res;
Myles Watson894a3472010-06-09 22:41:35 +0000562 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000563 u8 line;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000564
Uwe Hermanne4870472010-11-04 23:23:47 +0000565 for (res = dev->resource_list; res; res = res->next)
Myles Watsonc25cc112010-05-21 14:33:48 +0000566 pci_set_resource(dev, res);
Uwe Hermanne4870472010-11-04 23:23:47 +0000567
Myles Watson894a3472010-06-09 22:41:35 +0000568 for (bus = dev->link_list; bus; bus = bus->next) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000569 if (bus->children)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000570 assign_resources(bus);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000571 }
572
Myles Watson29cc9ed2009-07-02 18:56:24 +0000573 /* Set a default latency timer. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000574 pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000575
Myles Watson29cc9ed2009-07-02 18:56:24 +0000576 /* Set a default secondary latency timer. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000577 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000578 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000579
Myles Watson29cc9ed2009-07-02 18:56:24 +0000580 /* Zero the IRQ settings. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000581 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Uwe Hermanne4870472010-11-04 23:23:47 +0000582 if (line)
Eric Biederman7a5416a2003-06-12 19:23:51 +0000583 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
Uwe Hermanne4870472010-11-04 23:23:47 +0000584
Myles Watson29cc9ed2009-07-02 18:56:24 +0000585 /* Set the cache line size, so far 64 bytes is good for everyone. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000586 pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000587}
588
Eric Biedermane9a271e32003-09-02 03:36:25 +0000589void pci_dev_enable_resources(struct device *dev)
590{
Eric Biedermana9e632c2004-11-18 22:38:08 +0000591 const struct pci_operations *ops;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000592 u16 command;
Eric Biederman03acab62004-10-14 21:25:53 +0000593
Uwe Hermanne4870472010-11-04 23:23:47 +0000594 /* Set the subsystem vendor and device ID for mainboard devices. */
Eric Biederman03acab62004-10-14 21:25:53 +0000595 ops = ops_pci(dev);
Eric Biedermandbec2d42004-10-21 10:44:08 +0000596 if (dev->on_mainboard && ops && ops->set_subsystem) {
Sven Schnelle91321022011-03-01 19:58:47 +0000597 printk(BIOS_DEBUG, "%s subsystem <- %04x/%04x\n",
598 dev_path(dev), dev->subsystem_vendor,
599 dev->subsystem_device);
600 ops->set_subsystem(dev, dev->subsystem_vendor,
601 dev->subsystem_device);
Eric Biederman03acab62004-10-14 21:25:53 +0000602 }
Eric Biedermane9a271e32003-09-02 03:36:25 +0000603 command = pci_read_config16(dev, PCI_COMMAND);
604 command |= dev->command;
Uwe Hermanne4870472010-11-04 23:23:47 +0000605
Myles Watson29cc9ed2009-07-02 18:56:24 +0000606 /* v3 has
607 * command |= (PCI_COMMAND_PARITY + PCI_COMMAND_SERR); // Error check.
608 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000609
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000610 printk(BIOS_DEBUG, "%s cmd <- %02x\n", dev_path(dev), command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000611 pci_write_config16(dev, PCI_COMMAND, command);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000612}
613
614void pci_bus_enable_resources(struct device *dev)
615{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000616 u16 ctrl;
617
Uwe Hermanne4870472010-11-04 23:23:47 +0000618 /*
619 * Enable I/O in command register if there is VGA card
Myles Watson29cc9ed2009-07-02 18:56:24 +0000620 * connected with (even it does not claim I/O resource).
621 */
Myles Watson894a3472010-06-09 22:41:35 +0000622 if (dev->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
Li-Ta Lo515f6c72005-01-11 22:48:54 +0000623 dev->command |= PCI_COMMAND_IO;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000624 ctrl = pci_read_config16(dev, PCI_BRIDGE_CONTROL);
Myles Watson894a3472010-06-09 22:41:35 +0000625 ctrl |= dev->link_list->bridge_ctrl;
Uwe Hermanne4870472010-11-04 23:23:47 +0000626 ctrl |= (PCI_BRIDGE_CTL_PARITY + PCI_BRIDGE_CTL_SERR); /* Error check. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000627 printk(BIOS_DEBUG, "%s bridge ctrl <- %04x\n", dev_path(dev), ctrl);
Eric Biedermane9a271e32003-09-02 03:36:25 +0000628 pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
629
630 pci_dev_enable_resources(dev);
631}
632
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000633void pci_bus_reset(struct bus *bus)
634{
Uwe Hermanne4870472010-11-04 23:23:47 +0000635 u16 ctl;
636
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000637 ctl = pci_read_config16(bus->dev, PCI_BRIDGE_CONTROL);
638 ctl |= PCI_BRIDGE_CTL_BUS_RESET;
639 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
640 mdelay(10);
Uwe Hermanne4870472010-11-04 23:23:47 +0000641
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000642 ctl &= ~PCI_BRIDGE_CTL_BUS_RESET;
643 pci_write_config16(bus->dev, PCI_BRIDGE_CONTROL, ctl);
644 delay(1);
645}
646
Myles Watson29cc9ed2009-07-02 18:56:24 +0000647void pci_dev_set_subsystem(struct device *dev, unsigned vendor, unsigned device)
Eric Biederman03acab62004-10-14 21:25:53 +0000648{
Myles Watson032a9652009-05-11 22:24:53 +0000649 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
Myles Watson29cc9ed2009-07-02 18:56:24 +0000650 ((device & 0xffff) << 16) | (vendor & 0xffff));
Eric Biederman03acab62004-10-14 21:25:53 +0000651}
652
Uwe Hermanne4870472010-11-04 23:23:47 +0000653/** Default handler: only runs the relevant PCI BIOS. */
Li-Ta Lo883b8792005-01-10 23:16:22 +0000654void pci_dev_init(struct device *dev)
655{
Torsten Duwe1f2f8002008-01-06 01:10:54 +0000656#if CONFIG_PCI_ROM_RUN == 1 || CONFIG_VGA_ROM_RUN == 1
Li-Ta Lo883b8792005-01-10 23:16:22 +0000657 struct rom_header *rom, *ram;
658
Myles Watson17aeeca2009-10-07 18:41:08 +0000659 if (CONFIG_PCI_ROM_RUN != 1 && /* Only execute VGA ROMs. */
660 ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
Roman Kononov778a42b2007-04-06 18:34:39 +0000661 return;
Myles Watson17aeeca2009-10-07 18:41:08 +0000662
663 if (CONFIG_VGA_ROM_RUN != 1 && /* Only execute non-VGA ROMs. */
664 ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA))
665 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000666
Li-Ta Lo883b8792005-01-10 23:16:22 +0000667 rom = pci_rom_probe(dev);
668 if (rom == NULL)
669 return;
Roman Kononov778a42b2007-04-06 18:34:39 +0000670
Li-Ta Lo883b8792005-01-10 23:16:22 +0000671 ram = pci_rom_load(dev, rom);
Yinghai Lu9e4faef2005-01-14 22:04:49 +0000672 if (ram == NULL)
673 return;
Li-Ta Lo883b8792005-01-10 23:16:22 +0000674
Stefan Reinauerd98cf5b2008-08-01 11:25:41 +0000675 run_bios(dev, (unsigned long)ram);
Torsten Duwe1f2f8002008-01-06 01:10:54 +0000676#endif /* CONFIG_PCI_ROM_RUN || CONFIG_VGA_ROM_RUN */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000677}
Li-Ta Lo883b8792005-01-10 23:16:22 +0000678
Li-Ta Loe5266692004-03-23 21:28:05 +0000679/** Default device operation for PCI devices */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000680static struct pci_operations pci_dev_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000681 .set_subsystem = pci_dev_set_subsystem,
682};
683
Eric Biederman8ca8d762003-04-22 19:02:15 +0000684struct device_operations default_pci_ops_dev = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000685 .read_resources = pci_dev_read_resources,
686 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000687 .enable_resources = pci_dev_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000688 .init = pci_dev_init,
689 .scan_bus = 0,
690 .enable = 0,
691 .ops_pci = &pci_dev_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000692};
Li-Ta Loe5266692004-03-23 21:28:05 +0000693
694/** Default device operations for PCI bridges */
Eric Biedermana9e632c2004-11-18 22:38:08 +0000695static struct pci_operations pci_bus_ops_pci = {
Eric Biederman03acab62004-10-14 21:25:53 +0000696 .set_subsystem = 0,
697};
Li-Ta Lo883b8792005-01-10 23:16:22 +0000698
Eric Biederman8ca8d762003-04-22 19:02:15 +0000699struct device_operations default_pci_ops_bus = {
Uwe Hermanne4870472010-11-04 23:23:47 +0000700 .read_resources = pci_bus_read_resources,
701 .set_resources = pci_dev_set_resources,
Eric Biedermane9a271e32003-09-02 03:36:25 +0000702 .enable_resources = pci_bus_enable_resources,
Uwe Hermanne4870472010-11-04 23:23:47 +0000703 .init = 0,
704 .scan_bus = pci_scan_bridge,
705 .enable = 0,
706 .reset_bus = pci_bus_reset,
707 .ops_pci = &pci_bus_ops_pci,
Eric Biederman8ca8d762003-04-22 19:02:15 +0000708};
Li-Ta Loe5266692004-03-23 21:28:05 +0000709
710/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000711 * Detect the type of downstream bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000712 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000713 * This function is a heuristic to detect which type of bus is downstream
714 * of a PCI-to-PCI bridge. This functions by looking for various capability
715 * blocks to figure out the type of downstream bridge. PCI-X, PCI-E, and
716 * Hypertransport all seem to have appropriate capabilities.
Myles Watson032a9652009-05-11 22:24:53 +0000717 *
Uwe Hermanne4870472010-11-04 23:23:47 +0000718 * When only a PCI-Express capability is found the type is examined to see
719 * which type of bridge we have.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000720 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000721 * @param dev Pointer to the device structure of the bridge.
722 * @return Appropriate bridge operations.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000723 */
724static struct device_operations *get_pci_bridge_ops(device_t dev)
725{
Uwe Hermanne4870472010-11-04 23:23:47 +0000726 unsigned int pos;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000727
728#if CONFIG_PCIX_PLUGIN_SUPPORT == 1
729 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
730 if (pos) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000731 printk(BIOS_DEBUG, "%s subordinate bus PCI-X\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000732 return &default_pcix_ops_bus;
733 }
734#endif
735#if CONFIG_AGP_PLUGIN_SUPPORT == 1
Uwe Hermanne4870472010-11-04 23:23:47 +0000736 /* How do I detect a PCI to AGP bridge? */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000737#endif
738#if CONFIG_HYPERTRANSPORT_PLUGIN_SUPPORT == 1
739 pos = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000740 while ((pos = pci_find_next_capability(dev, PCI_CAP_ID_HT, pos))) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000741 u16 flags;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000742 flags = pci_read_config16(dev, pos + PCI_CAP_FLAGS);
743 if ((flags >> 13) == 1) {
744 /* Host or Secondary Interface */
Uwe Hermanne4870472010-11-04 23:23:47 +0000745 printk(BIOS_DEBUG, "%s subordinate bus HT\n",
746 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000747 return &default_ht_ops_bus;
748 }
749 }
750#endif
751#if CONFIG_PCIEXP_PLUGIN_SUPPORT == 1
752 pos = pci_find_capability(dev, PCI_CAP_ID_PCIE);
753 if (pos) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000754 u16 flags;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000755 flags = pci_read_config16(dev, pos + PCI_EXP_FLAGS);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000756 switch ((flags & PCI_EXP_FLAGS_TYPE) >> 4) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000757 case PCI_EXP_TYPE_ROOT_PORT:
758 case PCI_EXP_TYPE_UPSTREAM:
759 case PCI_EXP_TYPE_DOWNSTREAM:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000760 printk(BIOS_DEBUG, "%s subordinate bus PCI Express\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000761 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000762 return &default_pciexp_ops_bus;
763 case PCI_EXP_TYPE_PCI_BRIDGE:
Uwe Hermanne4870472010-11-04 23:23:47 +0000764 printk(BIOS_DEBUG, "%s subordinate PCI\n",
765 dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000766 return &default_pci_ops_bus;
767 default:
768 break;
769 }
770 }
771#endif
772 return &default_pci_ops_bus;
773}
774
775/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000776 * Set up PCI device operation.
777 *
778 * Check if it already has a driver. If not, use find_device_operations(),
779 * or set to a default based on type.
Li-Ta Loe5266692004-03-23 21:28:05 +0000780 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000781 * @param dev Pointer to the device whose pci_ops you want to set.
Li-Ta Loe5266692004-03-23 21:28:05 +0000782 * @see pci_drivers
783 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000784static void set_pci_ops(struct device *dev)
785{
786 struct pci_driver *driver;
Li-Ta Loe5266692004-03-23 21:28:05 +0000787
Uwe Hermanne4870472010-11-04 23:23:47 +0000788 if (dev->ops)
789 return;
790
791 /*
792 * Look through the list of setup drivers and find one for
Myles Watson29cc9ed2009-07-02 18:56:24 +0000793 * this PCI device.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000794 */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000795 for (driver = &pci_drivers[0]; driver != &epci_drivers[0]; driver++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000796 if ((driver->vendor == dev->vendor) &&
Myles Watson29cc9ed2009-07-02 18:56:24 +0000797 (driver->device == dev->device)) {
Uwe Hermann312673c2009-10-27 21:49:33 +0000798 dev->ops = (struct device_operations *)driver->ops;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000799 printk(BIOS_SPEW, "%s [%04x/%04x] %sops\n",
Uwe Hermanne4870472010-11-04 23:23:47 +0000800 dev_path(dev), driver->vendor, driver->device,
801 (driver->ops->scan_bus ? "bus " : ""));
Eric Biederman5899fd82003-04-24 06:25:08 +0000802 return;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000803 }
804 }
Li-Ta Loe5266692004-03-23 21:28:05 +0000805
Uwe Hermanne4870472010-11-04 23:23:47 +0000806 /* If I don't have a specific driver use the default operations. */
807 switch (dev->hdr_type & 0x7f) { /* Header type */
808 case PCI_HEADER_TYPE_NORMAL:
Eric Biederman8ca8d762003-04-22 19:02:15 +0000809 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
810 goto bad;
811 dev->ops = &default_pci_ops_dev;
812 break;
813 case PCI_HEADER_TYPE_BRIDGE:
814 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
815 goto bad;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000816 dev->ops = get_pci_bridge_ops(dev);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000817 break;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000818#if CONFIG_CARDBUS_PLUGIN_SUPPORT == 1
819 case PCI_HEADER_TYPE_CARDBUS:
820 dev->ops = &default_cardbus_ops_bus;
821 break;
822#endif
Uwe Hermanne4870472010-11-04 23:23:47 +0000823default:
824bad:
Li-Ta Lo69c5a902004-04-29 20:08:54 +0000825 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000826 printk(BIOS_ERR, "%s [%04x/%04x/%06x] has unknown "
827 "header type %02x, ignoring.\n", dev_path(dev),
828 dev->vendor, dev->device,
829 dev->class >> 8, dev->hdr_type);
Eric Biederman83b991a2003-10-11 06:20:25 +0000830 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000831 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000832}
833
834/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000835 * See if we have already allocated a device structure for a given devfn.
Li-Ta Loe5266692004-03-23 21:28:05 +0000836 *
837 * Given a linked list of PCI device structures and a devfn number, find the
Li-Ta Lo3a812852004-12-03 22:39:34 +0000838 * device structure correspond to the devfn, if present. This function also
839 * removes the device structure from the linked list.
Li-Ta Loe5266692004-03-23 21:28:05 +0000840 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000841 * @param list The device structure list.
842 * @param devfn A device/function number.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000843 * @return Pointer to the device structure found or NULL if we have not
Li-Ta Lo3a812852004-12-03 22:39:34 +0000844 * allocated a device for this devfn yet.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000845 */
Eric Biedermanb78c1972004-10-14 20:54:17 +0000846static struct device *pci_scan_get_dev(struct device **list, unsigned int devfn)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000847{
Eric Biedermanb78c1972004-10-14 20:54:17 +0000848 struct device *dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000849
Eric Biedermanb78c1972004-10-14 20:54:17 +0000850 dev = 0;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000851 for (; *list; list = &(*list)->sibling) {
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000852 if ((*list)->path.type != DEVICE_PATH_PCI) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000853 printk(BIOS_ERR, "child %s not a PCI device\n",
854 dev_path(*list));
Eric Biedermanad1b35a2003-10-14 02:36:51 +0000855 continue;
856 }
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000857 if ((*list)->path.pci.devfn == devfn) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000858 /* Unlink from the list. */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000859 dev = *list;
860 *list = (*list)->sibling;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000861 dev->sibling = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000862 break;
863 }
864 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000865
Uwe Hermanne4870472010-11-04 23:23:47 +0000866 /*
867 * Just like alloc_dev() add the device to the list of devices on the
Myles Watson29cc9ed2009-07-02 18:56:24 +0000868 * bus. When the list of devices was formed we removed all of the
869 * parents children, and now we are interleaving static and dynamic
870 * devices in order on the bus.
Eric Biedermanb78c1972004-10-14 20:54:17 +0000871 */
Eric Biedermane9a271e32003-09-02 03:36:25 +0000872 if (dev) {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000873 struct device *child;
Uwe Hermanne4870472010-11-04 23:23:47 +0000874
Myles Watson29cc9ed2009-07-02 18:56:24 +0000875 /* Find the last child of our parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000876 for (child = dev->bus->children; child && child->sibling;)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000877 child = child->sibling;
Uwe Hermanne4870472010-11-04 23:23:47 +0000878
Myles Watson29cc9ed2009-07-02 18:56:24 +0000879 /* Place the device on the list of children of its parent. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000880 if (child)
Eric Biedermane9a271e32003-09-02 03:36:25 +0000881 child->sibling = dev;
Uwe Hermanne4870472010-11-04 23:23:47 +0000882 else
Eric Biedermane9a271e32003-09-02 03:36:25 +0000883 dev->bus->children = dev;
Eric Biedermane9a271e32003-09-02 03:36:25 +0000884 }
885
Eric Biederman8ca8d762003-04-22 19:02:15 +0000886 return dev;
887}
888
Myles Watson032a9652009-05-11 22:24:53 +0000889/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000890 * Scan a PCI bus.
Li-Ta Loe5266692004-03-23 21:28:05 +0000891 *
Myles Watson29cc9ed2009-07-02 18:56:24 +0000892 * Determine the existence of a given PCI device. Allocate a new struct device
893 * if dev==NULL was passed in and the device exists in hardware.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000894 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000895 * @param dev Pointer to the dev structure.
896 * @param bus Pointer to the bus structure.
897 * @param devfn A device/function number to look at.
898 * @return The device structure for the device (if found), NULL otherwise.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000899 */
Uwe Hermannc1ee4292010-10-17 19:01:48 +0000900device_t pci_probe_dev(device_t dev, struct bus *bus, unsigned devfn)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000901{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000902 u32 id, class;
903 u8 hdr_type;
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000904
Myles Watson29cc9ed2009-07-02 18:56:24 +0000905 /* Detect if a device is present. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000906 if (!dev) {
907 struct device dummy;
Uwe Hermanne4870472010-11-04 23:23:47 +0000908
Myles Watson29cc9ed2009-07-02 18:56:24 +0000909 dummy.bus = bus;
910 dummy.path.type = DEVICE_PATH_PCI;
Stefan Reinauer2b34db82009-02-28 20:10:20 +0000911 dummy.path.pci.devfn = devfn;
Uwe Hermanne4870472010-11-04 23:23:47 +0000912
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000913 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Uwe Hermanne4870472010-11-04 23:23:47 +0000914 /*
915 * Have we found something? Some broken boards return 0 if a
916 * slot is empty, but the expected answer is 0xffffffff.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000917 */
Uwe Hermanne4870472010-11-04 23:23:47 +0000918 if (id == 0xffffffff)
Stefan Reinauer7355c752010-04-02 16:30:25 +0000919 return NULL;
Uwe Hermanne4870472010-11-04 23:23:47 +0000920
Stefan Reinauer7355c752010-04-02 16:30:25 +0000921 if ((id == 0x00000000) || (id == 0x0000ffff) ||
922 (id == 0xffff0000)) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000923 printk(BIOS_SPEW, "%s, bad id 0x%x\n",
924 dev_path(&dummy), id);
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000925 return NULL;
926 }
927 dev = alloc_dev(bus, &dummy.path);
Myles Watson29cc9ed2009-07-02 18:56:24 +0000928 } else {
Uwe Hermanne4870472010-11-04 23:23:47 +0000929 /*
930 * Enable/disable the device. Once we have found the device-
Myles Watson29cc9ed2009-07-02 18:56:24 +0000931 * specific operations this operations we will disable the
932 * device with those as well.
Myles Watson032a9652009-05-11 22:24:53 +0000933 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000934 * This is geared toward devices that have subfunctions
935 * that do not show up by default.
Myles Watson032a9652009-05-11 22:24:53 +0000936 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000937 * If a device is a stuff option on the motherboard
Myles Watson29cc9ed2009-07-02 18:56:24 +0000938 * it may be absent and enable_dev() must cope.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000939 */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000940 /* Run the magic enable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000941 if (dev->chip_ops && dev->chip_ops->enable_dev)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000942 dev->chip_ops->enable_dev(dev);
Uwe Hermanne4870472010-11-04 23:23:47 +0000943
Myles Watson29cc9ed2009-07-02 18:56:24 +0000944 /* Now read the vendor and device ID. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000945 id = pci_read_config32(dev, PCI_VENDOR_ID);
Myles Watson032a9652009-05-11 22:24:53 +0000946
Uwe Hermanne4870472010-11-04 23:23:47 +0000947 /*
948 * If the device does not have a PCI ID disable it. Possibly
Myles Watson29cc9ed2009-07-02 18:56:24 +0000949 * this is because we have already disabled the device. But
950 * this also handles optional devices that may not always
951 * show up.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000952 */
953 /* If the chain is fully enumerated quit */
Myles Watson29cc9ed2009-07-02 18:56:24 +0000954 if ((id == 0xffffffff) || (id == 0x00000000) ||
955 (id == 0x0000ffff) || (id == 0xffff0000)) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000956 if (dev->enabled) {
Uwe Hermanne4870472010-11-04 23:23:47 +0000957 printk(BIOS_INFO, "PCI: Static device %s not "
958 "found, disabling it.\n", dev_path(dev));
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000959 dev->enabled = 0;
960 }
961 return dev;
962 }
963 }
Uwe Hermanne4870472010-11-04 23:23:47 +0000964
Myles Watson29cc9ed2009-07-02 18:56:24 +0000965 /* Read the rest of the PCI configuration information. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000966 hdr_type = pci_read_config8(dev, PCI_HEADER_TYPE);
967 class = pci_read_config32(dev, PCI_CLASS_REVISION);
Myles Watson032a9652009-05-11 22:24:53 +0000968
Myles Watson29cc9ed2009-07-02 18:56:24 +0000969 /* Store the interesting information in the device structure. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000970 dev->vendor = id & 0xffff;
971 dev->device = (id >> 16) & 0xffff;
972 dev->hdr_type = hdr_type;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000973
974 /* Class code, the upper 3 bytes of PCI_CLASS_REVISION. */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000975 dev->class = class >> 8;
Myles Watson032a9652009-05-11 22:24:53 +0000976
Myles Watson29cc9ed2009-07-02 18:56:24 +0000977 /* Architectural/System devices always need to be bus masters. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000978 if ((dev->class >> 16) == PCI_BASE_CLASS_SYSTEM)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000979 dev->command |= PCI_COMMAND_MASTER;
Uwe Hermanne4870472010-11-04 23:23:47 +0000980
981 /*
982 * Look at the vendor and device ID, or at least the header type and
Myles Watson29cc9ed2009-07-02 18:56:24 +0000983 * class and figure out which set of configuration methods to use.
984 * Unless we already have some PCI ops.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000985 */
986 set_pci_ops(dev);
987
Myles Watson29cc9ed2009-07-02 18:56:24 +0000988 /* Now run the magic enable/disable sequence for the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000989 if (dev->ops && dev->ops->enable)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000990 dev->ops->enable(dev);
Myles Watson032a9652009-05-11 22:24:53 +0000991
Myles Watson29cc9ed2009-07-02 18:56:24 +0000992 /* Display the device. */
Uwe Hermanne4870472010-11-04 23:23:47 +0000993 printk(BIOS_DEBUG, "%s [%04x/%04x] %s%s\n", dev_path(dev),
994 dev->vendor, dev->device, dev->enabled ? "enabled" : "disabled",
995 dev->ops ? "" : " No operations");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +0000996
997 return dev;
998}
999
Myles Watson032a9652009-05-11 22:24:53 +00001000/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001001 * Scan a PCI bus.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001002 *
Li-Ta Loe5266692004-03-23 21:28:05 +00001003 * Determine the existence of devices and bridges on a PCI bus. If there are
1004 * bridges on the bus, recursively scan the buses behind the bridges.
1005 *
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001006 * This function is the default scan_bus() method for the root device
1007 * 'dev_root'.
1008 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001009 * @param bus Pointer to the bus structure.
1010 * @param min_devfn Minimum devfn to look at in the scan, usually 0x00.
1011 * @param max_devfn Maximum devfn to look at in the scan, usually 0xff.
1012 * @param max Current bus number.
1013 * @return The maximum bus number found, after scanning all subordinate busses.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001014 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001015unsigned int pci_scan_bus(struct bus *bus, unsigned min_devfn,
1016 unsigned max_devfn, unsigned int max)
Eric Biederman8ca8d762003-04-22 19:02:15 +00001017{
1018 unsigned int devfn;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001019 struct device *old_devices;
1020 struct device *child;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001021
Stefan Reinauer08670622009-06-30 15:17:49 +00001022#if CONFIG_PCI_BUS_SEGN_BITS
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001023 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %04x:%02x\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001024 bus->secondary >> 8, bus->secondary & 0xff);
Yinghai Lu5f9624d2006-10-04 22:56:21 +00001025#else
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001026 printk(BIOS_DEBUG, "PCI: pci_scan_bus for bus %02x\n", bus->secondary);
Yinghai Lu5f9624d2006-10-04 22:56:21 +00001027#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +00001028
Uwe Hermanne4870472010-11-04 23:23:47 +00001029 /* Maximum sane devfn is 0xFF. */
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001030 if (max_devfn > 0xff) {
Uwe Hermanne4870472010-11-04 23:23:47 +00001031 printk(BIOS_ERR, "PCI: pci_scan_bus limits devfn %x - "
1032 "devfn %x\n", min_devfn, max_devfn);
1033 printk(BIOS_ERR, "PCI: pci_scan_bus upper limit too big. "
1034 "Using 0xff.\n");
Juhana Helovuo50b78b62010-09-13 14:43:02 +00001035 max_devfn=0xff;
1036 }
1037
Eric Biederman8ca8d762003-04-22 19:02:15 +00001038 old_devices = bus->children;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001039 bus->children = NULL;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001040
1041 post_code(0x24);
Uwe Hermanne4870472010-11-04 23:23:47 +00001042
1043 /*
1044 * Probe all devices/functions on this bus with some optimization for
Myles Watson29cc9ed2009-07-02 18:56:24 +00001045 * non-existence and single function devices.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001046 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001047 for (devfn = min_devfn; devfn <= max_devfn; devfn++) {
Myles Watson29cc9ed2009-07-02 18:56:24 +00001048 struct device *dev;
Eric Biederman8ca8d762003-04-22 19:02:15 +00001049
Uwe Hermanne4870472010-11-04 23:23:47 +00001050 /* First thing setup the device structure. */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001051 dev = pci_scan_get_dev(&old_devices, devfn);
Li-Ta Lo9782f752004-05-05 21:15:42 +00001052
Myles Watson29cc9ed2009-07-02 18:56:24 +00001053 /* See if a device is present and setup the device structure. */
Myles Watson032a9652009-05-11 22:24:53 +00001054 dev = pci_probe_dev(dev, bus, devfn);
Eric Biederman03acab62004-10-14 21:25:53 +00001055
Uwe Hermanne4870472010-11-04 23:23:47 +00001056 /*
1057 * If this is not a multi function device, or the device is
Myles Watson29cc9ed2009-07-02 18:56:24 +00001058 * not present don't waste time probing another function.
Myles Watson032a9652009-05-11 22:24:53 +00001059 * Skip to next device.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001060 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001061 if ((PCI_FUNC(devfn) == 0x00) && (!dev
Myles Watson29cc9ed2009-07-02 18:56:24 +00001062 || (dev->enabled && ((dev->hdr_type & 0x80) != 0x80)))) {
Eric Biederman8ca8d762003-04-22 19:02:15 +00001063 devfn += 0x07;
1064 }
1065 }
Uwe Hermanne4870472010-11-04 23:23:47 +00001066
Eric Biederman8ca8d762003-04-22 19:02:15 +00001067 post_code(0x25);
1068
Uwe Hermanne4870472010-11-04 23:23:47 +00001069 /*
1070 * Warn if any leftover static devices are are found.
1071 * There's probably a problem in devicetree.cb.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001072 */
1073 if (old_devices) {
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001074 device_t left;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001075 printk(BIOS_WARNING, "PCI: Left over static devices:\n");
Uwe Hermanne4870472010-11-04 23:23:47 +00001076 for (left = old_devices; left; left = left->sibling)
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001077 printk(BIOS_WARNING, "%s\n", dev_path(left));
Uwe Hermanne4870472010-11-04 23:23:47 +00001078
1079 printk(BIOS_WARNING, "PCI: Check your devicetree.cb.\n");
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001080 }
1081
Uwe Hermanne4870472010-11-04 23:23:47 +00001082 /*
1083 * For all children that implement scan_bus() (i.e. bridges)
Eric Biedermanb78c1972004-10-14 20:54:17 +00001084 * scan the bus behind that child.
1085 */
Uwe Hermanne4870472010-11-04 23:23:47 +00001086 for (child = bus->children; child; child = child->sibling)
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001087 max = scan_bus(child, max);
Li-Ta Loe5266692004-03-23 21:28:05 +00001088
Uwe Hermanne4870472010-11-04 23:23:47 +00001089 /*
1090 * We've scanned the bus and so we know all about what's on the other
Myles Watson29cc9ed2009-07-02 18:56:24 +00001091 * side of any bridges that may be on this bus plus any devices.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001092 * Return how far we've got finding sub-buses.
1093 */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001094 printk(BIOS_DEBUG, "PCI: pci_scan_bus returning with max=%03x\n", max);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001095 post_code(0x55);
1096 return max;
1097}
1098
Li-Ta Loe5266692004-03-23 21:28:05 +00001099/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001100 * Scan a PCI bridge and the buses behind the bridge.
Li-Ta Loe5266692004-03-23 21:28:05 +00001101 *
1102 * Determine the existence of buses behind the bridge. Set up the bridge
1103 * according to the result of the scan.
1104 *
1105 * This function is the default scan_bus() method for PCI bridge devices.
1106 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001107 * @param dev Pointer to the bridge device.
1108 * @param max The highest bus number assigned up to now.
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001109 * @param do_scan_bus TODO
Myles Watson29cc9ed2009-07-02 18:56:24 +00001110 * @return The maximum bus number found, after scanning all subordinate buses.
Eric Biederman8ca8d762003-04-22 19:02:15 +00001111 */
Myles Watson032a9652009-05-11 22:24:53 +00001112unsigned int do_pci_scan_bridge(struct device *dev, unsigned int max,
Myles Watson29cc9ed2009-07-02 18:56:24 +00001113 unsigned int (*do_scan_bus) (struct bus * bus,
1114 unsigned min_devfn,
1115 unsigned max_devfn,
1116 unsigned int max))
Eric Biederman8ca8d762003-04-22 19:02:15 +00001117{
Eric Biedermane9a271e32003-09-02 03:36:25 +00001118 struct bus *bus;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001119 u32 buses;
1120 u16 cr;
Eric Biederman83b991a2003-10-11 06:20:25 +00001121
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001122 printk(BIOS_SPEW, "%s for %s\n", __func__, dev_path(dev));
Li-Ta Lo3a812852004-12-03 22:39:34 +00001123
Myles Watson894a3472010-06-09 22:41:35 +00001124 if (dev->link_list == NULL) {
1125 struct bus *link;
1126 link = malloc(sizeof(*link));
1127 if (link == NULL)
1128 die("Couldn't allocate a link!\n");
1129 memset(link, 0, sizeof(*link));
1130 link->dev = dev;
1131 dev->link_list = link;
1132 }
1133
1134 bus = dev->link_list;
Eric Biedermane9a271e32003-09-02 03:36:25 +00001135
Uwe Hermanne4870472010-11-04 23:23:47 +00001136 /*
1137 * Set up the primary, secondary and subordinate bus numbers. We have
Eric Biederman8ca8d762003-04-22 19:02:15 +00001138 * no idea how many buses are behind this bridge yet, so we set the
Myles Watson032a9652009-05-11 22:24:53 +00001139 * subordinate bus number to 0xff for the moment.
Eric Biedermanb78c1972004-10-14 20:54:17 +00001140 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001141 bus->secondary = ++max;
1142 bus->subordinate = 0xff;
Li-Ta Loe5266692004-03-23 21:28:05 +00001143
Eric Biederman8ca8d762003-04-22 19:02:15 +00001144 /* Clear all status bits and turn off memory, I/O and master enables. */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001145 cr = pci_read_config16(dev, PCI_COMMAND);
1146 pci_write_config16(dev, PCI_COMMAND, 0x0000);
1147 pci_write_config16(dev, PCI_STATUS, 0xffff);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001148
Uwe Hermanne4870472010-11-04 23:23:47 +00001149 /*
1150 * Read the existing primary/secondary/subordinate bus
Eric Biedermanb78c1972004-10-14 20:54:17 +00001151 * number configuration.
1152 */
Eric Biedermane9a271e32003-09-02 03:36:25 +00001153 buses = pci_read_config32(dev, PCI_PRIMARY_BUS);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001154
Uwe Hermanne4870472010-11-04 23:23:47 +00001155 /*
1156 * Configure the bus numbers for this bridge: the configuration
Eric Biederman8ca8d762003-04-22 19:02:15 +00001157 * transactions will not be propagated by the bridge if it is not
Eric Biedermanb78c1972004-10-14 20:54:17 +00001158 * correctly configured.
1159 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001160 buses &= 0xff000000;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001161 buses |= (((unsigned int)(dev->bus->secondary) << 0) |
1162 ((unsigned int)(bus->secondary) << 8) |
1163 ((unsigned int)(bus->subordinate) << 16));
Eric Biedermane9a271e32003-09-02 03:36:25 +00001164 pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001165
Uwe Hermanne4870472010-11-04 23:23:47 +00001166 /* Now we can scan all subordinate buses (those behind the bridge). */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001167 max = do_scan_bus(bus, 0x00, 0xff, max);
Li-Ta Lo3a812852004-12-03 22:39:34 +00001168
Uwe Hermanne4870472010-11-04 23:23:47 +00001169 /*
1170 * We know the number of buses behind this bridge. Set the subordinate
Eric Biedermanb78c1972004-10-14 20:54:17 +00001171 * bus number to its real value.
1172 */
Eric Biederman8ca8d762003-04-22 19:02:15 +00001173 bus->subordinate = max;
Myles Watson29cc9ed2009-07-02 18:56:24 +00001174 buses = (buses & 0xff00ffff) | ((unsigned int)(bus->subordinate) << 16);
Eric Biedermane9a271e32003-09-02 03:36:25 +00001175 pci_write_config32(dev, PCI_PRIMARY_BUS, buses);
1176 pci_write_config16(dev, PCI_COMMAND, cr);
Myles Watson032a9652009-05-11 22:24:53 +00001177
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001178 printk(BIOS_SPEW, "%s returns max %d\n", __func__, max);
Eric Biederman8ca8d762003-04-22 19:02:15 +00001179 return max;
1180}
Li-Ta Loe5266692004-03-23 21:28:05 +00001181
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001182/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001183 * Scan a PCI bridge and the buses behind the bridge.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001184 *
1185 * Determine the existence of buses behind the bridge. Set up the bridge
1186 * according to the result of the scan.
1187 *
1188 * This function is the default scan_bus() method for PCI bridge devices.
1189 *
Myles Watson29cc9ed2009-07-02 18:56:24 +00001190 * @param dev Pointer to the bridge device.
1191 * @param max The highest bus number assigned up to now.
1192 * @return The maximum bus number found, after scanning all subordinate buses.
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001193 */
1194unsigned int pci_scan_bridge(struct device *dev, unsigned int max)
1195{
1196 return do_pci_scan_bridge(dev, max, pci_scan_bus);
1197}
1198
Myles Watson29cc9ed2009-07-02 18:56:24 +00001199/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001200 * Scan a PCI domain.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001201 *
1202 * This function is the default scan_bus() method for PCI domains.
1203 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001204 * @param dev Pointer to the domain.
1205 * @param max The highest bus number assigned up to now.
1206 * @return The maximum bus number found, after scanning all subordinate busses.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001207 */
1208unsigned int pci_domain_scan_bus(device_t dev, unsigned int max)
1209{
Myles Watson894a3472010-06-09 22:41:35 +00001210 max = pci_scan_bus(dev->link_list, PCI_DEVFN(0, 0), 0xff, max);
Myles Watson29cc9ed2009-07-02 18:56:24 +00001211 return max;
1212}
1213
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001214#if CONFIG_PC80_SYSTEM == 1
Myles Watson29cc9ed2009-07-02 18:56:24 +00001215/**
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001216 * Assign IRQ numbers.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001217 *
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001218 * This function assigns IRQs for all functions contained within the indicated
Uwe Hermanne4870472010-11-04 23:23:47 +00001219 * device address. If the device does not exist or does not require interrupts
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001220 * then this function has no effect.
Myles Watson29cc9ed2009-07-02 18:56:24 +00001221 *
1222 * This function should be called for each PCI slot in your system.
1223 *
Uwe Hermannc1ee4292010-10-17 19:01:48 +00001224 * @param bus Pointer to the bus structure.
1225 * @param slot TODO
1226 * @param pIntAtoD An array of IRQ #s that are assigned to PINTA through PINTD
1227 * of this slot. The particular IRQ #s that are passed in depend on the
1228 * routing inside your southbridge and on your board.
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001229 */
Yinghai Lu13f1c2a2005-07-08 02:49:49 +00001230void pci_assign_irqs(unsigned bus, unsigned slot,
Uwe Hermanne4870472010-11-04 23:23:47 +00001231 const unsigned char pIntAtoD[4])
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001232{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001233 unsigned int funct;
1234 device_t pdev;
Uwe Hermanne4870472010-11-04 23:23:47 +00001235 u8 line, irq;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001236
Uwe Hermanne4870472010-11-04 23:23:47 +00001237 /* Each slot may contain up to eight functions. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001238 for (funct = 0; funct < 8; funct++) {
1239 pdev = dev_find_slot(bus, (slot << 3) + funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001240
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001241 if (!pdev)
1242 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001243
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001244 line = pci_read_config8(pdev, PCI_INTERRUPT_PIN);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001245
Uwe Hermanne4870472010-11-04 23:23:47 +00001246 /* PCI spec says all values except 1..4 are reserved. */
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001247 if ((line < 1) || (line > 4))
1248 continue;
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001249
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001250 irq = pIntAtoD[line - 1];
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001251
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001252 printk(BIOS_DEBUG, "Assigning IRQ %d to %d:%x.%d\n",
Uwe Hermanne4870472010-11-04 23:23:47 +00001253 irq, bus, slot, funct);
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001254
Stefan Reinauer14e22772010-04-27 06:56:47 +00001255 pci_write_config8(pdev, PCI_INTERRUPT_LINE,
Uwe Hermanne4870472010-11-04 23:23:47 +00001256 pIntAtoD[line - 1]);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001257
1258#ifdef PARANOID_IRQ_ASSIGNMENTS
Myles Watson17aeeca2009-10-07 18:41:08 +00001259 irq = pci_read_config8(pdev, PCI_INTERRUPT_LINE);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001260 printk(BIOS_DEBUG, " Readback = %d\n", irq);
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001261#endif
1262
Stefan Reinauer5fb62162010-12-16 23:52:04 +00001263#if CONFIG_PC80_SYSTEM == 1
Uwe Hermanne4870472010-11-04 23:23:47 +00001264 /* Change to level triggered. */
1265 i8259_configure_irq_trigger(pIntAtoD[line - 1],
1266 IRQ_LEVEL_TRIGGERED);
Stefan Reinauer5fb62162010-12-16 23:52:04 +00001267#endif
Ronald G. Minnich6dd6c6852003-10-02 00:08:42 +00001268 }
1269}
Stefan Reinauer4d933dd2009-07-21 21:36:41 +00001270#endif