blob: 25c39f8f9ae2db3c99f63881635ff16f4c646b4d [file] [log] [blame]
Eric Biederman8ca8d762003-04-22 19:02:15 +00001/*
2 * PCI Bus Services, see include/linux/pci.h for further explanation.
3 *
4 * Copyright 1993 -- 1997 Drew Eckhardt, Frederic Potter,
5 * David Mosberger-Tang
6 *
7 * Copyright 1997 -- 1999 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
8 *
9 * Copyright 2003 -- Eric Biederman <ebiederman@lnxi.com>
10 */
11
12#include <console/console.h>
13#include <stdlib.h>
14#include <stdint.h>
15#include <bitops.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000016#include <string.h>
Eric Biederman5899fd82003-04-24 06:25:08 +000017#include <device/device.h>
18#include <device/pci.h>
19#include <device/pci_ids.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000020
Eric Biederman8ca8d762003-04-22 19:02:15 +000021/** Given a device and register, read the size of the BAR for that register.
22 * @param dev Pointer to the device structure
23 * @param resource Pointer to the resource structure
24 * @param index Address of the pci configuration register
25 */
26static void pci_get_resource(struct device *dev, struct resource *resource, unsigned long index)
27{
28 uint32_t addr, size, base;
29 unsigned long type;
30
31 /* Initialize the resources to nothing */
32 resource->base = 0;
33 resource->size = 0;
34 resource->align = 0;
35 resource->gran = 0;
36 resource->limit = 0;
37 resource->flags = 0;
38 resource->index = index;
39
Eric Biederman7a5416a2003-06-12 19:23:51 +000040 addr = pci_read_config32(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +000041 if (addr == 0xffffffffUL)
42 return;
43
44 /* FIXME: more consideration for 64-bit PCI devices,
45 * we currently detect their size but otherwise
46 * treat them as 32-bit resources
47 */
48 /* get the size */
Eric Biederman7a5416a2003-06-12 19:23:51 +000049 pci_write_config32(dev, index, ~0);
50 size = pci_read_config32(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +000051
52 /* get the minimum value the bar can be set to */
Eric Biederman7a5416a2003-06-12 19:23:51 +000053 pci_write_config32(dev, index, 0);
54 base = pci_read_config32(dev, index);
Eric Biederman8ca8d762003-04-22 19:02:15 +000055
56 /* restore addr */
Eric Biederman7a5416a2003-06-12 19:23:51 +000057 pci_write_config32(dev, index, addr);
Eric Biederman8ca8d762003-04-22 19:02:15 +000058
59 /*
60 * some broken hardware has read-only registers that do not
61 * really size correctly. You can tell this if addr == size
62 * Example: the acer m7229 has BARs 1-4 normally read-only.
63 * so BAR1 at offset 0x10 reads 0x1f1. If you size that register
64 * by writing 0xffffffff to it, it will read back as 0x1f1 -- a
65 * violation of the spec.
66 * We catch this case and ignore it by settting size and type to 0.
67 * This incidentally catches the common case where registers
68 * read back as 0 for both address and size.
69 */
70 if ((addr == size) && (addr == base)) {
71 if (size != 0) {
72 printk_debug(
73 "PCI: %02x:%02x.%01x register %02x(%08x), read-only ignoring it\n",
74 dev->bus->secondary,
75 PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
76 index, addr);
77 }
78 resource->flags = 0;
79 }
80 /* Now compute the actual size, See PCI Spec 6.2.5.1 ... */
81 else if (size & PCI_BASE_ADDRESS_SPACE_IO) {
82 type = size & (~PCI_BASE_ADDRESS_IO_MASK);
83 /* BUG! Top 16 bits can be zero (or not)
84 * So set them to 0xffff so they go away ...
85 */
86 resource->size = (~((size | 0xffff0000) & PCI_BASE_ADDRESS_IO_MASK)) +1;
87 resource->align = log2(resource->size);
88 resource->gran = resource->align;
89 resource->flags = IORESOURCE_IO;
90 resource->limit = 0xffff;
91 }
92 else {
93 /* A Memory mapped base address */
94 type = size & (~PCI_BASE_ADDRESS_MEM_MASK);
95 resource->size = (~(size &PCI_BASE_ADDRESS_MEM_MASK)) +1;
96 resource->align = log2(resource->size);
97 resource->gran = resource->align;
98 resource->flags = IORESOURCE_MEM;
99 if (type & PCI_BASE_ADDRESS_MEM_PREFETCH) {
100 resource->flags |= IORESOURCE_PREFETCH;
101 }
102 type &= PCI_BASE_ADDRESS_MEM_TYPE_MASK;
103 if (type == PCI_BASE_ADDRESS_MEM_TYPE_32) {
104 /* 32bit limit */
105 resource->limit = 0xffffffffUL;
106 }
107 else if (type == PCI_BASE_ADDRESS_MEM_TYPE_1M) {
108 /* 1MB limit */
109 resource->limit = 0x000fffffUL;
110 }
111 else if (type == PCI_BASE_ADDRESS_MEM_TYPE_64) {
112 unsigned long index_hi;
113 /* 64bit limit
114 * For now just treat this as a 32bit limit
115 */
116 index_hi = index + 4;
117 resource->limit = 0xffffffffUL;
118 resource->flags |= IORESOURCE_PCI64;
Eric Biederman7a5416a2003-06-12 19:23:51 +0000119 addr = pci_read_config32( dev, index_hi);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000120 /* get the extended size */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000121 pci_write_config32(dev, index_hi, 0xffffffffUL);
122 size = pci_read_config32( dev, index_hi);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000123
124 /* get the minimum value the bar can be set to */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000125 pci_write_config32(dev, index_hi, 0);
126 base = pci_read_config32(dev, index_hi);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000127
128 /* restore addr */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000129 pci_write_config32(dev, index_hi, addr);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000130
131 if ((size == 0xffffffff) && (base == 0)) {
132 /* Clear the top half of the bar */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000133 pci_write_config32(dev, index_hi, 0);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000134 }
135 else {
136 printk_err("PCI: %02x:%02x.%01x Unable to handle 64-bit address\n",
137 dev->bus->secondary,
138 PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn));
139 resource->flags = IORESOURCE_PCI64;
140 }
141 }
142 else {
143 /* Invalid value */
144 resource->flags = 0;
145 }
146 }
147 /* dev->size holds the flags... */
148 return;
149}
150
151/** Read the base address registers for a given device.
152 * @param dev Pointer to the dev structure
153 * @param howmany How many registers to read (6 for device, 2 for bridge)
154 */
155static void pci_read_bases(struct device *dev, unsigned int howmany)
156{
157 unsigned int reg;
158 unsigned long index;
159
160 reg = dev->resources;
161 for(index = PCI_BASE_ADDRESS_0;
162 (reg < MAX_RESOURCES) && (index < PCI_BASE_ADDRESS_0 + (howmany << 2)); ) {
163 struct resource *resource;
164 resource = &dev->resource[reg];
165 pci_get_resource(dev, resource, index);
166 reg += (resource->flags & (IORESOURCE_IO | IORESOURCE_MEM))? 1:0;
167 index += (resource->flags & IORESOURCE_PCI64)?8:4;
168 }
169 dev->resources = reg;
170}
171
172
173static void pci_bridge_read_bases(struct device *dev)
174{
175 unsigned int reg = dev->resources;
176
177 /* FIXME handle bridges without some of the optional resources */
178
179 /* Initialize the io space constraints on the current bus */
180 dev->resource[reg].base = 0;
181 dev->resource[reg].size = 0;
182 dev->resource[reg].align = log2(PCI_IO_BRIDGE_ALIGN);
183 dev->resource[reg].gran = log2(PCI_IO_BRIDGE_ALIGN);
184 dev->resource[reg].limit = 0xffffUL;
185 dev->resource[reg].flags = IORESOURCE_IO | IORESOURCE_PCI_BRIDGE;
186 dev->resource[reg].index = PCI_IO_BASE;
187 compute_allocate_resource(dev, &dev->resource[reg],
188 IORESOURCE_IO, IORESOURCE_IO);
189 reg++;
190
191 /* Initiliaze the prefetchable memory constraints on the current bus */
192 dev->resource[reg].base = 0;
193 dev->resource[reg].size = 0;
194 dev->resource[reg].align = log2(PCI_MEM_BRIDGE_ALIGN);
195 dev->resource[reg].gran = log2(PCI_MEM_BRIDGE_ALIGN);
196 dev->resource[reg].limit = 0xffffffffUL;
197 dev->resource[reg].flags = IORESOURCE_MEM | IORESOURCE_PREFETCH | IORESOURCE_PCI_BRIDGE;
198 dev->resource[reg].index = PCI_PREF_MEMORY_BASE;
199 compute_allocate_resource(dev, &dev->resource[reg],
200 IORESOURCE_MEM | IORESOURCE_PREFETCH,
201 IORESOURCE_MEM | IORESOURCE_PREFETCH);
202 reg++;
203
204 /* Initialize the memory resources on the current bus */
205 dev->resource[reg].base = 0;
206 dev->resource[reg].size = 0;
207 dev->resource[reg].align = log2(PCI_MEM_BRIDGE_ALIGN);
208 dev->resource[reg].gran = log2(PCI_MEM_BRIDGE_ALIGN);
209 dev->resource[reg].limit = 0xffffffffUL;
210 dev->resource[reg].flags = IORESOURCE_MEM | IORESOURCE_PCI_BRIDGE;
211 dev->resource[reg].index = PCI_MEMORY_BASE;
212 compute_allocate_resource(dev, &dev->resource[reg],
213 IORESOURCE_MEM | IORESOURCE_PREFETCH,
214 IORESOURCE_MEM);
215 reg++;
216
217 dev->resources = reg;
218}
219
220
Eric Biederman5899fd82003-04-24 06:25:08 +0000221void pci_dev_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000222{
223 uint32_t addr;
224 dev->resources = 0;
225 memset(&dev->resource[0], 0, sizeof(dev->resource));
226 pci_read_bases(dev, 6);
Eric Biederman7a5416a2003-06-12 19:23:51 +0000227 addr = pci_read_config32(dev, PCI_ROM_ADDRESS);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000228 dev->rom_address = (addr == 0xffffffff)? 0 : addr;
229}
230
Eric Biederman5899fd82003-04-24 06:25:08 +0000231void pci_bus_read_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000232{
233 uint32_t addr;
234 dev->resources = 0;
235 memset(&dev->resource[0], 0, sizeof(dev->resource));
236 pci_bridge_read_bases(dev);
237 pci_read_bases(dev, 2);
238
Eric Biederman7a5416a2003-06-12 19:23:51 +0000239 addr = pci_read_config32(dev, PCI_ROM_ADDRESS1);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000240 dev->rom_address = (addr == 0xffffffff)? 0 : addr;
241
242}
243
244
245static void pci_set_resource(struct device *dev, struct resource *resource)
246{
247 unsigned long base, limit;
248 unsigned long bridge_align = PCI_MEM_BRIDGE_ALIGN;
249 unsigned char buf[10];
250
251 /* Make certain the resource has actually been set */
252 if (!(resource->flags & IORESOURCE_SET)) {
253#if 1
254 printk_err("ERROR: %02x:%02x.%01x %02x not allocated\n",
255 dev->bus->secondary,
256 PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
257 resource->index);
258#endif
259 return;
260 }
261
262 /* Only handle PCI memory and IO resources for now */
263 if (!(resource->flags & (IORESOURCE_MEM |IORESOURCE_IO)))
264 return;
265
266 if (resource->flags & IORESOURCE_MEM) {
267 dev->command |= PCI_COMMAND_MEMORY;
268 bridge_align = PCI_MEM_BRIDGE_ALIGN;
269 }
270 if (resource->flags & IORESOURCE_IO) {
271 dev->command |= PCI_COMMAND_IO;
272 bridge_align = PCI_IO_BRIDGE_ALIGN;
273 }
274 if (resource->flags & IORESOURCE_PCI_BRIDGE) {
275 dev->command |= PCI_COMMAND_MASTER;
276 }
277 /* Get the base address */
278 base = resource->base;
279
280 /* Get the limit (rounded up) */
281 limit = base + ((resource->size + bridge_align - 1UL) & ~(bridge_align -1)) -1UL;
282
283 if (!(resource->flags & IORESOURCE_PCI_BRIDGE)) {
284 /*
285 * some chipsets allow us to set/clear the IO bit.
286 * (e.g. VIA 82c686a.) So set it to be safe)
287 */
288 limit = base + resource->size -1;
289 if (resource->flags & IORESOURCE_IO) {
290 base |= PCI_BASE_ADDRESS_SPACE_IO;
291 }
Eric Biederman7a5416a2003-06-12 19:23:51 +0000292 pci_write_config32(dev, resource->index, base & 0xffffffff);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000293 if (resource->flags & IORESOURCE_PCI64) {
294 /* FIXME handle real 64bit base addresses */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000295 pci_write_config32(dev, resource->index + 4, 0);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000296 }
297 }
298 else if (resource->index == PCI_IO_BASE) {
299 /* set the IO ranges
300 * WARNING: we don't really do 32-bit addressing for IO yet!
301 */
302 compute_allocate_resource(dev, resource,
303 IORESOURCE_IO, IORESOURCE_IO);
Eric Biederman7a5416a2003-06-12 19:23:51 +0000304 pci_write_config8(dev, PCI_IO_BASE, base >> 8);
305 pci_write_config8(dev, PCI_IO_LIMIT, limit >> 8);
Eric Biederman5fb929e2003-07-17 02:15:46 +0000306 pci_write_config16(dev, PCI_IO_BASE_UPPER16, 0);
307 pci_write_config16(dev, PCI_IO_LIMIT_UPPER16, 0);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000308 }
309 else if (resource->index == PCI_MEMORY_BASE) {
310 /* set the memory range
311 */
312 compute_allocate_resource(dev, resource,
313 IORESOURCE_MEM | IORESOURCE_PREFETCH,
314 IORESOURCE_MEM);
Eric Biederman7a5416a2003-06-12 19:23:51 +0000315 pci_write_config16(dev, PCI_MEMORY_BASE, base >> 16);
316 pci_write_config16(dev, PCI_MEMORY_LIMIT, limit >> 16);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000317 }
318 else if (resource->index == PCI_PREF_MEMORY_BASE) {
319 /* set the prefetchable memory range
320 * WARNING: we don't really do 64-bit addressing for prefetchable memory yet!
321 */
322 compute_allocate_resource(dev, resource,
323 IORESOURCE_MEM | IORESOURCE_PREFETCH,
324 IORESOURCE_MEM | IORESOURCE_PREFETCH);
Eric Biederman7a5416a2003-06-12 19:23:51 +0000325 pci_write_config16(dev, PCI_PREF_MEMORY_BASE, base >> 16);
326 pci_write_config16(dev, PCI_PREF_MEMORY_LIMIT, limit >> 16);
Eric Biederman5fb929e2003-07-17 02:15:46 +0000327 pci_write_config32(dev, PCI_PREF_BASE_UPPER32, 0);
328 pci_write_config32(dev, PCI_PREF_LIMIT_UPPER32, 0);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000329 }
330 else {
331 printk_err("ERROR: invalid resource->index %x\n",
332 resource->index);
333 }
334 buf[0] = '\0';
335 if (resource->flags & IORESOURCE_PCI_BRIDGE) {
336 sprintf(buf, "bus %d ", dev->secondary);
337 }
338
339 printk_debug(
340 "PCI: %02x:%02x.%01x %02x <- [0x%08lx - 0x%08lx] %s%s\n",
341 dev->bus->secondary,
342 PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
343 resource->index,
344 resource->base, limit,
345 buf,
346 (resource->flags & IORESOURCE_IO)? "io":
347 (resource->flags & IORESOURCE_PREFETCH)? "prefmem": "mem");
348 return;
349}
350
Eric Biederman5899fd82003-04-24 06:25:08 +0000351void pci_dev_set_resources(struct device *dev)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000352{
353 struct resource *resource, *last;
354 uint8_t line;
355
356 last = &dev->resource[dev->resources];
357
358 for(resource = &dev->resource[0]; resource < last; resource++) {
359 pci_set_resource(dev, resource);
360 }
361 if (dev->children) {
362 assign_resources(dev);
363 }
364
365 /* set a default latency timer */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000366 pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000367
368 /* set a default secondary latency timer */
369 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE) {
Eric Biederman7a5416a2003-06-12 19:23:51 +0000370 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000371 }
372
373 /* zero the irq settings */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000374 line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000375 if (line) {
Eric Biederman7a5416a2003-06-12 19:23:51 +0000376 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000377 }
378 /* set the cache line size, so far 64 bytes is good for everyone */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000379 pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000380}
381
382struct device_operations default_pci_ops_dev = {
383 .read_resources = pci_dev_read_resources,
384 .set_resources = pci_dev_set_resources,
385 .init = 0,
386 .scan_bus = 0,
387};
388struct device_operations default_pci_ops_bus = {
389 .read_resources = pci_bus_read_resources,
390 .set_resources = pci_dev_set_resources,
391 .init = 0,
392 .scan_bus = pci_scan_bridge,
393};
394static void set_pci_ops(struct device *dev)
395{
396 struct pci_driver *driver;
397 if (dev->ops) {
398 return;
399 }
400 /* Look through the list of setup drivers and find one for
401 * this pci device
402 */
403 for(driver = &pci_drivers[0]; driver != &epci_drivers[0]; driver++) {
404 if ((driver->vendor == dev->vendor) &&
Eric Biederman5899fd82003-04-24 06:25:08 +0000405 (driver->device == dev->device)) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000406 dev->ops = driver->ops;
Eric Biederman5899fd82003-04-24 06:25:08 +0000407#if 1
408 printk_debug("PCI: %02x:%02x.%01x [%04x/%04x] ops\n",
409 dev->bus->secondary,
410 PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
411 driver->vendor, driver->device
412 );
413#endif
414 return;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000415 }
416 }
417 /* If I don't have a specific driver use the default operations */
418 switch(dev->hdr_type & 0x7f) { /* header type */
419 case PCI_HEADER_TYPE_NORMAL: /* standard header */
420 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
421 goto bad;
422 dev->ops = &default_pci_ops_dev;
423 break;
424 case PCI_HEADER_TYPE_BRIDGE:
425 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
426 goto bad;
427 dev->ops = &default_pci_ops_bus;
428 break;
429 default:
430 bad:
431 printk_err("PCI: %02x:%02x.%01x [%04x/%04x/%06x] has unknown header "
432 "type %02x, ignoring.\n",
433 dev->bus->secondary,
434 PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
435 dev->vendor, dev->device,
436 dev->class >> 8, dev->hdr_type);
437 }
438 return;
439}
440
441/**
442 * Given a bus and a devfn number, find the device structure
443 * @param bus The bus structure
444 * @param devfn a device/function number
445 * @return pointer to the device structure
446 */
447static struct device *pci_scan_get_dev(struct device **list, unsigned int devfn)
448{
449 struct device *dev = 0;
450 for(; *list; list = &(*list)->sibling) {
451 if ((*list)->devfn == devfn) {
452 /* Unlink from the list */
453 dev = *list;
454 *list = (*list)->sibling;
455 dev->sibling = 0;
456 break;
457 }
458 }
459 return dev;
460}
461
462
Eric Biederman5899fd82003-04-24 06:25:08 +0000463#define HYPERTRANSPORT_SUPPORT 1
Eric Biederman8ca8d762003-04-22 19:02:15 +0000464/** Scan the pci bus devices and bridges.
465 * @param pci_bus pointer to the bus structure
466 * @param max current bus number
467 * @return The maximum bus number found, after scanning all subordinate busses
468 */
469unsigned int pci_scan_bus(struct device *bus, unsigned int max)
470{
471 unsigned int devfn;
472 struct device *dev, **bus_last;
473 struct device *old_devices;
474 struct device *child;
Eric Biederman5899fd82003-04-24 06:25:08 +0000475#if HYPERTRANSPORT_SUPPORT
476 unsigned next_unitid, last_unitid;
477#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +0000478
479 printk_debug("PCI: pci_scan_bus for bus %d\n", bus->secondary);
480
481 old_devices = bus->children;
482 bus->children = 0;
483 bus_last = &bus->children;
484
485 post_code(0x24);
486
487
Eric Biederman5899fd82003-04-24 06:25:08 +0000488#if HYPERTRANSPORT_SUPPORT
489 /* If present assign unitid to a hypertransport chain */
490 next_unitid = 1;
491 do {
492 struct device dummy;
493 uint32_t id;
494 uint8_t hdr_type, pos;
495 last_unitid = next_unitid;
496
497 dummy.bus = bus;
498 dummy.devfn = 0;
Eric Biederman7a5416a2003-06-12 19:23:51 +0000499 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Eric Biederman5899fd82003-04-24 06:25:08 +0000500 if (id == 0xffffffff || id == 0x00000000 ||
501 id == 0x0000ffff || id == 0xffff0000) {
502 break;
503 }
Eric Biederman7a5416a2003-06-12 19:23:51 +0000504 hdr_type = pci_read_config8(&dummy, PCI_HEADER_TYPE);
Eric Biederman5899fd82003-04-24 06:25:08 +0000505 pos = 0;
506 switch(hdr_type & 0x7f) {
507 case PCI_HEADER_TYPE_NORMAL:
508 case PCI_HEADER_TYPE_BRIDGE:
509 pos = PCI_CAPABILITY_LIST;
510 break;
511 }
512 if (pos > PCI_CAP_LIST_NEXT) {
Eric Biederman7a5416a2003-06-12 19:23:51 +0000513 pos = pci_read_config8(&dummy, pos);
Eric Biederman5899fd82003-04-24 06:25:08 +0000514 }
515 while(pos != 0) {
516 uint8_t cap;
Eric Biederman7a5416a2003-06-12 19:23:51 +0000517 cap = pci_read_config8(&dummy, pos + PCI_CAP_LIST_ID);
Eric Biederman5899fd82003-04-24 06:25:08 +0000518 printk_debug("Capability: 0x%02x @ 0x%02x\n", cap, pos);
519 if (cap == PCI_CAP_ID_HT) {
520 uint16_t flags;
Eric Biederman7a5416a2003-06-12 19:23:51 +0000521 flags = pci_read_config16(&dummy, pos + PCI_CAP_FLAGS);
Eric Biederman5899fd82003-04-24 06:25:08 +0000522 printk_debug("flags: 0x%04x\n", (unsigned)flags);
523 if ((flags >> 13) == 0) {
524 unsigned count;
525 flags &= ~0x1f;
526 flags |= next_unitid & 0x1f;
527 count = (flags >> 5) & 0x1f;
528 printk_debug("unitid: 0x%02x, count: 0x%02x\n",
529 next_unitid, count);
Eric Biederman7a5416a2003-06-12 19:23:51 +0000530 pci_write_config16(&dummy, pos + PCI_CAP_FLAGS, flags);
Eric Biederman5899fd82003-04-24 06:25:08 +0000531 next_unitid += count;
532 break;
533 }
534 }
Eric Biederman7a5416a2003-06-12 19:23:51 +0000535 pos = pci_read_config8(&dummy, pos + PCI_CAP_LIST_NEXT);
Eric Biederman5899fd82003-04-24 06:25:08 +0000536 }
537 } while((last_unitid != next_unitid) && (next_unitid <= 0x1f));
538#endif /* HYPERTRANSPORT_SUPPORT */
539
Eric Biederman8ca8d762003-04-22 19:02:15 +0000540 /* probe all devices on this bus with some optimization for non-existance and
541 single funcion devices */
Eric Biederman52685572003-05-19 19:16:21 +0000542 for (devfn = 0; devfn <= 0xff; devfn++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000543 struct device dummy;
544 uint32_t id, class;
545 uint8_t cmd, tmp, hdr_type;
546
547 /* First thing setup the device structure */
548 dev = pci_scan_get_dev(&old_devices, devfn);
549
550 dummy.bus = bus;
551 dummy.devfn = devfn;
Eric Biederman7a5416a2003-06-12 19:23:51 +0000552 id = pci_read_config32(&dummy, PCI_VENDOR_ID);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000553 /* some broken boards return 0 if a slot is empty: */
554 if (!dev &&
555 (id == 0xffffffff || id == 0x00000000 ||
556 id == 0x0000ffff || id == 0xffff0000)) {
557 printk_spew("PCI: devfn 0x%x, bad id 0x%x\n", devfn, id);
558 if (PCI_FUNC(devfn) == 0x00) {
559 /* if this is a function 0 device and it is not present,
560 skip to next device */
561 devfn += 0x07;
562 }
563 /* multi function device, skip to next function */
564 continue;
565 }
Eric Biederman7a5416a2003-06-12 19:23:51 +0000566 hdr_type = pci_read_config8(&dummy, PCI_HEADER_TYPE);
567 class = pci_read_config32(&dummy, PCI_CLASS_REVISION);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000568
569 if (!dev) {
570 if ((dev = malloc(sizeof(*dev))) == 0) {
571 printk_err("PCI: out of memory.\n");
572 continue;
573 }
574 memset(dev, 0, sizeof(*dev));
575 }
576
577 dev->bus = bus;
578 dev->devfn = devfn;
579 dev->vendor = id & 0xffff;
580 dev->device = (id >> 16) & 0xffff;
581 dev->hdr_type = hdr_type;
582 /* class code, the upper 3 bytes of PCI_CLASS_REVISION */
583 dev->class = class >> 8;
584
585 /* non-destructively determine if device can be a master: */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000586 cmd = pci_read_config8(dev, PCI_COMMAND);
587 pci_write_config8(dev, PCI_COMMAND, cmd | PCI_COMMAND_MASTER);
588 tmp = pci_read_config8(dev, PCI_COMMAND);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000589
590 dev->master = ((tmp & PCI_COMMAND_MASTER) != 0);
Eric Biederman7a5416a2003-06-12 19:23:51 +0000591 pci_write_config8(dev, PCI_COMMAND, cmd);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000592
593 /* Look at the vendor and device id, or at least the
594 * header type and class and figure out which set of configuration
595 * methods to use.
596 */
597 set_pci_ops(dev);
598 /* Kill the device if we don't have some pci operations for it */
599 if (!dev->ops) {
600 free(dev);
601 continue;
602 }
603 printk_debug("PCI: %02x:%02x.%01x [%04x/%04x]\n",
604 bus->secondary, PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
605 dev->vendor, dev->device);
606
607 /* Put it into the global device chain. */
608 append_device(dev);
609
610 /* Now insert it into the list of devices held by the parent bus. */
611 *bus_last = dev;
612 bus_last = &dev->sibling;
613
614 if (PCI_FUNC(devfn) == 0x00 && (hdr_type & 0x80) != 0x80) {
615 /* if this is not a multi function device, don't waste time probe
616 another function. Skip to next device. */
617 devfn += 0x07;
618 }
619 }
620 post_code(0x25);
621
622 for(child = bus->children; child; child = child->sibling) {
623 if (!child->ops->scan_bus)
624 continue;
625 max = child->ops->scan_bus(child, max);
626
627 }
628 /*
629 * We've scanned the bus and so we know all about what's on
630 * the other side of any bridges that may be on this bus plus
631 * any devices.
632 *
633 * Return how far we've got finding sub-buses.
634 */
635 printk_debug("PCI: pci_scan_bus returning with max=%02x\n", max);
636 post_code(0x55);
637 return max;
638}
639
640/** Scan the bus, first for bridges and next for devices.
641 * @param pci_bus pointer to the bus structure
642 * @return The maximum bus number found, after scanning all subordinate busses
643 */
Eric Biederman5899fd82003-04-24 06:25:08 +0000644unsigned int pci_scan_bridge(struct device *bus, unsigned int max)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000645{
646 uint32_t buses;
647 uint16_t cr;
648 /* Set up the primary, secondary and subordinate bus numbers. We have
649 * no idea how many buses are behind this bridge yet, so we set the
650 * subordinate bus number to 0xff for the moment
651 */
652 bus->secondary = ++max;
653 bus->subordinate = 0xff;
654
655 /* Clear all status bits and turn off memory, I/O and master enables. */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000656 cr = pci_read_config16(bus, PCI_COMMAND);
657 pci_write_config16(bus, PCI_COMMAND, 0x0000);
658 pci_write_config16(bus, PCI_STATUS, 0xffff);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000659
660 /*
661 * Read the existing primary/secondary/subordinate bus
662 * number configuration.
663 */
Eric Biederman7a5416a2003-06-12 19:23:51 +0000664 buses = pci_read_config32(bus, PCI_PRIMARY_BUS);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000665
666 /* Configure the bus numbers for this bridge: the configuration
667 * transactions will not be propagated by the bridge if it is not
668 * correctly configured
669 */
670 buses &= 0xff000000;
671 buses |= (((unsigned int) (bus->bus->secondary) << 0) |
672 ((unsigned int) (bus->secondary) << 8) |
673 ((unsigned int) (bus->subordinate) << 16));
Eric Biederman7a5416a2003-06-12 19:23:51 +0000674 pci_write_config32(bus, PCI_PRIMARY_BUS, buses);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000675
676 /* Now we can scan all subordinate buses i.e. the bus hehind the bridge */
677 max = pci_scan_bus(bus, max);
678
679 /* We know the number of buses behind this bridge. Set the subordinate
680 * bus number to its real value
681 */
682 bus->subordinate = max;
683 buses = (buses & 0xff00ffff) |
684 ((unsigned int) (bus->subordinate) << 16);
Eric Biederman7a5416a2003-06-12 19:23:51 +0000685 pci_write_config32(bus, PCI_PRIMARY_BUS, buses);
686 pci_write_config16(bus, PCI_COMMAND, cr);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000687
688 return max;
689}
690
691
692static void pci_root_read_resources(struct device *bus)
693{
694 int res = 0;
695 /* Initialize the system wide io space constraints */
696 bus->resource[res].base = 0x400;
697 bus->resource[res].size = 0;
698 bus->resource[res].align = 0;
699 bus->resource[res].gran = 0;
700 bus->resource[res].limit = 0xffffUL;
701 bus->resource[res].flags = IORESOURCE_IO;
702 bus->resource[res].index = PCI_IO_BASE;
703 compute_allocate_resource(bus, &bus->resource[res],
704 IORESOURCE_IO, IORESOURCE_IO);
705 res++;
706
707 /* Initialize the system wide memory resources constraints */
708 bus->resource[res].base = 0;
709 bus->resource[res].size = 0;
710 bus->resource[res].align = 0;
711 bus->resource[res].gran = 0;
712 bus->resource[res].limit = 0xffffffffUL;
713 bus->resource[res].flags = IORESOURCE_MEM;
714 bus->resource[res].index = PCI_MEMORY_BASE;
715 compute_allocate_resource(bus, &bus->resource[res],
716 IORESOURCE_MEM, IORESOURCE_MEM);
717 res++;
718
719 bus->resources = res;
720}
721static void pci_root_set_resources(struct device *bus)
722{
723 compute_allocate_resource(bus,
724 &bus->resource[0], IORESOURCE_IO, IORESOURCE_IO);
725 compute_allocate_resource(bus,
726 &bus->resource[1], IORESOURCE_MEM, IORESOURCE_MEM);
727 assign_resources(bus);
728}
729
730struct device_operations default_pci_ops_root = {
731 .read_resources = pci_root_read_resources,
732 .set_resources = pci_root_set_resources,
733 .init = 0,
734 .scan_bus = pci_scan_bus,
735};
736