dm writecache: add cond_resched to loop in persistent_memory_claim()
[linux/fpc-iii.git] / drivers / pci / probe.c
blobb59a4b0f5f1625364d60248fab60d84785bba8a6
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * PCI detection and setup code
4 */
6 #include <linux/kernel.h>
7 #include <linux/delay.h>
8 #include <linux/init.h>
9 #include <linux/pci.h>
10 #include <linux/msi.h>
11 #include <linux/of_device.h>
12 #include <linux/of_pci.h>
13 #include <linux/pci_hotplug.h>
14 #include <linux/slab.h>
15 #include <linux/module.h>
16 #include <linux/cpumask.h>
17 #include <linux/aer.h>
18 #include <linux/acpi.h>
19 #include <linux/hypervisor.h>
20 #include <linux/irqdomain.h>
21 #include <linux/pm_runtime.h>
22 #include "pci.h"
24 #define CARDBUS_LATENCY_TIMER 176 /* secondary latency timer */
25 #define CARDBUS_RESERVE_BUSNR 3
27 static struct resource busn_resource = {
28 .name = "PCI busn",
29 .start = 0,
30 .end = 255,
31 .flags = IORESOURCE_BUS,
34 /* Ugh. Need to stop exporting this to modules. */
35 LIST_HEAD(pci_root_buses);
36 EXPORT_SYMBOL(pci_root_buses);
38 static LIST_HEAD(pci_domain_busn_res_list);
40 struct pci_domain_busn_res {
41 struct list_head list;
42 struct resource res;
43 int domain_nr;
46 static struct resource *get_pci_domain_busn_res(int domain_nr)
48 struct pci_domain_busn_res *r;
50 list_for_each_entry(r, &pci_domain_busn_res_list, list)
51 if (r->domain_nr == domain_nr)
52 return &r->res;
54 r = kzalloc(sizeof(*r), GFP_KERNEL);
55 if (!r)
56 return NULL;
58 r->domain_nr = domain_nr;
59 r->res.start = 0;
60 r->res.end = 0xff;
61 r->res.flags = IORESOURCE_BUS | IORESOURCE_PCI_FIXED;
63 list_add_tail(&r->list, &pci_domain_busn_res_list);
65 return &r->res;
69 * Some device drivers need know if PCI is initiated.
70 * Basically, we think PCI is not initiated when there
71 * is no device to be found on the pci_bus_type.
73 int no_pci_devices(void)
75 struct device *dev;
76 int no_devices;
78 dev = bus_find_next_device(&pci_bus_type, NULL);
79 no_devices = (dev == NULL);
80 put_device(dev);
81 return no_devices;
83 EXPORT_SYMBOL(no_pci_devices);
86 * PCI Bus Class
88 static void release_pcibus_dev(struct device *dev)
90 struct pci_bus *pci_bus = to_pci_bus(dev);
92 put_device(pci_bus->bridge);
93 pci_bus_remove_resources(pci_bus);
94 pci_release_bus_of_node(pci_bus);
95 kfree(pci_bus);
98 static struct class pcibus_class = {
99 .name = "pci_bus",
100 .dev_release = &release_pcibus_dev,
101 .dev_groups = pcibus_groups,
104 static int __init pcibus_class_init(void)
106 return class_register(&pcibus_class);
108 postcore_initcall(pcibus_class_init);
110 static u64 pci_size(u64 base, u64 maxbase, u64 mask)
112 u64 size = mask & maxbase; /* Find the significant bits */
113 if (!size)
114 return 0;
117 * Get the lowest of them to find the decode size, and from that
118 * the extent.
120 size = size & ~(size-1);
123 * base == maxbase can be valid only if the BAR has already been
124 * programmed with all 1s.
126 if (base == maxbase && ((base | (size - 1)) & mask) != mask)
127 return 0;
129 return size;
132 static inline unsigned long decode_bar(struct pci_dev *dev, u32 bar)
134 u32 mem_type;
135 unsigned long flags;
137 if ((bar & PCI_BASE_ADDRESS_SPACE) == PCI_BASE_ADDRESS_SPACE_IO) {
138 flags = bar & ~PCI_BASE_ADDRESS_IO_MASK;
139 flags |= IORESOURCE_IO;
140 return flags;
143 flags = bar & ~PCI_BASE_ADDRESS_MEM_MASK;
144 flags |= IORESOURCE_MEM;
145 if (flags & PCI_BASE_ADDRESS_MEM_PREFETCH)
146 flags |= IORESOURCE_PREFETCH;
148 mem_type = bar & PCI_BASE_ADDRESS_MEM_TYPE_MASK;
149 switch (mem_type) {
150 case PCI_BASE_ADDRESS_MEM_TYPE_32:
151 break;
152 case PCI_BASE_ADDRESS_MEM_TYPE_1M:
153 /* 1M mem BAR treated as 32-bit BAR */
154 break;
155 case PCI_BASE_ADDRESS_MEM_TYPE_64:
156 flags |= IORESOURCE_MEM_64;
157 break;
158 default:
159 /* mem unknown type treated as 32-bit BAR */
160 break;
162 return flags;
165 #define PCI_COMMAND_DECODE_ENABLE (PCI_COMMAND_MEMORY | PCI_COMMAND_IO)
168 * pci_read_base - Read a PCI BAR
169 * @dev: the PCI device
170 * @type: type of the BAR
171 * @res: resource buffer to be filled in
172 * @pos: BAR position in the config space
174 * Returns 1 if the BAR is 64-bit, or 0 if 32-bit.
176 int __pci_read_base(struct pci_dev *dev, enum pci_bar_type type,
177 struct resource *res, unsigned int pos)
179 u32 l = 0, sz = 0, mask;
180 u64 l64, sz64, mask64;
181 u16 orig_cmd;
182 struct pci_bus_region region, inverted_region;
184 mask = type ? PCI_ROM_ADDRESS_MASK : ~0;
186 /* No printks while decoding is disabled! */
187 if (!dev->mmio_always_on) {
188 pci_read_config_word(dev, PCI_COMMAND, &orig_cmd);
189 if (orig_cmd & PCI_COMMAND_DECODE_ENABLE) {
190 pci_write_config_word(dev, PCI_COMMAND,
191 orig_cmd & ~PCI_COMMAND_DECODE_ENABLE);
195 res->name = pci_name(dev);
197 pci_read_config_dword(dev, pos, &l);
198 pci_write_config_dword(dev, pos, l | mask);
199 pci_read_config_dword(dev, pos, &sz);
200 pci_write_config_dword(dev, pos, l);
203 * All bits set in sz means the device isn't working properly.
204 * If the BAR isn't implemented, all bits must be 0. If it's a
205 * memory BAR or a ROM, bit 0 must be clear; if it's an io BAR, bit
206 * 1 must be clear.
208 if (sz == 0xffffffff)
209 sz = 0;
212 * I don't know how l can have all bits set. Copied from old code.
213 * Maybe it fixes a bug on some ancient platform.
215 if (l == 0xffffffff)
216 l = 0;
218 if (type == pci_bar_unknown) {
219 res->flags = decode_bar(dev, l);
220 res->flags |= IORESOURCE_SIZEALIGN;
221 if (res->flags & IORESOURCE_IO) {
222 l64 = l & PCI_BASE_ADDRESS_IO_MASK;
223 sz64 = sz & PCI_BASE_ADDRESS_IO_MASK;
224 mask64 = PCI_BASE_ADDRESS_IO_MASK & (u32)IO_SPACE_LIMIT;
225 } else {
226 l64 = l & PCI_BASE_ADDRESS_MEM_MASK;
227 sz64 = sz & PCI_BASE_ADDRESS_MEM_MASK;
228 mask64 = (u32)PCI_BASE_ADDRESS_MEM_MASK;
230 } else {
231 if (l & PCI_ROM_ADDRESS_ENABLE)
232 res->flags |= IORESOURCE_ROM_ENABLE;
233 l64 = l & PCI_ROM_ADDRESS_MASK;
234 sz64 = sz & PCI_ROM_ADDRESS_MASK;
235 mask64 = PCI_ROM_ADDRESS_MASK;
238 if (res->flags & IORESOURCE_MEM_64) {
239 pci_read_config_dword(dev, pos + 4, &l);
240 pci_write_config_dword(dev, pos + 4, ~0);
241 pci_read_config_dword(dev, pos + 4, &sz);
242 pci_write_config_dword(dev, pos + 4, l);
244 l64 |= ((u64)l << 32);
245 sz64 |= ((u64)sz << 32);
246 mask64 |= ((u64)~0 << 32);
249 if (!dev->mmio_always_on && (orig_cmd & PCI_COMMAND_DECODE_ENABLE))
250 pci_write_config_word(dev, PCI_COMMAND, orig_cmd);
252 if (!sz64)
253 goto fail;
255 sz64 = pci_size(l64, sz64, mask64);
256 if (!sz64) {
257 pci_info(dev, FW_BUG "reg 0x%x: invalid BAR (can't size)\n",
258 pos);
259 goto fail;
262 if (res->flags & IORESOURCE_MEM_64) {
263 if ((sizeof(pci_bus_addr_t) < 8 || sizeof(resource_size_t) < 8)
264 && sz64 > 0x100000000ULL) {
265 res->flags |= IORESOURCE_UNSET | IORESOURCE_DISABLED;
266 res->start = 0;
267 res->end = 0;
268 pci_err(dev, "reg 0x%x: can't handle BAR larger than 4GB (size %#010llx)\n",
269 pos, (unsigned long long)sz64);
270 goto out;
273 if ((sizeof(pci_bus_addr_t) < 8) && l) {
274 /* Above 32-bit boundary; try to reallocate */
275 res->flags |= IORESOURCE_UNSET;
276 res->start = 0;
277 res->end = sz64 - 1;
278 pci_info(dev, "reg 0x%x: can't handle BAR above 4GB (bus address %#010llx)\n",
279 pos, (unsigned long long)l64);
280 goto out;
284 region.start = l64;
285 region.end = l64 + sz64 - 1;
287 pcibios_bus_to_resource(dev->bus, res, &region);
288 pcibios_resource_to_bus(dev->bus, &inverted_region, res);
291 * If "A" is a BAR value (a bus address), "bus_to_resource(A)" is
292 * the corresponding resource address (the physical address used by
293 * the CPU. Converting that resource address back to a bus address
294 * should yield the original BAR value:
296 * resource_to_bus(bus_to_resource(A)) == A
298 * If it doesn't, CPU accesses to "bus_to_resource(A)" will not
299 * be claimed by the device.
301 if (inverted_region.start != region.start) {
302 res->flags |= IORESOURCE_UNSET;
303 res->start = 0;
304 res->end = region.end - region.start;
305 pci_info(dev, "reg 0x%x: initial BAR value %#010llx invalid\n",
306 pos, (unsigned long long)region.start);
309 goto out;
312 fail:
313 res->flags = 0;
314 out:
315 if (res->flags)
316 pci_info(dev, "reg 0x%x: %pR\n", pos, res);
318 return (res->flags & IORESOURCE_MEM_64) ? 1 : 0;
321 static void pci_read_bases(struct pci_dev *dev, unsigned int howmany, int rom)
323 unsigned int pos, reg;
325 if (dev->non_compliant_bars)
326 return;
328 /* Per PCIe r4.0, sec 9.3.4.1.11, the VF BARs are all RO Zero */
329 if (dev->is_virtfn)
330 return;
332 for (pos = 0; pos < howmany; pos++) {
333 struct resource *res = &dev->resource[pos];
334 reg = PCI_BASE_ADDRESS_0 + (pos << 2);
335 pos += __pci_read_base(dev, pci_bar_unknown, res, reg);
338 if (rom) {
339 struct resource *res = &dev->resource[PCI_ROM_RESOURCE];
340 dev->rom_base_reg = rom;
341 res->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH |
342 IORESOURCE_READONLY | IORESOURCE_SIZEALIGN;
343 __pci_read_base(dev, pci_bar_mem32, res, rom);
347 static void pci_read_bridge_windows(struct pci_dev *bridge)
349 u16 io;
350 u32 pmem, tmp;
352 pci_read_config_word(bridge, PCI_IO_BASE, &io);
353 if (!io) {
354 pci_write_config_word(bridge, PCI_IO_BASE, 0xe0f0);
355 pci_read_config_word(bridge, PCI_IO_BASE, &io);
356 pci_write_config_word(bridge, PCI_IO_BASE, 0x0);
358 if (io)
359 bridge->io_window = 1;
362 * DECchip 21050 pass 2 errata: the bridge may miss an address
363 * disconnect boundary by one PCI data phase. Workaround: do not
364 * use prefetching on this device.
366 if (bridge->vendor == PCI_VENDOR_ID_DEC && bridge->device == 0x0001)
367 return;
369 pci_read_config_dword(bridge, PCI_PREF_MEMORY_BASE, &pmem);
370 if (!pmem) {
371 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE,
372 0xffe0fff0);
373 pci_read_config_dword(bridge, PCI_PREF_MEMORY_BASE, &pmem);
374 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE, 0x0);
376 if (!pmem)
377 return;
379 bridge->pref_window = 1;
381 if ((pmem & PCI_PREF_RANGE_TYPE_MASK) == PCI_PREF_RANGE_TYPE_64) {
384 * Bridge claims to have a 64-bit prefetchable memory
385 * window; verify that the upper bits are actually
386 * writable.
388 pci_read_config_dword(bridge, PCI_PREF_BASE_UPPER32, &pmem);
389 pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32,
390 0xffffffff);
391 pci_read_config_dword(bridge, PCI_PREF_BASE_UPPER32, &tmp);
392 pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32, pmem);
393 if (tmp)
394 bridge->pref_64_window = 1;
398 static void pci_read_bridge_io(struct pci_bus *child)
400 struct pci_dev *dev = child->self;
401 u8 io_base_lo, io_limit_lo;
402 unsigned long io_mask, io_granularity, base, limit;
403 struct pci_bus_region region;
404 struct resource *res;
406 io_mask = PCI_IO_RANGE_MASK;
407 io_granularity = 0x1000;
408 if (dev->io_window_1k) {
409 /* Support 1K I/O space granularity */
410 io_mask = PCI_IO_1K_RANGE_MASK;
411 io_granularity = 0x400;
414 res = child->resource[0];
415 pci_read_config_byte(dev, PCI_IO_BASE, &io_base_lo);
416 pci_read_config_byte(dev, PCI_IO_LIMIT, &io_limit_lo);
417 base = (io_base_lo & io_mask) << 8;
418 limit = (io_limit_lo & io_mask) << 8;
420 if ((io_base_lo & PCI_IO_RANGE_TYPE_MASK) == PCI_IO_RANGE_TYPE_32) {
421 u16 io_base_hi, io_limit_hi;
423 pci_read_config_word(dev, PCI_IO_BASE_UPPER16, &io_base_hi);
424 pci_read_config_word(dev, PCI_IO_LIMIT_UPPER16, &io_limit_hi);
425 base |= ((unsigned long) io_base_hi << 16);
426 limit |= ((unsigned long) io_limit_hi << 16);
429 if (base <= limit) {
430 res->flags = (io_base_lo & PCI_IO_RANGE_TYPE_MASK) | IORESOURCE_IO;
431 region.start = base;
432 region.end = limit + io_granularity - 1;
433 pcibios_bus_to_resource(dev->bus, res, &region);
434 pci_info(dev, " bridge window %pR\n", res);
438 static void pci_read_bridge_mmio(struct pci_bus *child)
440 struct pci_dev *dev = child->self;
441 u16 mem_base_lo, mem_limit_lo;
442 unsigned long base, limit;
443 struct pci_bus_region region;
444 struct resource *res;
446 res = child->resource[1];
447 pci_read_config_word(dev, PCI_MEMORY_BASE, &mem_base_lo);
448 pci_read_config_word(dev, PCI_MEMORY_LIMIT, &mem_limit_lo);
449 base = ((unsigned long) mem_base_lo & PCI_MEMORY_RANGE_MASK) << 16;
450 limit = ((unsigned long) mem_limit_lo & PCI_MEMORY_RANGE_MASK) << 16;
451 if (base <= limit) {
452 res->flags = (mem_base_lo & PCI_MEMORY_RANGE_TYPE_MASK) | IORESOURCE_MEM;
453 region.start = base;
454 region.end = limit + 0xfffff;
455 pcibios_bus_to_resource(dev->bus, res, &region);
456 pci_info(dev, " bridge window %pR\n", res);
460 static void pci_read_bridge_mmio_pref(struct pci_bus *child)
462 struct pci_dev *dev = child->self;
463 u16 mem_base_lo, mem_limit_lo;
464 u64 base64, limit64;
465 pci_bus_addr_t base, limit;
466 struct pci_bus_region region;
467 struct resource *res;
469 res = child->resource[2];
470 pci_read_config_word(dev, PCI_PREF_MEMORY_BASE, &mem_base_lo);
471 pci_read_config_word(dev, PCI_PREF_MEMORY_LIMIT, &mem_limit_lo);
472 base64 = (mem_base_lo & PCI_PREF_RANGE_MASK) << 16;
473 limit64 = (mem_limit_lo & PCI_PREF_RANGE_MASK) << 16;
475 if ((mem_base_lo & PCI_PREF_RANGE_TYPE_MASK) == PCI_PREF_RANGE_TYPE_64) {
476 u32 mem_base_hi, mem_limit_hi;
478 pci_read_config_dword(dev, PCI_PREF_BASE_UPPER32, &mem_base_hi);
479 pci_read_config_dword(dev, PCI_PREF_LIMIT_UPPER32, &mem_limit_hi);
482 * Some bridges set the base > limit by default, and some
483 * (broken) BIOSes do not initialize them. If we find
484 * this, just assume they are not being used.
486 if (mem_base_hi <= mem_limit_hi) {
487 base64 |= (u64) mem_base_hi << 32;
488 limit64 |= (u64) mem_limit_hi << 32;
492 base = (pci_bus_addr_t) base64;
493 limit = (pci_bus_addr_t) limit64;
495 if (base != base64) {
496 pci_err(dev, "can't handle bridge window above 4GB (bus address %#010llx)\n",
497 (unsigned long long) base64);
498 return;
501 if (base <= limit) {
502 res->flags = (mem_base_lo & PCI_PREF_RANGE_TYPE_MASK) |
503 IORESOURCE_MEM | IORESOURCE_PREFETCH;
504 if (res->flags & PCI_PREF_RANGE_TYPE_64)
505 res->flags |= IORESOURCE_MEM_64;
506 region.start = base;
507 region.end = limit + 0xfffff;
508 pcibios_bus_to_resource(dev->bus, res, &region);
509 pci_info(dev, " bridge window %pR\n", res);
513 void pci_read_bridge_bases(struct pci_bus *child)
515 struct pci_dev *dev = child->self;
516 struct resource *res;
517 int i;
519 if (pci_is_root_bus(child)) /* It's a host bus, nothing to read */
520 return;
522 pci_info(dev, "PCI bridge to %pR%s\n",
523 &child->busn_res,
524 dev->transparent ? " (subtractive decode)" : "");
526 pci_bus_remove_resources(child);
527 for (i = 0; i < PCI_BRIDGE_RESOURCE_NUM; i++)
528 child->resource[i] = &dev->resource[PCI_BRIDGE_RESOURCES+i];
530 pci_read_bridge_io(child);
531 pci_read_bridge_mmio(child);
532 pci_read_bridge_mmio_pref(child);
534 if (dev->transparent) {
535 pci_bus_for_each_resource(child->parent, res, i) {
536 if (res && res->flags) {
537 pci_bus_add_resource(child, res,
538 PCI_SUBTRACTIVE_DECODE);
539 pci_info(dev, " bridge window %pR (subtractive decode)\n",
540 res);
546 static struct pci_bus *pci_alloc_bus(struct pci_bus *parent)
548 struct pci_bus *b;
550 b = kzalloc(sizeof(*b), GFP_KERNEL);
551 if (!b)
552 return NULL;
554 INIT_LIST_HEAD(&b->node);
555 INIT_LIST_HEAD(&b->children);
556 INIT_LIST_HEAD(&b->devices);
557 INIT_LIST_HEAD(&b->slots);
558 INIT_LIST_HEAD(&b->resources);
559 b->max_bus_speed = PCI_SPEED_UNKNOWN;
560 b->cur_bus_speed = PCI_SPEED_UNKNOWN;
561 #ifdef CONFIG_PCI_DOMAINS_GENERIC
562 if (parent)
563 b->domain_nr = parent->domain_nr;
564 #endif
565 return b;
568 static void devm_pci_release_host_bridge_dev(struct device *dev)
570 struct pci_host_bridge *bridge = to_pci_host_bridge(dev);
572 if (bridge->release_fn)
573 bridge->release_fn(bridge);
575 pci_free_resource_list(&bridge->windows);
576 pci_free_resource_list(&bridge->dma_ranges);
579 static void pci_release_host_bridge_dev(struct device *dev)
581 devm_pci_release_host_bridge_dev(dev);
582 kfree(to_pci_host_bridge(dev));
585 static void pci_init_host_bridge(struct pci_host_bridge *bridge)
587 INIT_LIST_HEAD(&bridge->windows);
588 INIT_LIST_HEAD(&bridge->dma_ranges);
591 * We assume we can manage these PCIe features. Some systems may
592 * reserve these for use by the platform itself, e.g., an ACPI BIOS
593 * may implement its own AER handling and use _OSC to prevent the
594 * OS from interfering.
596 bridge->native_aer = 1;
597 bridge->native_pcie_hotplug = 1;
598 bridge->native_shpc_hotplug = 1;
599 bridge->native_pme = 1;
600 bridge->native_ltr = 1;
601 bridge->native_dpc = 1;
604 struct pci_host_bridge *pci_alloc_host_bridge(size_t priv)
606 struct pci_host_bridge *bridge;
608 bridge = kzalloc(sizeof(*bridge) + priv, GFP_KERNEL);
609 if (!bridge)
610 return NULL;
612 pci_init_host_bridge(bridge);
613 bridge->dev.release = pci_release_host_bridge_dev;
615 return bridge;
617 EXPORT_SYMBOL(pci_alloc_host_bridge);
619 struct pci_host_bridge *devm_pci_alloc_host_bridge(struct device *dev,
620 size_t priv)
622 struct pci_host_bridge *bridge;
624 bridge = devm_kzalloc(dev, sizeof(*bridge) + priv, GFP_KERNEL);
625 if (!bridge)
626 return NULL;
628 pci_init_host_bridge(bridge);
629 bridge->dev.release = devm_pci_release_host_bridge_dev;
631 return bridge;
633 EXPORT_SYMBOL(devm_pci_alloc_host_bridge);
635 void pci_free_host_bridge(struct pci_host_bridge *bridge)
637 pci_free_resource_list(&bridge->windows);
638 pci_free_resource_list(&bridge->dma_ranges);
640 kfree(bridge);
642 EXPORT_SYMBOL(pci_free_host_bridge);
644 /* Indexed by PCI_X_SSTATUS_FREQ (secondary bus mode and frequency) */
645 static const unsigned char pcix_bus_speed[] = {
646 PCI_SPEED_UNKNOWN, /* 0 */
647 PCI_SPEED_66MHz_PCIX, /* 1 */
648 PCI_SPEED_100MHz_PCIX, /* 2 */
649 PCI_SPEED_133MHz_PCIX, /* 3 */
650 PCI_SPEED_UNKNOWN, /* 4 */
651 PCI_SPEED_66MHz_PCIX_ECC, /* 5 */
652 PCI_SPEED_100MHz_PCIX_ECC, /* 6 */
653 PCI_SPEED_133MHz_PCIX_ECC, /* 7 */
654 PCI_SPEED_UNKNOWN, /* 8 */
655 PCI_SPEED_66MHz_PCIX_266, /* 9 */
656 PCI_SPEED_100MHz_PCIX_266, /* A */
657 PCI_SPEED_133MHz_PCIX_266, /* B */
658 PCI_SPEED_UNKNOWN, /* C */
659 PCI_SPEED_66MHz_PCIX_533, /* D */
660 PCI_SPEED_100MHz_PCIX_533, /* E */
661 PCI_SPEED_133MHz_PCIX_533 /* F */
664 /* Indexed by PCI_EXP_LNKCAP_SLS, PCI_EXP_LNKSTA_CLS */
665 const unsigned char pcie_link_speed[] = {
666 PCI_SPEED_UNKNOWN, /* 0 */
667 PCIE_SPEED_2_5GT, /* 1 */
668 PCIE_SPEED_5_0GT, /* 2 */
669 PCIE_SPEED_8_0GT, /* 3 */
670 PCIE_SPEED_16_0GT, /* 4 */
671 PCIE_SPEED_32_0GT, /* 5 */
672 PCI_SPEED_UNKNOWN, /* 6 */
673 PCI_SPEED_UNKNOWN, /* 7 */
674 PCI_SPEED_UNKNOWN, /* 8 */
675 PCI_SPEED_UNKNOWN, /* 9 */
676 PCI_SPEED_UNKNOWN, /* A */
677 PCI_SPEED_UNKNOWN, /* B */
678 PCI_SPEED_UNKNOWN, /* C */
679 PCI_SPEED_UNKNOWN, /* D */
680 PCI_SPEED_UNKNOWN, /* E */
681 PCI_SPEED_UNKNOWN /* F */
683 EXPORT_SYMBOL_GPL(pcie_link_speed);
685 const char *pci_speed_string(enum pci_bus_speed speed)
687 /* Indexed by the pci_bus_speed enum */
688 static const char *speed_strings[] = {
689 "33 MHz PCI", /* 0x00 */
690 "66 MHz PCI", /* 0x01 */
691 "66 MHz PCI-X", /* 0x02 */
692 "100 MHz PCI-X", /* 0x03 */
693 "133 MHz PCI-X", /* 0x04 */
694 NULL, /* 0x05 */
695 NULL, /* 0x06 */
696 NULL, /* 0x07 */
697 NULL, /* 0x08 */
698 "66 MHz PCI-X 266", /* 0x09 */
699 "100 MHz PCI-X 266", /* 0x0a */
700 "133 MHz PCI-X 266", /* 0x0b */
701 "Unknown AGP", /* 0x0c */
702 "1x AGP", /* 0x0d */
703 "2x AGP", /* 0x0e */
704 "4x AGP", /* 0x0f */
705 "8x AGP", /* 0x10 */
706 "66 MHz PCI-X 533", /* 0x11 */
707 "100 MHz PCI-X 533", /* 0x12 */
708 "133 MHz PCI-X 533", /* 0x13 */
709 "2.5 GT/s PCIe", /* 0x14 */
710 "5.0 GT/s PCIe", /* 0x15 */
711 "8.0 GT/s PCIe", /* 0x16 */
712 "16.0 GT/s PCIe", /* 0x17 */
713 "32.0 GT/s PCIe", /* 0x18 */
716 if (speed < ARRAY_SIZE(speed_strings))
717 return speed_strings[speed];
718 return "Unknown";
720 EXPORT_SYMBOL_GPL(pci_speed_string);
722 void pcie_update_link_speed(struct pci_bus *bus, u16 linksta)
724 bus->cur_bus_speed = pcie_link_speed[linksta & PCI_EXP_LNKSTA_CLS];
726 EXPORT_SYMBOL_GPL(pcie_update_link_speed);
728 static unsigned char agp_speeds[] = {
729 AGP_UNKNOWN,
730 AGP_1X,
731 AGP_2X,
732 AGP_4X,
733 AGP_8X
736 static enum pci_bus_speed agp_speed(int agp3, int agpstat)
738 int index = 0;
740 if (agpstat & 4)
741 index = 3;
742 else if (agpstat & 2)
743 index = 2;
744 else if (agpstat & 1)
745 index = 1;
746 else
747 goto out;
749 if (agp3) {
750 index += 2;
751 if (index == 5)
752 index = 0;
755 out:
756 return agp_speeds[index];
759 static void pci_set_bus_speed(struct pci_bus *bus)
761 struct pci_dev *bridge = bus->self;
762 int pos;
764 pos = pci_find_capability(bridge, PCI_CAP_ID_AGP);
765 if (!pos)
766 pos = pci_find_capability(bridge, PCI_CAP_ID_AGP3);
767 if (pos) {
768 u32 agpstat, agpcmd;
770 pci_read_config_dword(bridge, pos + PCI_AGP_STATUS, &agpstat);
771 bus->max_bus_speed = agp_speed(agpstat & 8, agpstat & 7);
773 pci_read_config_dword(bridge, pos + PCI_AGP_COMMAND, &agpcmd);
774 bus->cur_bus_speed = agp_speed(agpstat & 8, agpcmd & 7);
777 pos = pci_find_capability(bridge, PCI_CAP_ID_PCIX);
778 if (pos) {
779 u16 status;
780 enum pci_bus_speed max;
782 pci_read_config_word(bridge, pos + PCI_X_BRIDGE_SSTATUS,
783 &status);
785 if (status & PCI_X_SSTATUS_533MHZ) {
786 max = PCI_SPEED_133MHz_PCIX_533;
787 } else if (status & PCI_X_SSTATUS_266MHZ) {
788 max = PCI_SPEED_133MHz_PCIX_266;
789 } else if (status & PCI_X_SSTATUS_133MHZ) {
790 if ((status & PCI_X_SSTATUS_VERS) == PCI_X_SSTATUS_V2)
791 max = PCI_SPEED_133MHz_PCIX_ECC;
792 else
793 max = PCI_SPEED_133MHz_PCIX;
794 } else {
795 max = PCI_SPEED_66MHz_PCIX;
798 bus->max_bus_speed = max;
799 bus->cur_bus_speed = pcix_bus_speed[
800 (status & PCI_X_SSTATUS_FREQ) >> 6];
802 return;
805 if (pci_is_pcie(bridge)) {
806 u32 linkcap;
807 u16 linksta;
809 pcie_capability_read_dword(bridge, PCI_EXP_LNKCAP, &linkcap);
810 bus->max_bus_speed = pcie_link_speed[linkcap & PCI_EXP_LNKCAP_SLS];
811 bridge->link_active_reporting = !!(linkcap & PCI_EXP_LNKCAP_DLLLARC);
813 pcie_capability_read_word(bridge, PCI_EXP_LNKSTA, &linksta);
814 pcie_update_link_speed(bus, linksta);
818 static struct irq_domain *pci_host_bridge_msi_domain(struct pci_bus *bus)
820 struct irq_domain *d;
823 * Any firmware interface that can resolve the msi_domain
824 * should be called from here.
826 d = pci_host_bridge_of_msi_domain(bus);
827 if (!d)
828 d = pci_host_bridge_acpi_msi_domain(bus);
830 #ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
832 * If no IRQ domain was found via the OF tree, try looking it up
833 * directly through the fwnode_handle.
835 if (!d) {
836 struct fwnode_handle *fwnode = pci_root_bus_fwnode(bus);
838 if (fwnode)
839 d = irq_find_matching_fwnode(fwnode,
840 DOMAIN_BUS_PCI_MSI);
842 #endif
844 return d;
847 static void pci_set_bus_msi_domain(struct pci_bus *bus)
849 struct irq_domain *d;
850 struct pci_bus *b;
853 * The bus can be a root bus, a subordinate bus, or a virtual bus
854 * created by an SR-IOV device. Walk up to the first bridge device
855 * found or derive the domain from the host bridge.
857 for (b = bus, d = NULL; !d && !pci_is_root_bus(b); b = b->parent) {
858 if (b->self)
859 d = dev_get_msi_domain(&b->self->dev);
862 if (!d)
863 d = pci_host_bridge_msi_domain(b);
865 dev_set_msi_domain(&bus->dev, d);
868 static int pci_register_host_bridge(struct pci_host_bridge *bridge)
870 struct device *parent = bridge->dev.parent;
871 struct resource_entry *window, *n;
872 struct pci_bus *bus, *b;
873 resource_size_t offset;
874 LIST_HEAD(resources);
875 struct resource *res;
876 char addr[64], *fmt;
877 const char *name;
878 int err;
880 bus = pci_alloc_bus(NULL);
881 if (!bus)
882 return -ENOMEM;
884 bridge->bus = bus;
886 /* Temporarily move resources off the list */
887 list_splice_init(&bridge->windows, &resources);
888 bus->sysdata = bridge->sysdata;
889 bus->msi = bridge->msi;
890 bus->ops = bridge->ops;
891 bus->number = bus->busn_res.start = bridge->busnr;
892 #ifdef CONFIG_PCI_DOMAINS_GENERIC
893 bus->domain_nr = pci_bus_find_domain_nr(bus, parent);
894 #endif
896 b = pci_find_bus(pci_domain_nr(bus), bridge->busnr);
897 if (b) {
898 /* Ignore it if we already got here via a different bridge */
899 dev_dbg(&b->dev, "bus already known\n");
900 err = -EEXIST;
901 goto free;
904 dev_set_name(&bridge->dev, "pci%04x:%02x", pci_domain_nr(bus),
905 bridge->busnr);
907 err = pcibios_root_bridge_prepare(bridge);
908 if (err)
909 goto free;
911 err = device_register(&bridge->dev);
912 if (err) {
913 put_device(&bridge->dev);
914 goto free;
916 bus->bridge = get_device(&bridge->dev);
917 device_enable_async_suspend(bus->bridge);
918 pci_set_bus_of_node(bus);
919 pci_set_bus_msi_domain(bus);
921 if (!parent)
922 set_dev_node(bus->bridge, pcibus_to_node(bus));
924 bus->dev.class = &pcibus_class;
925 bus->dev.parent = bus->bridge;
927 dev_set_name(&bus->dev, "%04x:%02x", pci_domain_nr(bus), bus->number);
928 name = dev_name(&bus->dev);
930 err = device_register(&bus->dev);
931 if (err)
932 goto unregister;
934 pcibios_add_bus(bus);
936 /* Create legacy_io and legacy_mem files for this bus */
937 pci_create_legacy_files(bus);
939 if (parent)
940 dev_info(parent, "PCI host bridge to bus %s\n", name);
941 else
942 pr_info("PCI host bridge to bus %s\n", name);
944 if (nr_node_ids > 1 && pcibus_to_node(bus) == NUMA_NO_NODE)
945 dev_warn(&bus->dev, "Unknown NUMA node; performance will be reduced\n");
947 /* Add initial resources to the bus */
948 resource_list_for_each_entry_safe(window, n, &resources) {
949 list_move_tail(&window->node, &bridge->windows);
950 offset = window->offset;
951 res = window->res;
953 if (res->flags & IORESOURCE_BUS)
954 pci_bus_insert_busn_res(bus, bus->number, res->end);
955 else
956 pci_bus_add_resource(bus, res, 0);
958 if (offset) {
959 if (resource_type(res) == IORESOURCE_IO)
960 fmt = " (bus address [%#06llx-%#06llx])";
961 else
962 fmt = " (bus address [%#010llx-%#010llx])";
964 snprintf(addr, sizeof(addr), fmt,
965 (unsigned long long)(res->start - offset),
966 (unsigned long long)(res->end - offset));
967 } else
968 addr[0] = '\0';
970 dev_info(&bus->dev, "root bus resource %pR%s\n", res, addr);
973 down_write(&pci_bus_sem);
974 list_add_tail(&bus->node, &pci_root_buses);
975 up_write(&pci_bus_sem);
977 return 0;
979 unregister:
980 put_device(&bridge->dev);
981 device_unregister(&bridge->dev);
983 free:
984 kfree(bus);
985 return err;
988 static bool pci_bridge_child_ext_cfg_accessible(struct pci_dev *bridge)
990 int pos;
991 u32 status;
994 * If extended config space isn't accessible on a bridge's primary
995 * bus, we certainly can't access it on the secondary bus.
997 if (bridge->bus->bus_flags & PCI_BUS_FLAGS_NO_EXTCFG)
998 return false;
1001 * PCIe Root Ports and switch ports are PCIe on both sides, so if
1002 * extended config space is accessible on the primary, it's also
1003 * accessible on the secondary.
1005 if (pci_is_pcie(bridge) &&
1006 (pci_pcie_type(bridge) == PCI_EXP_TYPE_ROOT_PORT ||
1007 pci_pcie_type(bridge) == PCI_EXP_TYPE_UPSTREAM ||
1008 pci_pcie_type(bridge) == PCI_EXP_TYPE_DOWNSTREAM))
1009 return true;
1012 * For the other bridge types:
1013 * - PCI-to-PCI bridges
1014 * - PCIe-to-PCI/PCI-X forward bridges
1015 * - PCI/PCI-X-to-PCIe reverse bridges
1016 * extended config space on the secondary side is only accessible
1017 * if the bridge supports PCI-X Mode 2.
1019 pos = pci_find_capability(bridge, PCI_CAP_ID_PCIX);
1020 if (!pos)
1021 return false;
1023 pci_read_config_dword(bridge, pos + PCI_X_STATUS, &status);
1024 return status & (PCI_X_STATUS_266MHZ | PCI_X_STATUS_533MHZ);
1027 static struct pci_bus *pci_alloc_child_bus(struct pci_bus *parent,
1028 struct pci_dev *bridge, int busnr)
1030 struct pci_bus *child;
1031 int i;
1032 int ret;
1034 /* Allocate a new bus and inherit stuff from the parent */
1035 child = pci_alloc_bus(parent);
1036 if (!child)
1037 return NULL;
1039 child->parent = parent;
1040 child->ops = parent->ops;
1041 child->msi = parent->msi;
1042 child->sysdata = parent->sysdata;
1043 child->bus_flags = parent->bus_flags;
1046 * Initialize some portions of the bus device, but don't register
1047 * it now as the parent is not properly set up yet.
1049 child->dev.class = &pcibus_class;
1050 dev_set_name(&child->dev, "%04x:%02x", pci_domain_nr(child), busnr);
1052 /* Set up the primary, secondary and subordinate bus numbers */
1053 child->number = child->busn_res.start = busnr;
1054 child->primary = parent->busn_res.start;
1055 child->busn_res.end = 0xff;
1057 if (!bridge) {
1058 child->dev.parent = parent->bridge;
1059 goto add_dev;
1062 child->self = bridge;
1063 child->bridge = get_device(&bridge->dev);
1064 child->dev.parent = child->bridge;
1065 pci_set_bus_of_node(child);
1066 pci_set_bus_speed(child);
1069 * Check whether extended config space is accessible on the child
1070 * bus. Note that we currently assume it is always accessible on
1071 * the root bus.
1073 if (!pci_bridge_child_ext_cfg_accessible(bridge)) {
1074 child->bus_flags |= PCI_BUS_FLAGS_NO_EXTCFG;
1075 pci_info(child, "extended config space not accessible\n");
1078 /* Set up default resource pointers and names */
1079 for (i = 0; i < PCI_BRIDGE_RESOURCE_NUM; i++) {
1080 child->resource[i] = &bridge->resource[PCI_BRIDGE_RESOURCES+i];
1081 child->resource[i]->name = child->name;
1083 bridge->subordinate = child;
1085 add_dev:
1086 pci_set_bus_msi_domain(child);
1087 ret = device_register(&child->dev);
1088 WARN_ON(ret < 0);
1090 pcibios_add_bus(child);
1092 if (child->ops->add_bus) {
1093 ret = child->ops->add_bus(child);
1094 if (WARN_ON(ret < 0))
1095 dev_err(&child->dev, "failed to add bus: %d\n", ret);
1098 /* Create legacy_io and legacy_mem files for this bus */
1099 pci_create_legacy_files(child);
1101 return child;
1104 struct pci_bus *pci_add_new_bus(struct pci_bus *parent, struct pci_dev *dev,
1105 int busnr)
1107 struct pci_bus *child;
1109 child = pci_alloc_child_bus(parent, dev, busnr);
1110 if (child) {
1111 down_write(&pci_bus_sem);
1112 list_add_tail(&child->node, &parent->children);
1113 up_write(&pci_bus_sem);
1115 return child;
1117 EXPORT_SYMBOL(pci_add_new_bus);
1119 static void pci_enable_crs(struct pci_dev *pdev)
1121 u16 root_cap = 0;
1123 /* Enable CRS Software Visibility if supported */
1124 pcie_capability_read_word(pdev, PCI_EXP_RTCAP, &root_cap);
1125 if (root_cap & PCI_EXP_RTCAP_CRSVIS)
1126 pcie_capability_set_word(pdev, PCI_EXP_RTCTL,
1127 PCI_EXP_RTCTL_CRSSVE);
1130 static unsigned int pci_scan_child_bus_extend(struct pci_bus *bus,
1131 unsigned int available_buses);
1133 * pci_ea_fixed_busnrs() - Read fixed Secondary and Subordinate bus
1134 * numbers from EA capability.
1135 * @dev: Bridge
1136 * @sec: updated with secondary bus number from EA
1137 * @sub: updated with subordinate bus number from EA
1139 * If @dev is a bridge with EA capability that specifies valid secondary
1140 * and subordinate bus numbers, return true with the bus numbers in @sec
1141 * and @sub. Otherwise return false.
1143 static bool pci_ea_fixed_busnrs(struct pci_dev *dev, u8 *sec, u8 *sub)
1145 int ea, offset;
1146 u32 dw;
1147 u8 ea_sec, ea_sub;
1149 if (dev->hdr_type != PCI_HEADER_TYPE_BRIDGE)
1150 return false;
1152 /* find PCI EA capability in list */
1153 ea = pci_find_capability(dev, PCI_CAP_ID_EA);
1154 if (!ea)
1155 return false;
1157 offset = ea + PCI_EA_FIRST_ENT;
1158 pci_read_config_dword(dev, offset, &dw);
1159 ea_sec = dw & PCI_EA_SEC_BUS_MASK;
1160 ea_sub = (dw & PCI_EA_SUB_BUS_MASK) >> PCI_EA_SUB_BUS_SHIFT;
1161 if (ea_sec == 0 || ea_sub < ea_sec)
1162 return false;
1164 *sec = ea_sec;
1165 *sub = ea_sub;
1166 return true;
1170 * pci_scan_bridge_extend() - Scan buses behind a bridge
1171 * @bus: Parent bus the bridge is on
1172 * @dev: Bridge itself
1173 * @max: Starting subordinate number of buses behind this bridge
1174 * @available_buses: Total number of buses available for this bridge and
1175 * the devices below. After the minimal bus space has
1176 * been allocated the remaining buses will be
1177 * distributed equally between hotplug-capable bridges.
1178 * @pass: Either %0 (scan already configured bridges) or %1 (scan bridges
1179 * that need to be reconfigured.
1181 * If it's a bridge, configure it and scan the bus behind it.
1182 * For CardBus bridges, we don't scan behind as the devices will
1183 * be handled by the bridge driver itself.
1185 * We need to process bridges in two passes -- first we scan those
1186 * already configured by the BIOS and after we are done with all of
1187 * them, we proceed to assigning numbers to the remaining buses in
1188 * order to avoid overlaps between old and new bus numbers.
1190 * Return: New subordinate number covering all buses behind this bridge.
1192 static int pci_scan_bridge_extend(struct pci_bus *bus, struct pci_dev *dev,
1193 int max, unsigned int available_buses,
1194 int pass)
1196 struct pci_bus *child;
1197 int is_cardbus = (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS);
1198 u32 buses, i, j = 0;
1199 u16 bctl;
1200 u8 primary, secondary, subordinate;
1201 int broken = 0;
1202 bool fixed_buses;
1203 u8 fixed_sec, fixed_sub;
1204 int next_busnr;
1207 * Make sure the bridge is powered on to be able to access config
1208 * space of devices below it.
1210 pm_runtime_get_sync(&dev->dev);
1212 pci_read_config_dword(dev, PCI_PRIMARY_BUS, &buses);
1213 primary = buses & 0xFF;
1214 secondary = (buses >> 8) & 0xFF;
1215 subordinate = (buses >> 16) & 0xFF;
1217 pci_dbg(dev, "scanning [bus %02x-%02x] behind bridge, pass %d\n",
1218 secondary, subordinate, pass);
1220 if (!primary && (primary != bus->number) && secondary && subordinate) {
1221 pci_warn(dev, "Primary bus is hard wired to 0\n");
1222 primary = bus->number;
1225 /* Check if setup is sensible at all */
1226 if (!pass &&
1227 (primary != bus->number || secondary <= bus->number ||
1228 secondary > subordinate)) {
1229 pci_info(dev, "bridge configuration invalid ([bus %02x-%02x]), reconfiguring\n",
1230 secondary, subordinate);
1231 broken = 1;
1235 * Disable Master-Abort Mode during probing to avoid reporting of
1236 * bus errors in some architectures.
1238 pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &bctl);
1239 pci_write_config_word(dev, PCI_BRIDGE_CONTROL,
1240 bctl & ~PCI_BRIDGE_CTL_MASTER_ABORT);
1242 pci_enable_crs(dev);
1244 if ((secondary || subordinate) && !pcibios_assign_all_busses() &&
1245 !is_cardbus && !broken) {
1246 unsigned int cmax;
1249 * Bus already configured by firmware, process it in the
1250 * first pass and just note the configuration.
1252 if (pass)
1253 goto out;
1256 * The bus might already exist for two reasons: Either we
1257 * are rescanning the bus or the bus is reachable through
1258 * more than one bridge. The second case can happen with
1259 * the i450NX chipset.
1261 child = pci_find_bus(pci_domain_nr(bus), secondary);
1262 if (!child) {
1263 child = pci_add_new_bus(bus, dev, secondary);
1264 if (!child)
1265 goto out;
1266 child->primary = primary;
1267 pci_bus_insert_busn_res(child, secondary, subordinate);
1268 child->bridge_ctl = bctl;
1271 cmax = pci_scan_child_bus(child);
1272 if (cmax > subordinate)
1273 pci_warn(dev, "bridge has subordinate %02x but max busn %02x\n",
1274 subordinate, cmax);
1276 /* Subordinate should equal child->busn_res.end */
1277 if (subordinate > max)
1278 max = subordinate;
1279 } else {
1282 * We need to assign a number to this bus which we always
1283 * do in the second pass.
1285 if (!pass) {
1286 if (pcibios_assign_all_busses() || broken || is_cardbus)
1289 * Temporarily disable forwarding of the
1290 * configuration cycles on all bridges in
1291 * this bus segment to avoid possible
1292 * conflicts in the second pass between two
1293 * bridges programmed with overlapping bus
1294 * ranges.
1296 pci_write_config_dword(dev, PCI_PRIMARY_BUS,
1297 buses & ~0xffffff);
1298 goto out;
1301 /* Clear errors */
1302 pci_write_config_word(dev, PCI_STATUS, 0xffff);
1304 /* Read bus numbers from EA Capability (if present) */
1305 fixed_buses = pci_ea_fixed_busnrs(dev, &fixed_sec, &fixed_sub);
1306 if (fixed_buses)
1307 next_busnr = fixed_sec;
1308 else
1309 next_busnr = max + 1;
1312 * Prevent assigning a bus number that already exists.
1313 * This can happen when a bridge is hot-plugged, so in this
1314 * case we only re-scan this bus.
1316 child = pci_find_bus(pci_domain_nr(bus), next_busnr);
1317 if (!child) {
1318 child = pci_add_new_bus(bus, dev, next_busnr);
1319 if (!child)
1320 goto out;
1321 pci_bus_insert_busn_res(child, next_busnr,
1322 bus->busn_res.end);
1324 max++;
1325 if (available_buses)
1326 available_buses--;
1328 buses = (buses & 0xff000000)
1329 | ((unsigned int)(child->primary) << 0)
1330 | ((unsigned int)(child->busn_res.start) << 8)
1331 | ((unsigned int)(child->busn_res.end) << 16);
1334 * yenta.c forces a secondary latency timer of 176.
1335 * Copy that behaviour here.
1337 if (is_cardbus) {
1338 buses &= ~0xff000000;
1339 buses |= CARDBUS_LATENCY_TIMER << 24;
1342 /* We need to blast all three values with a single write */
1343 pci_write_config_dword(dev, PCI_PRIMARY_BUS, buses);
1345 if (!is_cardbus) {
1346 child->bridge_ctl = bctl;
1347 max = pci_scan_child_bus_extend(child, available_buses);
1348 } else {
1351 * For CardBus bridges, we leave 4 bus numbers as
1352 * cards with a PCI-to-PCI bridge can be inserted
1353 * later.
1355 for (i = 0; i < CARDBUS_RESERVE_BUSNR; i++) {
1356 struct pci_bus *parent = bus;
1357 if (pci_find_bus(pci_domain_nr(bus),
1358 max+i+1))
1359 break;
1360 while (parent->parent) {
1361 if ((!pcibios_assign_all_busses()) &&
1362 (parent->busn_res.end > max) &&
1363 (parent->busn_res.end <= max+i)) {
1364 j = 1;
1366 parent = parent->parent;
1368 if (j) {
1371 * Often, there are two CardBus
1372 * bridges -- try to leave one
1373 * valid bus number for each one.
1375 i /= 2;
1376 break;
1379 max += i;
1383 * Set subordinate bus number to its real value.
1384 * If fixed subordinate bus number exists from EA
1385 * capability then use it.
1387 if (fixed_buses)
1388 max = fixed_sub;
1389 pci_bus_update_busn_res_end(child, max);
1390 pci_write_config_byte(dev, PCI_SUBORDINATE_BUS, max);
1393 sprintf(child->name,
1394 (is_cardbus ? "PCI CardBus %04x:%02x" : "PCI Bus %04x:%02x"),
1395 pci_domain_nr(bus), child->number);
1397 /* Check that all devices are accessible */
1398 while (bus->parent) {
1399 if ((child->busn_res.end > bus->busn_res.end) ||
1400 (child->number > bus->busn_res.end) ||
1401 (child->number < bus->number) ||
1402 (child->busn_res.end < bus->number)) {
1403 dev_info(&dev->dev, "devices behind bridge are unusable because %pR cannot be assigned for them\n",
1404 &child->busn_res);
1405 break;
1407 bus = bus->parent;
1410 out:
1411 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, bctl);
1413 pm_runtime_put(&dev->dev);
1415 return max;
1419 * pci_scan_bridge() - Scan buses behind a bridge
1420 * @bus: Parent bus the bridge is on
1421 * @dev: Bridge itself
1422 * @max: Starting subordinate number of buses behind this bridge
1423 * @pass: Either %0 (scan already configured bridges) or %1 (scan bridges
1424 * that need to be reconfigured.
1426 * If it's a bridge, configure it and scan the bus behind it.
1427 * For CardBus bridges, we don't scan behind as the devices will
1428 * be handled by the bridge driver itself.
1430 * We need to process bridges in two passes -- first we scan those
1431 * already configured by the BIOS and after we are done with all of
1432 * them, we proceed to assigning numbers to the remaining buses in
1433 * order to avoid overlaps between old and new bus numbers.
1435 * Return: New subordinate number covering all buses behind this bridge.
1437 int pci_scan_bridge(struct pci_bus *bus, struct pci_dev *dev, int max, int pass)
1439 return pci_scan_bridge_extend(bus, dev, max, 0, pass);
1441 EXPORT_SYMBOL(pci_scan_bridge);
1444 * Read interrupt line and base address registers.
1445 * The architecture-dependent code can tweak these, of course.
1447 static void pci_read_irq(struct pci_dev *dev)
1449 unsigned char irq;
1451 /* VFs are not allowed to use INTx, so skip the config reads */
1452 if (dev->is_virtfn) {
1453 dev->pin = 0;
1454 dev->irq = 0;
1455 return;
1458 pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &irq);
1459 dev->pin = irq;
1460 if (irq)
1461 pci_read_config_byte(dev, PCI_INTERRUPT_LINE, &irq);
1462 dev->irq = irq;
1465 void set_pcie_port_type(struct pci_dev *pdev)
1467 int pos;
1468 u16 reg16;
1469 int type;
1470 struct pci_dev *parent;
1472 pos = pci_find_capability(pdev, PCI_CAP_ID_EXP);
1473 if (!pos)
1474 return;
1476 pdev->pcie_cap = pos;
1477 pci_read_config_word(pdev, pos + PCI_EXP_FLAGS, &reg16);
1478 pdev->pcie_flags_reg = reg16;
1479 pci_read_config_word(pdev, pos + PCI_EXP_DEVCAP, &reg16);
1480 pdev->pcie_mpss = reg16 & PCI_EXP_DEVCAP_PAYLOAD;
1482 parent = pci_upstream_bridge(pdev);
1483 if (!parent)
1484 return;
1487 * Some systems do not identify their upstream/downstream ports
1488 * correctly so detect impossible configurations here and correct
1489 * the port type accordingly.
1491 type = pci_pcie_type(pdev);
1492 if (type == PCI_EXP_TYPE_DOWNSTREAM) {
1494 * If pdev claims to be downstream port but the parent
1495 * device is also downstream port assume pdev is actually
1496 * upstream port.
1498 if (pcie_downstream_port(parent)) {
1499 pci_info(pdev, "claims to be downstream port but is acting as upstream port, correcting type\n");
1500 pdev->pcie_flags_reg &= ~PCI_EXP_FLAGS_TYPE;
1501 pdev->pcie_flags_reg |= PCI_EXP_TYPE_UPSTREAM;
1503 } else if (type == PCI_EXP_TYPE_UPSTREAM) {
1505 * If pdev claims to be upstream port but the parent
1506 * device is also upstream port assume pdev is actually
1507 * downstream port.
1509 if (pci_pcie_type(parent) == PCI_EXP_TYPE_UPSTREAM) {
1510 pci_info(pdev, "claims to be upstream port but is acting as downstream port, correcting type\n");
1511 pdev->pcie_flags_reg &= ~PCI_EXP_FLAGS_TYPE;
1512 pdev->pcie_flags_reg |= PCI_EXP_TYPE_DOWNSTREAM;
1517 void set_pcie_hotplug_bridge(struct pci_dev *pdev)
1519 u32 reg32;
1521 pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &reg32);
1522 if (reg32 & PCI_EXP_SLTCAP_HPC)
1523 pdev->is_hotplug_bridge = 1;
1526 static void set_pcie_thunderbolt(struct pci_dev *dev)
1528 int vsec = 0;
1529 u32 header;
1531 while ((vsec = pci_find_next_ext_capability(dev, vsec,
1532 PCI_EXT_CAP_ID_VNDR))) {
1533 pci_read_config_dword(dev, vsec + PCI_VNDR_HEADER, &header);
1535 /* Is the device part of a Thunderbolt controller? */
1536 if (dev->vendor == PCI_VENDOR_ID_INTEL &&
1537 PCI_VNDR_HEADER_ID(header) == PCI_VSEC_ID_INTEL_TBT) {
1538 dev->is_thunderbolt = 1;
1539 return;
1544 static void set_pcie_untrusted(struct pci_dev *dev)
1546 struct pci_dev *parent;
1549 * If the upstream bridge is untrusted we treat this device
1550 * untrusted as well.
1552 parent = pci_upstream_bridge(dev);
1553 if (parent && parent->untrusted)
1554 dev->untrusted = true;
1558 * pci_ext_cfg_is_aliased - Is ext config space just an alias of std config?
1559 * @dev: PCI device
1561 * PCI Express to PCI/PCI-X Bridge Specification, rev 1.0, 4.1.4 says that
1562 * when forwarding a type1 configuration request the bridge must check that
1563 * the extended register address field is zero. The bridge is not permitted
1564 * to forward the transactions and must handle it as an Unsupported Request.
1565 * Some bridges do not follow this rule and simply drop the extended register
1566 * bits, resulting in the standard config space being aliased, every 256
1567 * bytes across the entire configuration space. Test for this condition by
1568 * comparing the first dword of each potential alias to the vendor/device ID.
1569 * Known offenders:
1570 * ASM1083/1085 PCIe-to-PCI Reversible Bridge (1b21:1080, rev 01 & 03)
1571 * AMD/ATI SBx00 PCI to PCI Bridge (1002:4384, rev 40)
1573 static bool pci_ext_cfg_is_aliased(struct pci_dev *dev)
1575 #ifdef CONFIG_PCI_QUIRKS
1576 int pos;
1577 u32 header, tmp;
1579 pci_read_config_dword(dev, PCI_VENDOR_ID, &header);
1581 for (pos = PCI_CFG_SPACE_SIZE;
1582 pos < PCI_CFG_SPACE_EXP_SIZE; pos += PCI_CFG_SPACE_SIZE) {
1583 if (pci_read_config_dword(dev, pos, &tmp) != PCIBIOS_SUCCESSFUL
1584 || header != tmp)
1585 return false;
1588 return true;
1589 #else
1590 return false;
1591 #endif
1595 * pci_cfg_space_size - Get the configuration space size of the PCI device
1596 * @dev: PCI device
1598 * Regular PCI devices have 256 bytes, but PCI-X 2 and PCI Express devices
1599 * have 4096 bytes. Even if the device is capable, that doesn't mean we can
1600 * access it. Maybe we don't have a way to generate extended config space
1601 * accesses, or the device is behind a reverse Express bridge. So we try
1602 * reading the dword at 0x100 which must either be 0 or a valid extended
1603 * capability header.
1605 static int pci_cfg_space_size_ext(struct pci_dev *dev)
1607 u32 status;
1608 int pos = PCI_CFG_SPACE_SIZE;
1610 if (pci_read_config_dword(dev, pos, &status) != PCIBIOS_SUCCESSFUL)
1611 return PCI_CFG_SPACE_SIZE;
1612 if (status == 0xffffffff || pci_ext_cfg_is_aliased(dev))
1613 return PCI_CFG_SPACE_SIZE;
1615 return PCI_CFG_SPACE_EXP_SIZE;
1618 int pci_cfg_space_size(struct pci_dev *dev)
1620 int pos;
1621 u32 status;
1622 u16 class;
1624 #ifdef CONFIG_PCI_IOV
1626 * Per the SR-IOV specification (rev 1.1, sec 3.5), VFs are required to
1627 * implement a PCIe capability and therefore must implement extended
1628 * config space. We can skip the NO_EXTCFG test below and the
1629 * reachability/aliasing test in pci_cfg_space_size_ext() by virtue of
1630 * the fact that the SR-IOV capability on the PF resides in extended
1631 * config space and must be accessible and non-aliased to have enabled
1632 * support for this VF. This is a micro performance optimization for
1633 * systems supporting many VFs.
1635 if (dev->is_virtfn)
1636 return PCI_CFG_SPACE_EXP_SIZE;
1637 #endif
1639 if (dev->bus->bus_flags & PCI_BUS_FLAGS_NO_EXTCFG)
1640 return PCI_CFG_SPACE_SIZE;
1642 class = dev->class >> 8;
1643 if (class == PCI_CLASS_BRIDGE_HOST)
1644 return pci_cfg_space_size_ext(dev);
1646 if (pci_is_pcie(dev))
1647 return pci_cfg_space_size_ext(dev);
1649 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
1650 if (!pos)
1651 return PCI_CFG_SPACE_SIZE;
1653 pci_read_config_dword(dev, pos + PCI_X_STATUS, &status);
1654 if (status & (PCI_X_STATUS_266MHZ | PCI_X_STATUS_533MHZ))
1655 return pci_cfg_space_size_ext(dev);
1657 return PCI_CFG_SPACE_SIZE;
1660 static u32 pci_class(struct pci_dev *dev)
1662 u32 class;
1664 #ifdef CONFIG_PCI_IOV
1665 if (dev->is_virtfn)
1666 return dev->physfn->sriov->class;
1667 #endif
1668 pci_read_config_dword(dev, PCI_CLASS_REVISION, &class);
1669 return class;
1672 static void pci_subsystem_ids(struct pci_dev *dev, u16 *vendor, u16 *device)
1674 #ifdef CONFIG_PCI_IOV
1675 if (dev->is_virtfn) {
1676 *vendor = dev->physfn->sriov->subsystem_vendor;
1677 *device = dev->physfn->sriov->subsystem_device;
1678 return;
1680 #endif
1681 pci_read_config_word(dev, PCI_SUBSYSTEM_VENDOR_ID, vendor);
1682 pci_read_config_word(dev, PCI_SUBSYSTEM_ID, device);
1685 static u8 pci_hdr_type(struct pci_dev *dev)
1687 u8 hdr_type;
1689 #ifdef CONFIG_PCI_IOV
1690 if (dev->is_virtfn)
1691 return dev->physfn->sriov->hdr_type;
1692 #endif
1693 pci_read_config_byte(dev, PCI_HEADER_TYPE, &hdr_type);
1694 return hdr_type;
1697 #define LEGACY_IO_RESOURCE (IORESOURCE_IO | IORESOURCE_PCI_FIXED)
1699 static void pci_msi_setup_pci_dev(struct pci_dev *dev)
1702 * Disable the MSI hardware to avoid screaming interrupts
1703 * during boot. This is the power on reset default so
1704 * usually this should be a noop.
1706 dev->msi_cap = pci_find_capability(dev, PCI_CAP_ID_MSI);
1707 if (dev->msi_cap)
1708 pci_msi_set_enable(dev, 0);
1710 dev->msix_cap = pci_find_capability(dev, PCI_CAP_ID_MSIX);
1711 if (dev->msix_cap)
1712 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
1716 * pci_intx_mask_broken - Test PCI_COMMAND_INTX_DISABLE writability
1717 * @dev: PCI device
1719 * Test whether PCI_COMMAND_INTX_DISABLE is writable for @dev. Check this
1720 * at enumeration-time to avoid modifying PCI_COMMAND at run-time.
1722 static int pci_intx_mask_broken(struct pci_dev *dev)
1724 u16 orig, toggle, new;
1726 pci_read_config_word(dev, PCI_COMMAND, &orig);
1727 toggle = orig ^ PCI_COMMAND_INTX_DISABLE;
1728 pci_write_config_word(dev, PCI_COMMAND, toggle);
1729 pci_read_config_word(dev, PCI_COMMAND, &new);
1731 pci_write_config_word(dev, PCI_COMMAND, orig);
1734 * PCI_COMMAND_INTX_DISABLE was reserved and read-only prior to PCI
1735 * r2.3, so strictly speaking, a device is not *broken* if it's not
1736 * writable. But we'll live with the misnomer for now.
1738 if (new != toggle)
1739 return 1;
1740 return 0;
1743 static void early_dump_pci_device(struct pci_dev *pdev)
1745 u32 value[256 / 4];
1746 int i;
1748 pci_info(pdev, "config space:\n");
1750 for (i = 0; i < 256; i += 4)
1751 pci_read_config_dword(pdev, i, &value[i / 4]);
1753 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_OFFSET, 16, 1,
1754 value, 256, false);
1758 * pci_setup_device - Fill in class and map information of a device
1759 * @dev: the device structure to fill
1761 * Initialize the device structure with information about the device's
1762 * vendor,class,memory and IO-space addresses, IRQ lines etc.
1763 * Called at initialisation of the PCI subsystem and by CardBus services.
1764 * Returns 0 on success and negative if unknown type of device (not normal,
1765 * bridge or CardBus).
1767 int pci_setup_device(struct pci_dev *dev)
1769 u32 class;
1770 u16 cmd;
1771 u8 hdr_type;
1772 int pos = 0;
1773 struct pci_bus_region region;
1774 struct resource *res;
1776 hdr_type = pci_hdr_type(dev);
1778 dev->sysdata = dev->bus->sysdata;
1779 dev->dev.parent = dev->bus->bridge;
1780 dev->dev.bus = &pci_bus_type;
1781 dev->hdr_type = hdr_type & 0x7f;
1782 dev->multifunction = !!(hdr_type & 0x80);
1783 dev->error_state = pci_channel_io_normal;
1784 set_pcie_port_type(dev);
1786 pci_dev_assign_slot(dev);
1789 * Assume 32-bit PCI; let 64-bit PCI cards (which are far rarer)
1790 * set this higher, assuming the system even supports it.
1792 dev->dma_mask = 0xffffffff;
1794 dev_set_name(&dev->dev, "%04x:%02x:%02x.%d", pci_domain_nr(dev->bus),
1795 dev->bus->number, PCI_SLOT(dev->devfn),
1796 PCI_FUNC(dev->devfn));
1798 class = pci_class(dev);
1800 dev->revision = class & 0xff;
1801 dev->class = class >> 8; /* upper 3 bytes */
1803 pci_info(dev, "[%04x:%04x] type %02x class %#08x\n",
1804 dev->vendor, dev->device, dev->hdr_type, dev->class);
1806 if (pci_early_dump)
1807 early_dump_pci_device(dev);
1809 /* Need to have dev->class ready */
1810 dev->cfg_size = pci_cfg_space_size(dev);
1812 /* Need to have dev->cfg_size ready */
1813 set_pcie_thunderbolt(dev);
1815 set_pcie_untrusted(dev);
1817 /* "Unknown power state" */
1818 dev->current_state = PCI_UNKNOWN;
1820 /* Early fixups, before probing the BARs */
1821 pci_fixup_device(pci_fixup_early, dev);
1823 /* Device class may be changed after fixup */
1824 class = dev->class >> 8;
1826 if (dev->non_compliant_bars && !dev->mmio_always_on) {
1827 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1828 if (cmd & (PCI_COMMAND_IO | PCI_COMMAND_MEMORY)) {
1829 pci_info(dev, "device has non-compliant BARs; disabling IO/MEM decoding\n");
1830 cmd &= ~PCI_COMMAND_IO;
1831 cmd &= ~PCI_COMMAND_MEMORY;
1832 pci_write_config_word(dev, PCI_COMMAND, cmd);
1836 dev->broken_intx_masking = pci_intx_mask_broken(dev);
1838 switch (dev->hdr_type) { /* header type */
1839 case PCI_HEADER_TYPE_NORMAL: /* standard header */
1840 if (class == PCI_CLASS_BRIDGE_PCI)
1841 goto bad;
1842 pci_read_irq(dev);
1843 pci_read_bases(dev, 6, PCI_ROM_ADDRESS);
1845 pci_subsystem_ids(dev, &dev->subsystem_vendor, &dev->subsystem_device);
1848 * Do the ugly legacy mode stuff here rather than broken chip
1849 * quirk code. Legacy mode ATA controllers have fixed
1850 * addresses. These are not always echoed in BAR0-3, and
1851 * BAR0-3 in a few cases contain junk!
1853 if (class == PCI_CLASS_STORAGE_IDE) {
1854 u8 progif;
1855 pci_read_config_byte(dev, PCI_CLASS_PROG, &progif);
1856 if ((progif & 1) == 0) {
1857 region.start = 0x1F0;
1858 region.end = 0x1F7;
1859 res = &dev->resource[0];
1860 res->flags = LEGACY_IO_RESOURCE;
1861 pcibios_bus_to_resource(dev->bus, res, &region);
1862 pci_info(dev, "legacy IDE quirk: reg 0x10: %pR\n",
1863 res);
1864 region.start = 0x3F6;
1865 region.end = 0x3F6;
1866 res = &dev->resource[1];
1867 res->flags = LEGACY_IO_RESOURCE;
1868 pcibios_bus_to_resource(dev->bus, res, &region);
1869 pci_info(dev, "legacy IDE quirk: reg 0x14: %pR\n",
1870 res);
1872 if ((progif & 4) == 0) {
1873 region.start = 0x170;
1874 region.end = 0x177;
1875 res = &dev->resource[2];
1876 res->flags = LEGACY_IO_RESOURCE;
1877 pcibios_bus_to_resource(dev->bus, res, &region);
1878 pci_info(dev, "legacy IDE quirk: reg 0x18: %pR\n",
1879 res);
1880 region.start = 0x376;
1881 region.end = 0x376;
1882 res = &dev->resource[3];
1883 res->flags = LEGACY_IO_RESOURCE;
1884 pcibios_bus_to_resource(dev->bus, res, &region);
1885 pci_info(dev, "legacy IDE quirk: reg 0x1c: %pR\n",
1886 res);
1889 break;
1891 case PCI_HEADER_TYPE_BRIDGE: /* bridge header */
1893 * The PCI-to-PCI bridge spec requires that subtractive
1894 * decoding (i.e. transparent) bridge must have programming
1895 * interface code of 0x01.
1897 pci_read_irq(dev);
1898 dev->transparent = ((dev->class & 0xff) == 1);
1899 pci_read_bases(dev, 2, PCI_ROM_ADDRESS1);
1900 pci_read_bridge_windows(dev);
1901 set_pcie_hotplug_bridge(dev);
1902 pos = pci_find_capability(dev, PCI_CAP_ID_SSVID);
1903 if (pos) {
1904 pci_read_config_word(dev, pos + PCI_SSVID_VENDOR_ID, &dev->subsystem_vendor);
1905 pci_read_config_word(dev, pos + PCI_SSVID_DEVICE_ID, &dev->subsystem_device);
1907 break;
1909 case PCI_HEADER_TYPE_CARDBUS: /* CardBus bridge header */
1910 if (class != PCI_CLASS_BRIDGE_CARDBUS)
1911 goto bad;
1912 pci_read_irq(dev);
1913 pci_read_bases(dev, 1, 0);
1914 pci_read_config_word(dev, PCI_CB_SUBSYSTEM_VENDOR_ID, &dev->subsystem_vendor);
1915 pci_read_config_word(dev, PCI_CB_SUBSYSTEM_ID, &dev->subsystem_device);
1916 break;
1918 default: /* unknown header */
1919 pci_err(dev, "unknown header type %02x, ignoring device\n",
1920 dev->hdr_type);
1921 return -EIO;
1923 bad:
1924 pci_err(dev, "ignoring class %#08x (doesn't match header type %02x)\n",
1925 dev->class, dev->hdr_type);
1926 dev->class = PCI_CLASS_NOT_DEFINED << 8;
1929 /* We found a fine healthy device, go go go... */
1930 return 0;
1933 static void pci_configure_mps(struct pci_dev *dev)
1935 struct pci_dev *bridge = pci_upstream_bridge(dev);
1936 int mps, mpss, p_mps, rc;
1938 if (!pci_is_pcie(dev))
1939 return;
1941 /* MPS and MRRS fields are of type 'RsvdP' for VFs, short-circuit out */
1942 if (dev->is_virtfn)
1943 return;
1946 * For Root Complex Integrated Endpoints, program the maximum
1947 * supported value unless limited by the PCIE_BUS_PEER2PEER case.
1949 if (pci_pcie_type(dev) == PCI_EXP_TYPE_RC_END) {
1950 if (pcie_bus_config == PCIE_BUS_PEER2PEER)
1951 mps = 128;
1952 else
1953 mps = 128 << dev->pcie_mpss;
1954 rc = pcie_set_mps(dev, mps);
1955 if (rc) {
1956 pci_warn(dev, "can't set Max Payload Size to %d; if necessary, use \"pci=pcie_bus_safe\" and report a bug\n",
1957 mps);
1959 return;
1962 if (!bridge || !pci_is_pcie(bridge))
1963 return;
1965 mps = pcie_get_mps(dev);
1966 p_mps = pcie_get_mps(bridge);
1968 if (mps == p_mps)
1969 return;
1971 if (pcie_bus_config == PCIE_BUS_TUNE_OFF) {
1972 pci_warn(dev, "Max Payload Size %d, but upstream %s set to %d; if necessary, use \"pci=pcie_bus_safe\" and report a bug\n",
1973 mps, pci_name(bridge), p_mps);
1974 return;
1978 * Fancier MPS configuration is done later by
1979 * pcie_bus_configure_settings()
1981 if (pcie_bus_config != PCIE_BUS_DEFAULT)
1982 return;
1984 mpss = 128 << dev->pcie_mpss;
1985 if (mpss < p_mps && pci_pcie_type(bridge) == PCI_EXP_TYPE_ROOT_PORT) {
1986 pcie_set_mps(bridge, mpss);
1987 pci_info(dev, "Upstream bridge's Max Payload Size set to %d (was %d, max %d)\n",
1988 mpss, p_mps, 128 << bridge->pcie_mpss);
1989 p_mps = pcie_get_mps(bridge);
1992 rc = pcie_set_mps(dev, p_mps);
1993 if (rc) {
1994 pci_warn(dev, "can't set Max Payload Size to %d; if necessary, use \"pci=pcie_bus_safe\" and report a bug\n",
1995 p_mps);
1996 return;
1999 pci_info(dev, "Max Payload Size set to %d (was %d, max %d)\n",
2000 p_mps, mps, mpss);
2003 int pci_configure_extended_tags(struct pci_dev *dev, void *ign)
2005 struct pci_host_bridge *host;
2006 u32 cap;
2007 u16 ctl;
2008 int ret;
2010 if (!pci_is_pcie(dev))
2011 return 0;
2013 ret = pcie_capability_read_dword(dev, PCI_EXP_DEVCAP, &cap);
2014 if (ret)
2015 return 0;
2017 if (!(cap & PCI_EXP_DEVCAP_EXT_TAG))
2018 return 0;
2020 ret = pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &ctl);
2021 if (ret)
2022 return 0;
2024 host = pci_find_host_bridge(dev->bus);
2025 if (!host)
2026 return 0;
2029 * If some device in the hierarchy doesn't handle Extended Tags
2030 * correctly, make sure they're disabled.
2032 if (host->no_ext_tags) {
2033 if (ctl & PCI_EXP_DEVCTL_EXT_TAG) {
2034 pci_info(dev, "disabling Extended Tags\n");
2035 pcie_capability_clear_word(dev, PCI_EXP_DEVCTL,
2036 PCI_EXP_DEVCTL_EXT_TAG);
2038 return 0;
2041 if (!(ctl & PCI_EXP_DEVCTL_EXT_TAG)) {
2042 pci_info(dev, "enabling Extended Tags\n");
2043 pcie_capability_set_word(dev, PCI_EXP_DEVCTL,
2044 PCI_EXP_DEVCTL_EXT_TAG);
2046 return 0;
2050 * pcie_relaxed_ordering_enabled - Probe for PCIe relaxed ordering enable
2051 * @dev: PCI device to query
2053 * Returns true if the device has enabled relaxed ordering attribute.
2055 bool pcie_relaxed_ordering_enabled(struct pci_dev *dev)
2057 u16 v;
2059 pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &v);
2061 return !!(v & PCI_EXP_DEVCTL_RELAX_EN);
2063 EXPORT_SYMBOL(pcie_relaxed_ordering_enabled);
2065 static void pci_configure_relaxed_ordering(struct pci_dev *dev)
2067 struct pci_dev *root;
2069 /* PCI_EXP_DEVICE_RELAX_EN is RsvdP in VFs */
2070 if (dev->is_virtfn)
2071 return;
2073 if (!pcie_relaxed_ordering_enabled(dev))
2074 return;
2077 * For now, we only deal with Relaxed Ordering issues with Root
2078 * Ports. Peer-to-Peer DMA is another can of worms.
2080 root = pci_find_pcie_root_port(dev);
2081 if (!root)
2082 return;
2084 if (root->dev_flags & PCI_DEV_FLAGS_NO_RELAXED_ORDERING) {
2085 pcie_capability_clear_word(dev, PCI_EXP_DEVCTL,
2086 PCI_EXP_DEVCTL_RELAX_EN);
2087 pci_info(dev, "Relaxed Ordering disabled because the Root Port didn't support it\n");
2091 static void pci_configure_ltr(struct pci_dev *dev)
2093 #ifdef CONFIG_PCIEASPM
2094 struct pci_host_bridge *host = pci_find_host_bridge(dev->bus);
2095 struct pci_dev *bridge;
2096 u32 cap, ctl;
2098 if (!pci_is_pcie(dev))
2099 return;
2101 pcie_capability_read_dword(dev, PCI_EXP_DEVCAP2, &cap);
2102 if (!(cap & PCI_EXP_DEVCAP2_LTR))
2103 return;
2105 pcie_capability_read_dword(dev, PCI_EXP_DEVCTL2, &ctl);
2106 if (ctl & PCI_EXP_DEVCTL2_LTR_EN) {
2107 if (pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT) {
2108 dev->ltr_path = 1;
2109 return;
2112 bridge = pci_upstream_bridge(dev);
2113 if (bridge && bridge->ltr_path)
2114 dev->ltr_path = 1;
2116 return;
2119 if (!host->native_ltr)
2120 return;
2123 * Software must not enable LTR in an Endpoint unless the Root
2124 * Complex and all intermediate Switches indicate support for LTR.
2125 * PCIe r4.0, sec 6.18.
2127 if (pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT ||
2128 ((bridge = pci_upstream_bridge(dev)) &&
2129 bridge->ltr_path)) {
2130 pcie_capability_set_word(dev, PCI_EXP_DEVCTL2,
2131 PCI_EXP_DEVCTL2_LTR_EN);
2132 dev->ltr_path = 1;
2134 #endif
2137 static void pci_configure_eetlp_prefix(struct pci_dev *dev)
2139 #ifdef CONFIG_PCI_PASID
2140 struct pci_dev *bridge;
2141 int pcie_type;
2142 u32 cap;
2144 if (!pci_is_pcie(dev))
2145 return;
2147 pcie_capability_read_dword(dev, PCI_EXP_DEVCAP2, &cap);
2148 if (!(cap & PCI_EXP_DEVCAP2_EE_PREFIX))
2149 return;
2151 pcie_type = pci_pcie_type(dev);
2152 if (pcie_type == PCI_EXP_TYPE_ROOT_PORT ||
2153 pcie_type == PCI_EXP_TYPE_RC_END)
2154 dev->eetlp_prefix_path = 1;
2155 else {
2156 bridge = pci_upstream_bridge(dev);
2157 if (bridge && bridge->eetlp_prefix_path)
2158 dev->eetlp_prefix_path = 1;
2160 #endif
2163 static void pci_configure_serr(struct pci_dev *dev)
2165 u16 control;
2167 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) {
2170 * A bridge will not forward ERR_ messages coming from an
2171 * endpoint unless SERR# forwarding is enabled.
2173 pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &control);
2174 if (!(control & PCI_BRIDGE_CTL_SERR)) {
2175 control |= PCI_BRIDGE_CTL_SERR;
2176 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, control);
2181 static void pci_configure_device(struct pci_dev *dev)
2183 pci_configure_mps(dev);
2184 pci_configure_extended_tags(dev, NULL);
2185 pci_configure_relaxed_ordering(dev);
2186 pci_configure_ltr(dev);
2187 pci_configure_eetlp_prefix(dev);
2188 pci_configure_serr(dev);
2190 pci_acpi_program_hp_params(dev);
2193 static void pci_release_capabilities(struct pci_dev *dev)
2195 pci_aer_exit(dev);
2196 pci_vpd_release(dev);
2197 pci_iov_release(dev);
2198 pci_free_cap_save_buffers(dev);
2202 * pci_release_dev - Free a PCI device structure when all users of it are
2203 * finished
2204 * @dev: device that's been disconnected
2206 * Will be called only by the device core when all users of this PCI device are
2207 * done.
2209 static void pci_release_dev(struct device *dev)
2211 struct pci_dev *pci_dev;
2213 pci_dev = to_pci_dev(dev);
2214 pci_release_capabilities(pci_dev);
2215 pci_release_of_node(pci_dev);
2216 pcibios_release_device(pci_dev);
2217 pci_bus_put(pci_dev->bus);
2218 kfree(pci_dev->driver_override);
2219 bitmap_free(pci_dev->dma_alias_mask);
2220 kfree(pci_dev);
2223 struct pci_dev *pci_alloc_dev(struct pci_bus *bus)
2225 struct pci_dev *dev;
2227 dev = kzalloc(sizeof(struct pci_dev), GFP_KERNEL);
2228 if (!dev)
2229 return NULL;
2231 INIT_LIST_HEAD(&dev->bus_list);
2232 dev->dev.type = &pci_dev_type;
2233 dev->bus = pci_bus_get(bus);
2235 return dev;
2237 EXPORT_SYMBOL(pci_alloc_dev);
2239 static bool pci_bus_crs_vendor_id(u32 l)
2241 return (l & 0xffff) == 0x0001;
2244 static bool pci_bus_wait_crs(struct pci_bus *bus, int devfn, u32 *l,
2245 int timeout)
2247 int delay = 1;
2249 if (!pci_bus_crs_vendor_id(*l))
2250 return true; /* not a CRS completion */
2252 if (!timeout)
2253 return false; /* CRS, but caller doesn't want to wait */
2256 * We got the reserved Vendor ID that indicates a completion with
2257 * Configuration Request Retry Status (CRS). Retry until we get a
2258 * valid Vendor ID or we time out.
2260 while (pci_bus_crs_vendor_id(*l)) {
2261 if (delay > timeout) {
2262 pr_warn("pci %04x:%02x:%02x.%d: not ready after %dms; giving up\n",
2263 pci_domain_nr(bus), bus->number,
2264 PCI_SLOT(devfn), PCI_FUNC(devfn), delay - 1);
2266 return false;
2268 if (delay >= 1000)
2269 pr_info("pci %04x:%02x:%02x.%d: not ready after %dms; waiting\n",
2270 pci_domain_nr(bus), bus->number,
2271 PCI_SLOT(devfn), PCI_FUNC(devfn), delay - 1);
2273 msleep(delay);
2274 delay *= 2;
2276 if (pci_bus_read_config_dword(bus, devfn, PCI_VENDOR_ID, l))
2277 return false;
2280 if (delay >= 1000)
2281 pr_info("pci %04x:%02x:%02x.%d: ready after %dms\n",
2282 pci_domain_nr(bus), bus->number,
2283 PCI_SLOT(devfn), PCI_FUNC(devfn), delay - 1);
2285 return true;
2288 bool pci_bus_generic_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *l,
2289 int timeout)
2291 if (pci_bus_read_config_dword(bus, devfn, PCI_VENDOR_ID, l))
2292 return false;
2294 /* Some broken boards return 0 or ~0 if a slot is empty: */
2295 if (*l == 0xffffffff || *l == 0x00000000 ||
2296 *l == 0x0000ffff || *l == 0xffff0000)
2297 return false;
2299 if (pci_bus_crs_vendor_id(*l))
2300 return pci_bus_wait_crs(bus, devfn, l, timeout);
2302 return true;
2305 bool pci_bus_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *l,
2306 int timeout)
2308 #ifdef CONFIG_PCI_QUIRKS
2309 struct pci_dev *bridge = bus->self;
2312 * Certain IDT switches have an issue where they improperly trigger
2313 * ACS Source Validation errors on completions for config reads.
2315 if (bridge && bridge->vendor == PCI_VENDOR_ID_IDT &&
2316 bridge->device == 0x80b5)
2317 return pci_idt_bus_quirk(bus, devfn, l, timeout);
2318 #endif
2320 return pci_bus_generic_read_dev_vendor_id(bus, devfn, l, timeout);
2322 EXPORT_SYMBOL(pci_bus_read_dev_vendor_id);
2325 * Read the config data for a PCI device, sanity-check it,
2326 * and fill in the dev structure.
2328 static struct pci_dev *pci_scan_device(struct pci_bus *bus, int devfn)
2330 struct pci_dev *dev;
2331 u32 l;
2333 if (!pci_bus_read_dev_vendor_id(bus, devfn, &l, 60*1000))
2334 return NULL;
2336 dev = pci_alloc_dev(bus);
2337 if (!dev)
2338 return NULL;
2340 dev->devfn = devfn;
2341 dev->vendor = l & 0xffff;
2342 dev->device = (l >> 16) & 0xffff;
2344 pci_set_of_node(dev);
2346 if (pci_setup_device(dev)) {
2347 pci_bus_put(dev->bus);
2348 kfree(dev);
2349 return NULL;
2352 return dev;
2355 void pcie_report_downtraining(struct pci_dev *dev)
2357 if (!pci_is_pcie(dev))
2358 return;
2360 /* Look from the device up to avoid downstream ports with no devices */
2361 if ((pci_pcie_type(dev) != PCI_EXP_TYPE_ENDPOINT) &&
2362 (pci_pcie_type(dev) != PCI_EXP_TYPE_LEG_END) &&
2363 (pci_pcie_type(dev) != PCI_EXP_TYPE_UPSTREAM))
2364 return;
2366 /* Multi-function PCIe devices share the same link/status */
2367 if (PCI_FUNC(dev->devfn) != 0 || dev->is_virtfn)
2368 return;
2370 /* Print link status only if the device is constrained by the fabric */
2371 __pcie_print_link_status(dev, false);
2374 static void pci_init_capabilities(struct pci_dev *dev)
2376 pci_ea_init(dev); /* Enhanced Allocation */
2378 /* Setup MSI caps & disable MSI/MSI-X interrupts */
2379 pci_msi_setup_pci_dev(dev);
2381 /* Buffers for saving PCIe and PCI-X capabilities */
2382 pci_allocate_cap_save_buffers(dev);
2384 pci_pm_init(dev); /* Power Management */
2385 pci_vpd_init(dev); /* Vital Product Data */
2386 pci_configure_ari(dev); /* Alternative Routing-ID Forwarding */
2387 pci_iov_init(dev); /* Single Root I/O Virtualization */
2388 pci_ats_init(dev); /* Address Translation Services */
2389 pci_pri_init(dev); /* Page Request Interface */
2390 pci_pasid_init(dev); /* Process Address Space ID */
2391 pci_enable_acs(dev); /* Enable ACS P2P upstream forwarding */
2392 pci_ptm_init(dev); /* Precision Time Measurement */
2393 pci_aer_init(dev); /* Advanced Error Reporting */
2394 pci_dpc_init(dev); /* Downstream Port Containment */
2396 pcie_report_downtraining(dev);
2398 if (pci_probe_reset_function(dev) == 0)
2399 dev->reset_fn = 1;
2403 * This is the equivalent of pci_host_bridge_msi_domain() that acts on
2404 * devices. Firmware interfaces that can select the MSI domain on a
2405 * per-device basis should be called from here.
2407 static struct irq_domain *pci_dev_msi_domain(struct pci_dev *dev)
2409 struct irq_domain *d;
2412 * If a domain has been set through the pcibios_add_device()
2413 * callback, then this is the one (platform code knows best).
2415 d = dev_get_msi_domain(&dev->dev);
2416 if (d)
2417 return d;
2420 * Let's see if we have a firmware interface able to provide
2421 * the domain.
2423 d = pci_msi_get_device_domain(dev);
2424 if (d)
2425 return d;
2427 return NULL;
2430 static void pci_set_msi_domain(struct pci_dev *dev)
2432 struct irq_domain *d;
2435 * If the platform or firmware interfaces cannot supply a
2436 * device-specific MSI domain, then inherit the default domain
2437 * from the host bridge itself.
2439 d = pci_dev_msi_domain(dev);
2440 if (!d)
2441 d = dev_get_msi_domain(&dev->bus->dev);
2443 dev_set_msi_domain(&dev->dev, d);
2446 void pci_device_add(struct pci_dev *dev, struct pci_bus *bus)
2448 int ret;
2450 pci_configure_device(dev);
2452 device_initialize(&dev->dev);
2453 dev->dev.release = pci_release_dev;
2455 set_dev_node(&dev->dev, pcibus_to_node(bus));
2456 dev->dev.dma_mask = &dev->dma_mask;
2457 dev->dev.dma_parms = &dev->dma_parms;
2458 dev->dev.coherent_dma_mask = 0xffffffffull;
2460 dma_set_max_seg_size(&dev->dev, 65536);
2461 dma_set_seg_boundary(&dev->dev, 0xffffffff);
2463 /* Fix up broken headers */
2464 pci_fixup_device(pci_fixup_header, dev);
2466 pci_reassigndev_resource_alignment(dev);
2468 dev->state_saved = false;
2470 pci_init_capabilities(dev);
2473 * Add the device to our list of discovered devices
2474 * and the bus list for fixup functions, etc.
2476 down_write(&pci_bus_sem);
2477 list_add_tail(&dev->bus_list, &bus->devices);
2478 up_write(&pci_bus_sem);
2480 ret = pcibios_add_device(dev);
2481 WARN_ON(ret < 0);
2483 /* Set up MSI IRQ domain */
2484 pci_set_msi_domain(dev);
2486 /* Notifier could use PCI capabilities */
2487 dev->match_driver = false;
2488 ret = device_add(&dev->dev);
2489 WARN_ON(ret < 0);
2492 struct pci_dev *pci_scan_single_device(struct pci_bus *bus, int devfn)
2494 struct pci_dev *dev;
2496 dev = pci_get_slot(bus, devfn);
2497 if (dev) {
2498 pci_dev_put(dev);
2499 return dev;
2502 dev = pci_scan_device(bus, devfn);
2503 if (!dev)
2504 return NULL;
2506 pci_device_add(dev, bus);
2508 return dev;
2510 EXPORT_SYMBOL(pci_scan_single_device);
2512 static unsigned next_fn(struct pci_bus *bus, struct pci_dev *dev, unsigned fn)
2514 int pos;
2515 u16 cap = 0;
2516 unsigned next_fn;
2518 if (pci_ari_enabled(bus)) {
2519 if (!dev)
2520 return 0;
2521 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ARI);
2522 if (!pos)
2523 return 0;
2525 pci_read_config_word(dev, pos + PCI_ARI_CAP, &cap);
2526 next_fn = PCI_ARI_CAP_NFN(cap);
2527 if (next_fn <= fn)
2528 return 0; /* protect against malformed list */
2530 return next_fn;
2533 /* dev may be NULL for non-contiguous multifunction devices */
2534 if (!dev || dev->multifunction)
2535 return (fn + 1) % 8;
2537 return 0;
2540 static int only_one_child(struct pci_bus *bus)
2542 struct pci_dev *bridge = bus->self;
2545 * Systems with unusual topologies set PCI_SCAN_ALL_PCIE_DEVS so
2546 * we scan for all possible devices, not just Device 0.
2548 if (pci_has_flag(PCI_SCAN_ALL_PCIE_DEVS))
2549 return 0;
2552 * A PCIe Downstream Port normally leads to a Link with only Device
2553 * 0 on it (PCIe spec r3.1, sec 7.3.1). As an optimization, scan
2554 * only for Device 0 in that situation.
2556 if (bridge && pci_is_pcie(bridge) && pcie_downstream_port(bridge))
2557 return 1;
2559 return 0;
2563 * pci_scan_slot - Scan a PCI slot on a bus for devices
2564 * @bus: PCI bus to scan
2565 * @devfn: slot number to scan (must have zero function)
2567 * Scan a PCI slot on the specified PCI bus for devices, adding
2568 * discovered devices to the @bus->devices list. New devices
2569 * will not have is_added set.
2571 * Returns the number of new devices found.
2573 int pci_scan_slot(struct pci_bus *bus, int devfn)
2575 unsigned fn, nr = 0;
2576 struct pci_dev *dev;
2578 if (only_one_child(bus) && (devfn > 0))
2579 return 0; /* Already scanned the entire slot */
2581 dev = pci_scan_single_device(bus, devfn);
2582 if (!dev)
2583 return 0;
2584 if (!pci_dev_is_added(dev))
2585 nr++;
2587 for (fn = next_fn(bus, dev, 0); fn > 0; fn = next_fn(bus, dev, fn)) {
2588 dev = pci_scan_single_device(bus, devfn + fn);
2589 if (dev) {
2590 if (!pci_dev_is_added(dev))
2591 nr++;
2592 dev->multifunction = 1;
2596 /* Only one slot has PCIe device */
2597 if (bus->self && nr)
2598 pcie_aspm_init_link_state(bus->self);
2600 return nr;
2602 EXPORT_SYMBOL(pci_scan_slot);
2604 static int pcie_find_smpss(struct pci_dev *dev, void *data)
2606 u8 *smpss = data;
2608 if (!pci_is_pcie(dev))
2609 return 0;
2612 * We don't have a way to change MPS settings on devices that have
2613 * drivers attached. A hot-added device might support only the minimum
2614 * MPS setting (MPS=128). Therefore, if the fabric contains a bridge
2615 * where devices may be hot-added, we limit the fabric MPS to 128 so
2616 * hot-added devices will work correctly.
2618 * However, if we hot-add a device to a slot directly below a Root
2619 * Port, it's impossible for there to be other existing devices below
2620 * the port. We don't limit the MPS in this case because we can
2621 * reconfigure MPS on both the Root Port and the hot-added device,
2622 * and there are no other devices involved.
2624 * Note that this PCIE_BUS_SAFE path assumes no peer-to-peer DMA.
2626 if (dev->is_hotplug_bridge &&
2627 pci_pcie_type(dev) != PCI_EXP_TYPE_ROOT_PORT)
2628 *smpss = 0;
2630 if (*smpss > dev->pcie_mpss)
2631 *smpss = dev->pcie_mpss;
2633 return 0;
2636 static void pcie_write_mps(struct pci_dev *dev, int mps)
2638 int rc;
2640 if (pcie_bus_config == PCIE_BUS_PERFORMANCE) {
2641 mps = 128 << dev->pcie_mpss;
2643 if (pci_pcie_type(dev) != PCI_EXP_TYPE_ROOT_PORT &&
2644 dev->bus->self)
2647 * For "Performance", the assumption is made that
2648 * downstream communication will never be larger than
2649 * the MRRS. So, the MPS only needs to be configured
2650 * for the upstream communication. This being the case,
2651 * walk from the top down and set the MPS of the child
2652 * to that of the parent bus.
2654 * Configure the device MPS with the smaller of the
2655 * device MPSS or the bridge MPS (which is assumed to be
2656 * properly configured at this point to the largest
2657 * allowable MPS based on its parent bus).
2659 mps = min(mps, pcie_get_mps(dev->bus->self));
2662 rc = pcie_set_mps(dev, mps);
2663 if (rc)
2664 pci_err(dev, "Failed attempting to set the MPS\n");
2667 static void pcie_write_mrrs(struct pci_dev *dev)
2669 int rc, mrrs;
2672 * In the "safe" case, do not configure the MRRS. There appear to be
2673 * issues with setting MRRS to 0 on a number of devices.
2675 if (pcie_bus_config != PCIE_BUS_PERFORMANCE)
2676 return;
2679 * For max performance, the MRRS must be set to the largest supported
2680 * value. However, it cannot be configured larger than the MPS the
2681 * device or the bus can support. This should already be properly
2682 * configured by a prior call to pcie_write_mps().
2684 mrrs = pcie_get_mps(dev);
2687 * MRRS is a R/W register. Invalid values can be written, but a
2688 * subsequent read will verify if the value is acceptable or not.
2689 * If the MRRS value provided is not acceptable (e.g., too large),
2690 * shrink the value until it is acceptable to the HW.
2692 while (mrrs != pcie_get_readrq(dev) && mrrs >= 128) {
2693 rc = pcie_set_readrq(dev, mrrs);
2694 if (!rc)
2695 break;
2697 pci_warn(dev, "Failed attempting to set the MRRS\n");
2698 mrrs /= 2;
2701 if (mrrs < 128)
2702 pci_err(dev, "MRRS was unable to be configured with a safe value. If problems are experienced, try running with pci=pcie_bus_safe\n");
2705 static int pcie_bus_configure_set(struct pci_dev *dev, void *data)
2707 int mps, orig_mps;
2709 if (!pci_is_pcie(dev))
2710 return 0;
2712 if (pcie_bus_config == PCIE_BUS_TUNE_OFF ||
2713 pcie_bus_config == PCIE_BUS_DEFAULT)
2714 return 0;
2716 mps = 128 << *(u8 *)data;
2717 orig_mps = pcie_get_mps(dev);
2719 pcie_write_mps(dev, mps);
2720 pcie_write_mrrs(dev);
2722 pci_info(dev, "Max Payload Size set to %4d/%4d (was %4d), Max Read Rq %4d\n",
2723 pcie_get_mps(dev), 128 << dev->pcie_mpss,
2724 orig_mps, pcie_get_readrq(dev));
2726 return 0;
2730 * pcie_bus_configure_settings() requires that pci_walk_bus work in a top-down,
2731 * parents then children fashion. If this changes, then this code will not
2732 * work as designed.
2734 void pcie_bus_configure_settings(struct pci_bus *bus)
2736 u8 smpss = 0;
2738 if (!bus->self)
2739 return;
2741 if (!pci_is_pcie(bus->self))
2742 return;
2745 * FIXME - Peer to peer DMA is possible, though the endpoint would need
2746 * to be aware of the MPS of the destination. To work around this,
2747 * simply force the MPS of the entire system to the smallest possible.
2749 if (pcie_bus_config == PCIE_BUS_PEER2PEER)
2750 smpss = 0;
2752 if (pcie_bus_config == PCIE_BUS_SAFE) {
2753 smpss = bus->self->pcie_mpss;
2755 pcie_find_smpss(bus->self, &smpss);
2756 pci_walk_bus(bus, pcie_find_smpss, &smpss);
2759 pcie_bus_configure_set(bus->self, &smpss);
2760 pci_walk_bus(bus, pcie_bus_configure_set, &smpss);
2762 EXPORT_SYMBOL_GPL(pcie_bus_configure_settings);
2765 * Called after each bus is probed, but before its children are examined. This
2766 * is marked as __weak because multiple architectures define it.
2768 void __weak pcibios_fixup_bus(struct pci_bus *bus)
2770 /* nothing to do, expected to be removed in the future */
2774 * pci_scan_child_bus_extend() - Scan devices below a bus
2775 * @bus: Bus to scan for devices
2776 * @available_buses: Total number of buses available (%0 does not try to
2777 * extend beyond the minimal)
2779 * Scans devices below @bus including subordinate buses. Returns new
2780 * subordinate number including all the found devices. Passing
2781 * @available_buses causes the remaining bus space to be distributed
2782 * equally between hotplug-capable bridges to allow future extension of the
2783 * hierarchy.
2785 static unsigned int pci_scan_child_bus_extend(struct pci_bus *bus,
2786 unsigned int available_buses)
2788 unsigned int used_buses, normal_bridges = 0, hotplug_bridges = 0;
2789 unsigned int start = bus->busn_res.start;
2790 unsigned int devfn, fn, cmax, max = start;
2791 struct pci_dev *dev;
2792 int nr_devs;
2794 dev_dbg(&bus->dev, "scanning bus\n");
2796 /* Go find them, Rover! */
2797 for (devfn = 0; devfn < 256; devfn += 8) {
2798 nr_devs = pci_scan_slot(bus, devfn);
2801 * The Jailhouse hypervisor may pass individual functions of a
2802 * multi-function device to a guest without passing function 0.
2803 * Look for them as well.
2805 if (jailhouse_paravirt() && nr_devs == 0) {
2806 for (fn = 1; fn < 8; fn++) {
2807 dev = pci_scan_single_device(bus, devfn + fn);
2808 if (dev)
2809 dev->multifunction = 1;
2814 /* Reserve buses for SR-IOV capability */
2815 used_buses = pci_iov_bus_range(bus);
2816 max += used_buses;
2819 * After performing arch-dependent fixup of the bus, look behind
2820 * all PCI-to-PCI bridges on this bus.
2822 if (!bus->is_added) {
2823 dev_dbg(&bus->dev, "fixups for bus\n");
2824 pcibios_fixup_bus(bus);
2825 bus->is_added = 1;
2829 * Calculate how many hotplug bridges and normal bridges there
2830 * are on this bus. We will distribute the additional available
2831 * buses between hotplug bridges.
2833 for_each_pci_bridge(dev, bus) {
2834 if (dev->is_hotplug_bridge)
2835 hotplug_bridges++;
2836 else
2837 normal_bridges++;
2841 * Scan bridges that are already configured. We don't touch them
2842 * unless they are misconfigured (which will be done in the second
2843 * scan below).
2845 for_each_pci_bridge(dev, bus) {
2846 cmax = max;
2847 max = pci_scan_bridge_extend(bus, dev, max, 0, 0);
2850 * Reserve one bus for each bridge now to avoid extending
2851 * hotplug bridges too much during the second scan below.
2853 used_buses++;
2854 if (cmax - max > 1)
2855 used_buses += cmax - max - 1;
2858 /* Scan bridges that need to be reconfigured */
2859 for_each_pci_bridge(dev, bus) {
2860 unsigned int buses = 0;
2862 if (!hotplug_bridges && normal_bridges == 1) {
2865 * There is only one bridge on the bus (upstream
2866 * port) so it gets all available buses which it
2867 * can then distribute to the possible hotplug
2868 * bridges below.
2870 buses = available_buses;
2871 } else if (dev->is_hotplug_bridge) {
2874 * Distribute the extra buses between hotplug
2875 * bridges if any.
2877 buses = available_buses / hotplug_bridges;
2878 buses = min(buses, available_buses - used_buses + 1);
2881 cmax = max;
2882 max = pci_scan_bridge_extend(bus, dev, cmax, buses, 1);
2883 /* One bus is already accounted so don't add it again */
2884 if (max - cmax > 1)
2885 used_buses += max - cmax - 1;
2889 * Make sure a hotplug bridge has at least the minimum requested
2890 * number of buses but allow it to grow up to the maximum available
2891 * bus number of there is room.
2893 if (bus->self && bus->self->is_hotplug_bridge) {
2894 used_buses = max_t(unsigned int, available_buses,
2895 pci_hotplug_bus_size - 1);
2896 if (max - start < used_buses) {
2897 max = start + used_buses;
2899 /* Do not allocate more buses than we have room left */
2900 if (max > bus->busn_res.end)
2901 max = bus->busn_res.end;
2903 dev_dbg(&bus->dev, "%pR extended by %#02x\n",
2904 &bus->busn_res, max - start);
2909 * We've scanned the bus and so we know all about what's on
2910 * the other side of any bridges that may be on this bus plus
2911 * any devices.
2913 * Return how far we've got finding sub-buses.
2915 dev_dbg(&bus->dev, "bus scan returning with max=%02x\n", max);
2916 return max;
2920 * pci_scan_child_bus() - Scan devices below a bus
2921 * @bus: Bus to scan for devices
2923 * Scans devices below @bus including subordinate buses. Returns new
2924 * subordinate number including all the found devices.
2926 unsigned int pci_scan_child_bus(struct pci_bus *bus)
2928 return pci_scan_child_bus_extend(bus, 0);
2930 EXPORT_SYMBOL_GPL(pci_scan_child_bus);
2933 * pcibios_root_bridge_prepare - Platform-specific host bridge setup
2934 * @bridge: Host bridge to set up
2936 * Default empty implementation. Replace with an architecture-specific setup
2937 * routine, if necessary.
2939 int __weak pcibios_root_bridge_prepare(struct pci_host_bridge *bridge)
2941 return 0;
2944 void __weak pcibios_add_bus(struct pci_bus *bus)
2948 void __weak pcibios_remove_bus(struct pci_bus *bus)
2952 struct pci_bus *pci_create_root_bus(struct device *parent, int bus,
2953 struct pci_ops *ops, void *sysdata, struct list_head *resources)
2955 int error;
2956 struct pci_host_bridge *bridge;
2958 bridge = pci_alloc_host_bridge(0);
2959 if (!bridge)
2960 return NULL;
2962 bridge->dev.parent = parent;
2964 list_splice_init(resources, &bridge->windows);
2965 bridge->sysdata = sysdata;
2966 bridge->busnr = bus;
2967 bridge->ops = ops;
2969 error = pci_register_host_bridge(bridge);
2970 if (error < 0)
2971 goto err_out;
2973 return bridge->bus;
2975 err_out:
2976 kfree(bridge);
2977 return NULL;
2979 EXPORT_SYMBOL_GPL(pci_create_root_bus);
2981 int pci_host_probe(struct pci_host_bridge *bridge)
2983 struct pci_bus *bus, *child;
2984 int ret;
2986 ret = pci_scan_root_bus_bridge(bridge);
2987 if (ret < 0) {
2988 dev_err(bridge->dev.parent, "Scanning root bridge failed");
2989 return ret;
2992 bus = bridge->bus;
2995 * We insert PCI resources into the iomem_resource and
2996 * ioport_resource trees in either pci_bus_claim_resources()
2997 * or pci_bus_assign_resources().
2999 if (pci_has_flag(PCI_PROBE_ONLY)) {
3000 pci_bus_claim_resources(bus);
3001 } else {
3002 pci_bus_size_bridges(bus);
3003 pci_bus_assign_resources(bus);
3005 list_for_each_entry(child, &bus->children, node)
3006 pcie_bus_configure_settings(child);
3009 pci_bus_add_devices(bus);
3010 return 0;
3012 EXPORT_SYMBOL_GPL(pci_host_probe);
3014 int pci_bus_insert_busn_res(struct pci_bus *b, int bus, int bus_max)
3016 struct resource *res = &b->busn_res;
3017 struct resource *parent_res, *conflict;
3019 res->start = bus;
3020 res->end = bus_max;
3021 res->flags = IORESOURCE_BUS;
3023 if (!pci_is_root_bus(b))
3024 parent_res = &b->parent->busn_res;
3025 else {
3026 parent_res = get_pci_domain_busn_res(pci_domain_nr(b));
3027 res->flags |= IORESOURCE_PCI_FIXED;
3030 conflict = request_resource_conflict(parent_res, res);
3032 if (conflict)
3033 dev_info(&b->dev,
3034 "busn_res: can not insert %pR under %s%pR (conflicts with %s %pR)\n",
3035 res, pci_is_root_bus(b) ? "domain " : "",
3036 parent_res, conflict->name, conflict);
3038 return conflict == NULL;
3041 int pci_bus_update_busn_res_end(struct pci_bus *b, int bus_max)
3043 struct resource *res = &b->busn_res;
3044 struct resource old_res = *res;
3045 resource_size_t size;
3046 int ret;
3048 if (res->start > bus_max)
3049 return -EINVAL;
3051 size = bus_max - res->start + 1;
3052 ret = adjust_resource(res, res->start, size);
3053 dev_info(&b->dev, "busn_res: %pR end %s updated to %02x\n",
3054 &old_res, ret ? "can not be" : "is", bus_max);
3056 if (!ret && !res->parent)
3057 pci_bus_insert_busn_res(b, res->start, res->end);
3059 return ret;
3062 void pci_bus_release_busn_res(struct pci_bus *b)
3064 struct resource *res = &b->busn_res;
3065 int ret;
3067 if (!res->flags || !res->parent)
3068 return;
3070 ret = release_resource(res);
3071 dev_info(&b->dev, "busn_res: %pR %s released\n",
3072 res, ret ? "can not be" : "is");
3075 int pci_scan_root_bus_bridge(struct pci_host_bridge *bridge)
3077 struct resource_entry *window;
3078 bool found = false;
3079 struct pci_bus *b;
3080 int max, bus, ret;
3082 if (!bridge)
3083 return -EINVAL;
3085 resource_list_for_each_entry(window, &bridge->windows)
3086 if (window->res->flags & IORESOURCE_BUS) {
3087 found = true;
3088 break;
3091 ret = pci_register_host_bridge(bridge);
3092 if (ret < 0)
3093 return ret;
3095 b = bridge->bus;
3096 bus = bridge->busnr;
3098 if (!found) {
3099 dev_info(&b->dev,
3100 "No busn resource found for root bus, will use [bus %02x-ff]\n",
3101 bus);
3102 pci_bus_insert_busn_res(b, bus, 255);
3105 max = pci_scan_child_bus(b);
3107 if (!found)
3108 pci_bus_update_busn_res_end(b, max);
3110 return 0;
3112 EXPORT_SYMBOL(pci_scan_root_bus_bridge);
3114 struct pci_bus *pci_scan_root_bus(struct device *parent, int bus,
3115 struct pci_ops *ops, void *sysdata, struct list_head *resources)
3117 struct resource_entry *window;
3118 bool found = false;
3119 struct pci_bus *b;
3120 int max;
3122 resource_list_for_each_entry(window, resources)
3123 if (window->res->flags & IORESOURCE_BUS) {
3124 found = true;
3125 break;
3128 b = pci_create_root_bus(parent, bus, ops, sysdata, resources);
3129 if (!b)
3130 return NULL;
3132 if (!found) {
3133 dev_info(&b->dev,
3134 "No busn resource found for root bus, will use [bus %02x-ff]\n",
3135 bus);
3136 pci_bus_insert_busn_res(b, bus, 255);
3139 max = pci_scan_child_bus(b);
3141 if (!found)
3142 pci_bus_update_busn_res_end(b, max);
3144 return b;
3146 EXPORT_SYMBOL(pci_scan_root_bus);
3148 struct pci_bus *pci_scan_bus(int bus, struct pci_ops *ops,
3149 void *sysdata)
3151 LIST_HEAD(resources);
3152 struct pci_bus *b;
3154 pci_add_resource(&resources, &ioport_resource);
3155 pci_add_resource(&resources, &iomem_resource);
3156 pci_add_resource(&resources, &busn_resource);
3157 b = pci_create_root_bus(NULL, bus, ops, sysdata, &resources);
3158 if (b) {
3159 pci_scan_child_bus(b);
3160 } else {
3161 pci_free_resource_list(&resources);
3163 return b;
3165 EXPORT_SYMBOL(pci_scan_bus);
3168 * pci_rescan_bus_bridge_resize - Scan a PCI bus for devices
3169 * @bridge: PCI bridge for the bus to scan
3171 * Scan a PCI bus and child buses for new devices, add them,
3172 * and enable them, resizing bridge mmio/io resource if necessary
3173 * and possible. The caller must ensure the child devices are already
3174 * removed for resizing to occur.
3176 * Returns the max number of subordinate bus discovered.
3178 unsigned int pci_rescan_bus_bridge_resize(struct pci_dev *bridge)
3180 unsigned int max;
3181 struct pci_bus *bus = bridge->subordinate;
3183 max = pci_scan_child_bus(bus);
3185 pci_assign_unassigned_bridge_resources(bridge);
3187 pci_bus_add_devices(bus);
3189 return max;
3193 * pci_rescan_bus - Scan a PCI bus for devices
3194 * @bus: PCI bus to scan
3196 * Scan a PCI bus and child buses for new devices, add them,
3197 * and enable them.
3199 * Returns the max number of subordinate bus discovered.
3201 unsigned int pci_rescan_bus(struct pci_bus *bus)
3203 unsigned int max;
3205 max = pci_scan_child_bus(bus);
3206 pci_assign_unassigned_bus_resources(bus);
3207 pci_bus_add_devices(bus);
3209 return max;
3211 EXPORT_SYMBOL_GPL(pci_rescan_bus);
3214 * pci_rescan_bus(), pci_rescan_bus_bridge_resize() and PCI device removal
3215 * routines should always be executed under this mutex.
3217 static DEFINE_MUTEX(pci_rescan_remove_lock);
3219 void pci_lock_rescan_remove(void)
3221 mutex_lock(&pci_rescan_remove_lock);
3223 EXPORT_SYMBOL_GPL(pci_lock_rescan_remove);
3225 void pci_unlock_rescan_remove(void)
3227 mutex_unlock(&pci_rescan_remove_lock);
3229 EXPORT_SYMBOL_GPL(pci_unlock_rescan_remove);
3231 static int __init pci_sort_bf_cmp(const struct device *d_a,
3232 const struct device *d_b)
3234 const struct pci_dev *a = to_pci_dev(d_a);
3235 const struct pci_dev *b = to_pci_dev(d_b);
3237 if (pci_domain_nr(a->bus) < pci_domain_nr(b->bus)) return -1;
3238 else if (pci_domain_nr(a->bus) > pci_domain_nr(b->bus)) return 1;
3240 if (a->bus->number < b->bus->number) return -1;
3241 else if (a->bus->number > b->bus->number) return 1;
3243 if (a->devfn < b->devfn) return -1;
3244 else if (a->devfn > b->devfn) return 1;
3246 return 0;
3249 void __init pci_sort_breadthfirst(void)
3251 bus_sort_breadthfirst(&pci_bus_type, &pci_sort_bf_cmp);
3254 int pci_hp_add_bridge(struct pci_dev *dev)
3256 struct pci_bus *parent = dev->bus;
3257 int busnr, start = parent->busn_res.start;
3258 unsigned int available_buses = 0;
3259 int end = parent->busn_res.end;
3261 for (busnr = start; busnr <= end; busnr++) {
3262 if (!pci_find_bus(pci_domain_nr(parent), busnr))
3263 break;
3265 if (busnr-- > end) {
3266 pci_err(dev, "No bus number available for hot-added bridge\n");
3267 return -1;
3270 /* Scan bridges that are already configured */
3271 busnr = pci_scan_bridge(parent, dev, busnr, 0);
3274 * Distribute the available bus numbers between hotplug-capable
3275 * bridges to make extending the chain later possible.
3277 available_buses = end - busnr;
3279 /* Scan bridges that need to be reconfigured */
3280 pci_scan_bridge_extend(parent, dev, busnr, available_buses, 1);
3282 if (!dev->subordinate)
3283 return -1;
3285 return 0;
3287 EXPORT_SYMBOL_GPL(pci_hp_add_bridge);