2 * probe.c - PCI detection and setup code
5 #include <linux/kernel.h>
6 #include <linux/delay.h>
7 #include <linux/init.h>
9 #include <linux/slab.h>
10 #include <linux/module.h>
11 #include <linux/cpumask.h>
13 #define CARDBUS_LATENCY_TIMER 176 /* secondary latency timer */
14 #define CARDBUS_RESERVE_BUSNR 3
15 #define PCI_CFG_SPACE_SIZE 256
16 #define PCI_CFG_SPACE_EXP_SIZE 4096
18 /* Ugh. Need to stop exporting this to modules. */
19 LIST_HEAD(pci_root_buses);
20 EXPORT_SYMBOL(pci_root_buses);
22 LIST_HEAD(pci_devices);
24 #ifdef HAVE_PCI_LEGACY
26 * pci_create_legacy_files - create legacy I/O port and memory files
27 * @b: bus to create files under
29 * Some platforms allow access to legacy I/O port and ISA memory space on
30 * a per-bus basis. This routine creates the files and ties them into
31 * their associated read, write and mmap files from pci-sysfs.c
33 static void pci_create_legacy_files(struct pci_bus *b)
35 b->legacy_io = kmalloc(sizeof(struct bin_attribute) * 2,
38 memset(b->legacy_io, 0, sizeof(struct bin_attribute) * 2);
39 b->legacy_io->attr.name = "legacy_io";
40 b->legacy_io->size = 0xffff;
41 b->legacy_io->attr.mode = S_IRUSR | S_IWUSR;
42 b->legacy_io->attr.owner = THIS_MODULE;
43 b->legacy_io->read = pci_read_legacy_io;
44 b->legacy_io->write = pci_write_legacy_io;
45 class_device_create_bin_file(&b->class_dev, b->legacy_io);
47 /* Allocated above after the legacy_io struct */
48 b->legacy_mem = b->legacy_io + 1;
49 b->legacy_mem->attr.name = "legacy_mem";
50 b->legacy_mem->size = 1024*1024;
51 b->legacy_mem->attr.mode = S_IRUSR | S_IWUSR;
52 b->legacy_mem->attr.owner = THIS_MODULE;
53 b->legacy_mem->mmap = pci_mmap_legacy_mem;
54 class_device_create_bin_file(&b->class_dev, b->legacy_mem);
58 void pci_remove_legacy_files(struct pci_bus *b)
61 class_device_remove_bin_file(&b->class_dev, b->legacy_io);
62 class_device_remove_bin_file(&b->class_dev, b->legacy_mem);
63 kfree(b->legacy_io); /* both are allocated here */
66 #else /* !HAVE_PCI_LEGACY */
67 static inline void pci_create_legacy_files(struct pci_bus *bus) { return; }
68 void pci_remove_legacy_files(struct pci_bus *bus) { return; }
69 #endif /* HAVE_PCI_LEGACY */
72 * PCI Bus Class Devices
74 static ssize_t pci_bus_show_cpuaffinity(struct class_device *class_dev, char *buf)
76 cpumask_t cpumask = pcibus_to_cpumask(to_pci_bus(class_dev));
79 ret = cpumask_scnprintf(buf, PAGE_SIZE, cpumask);
84 CLASS_DEVICE_ATTR(cpuaffinity, S_IRUGO, pci_bus_show_cpuaffinity, NULL);
89 static void release_pcibus_dev(struct class_device *class_dev)
91 struct pci_bus *pci_bus = to_pci_bus(class_dev);
94 put_device(pci_bus->bridge);
98 static struct class pcibus_class = {
100 .release = &release_pcibus_dev,
103 static int __init pcibus_class_init(void)
105 return class_register(&pcibus_class);
107 postcore_initcall(pcibus_class_init);
110 * Translate the low bits of the PCI base
111 * to the resource type
113 static inline unsigned int pci_calc_resource_flags(unsigned int flags)
115 if (flags & PCI_BASE_ADDRESS_SPACE_IO)
116 return IORESOURCE_IO;
118 if (flags & PCI_BASE_ADDRESS_MEM_PREFETCH)
119 return IORESOURCE_MEM | IORESOURCE_PREFETCH;
121 return IORESOURCE_MEM;
125 * Find the extent of a PCI decode..
127 static u32 pci_size(u32 base, u32 maxbase, unsigned long mask)
129 u32 size = mask & maxbase; /* Find the significant bits */
133 /* Get the lowest of them to find the decode size, and
134 from that the extent. */
135 size = (size & ~(size-1)) - 1;
137 /* base == maxbase can be valid only if the BAR has
138 already been programmed with all 1s. */
139 if (base == maxbase && ((base | size) & mask) != mask)
145 static void pci_read_bases(struct pci_dev *dev, unsigned int howmany, int rom)
147 unsigned int pos, reg, next;
149 struct resource *res;
151 for(pos=0; pos<howmany; pos = next) {
153 res = &dev->resource[pos];
154 res->name = pci_name(dev);
155 reg = PCI_BASE_ADDRESS_0 + (pos << 2);
156 pci_read_config_dword(dev, reg, &l);
157 pci_write_config_dword(dev, reg, ~0);
158 pci_read_config_dword(dev, reg, &sz);
159 pci_write_config_dword(dev, reg, l);
160 if (!sz || sz == 0xffffffff)
164 if ((l & PCI_BASE_ADDRESS_SPACE) == PCI_BASE_ADDRESS_SPACE_MEMORY) {
165 sz = pci_size(l, sz, PCI_BASE_ADDRESS_MEM_MASK);
168 res->start = l & PCI_BASE_ADDRESS_MEM_MASK;
169 res->flags |= l & ~PCI_BASE_ADDRESS_MEM_MASK;
171 sz = pci_size(l, sz, PCI_BASE_ADDRESS_IO_MASK & 0xffff);
174 res->start = l & PCI_BASE_ADDRESS_IO_MASK;
175 res->flags |= l & ~PCI_BASE_ADDRESS_IO_MASK;
177 res->end = res->start + (unsigned long) sz;
178 res->flags |= pci_calc_resource_flags(l);
179 if ((l & (PCI_BASE_ADDRESS_SPACE | PCI_BASE_ADDRESS_MEM_TYPE_MASK))
180 == (PCI_BASE_ADDRESS_SPACE_MEMORY | PCI_BASE_ADDRESS_MEM_TYPE_64)) {
181 pci_read_config_dword(dev, reg+4, &l);
183 #if BITS_PER_LONG == 64
184 res->start |= ((unsigned long) l) << 32;
185 res->end = res->start + sz;
186 pci_write_config_dword(dev, reg+4, ~0);
187 pci_read_config_dword(dev, reg+4, &sz);
188 pci_write_config_dword(dev, reg+4, l);
189 sz = pci_size(l, sz, 0xffffffff);
191 /* This BAR needs > 4GB? Wow. */
192 res->end |= (unsigned long)sz<<32;
196 printk(KERN_ERR "PCI: Unable to handle 64-bit address for device %s\n", pci_name(dev));
205 dev->rom_base_reg = rom;
206 res = &dev->resource[PCI_ROM_RESOURCE];
207 res->name = pci_name(dev);
208 pci_read_config_dword(dev, rom, &l);
209 pci_write_config_dword(dev, rom, ~PCI_ROM_ADDRESS_ENABLE);
210 pci_read_config_dword(dev, rom, &sz);
211 pci_write_config_dword(dev, rom, l);
214 if (sz && sz != 0xffffffff) {
215 sz = pci_size(l, sz, PCI_ROM_ADDRESS_MASK);
217 res->flags = (l & IORESOURCE_ROM_ENABLE) |
218 IORESOURCE_MEM | IORESOURCE_PREFETCH |
219 IORESOURCE_READONLY | IORESOURCE_CACHEABLE;
220 res->start = l & PCI_ROM_ADDRESS_MASK;
221 res->end = res->start + (unsigned long) sz;
227 void __devinit pci_read_bridge_bases(struct pci_bus *child)
229 struct pci_dev *dev = child->self;
230 u8 io_base_lo, io_limit_lo;
231 u16 mem_base_lo, mem_limit_lo;
232 unsigned long base, limit;
233 struct resource *res;
236 if (!dev) /* It's a host bus, nothing to read */
239 if (dev->transparent) {
240 printk(KERN_INFO "PCI: Transparent bridge - %s\n", pci_name(dev));
241 for(i = 0; i < PCI_BUS_NUM_RESOURCES; i++)
242 child->resource[i] = child->parent->resource[i];
247 child->resource[i] = &dev->resource[PCI_BRIDGE_RESOURCES+i];
249 res = child->resource[0];
250 pci_read_config_byte(dev, PCI_IO_BASE, &io_base_lo);
251 pci_read_config_byte(dev, PCI_IO_LIMIT, &io_limit_lo);
252 base = (io_base_lo & PCI_IO_RANGE_MASK) << 8;
253 limit = (io_limit_lo & PCI_IO_RANGE_MASK) << 8;
255 if ((io_base_lo & PCI_IO_RANGE_TYPE_MASK) == PCI_IO_RANGE_TYPE_32) {
256 u16 io_base_hi, io_limit_hi;
257 pci_read_config_word(dev, PCI_IO_BASE_UPPER16, &io_base_hi);
258 pci_read_config_word(dev, PCI_IO_LIMIT_UPPER16, &io_limit_hi);
259 base |= (io_base_hi << 16);
260 limit |= (io_limit_hi << 16);
264 res->flags = (io_base_lo & PCI_IO_RANGE_TYPE_MASK) | IORESOURCE_IO;
266 res->end = limit + 0xfff;
269 res = child->resource[1];
270 pci_read_config_word(dev, PCI_MEMORY_BASE, &mem_base_lo);
271 pci_read_config_word(dev, PCI_MEMORY_LIMIT, &mem_limit_lo);
272 base = (mem_base_lo & PCI_MEMORY_RANGE_MASK) << 16;
273 limit = (mem_limit_lo & PCI_MEMORY_RANGE_MASK) << 16;
275 res->flags = (mem_base_lo & PCI_MEMORY_RANGE_TYPE_MASK) | IORESOURCE_MEM;
277 res->end = limit + 0xfffff;
280 res = child->resource[2];
281 pci_read_config_word(dev, PCI_PREF_MEMORY_BASE, &mem_base_lo);
282 pci_read_config_word(dev, PCI_PREF_MEMORY_LIMIT, &mem_limit_lo);
283 base = (mem_base_lo & PCI_PREF_RANGE_MASK) << 16;
284 limit = (mem_limit_lo & PCI_PREF_RANGE_MASK) << 16;
286 if ((mem_base_lo & PCI_PREF_RANGE_TYPE_MASK) == PCI_PREF_RANGE_TYPE_64) {
287 u32 mem_base_hi, mem_limit_hi;
288 pci_read_config_dword(dev, PCI_PREF_BASE_UPPER32, &mem_base_hi);
289 pci_read_config_dword(dev, PCI_PREF_LIMIT_UPPER32, &mem_limit_hi);
292 * Some bridges set the base > limit by default, and some
293 * (broken) BIOSes do not initialize them. If we find
294 * this, just assume they are not being used.
296 if (mem_base_hi <= mem_limit_hi) {
297 #if BITS_PER_LONG == 64
298 base |= ((long) mem_base_hi) << 32;
299 limit |= ((long) mem_limit_hi) << 32;
301 if (mem_base_hi || mem_limit_hi) {
302 printk(KERN_ERR "PCI: Unable to handle 64-bit address space for bridge %s\n", pci_name(dev));
309 res->flags = (mem_base_lo & PCI_MEMORY_RANGE_TYPE_MASK) | IORESOURCE_MEM | IORESOURCE_PREFETCH;
311 res->end = limit + 0xfffff;
315 static struct pci_bus * __devinit pci_alloc_bus(void)
319 b = kmalloc(sizeof(*b), GFP_KERNEL);
321 memset(b, 0, sizeof(*b));
322 INIT_LIST_HEAD(&b->node);
323 INIT_LIST_HEAD(&b->children);
324 INIT_LIST_HEAD(&b->devices);
329 static struct pci_bus * __devinit
330 pci_alloc_child_bus(struct pci_bus *parent, struct pci_dev *bridge, int busnr)
332 struct pci_bus *child;
336 * Allocate a new bus, and inherit stuff from the parent..
338 child = pci_alloc_bus();
342 child->self = bridge;
343 child->parent = parent;
344 child->ops = parent->ops;
345 child->sysdata = parent->sysdata;
346 child->bridge = get_device(&bridge->dev);
348 child->class_dev.class = &pcibus_class;
349 sprintf(child->class_dev.class_id, "%04x:%02x", pci_domain_nr(child), busnr);
350 class_device_register(&child->class_dev);
351 class_device_create_file(&child->class_dev, &class_device_attr_cpuaffinity);
354 * Set up the primary, secondary and subordinate
357 child->number = child->secondary = busnr;
358 child->primary = parent->secondary;
359 child->subordinate = 0xff;
361 /* Set up default resource pointers and names.. */
362 for (i = 0; i < 4; i++) {
363 child->resource[i] = &bridge->resource[PCI_BRIDGE_RESOURCES+i];
364 child->resource[i]->name = child->name;
366 bridge->subordinate = child;
371 struct pci_bus * __devinit pci_add_new_bus(struct pci_bus *parent, struct pci_dev *dev, int busnr)
373 struct pci_bus *child;
375 child = pci_alloc_child_bus(parent, dev, busnr);
377 list_add_tail(&child->node, &parent->children);
381 static void pci_enable_crs(struct pci_dev *dev)
384 int rpcap = pci_find_capability(dev, PCI_CAP_ID_EXP);
388 pci_read_config_word(dev, rpcap + PCI_CAP_FLAGS, &cap);
389 if (((cap & PCI_EXP_FLAGS_TYPE) >> 4) != PCI_EXP_TYPE_ROOT_PORT)
392 pci_read_config_word(dev, rpcap + PCI_EXP_RTCTL, &rpctl);
393 rpctl |= PCI_EXP_RTCTL_CRSSVE;
394 pci_write_config_word(dev, rpcap + PCI_EXP_RTCTL, rpctl);
397 unsigned int __devinit pci_scan_child_bus(struct pci_bus *bus);
400 * If it's a bridge, configure it and scan the bus behind it.
401 * For CardBus bridges, we don't scan behind as the devices will
402 * be handled by the bridge driver itself.
404 * We need to process bridges in two passes -- first we scan those
405 * already configured by the BIOS and after we are done with all of
406 * them, we proceed to assigning numbers to the remaining buses in
407 * order to avoid overlaps between old and new bus numbers.
409 int __devinit pci_scan_bridge(struct pci_bus *bus, struct pci_dev * dev, int max, int pass)
411 struct pci_bus *child;
412 int is_cardbus = (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS);
416 pci_read_config_dword(dev, PCI_PRIMARY_BUS, &buses);
418 pr_debug("PCI: Scanning behind PCI bridge %s, config %06x, pass %d\n",
419 pci_name(dev), buses & 0xffffff, pass);
421 /* Disable MasterAbortMode during probing to avoid reporting
422 of bus errors (in some architectures) */
423 pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &bctl);
424 pci_write_config_word(dev, PCI_BRIDGE_CONTROL,
425 bctl & ~PCI_BRIDGE_CTL_MASTER_ABORT);
429 if ((buses & 0xffff00) && !pcibios_assign_all_busses() && !is_cardbus) {
430 unsigned int cmax, busnr;
432 * Bus already configured by firmware, process it in the first
433 * pass and just note the configuration.
437 busnr = (buses >> 8) & 0xFF;
440 * If we already got to this bus through a different bridge,
441 * ignore it. This can happen with the i450NX chipset.
443 if (pci_find_bus(pci_domain_nr(bus), busnr)) {
444 printk(KERN_INFO "PCI: Bus %04x:%02x already known\n",
445 pci_domain_nr(bus), busnr);
449 child = pci_alloc_child_bus(bus, dev, busnr);
452 child->primary = buses & 0xFF;
453 child->subordinate = (buses >> 16) & 0xFF;
454 child->bridge_ctl = bctl;
456 cmax = pci_scan_child_bus(child);
459 if (child->subordinate > max)
460 max = child->subordinate;
463 * We need to assign a number to this bus which we always
464 * do in the second pass.
470 pci_write_config_word(dev, PCI_STATUS, 0xffff);
472 child = pci_alloc_child_bus(bus, dev, ++max);
473 buses = (buses & 0xff000000)
474 | ((unsigned int)(child->primary) << 0)
475 | ((unsigned int)(child->secondary) << 8)
476 | ((unsigned int)(child->subordinate) << 16);
479 * yenta.c forces a secondary latency timer of 176.
480 * Copy that behaviour here.
483 buses &= ~0xff000000;
484 buses |= CARDBUS_LATENCY_TIMER << 24;
488 * We need to blast all three values with a single write.
490 pci_write_config_dword(dev, PCI_PRIMARY_BUS, buses);
493 child->bridge_ctl = PCI_BRIDGE_CTL_NO_ISA;
495 /* Now we can scan all subordinate buses... */
496 max = pci_scan_child_bus(child);
499 * For CardBus bridges, we leave 4 bus numbers
500 * as cards with a PCI-to-PCI bridge can be
503 max += CARDBUS_RESERVE_BUSNR;
506 * Set the subordinate bus number to its real value.
508 child->subordinate = max;
509 pci_write_config_byte(dev, PCI_SUBORDINATE_BUS, max);
512 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, bctl);
514 sprintf(child->name, (is_cardbus ? "PCI CardBus #%02x" : "PCI Bus #%02x"), child->number);
520 * Read interrupt line and base address registers.
521 * The architecture-dependent code can tweak these, of course.
523 static void pci_read_irq(struct pci_dev *dev)
527 pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &irq);
529 pci_read_config_byte(dev, PCI_INTERRUPT_LINE, &irq);
534 * pci_setup_device - fill in class and map information of a device
535 * @dev: the device structure to fill
537 * Initialize the device structure with information about the device's
538 * vendor,class,memory and IO-space addresses,IRQ lines etc.
539 * Called at initialisation of the PCI subsystem and by CardBus services.
540 * Returns 0 on success and -1 if unknown type of device (not normal, bridge
543 static int pci_setup_device(struct pci_dev * dev)
547 sprintf(pci_name(dev), "%04x:%02x:%02x.%d", pci_domain_nr(dev->bus),
548 dev->bus->number, PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn));
550 pci_read_config_dword(dev, PCI_CLASS_REVISION, &class);
551 class >>= 8; /* upper 3 bytes */
555 pr_debug("PCI: Found %s [%04x/%04x] %06x %02x\n", pci_name(dev),
556 dev->vendor, dev->device, class, dev->hdr_type);
558 /* "Unknown power state" */
559 dev->current_state = 4;
561 /* Early fixups, before probing the BARs */
562 pci_fixup_device(pci_fixup_early, dev);
563 class = dev->class >> 8;
565 switch (dev->hdr_type) { /* header type */
566 case PCI_HEADER_TYPE_NORMAL: /* standard header */
567 if (class == PCI_CLASS_BRIDGE_PCI)
570 pci_read_bases(dev, 6, PCI_ROM_ADDRESS);
571 pci_read_config_word(dev, PCI_SUBSYSTEM_VENDOR_ID, &dev->subsystem_vendor);
572 pci_read_config_word(dev, PCI_SUBSYSTEM_ID, &dev->subsystem_device);
575 case PCI_HEADER_TYPE_BRIDGE: /* bridge header */
576 if (class != PCI_CLASS_BRIDGE_PCI)
578 /* The PCI-to-PCI bridge spec requires that subtractive
579 decoding (i.e. transparent) bridge must have programming
580 interface code of 0x01. */
581 dev->transparent = ((dev->class & 0xff) == 1);
582 pci_read_bases(dev, 2, PCI_ROM_ADDRESS1);
585 case PCI_HEADER_TYPE_CARDBUS: /* CardBus bridge header */
586 if (class != PCI_CLASS_BRIDGE_CARDBUS)
589 pci_read_bases(dev, 1, 0);
590 pci_read_config_word(dev, PCI_CB_SUBSYSTEM_VENDOR_ID, &dev->subsystem_vendor);
591 pci_read_config_word(dev, PCI_CB_SUBSYSTEM_ID, &dev->subsystem_device);
594 default: /* unknown header */
595 printk(KERN_ERR "PCI: device %s has unknown header type %02x, ignoring.\n",
596 pci_name(dev), dev->hdr_type);
600 printk(KERN_ERR "PCI: %s: class %x doesn't match header type %02x. Ignoring class.\n",
601 pci_name(dev), class, dev->hdr_type);
602 dev->class = PCI_CLASS_NOT_DEFINED;
605 /* We found a fine healthy device, go go go... */
610 * pci_release_dev - free a pci device structure when all users of it are finished.
611 * @dev: device that's been disconnected
613 * Will be called only by the device core when all users of this pci device are
616 static void pci_release_dev(struct device *dev)
618 struct pci_dev *pci_dev;
620 pci_dev = to_pci_dev(dev);
625 * pci_cfg_space_size - get the configuration space size of the PCI device.
627 * Regular PCI devices have 256 bytes, but PCI-X 2 and PCI Express devices
628 * have 4096 bytes. Even if the device is capable, that doesn't mean we can
629 * access it. Maybe we don't have a way to generate extended config space
630 * accesses, or the device is behind a reverse Express bridge. So we try
631 * reading the dword at 0x100 which must either be 0 or a valid extended
634 static int pci_cfg_space_size(struct pci_dev *dev)
639 pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
641 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
645 pci_read_config_dword(dev, pos + PCI_X_STATUS, &status);
646 if (!(status & (PCI_X_STATUS_266MHZ | PCI_X_STATUS_533MHZ)))
650 if (pci_read_config_dword(dev, 256, &status) != PCIBIOS_SUCCESSFUL)
652 if (status == 0xffffffff)
655 return PCI_CFG_SPACE_EXP_SIZE;
658 return PCI_CFG_SPACE_SIZE;
661 static void pci_release_bus_bridge_dev(struct device *dev)
667 * Read the config data for a PCI device, sanity-check it
668 * and fill in the dev structure...
670 static struct pci_dev * __devinit
671 pci_scan_device(struct pci_bus *bus, int devfn)
678 if (pci_bus_read_config_dword(bus, devfn, PCI_VENDOR_ID, &l))
681 /* some broken boards return 0 or ~0 if a slot is empty: */
682 if (l == 0xffffffff || l == 0x00000000 ||
683 l == 0x0000ffff || l == 0xffff0000)
686 /* Configuration request Retry Status */
687 while (l == 0xffff0001) {
690 if (pci_bus_read_config_dword(bus, devfn, PCI_VENDOR_ID, &l))
692 /* Card hasn't responded in 60 seconds? Must be stuck. */
693 if (delay > 60 * 1000) {
694 printk(KERN_WARNING "Device %04x:%02x:%02x.%d not "
695 "responding\n", pci_domain_nr(bus),
696 bus->number, PCI_SLOT(devfn),
702 if (pci_bus_read_config_byte(bus, devfn, PCI_HEADER_TYPE, &hdr_type))
705 dev = kmalloc(sizeof(struct pci_dev), GFP_KERNEL);
709 memset(dev, 0, sizeof(struct pci_dev));
711 dev->sysdata = bus->sysdata;
712 dev->dev.parent = bus->bridge;
713 dev->dev.bus = &pci_bus_type;
715 dev->hdr_type = hdr_type & 0x7f;
716 dev->multifunction = !!(hdr_type & 0x80);
717 dev->vendor = l & 0xffff;
718 dev->device = (l >> 16) & 0xffff;
719 dev->cfg_size = pci_cfg_space_size(dev);
721 /* Assume 32-bit PCI; let 64-bit PCI cards (which are far rarer)
722 set this higher, assuming the system even supports it. */
723 dev->dma_mask = 0xffffffff;
724 if (pci_setup_device(dev) < 0) {
728 device_initialize(&dev->dev);
729 dev->dev.release = pci_release_dev;
732 pci_name_device(dev);
734 dev->dev.dma_mask = &dev->dma_mask;
735 dev->dev.coherent_dma_mask = 0xffffffffull;
740 struct pci_dev * __devinit
741 pci_scan_single_device(struct pci_bus *bus, int devfn)
745 dev = pci_scan_device(bus, devfn);
746 pci_scan_msi_device(dev);
751 /* Fix up broken headers */
752 pci_fixup_device(pci_fixup_header, dev);
755 * Add the device to our list of discovered devices
756 * and the bus list for fixup functions, etc.
758 INIT_LIST_HEAD(&dev->global_list);
759 list_add_tail(&dev->bus_list, &bus->devices);
765 * pci_scan_slot - scan a PCI slot on a bus for devices.
766 * @bus: PCI bus to scan
767 * @devfn: slot number to scan (must have zero function.)
769 * Scan a PCI slot on the specified PCI bus for devices, adding
770 * discovered devices to the @bus->devices list. New devices
771 * will have an empty dev->global_list head.
773 int __devinit pci_scan_slot(struct pci_bus *bus, int devfn)
778 scan_all_fns = pcibios_scan_all_fns(bus, devfn);
780 for (func = 0; func < 8; func++, devfn++) {
783 dev = pci_scan_single_device(bus, devfn);
788 * If this is a single function device,
789 * don't scan past the first function.
791 if (!dev->multifunction) {
793 dev->multifunction = 1;
799 if (func == 0 && !scan_all_fns)
806 unsigned int __devinit pci_scan_child_bus(struct pci_bus *bus)
808 unsigned int devfn, pass, max = bus->secondary;
811 pr_debug("PCI: Scanning bus %04x:%02x\n", pci_domain_nr(bus), bus->number);
813 /* Go find them, Rover! */
814 for (devfn = 0; devfn < 0x100; devfn += 8)
815 pci_scan_slot(bus, devfn);
818 * After performing arch-dependent fixup of the bus, look behind
819 * all PCI-to-PCI bridges on this bus.
821 pr_debug("PCI: Fixups for bus %04x:%02x\n", pci_domain_nr(bus), bus->number);
822 pcibios_fixup_bus(bus);
823 for (pass=0; pass < 2; pass++)
824 list_for_each_entry(dev, &bus->devices, bus_list) {
825 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
826 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
827 max = pci_scan_bridge(bus, dev, max, pass);
831 * We've scanned the bus and so we know all about what's on
832 * the other side of any bridges that may be on this bus plus
835 * Return how far we've got finding sub-buses.
837 pr_debug("PCI: Bus scan for %04x:%02x returning with max=%02x\n",
838 pci_domain_nr(bus), bus->number, max);
842 unsigned int __devinit pci_do_scan_bus(struct pci_bus *bus)
846 max = pci_scan_child_bus(bus);
849 * Make the discovered devices available.
851 pci_bus_add_devices(bus);
856 struct pci_bus * __devinit pci_scan_bus_parented(struct device *parent, int bus, struct pci_ops *ops, void *sysdata)
866 dev = kmalloc(sizeof(*dev), GFP_KERNEL);
872 b->sysdata = sysdata;
875 if (pci_find_bus(pci_domain_nr(b), bus)) {
876 /* If we already got to this bus through a different bridge, ignore it */
877 pr_debug("PCI: Bus %04x:%02x already known\n", pci_domain_nr(b), bus);
880 list_add_tail(&b->node, &pci_root_buses);
882 memset(dev, 0, sizeof(*dev));
883 dev->parent = parent;
884 dev->release = pci_release_bus_bridge_dev;
885 sprintf(dev->bus_id, "pci%04x:%02x", pci_domain_nr(b), bus);
886 error = device_register(dev);
889 b->bridge = get_device(dev);
891 b->class_dev.class = &pcibus_class;
892 sprintf(b->class_dev.class_id, "%04x:%02x", pci_domain_nr(b), bus);
893 error = class_device_register(&b->class_dev);
895 goto class_dev_reg_err;
896 error = class_device_create_file(&b->class_dev, &class_device_attr_cpuaffinity);
898 goto class_dev_create_file_err;
900 /* Create legacy_io and legacy_mem files for this bus */
901 pci_create_legacy_files(b);
903 error = sysfs_create_link(&b->class_dev.kobj, &b->bridge->kobj, "bridge");
905 goto sys_create_link_err;
907 b->number = b->secondary = bus;
908 b->resource[0] = &ioport_resource;
909 b->resource[1] = &iomem_resource;
911 b->subordinate = pci_scan_child_bus(b);
913 pci_bus_add_devices(b);
918 class_device_remove_file(&b->class_dev, &class_device_attr_cpuaffinity);
919 class_dev_create_file_err:
920 class_device_unregister(&b->class_dev);
922 device_unregister(dev);
930 EXPORT_SYMBOL(pci_scan_bus_parented);
932 #ifdef CONFIG_HOTPLUG
933 EXPORT_SYMBOL(pci_add_new_bus);
934 EXPORT_SYMBOL(pci_do_scan_bus);
935 EXPORT_SYMBOL(pci_scan_slot);
936 EXPORT_SYMBOL(pci_scan_bridge);
937 EXPORT_SYMBOL(pci_scan_single_device);
938 EXPORT_SYMBOL_GPL(pci_scan_child_bus);