1 // SPDX-License-Identifier: GPL-2.0
3 * PCI detection and setup code
6 #include <linux/kernel.h>
7 #include <linux/delay.h>
8 #include <linux/init.h>
10 #include <linux/of_device.h>
11 #include <linux/of_pci.h>
12 #include <linux/pci_hotplug.h>
13 #include <linux/slab.h>
14 #include <linux/module.h>
15 #include <linux/cpumask.h>
16 #include <linux/aer.h>
17 #include <linux/acpi.h>
18 #include <linux/hypervisor.h>
19 #include <linux/irqdomain.h>
20 #include <linux/pm_runtime.h>
23 #define CARDBUS_LATENCY_TIMER 176 /* secondary latency timer */
24 #define CARDBUS_RESERVE_BUSNR 3
26 static struct resource busn_resource
= {
30 .flags
= IORESOURCE_BUS
,
33 /* Ugh. Need to stop exporting this to modules. */
34 LIST_HEAD(pci_root_buses
);
35 EXPORT_SYMBOL(pci_root_buses
);
37 static LIST_HEAD(pci_domain_busn_res_list
);
39 struct pci_domain_busn_res
{
40 struct list_head list
;
45 static struct resource
*get_pci_domain_busn_res(int domain_nr
)
47 struct pci_domain_busn_res
*r
;
49 list_for_each_entry(r
, &pci_domain_busn_res_list
, list
)
50 if (r
->domain_nr
== domain_nr
)
53 r
= kzalloc(sizeof(*r
), GFP_KERNEL
);
57 r
->domain_nr
= domain_nr
;
60 r
->res
.flags
= IORESOURCE_BUS
| IORESOURCE_PCI_FIXED
;
62 list_add_tail(&r
->list
, &pci_domain_busn_res_list
);
67 static int find_anything(struct device
*dev
, void *data
)
73 * Some device drivers need know if PCI is initiated.
74 * Basically, we think PCI is not initiated when there
75 * is no device to be found on the pci_bus_type.
77 int no_pci_devices(void)
82 dev
= bus_find_device(&pci_bus_type
, NULL
, NULL
, find_anything
);
83 no_devices
= (dev
== NULL
);
87 EXPORT_SYMBOL(no_pci_devices
);
92 static void release_pcibus_dev(struct device
*dev
)
94 struct pci_bus
*pci_bus
= to_pci_bus(dev
);
96 put_device(pci_bus
->bridge
);
97 pci_bus_remove_resources(pci_bus
);
98 pci_release_bus_of_node(pci_bus
);
102 static struct class pcibus_class
= {
104 .dev_release
= &release_pcibus_dev
,
105 .dev_groups
= pcibus_groups
,
108 static int __init
pcibus_class_init(void)
110 return class_register(&pcibus_class
);
112 postcore_initcall(pcibus_class_init
);
114 static u64
pci_size(u64 base
, u64 maxbase
, u64 mask
)
116 u64 size
= mask
& maxbase
; /* Find the significant bits */
121 * Get the lowest of them to find the decode size, and from that
124 size
= size
& ~(size
-1);
127 * base == maxbase can be valid only if the BAR has already been
128 * programmed with all 1s.
130 if (base
== maxbase
&& ((base
| (size
- 1)) & mask
) != mask
)
136 static inline unsigned long decode_bar(struct pci_dev
*dev
, u32 bar
)
141 if ((bar
& PCI_BASE_ADDRESS_SPACE
) == PCI_BASE_ADDRESS_SPACE_IO
) {
142 flags
= bar
& ~PCI_BASE_ADDRESS_IO_MASK
;
143 flags
|= IORESOURCE_IO
;
147 flags
= bar
& ~PCI_BASE_ADDRESS_MEM_MASK
;
148 flags
|= IORESOURCE_MEM
;
149 if (flags
& PCI_BASE_ADDRESS_MEM_PREFETCH
)
150 flags
|= IORESOURCE_PREFETCH
;
152 mem_type
= bar
& PCI_BASE_ADDRESS_MEM_TYPE_MASK
;
154 case PCI_BASE_ADDRESS_MEM_TYPE_32
:
156 case PCI_BASE_ADDRESS_MEM_TYPE_1M
:
157 /* 1M mem BAR treated as 32-bit BAR */
159 case PCI_BASE_ADDRESS_MEM_TYPE_64
:
160 flags
|= IORESOURCE_MEM_64
;
163 /* mem unknown type treated as 32-bit BAR */
169 #define PCI_COMMAND_DECODE_ENABLE (PCI_COMMAND_MEMORY | PCI_COMMAND_IO)
172 * pci_read_base - Read a PCI BAR
173 * @dev: the PCI device
174 * @type: type of the BAR
175 * @res: resource buffer to be filled in
176 * @pos: BAR position in the config space
178 * Returns 1 if the BAR is 64-bit, or 0 if 32-bit.
180 int __pci_read_base(struct pci_dev
*dev
, enum pci_bar_type type
,
181 struct resource
*res
, unsigned int pos
)
183 u32 l
= 0, sz
= 0, mask
;
184 u64 l64
, sz64
, mask64
;
186 struct pci_bus_region region
, inverted_region
;
188 mask
= type
? PCI_ROM_ADDRESS_MASK
: ~0;
190 /* No printks while decoding is disabled! */
191 if (!dev
->mmio_always_on
) {
192 pci_read_config_word(dev
, PCI_COMMAND
, &orig_cmd
);
193 if (orig_cmd
& PCI_COMMAND_DECODE_ENABLE
) {
194 pci_write_config_word(dev
, PCI_COMMAND
,
195 orig_cmd
& ~PCI_COMMAND_DECODE_ENABLE
);
199 res
->name
= pci_name(dev
);
201 pci_read_config_dword(dev
, pos
, &l
);
202 pci_write_config_dword(dev
, pos
, l
| mask
);
203 pci_read_config_dword(dev
, pos
, &sz
);
204 pci_write_config_dword(dev
, pos
, l
);
207 * All bits set in sz means the device isn't working properly.
208 * If the BAR isn't implemented, all bits must be 0. If it's a
209 * memory BAR or a ROM, bit 0 must be clear; if it's an io BAR, bit
212 if (sz
== 0xffffffff)
216 * I don't know how l can have all bits set. Copied from old code.
217 * Maybe it fixes a bug on some ancient platform.
222 if (type
== pci_bar_unknown
) {
223 res
->flags
= decode_bar(dev
, l
);
224 res
->flags
|= IORESOURCE_SIZEALIGN
;
225 if (res
->flags
& IORESOURCE_IO
) {
226 l64
= l
& PCI_BASE_ADDRESS_IO_MASK
;
227 sz64
= sz
& PCI_BASE_ADDRESS_IO_MASK
;
228 mask64
= PCI_BASE_ADDRESS_IO_MASK
& (u32
)IO_SPACE_LIMIT
;
230 l64
= l
& PCI_BASE_ADDRESS_MEM_MASK
;
231 sz64
= sz
& PCI_BASE_ADDRESS_MEM_MASK
;
232 mask64
= (u32
)PCI_BASE_ADDRESS_MEM_MASK
;
235 if (l
& PCI_ROM_ADDRESS_ENABLE
)
236 res
->flags
|= IORESOURCE_ROM_ENABLE
;
237 l64
= l
& PCI_ROM_ADDRESS_MASK
;
238 sz64
= sz
& PCI_ROM_ADDRESS_MASK
;
239 mask64
= PCI_ROM_ADDRESS_MASK
;
242 if (res
->flags
& IORESOURCE_MEM_64
) {
243 pci_read_config_dword(dev
, pos
+ 4, &l
);
244 pci_write_config_dword(dev
, pos
+ 4, ~0);
245 pci_read_config_dword(dev
, pos
+ 4, &sz
);
246 pci_write_config_dword(dev
, pos
+ 4, l
);
248 l64
|= ((u64
)l
<< 32);
249 sz64
|= ((u64
)sz
<< 32);
250 mask64
|= ((u64
)~0 << 32);
253 if (!dev
->mmio_always_on
&& (orig_cmd
& PCI_COMMAND_DECODE_ENABLE
))
254 pci_write_config_word(dev
, PCI_COMMAND
, orig_cmd
);
259 sz64
= pci_size(l64
, sz64
, mask64
);
261 pci_info(dev
, FW_BUG
"reg 0x%x: invalid BAR (can't size)\n",
266 if (res
->flags
& IORESOURCE_MEM_64
) {
267 if ((sizeof(pci_bus_addr_t
) < 8 || sizeof(resource_size_t
) < 8)
268 && sz64
> 0x100000000ULL
) {
269 res
->flags
|= IORESOURCE_UNSET
| IORESOURCE_DISABLED
;
272 pci_err(dev
, "reg 0x%x: can't handle BAR larger than 4GB (size %#010llx)\n",
273 pos
, (unsigned long long)sz64
);
277 if ((sizeof(pci_bus_addr_t
) < 8) && l
) {
278 /* Above 32-bit boundary; try to reallocate */
279 res
->flags
|= IORESOURCE_UNSET
;
282 pci_info(dev
, "reg 0x%x: can't handle BAR above 4GB (bus address %#010llx)\n",
283 pos
, (unsigned long long)l64
);
289 region
.end
= l64
+ sz64
- 1;
291 pcibios_bus_to_resource(dev
->bus
, res
, ®ion
);
292 pcibios_resource_to_bus(dev
->bus
, &inverted_region
, res
);
295 * If "A" is a BAR value (a bus address), "bus_to_resource(A)" is
296 * the corresponding resource address (the physical address used by
297 * the CPU. Converting that resource address back to a bus address
298 * should yield the original BAR value:
300 * resource_to_bus(bus_to_resource(A)) == A
302 * If it doesn't, CPU accesses to "bus_to_resource(A)" will not
303 * be claimed by the device.
305 if (inverted_region
.start
!= region
.start
) {
306 res
->flags
|= IORESOURCE_UNSET
;
308 res
->end
= region
.end
- region
.start
;
309 pci_info(dev
, "reg 0x%x: initial BAR value %#010llx invalid\n",
310 pos
, (unsigned long long)region
.start
);
320 pci_printk(KERN_DEBUG
, dev
, "reg 0x%x: %pR\n", pos
, res
);
322 return (res
->flags
& IORESOURCE_MEM_64
) ? 1 : 0;
325 static void pci_read_bases(struct pci_dev
*dev
, unsigned int howmany
, int rom
)
327 unsigned int pos
, reg
;
329 if (dev
->non_compliant_bars
)
332 /* Per PCIe r4.0, sec 9.3.4.1.11, the VF BARs are all RO Zero */
336 for (pos
= 0; pos
< howmany
; pos
++) {
337 struct resource
*res
= &dev
->resource
[pos
];
338 reg
= PCI_BASE_ADDRESS_0
+ (pos
<< 2);
339 pos
+= __pci_read_base(dev
, pci_bar_unknown
, res
, reg
);
343 struct resource
*res
= &dev
->resource
[PCI_ROM_RESOURCE
];
344 dev
->rom_base_reg
= rom
;
345 res
->flags
= IORESOURCE_MEM
| IORESOURCE_PREFETCH
|
346 IORESOURCE_READONLY
| IORESOURCE_SIZEALIGN
;
347 __pci_read_base(dev
, pci_bar_mem32
, res
, rom
);
351 static void pci_read_bridge_windows(struct pci_dev
*bridge
)
356 pci_read_config_word(bridge
, PCI_IO_BASE
, &io
);
358 pci_write_config_word(bridge
, PCI_IO_BASE
, 0xe0f0);
359 pci_read_config_word(bridge
, PCI_IO_BASE
, &io
);
360 pci_write_config_word(bridge
, PCI_IO_BASE
, 0x0);
363 bridge
->io_window
= 1;
366 * DECchip 21050 pass 2 errata: the bridge may miss an address
367 * disconnect boundary by one PCI data phase. Workaround: do not
368 * use prefetching on this device.
370 if (bridge
->vendor
== PCI_VENDOR_ID_DEC
&& bridge
->device
== 0x0001)
373 pci_read_config_dword(bridge
, PCI_PREF_MEMORY_BASE
, &pmem
);
375 pci_write_config_dword(bridge
, PCI_PREF_MEMORY_BASE
,
377 pci_read_config_dword(bridge
, PCI_PREF_MEMORY_BASE
, &pmem
);
378 pci_write_config_dword(bridge
, PCI_PREF_MEMORY_BASE
, 0x0);
383 bridge
->pref_window
= 1;
385 if ((pmem
& PCI_PREF_RANGE_TYPE_MASK
) == PCI_PREF_RANGE_TYPE_64
) {
388 * Bridge claims to have a 64-bit prefetchable memory
389 * window; verify that the upper bits are actually
392 pci_read_config_dword(bridge
, PCI_PREF_BASE_UPPER32
, &pmem
);
393 pci_write_config_dword(bridge
, PCI_PREF_BASE_UPPER32
,
395 pci_read_config_dword(bridge
, PCI_PREF_BASE_UPPER32
, &tmp
);
396 pci_write_config_dword(bridge
, PCI_PREF_BASE_UPPER32
, pmem
);
398 bridge
->pref_64_window
= 1;
402 static void pci_read_bridge_io(struct pci_bus
*child
)
404 struct pci_dev
*dev
= child
->self
;
405 u8 io_base_lo
, io_limit_lo
;
406 unsigned long io_mask
, io_granularity
, base
, limit
;
407 struct pci_bus_region region
;
408 struct resource
*res
;
410 io_mask
= PCI_IO_RANGE_MASK
;
411 io_granularity
= 0x1000;
412 if (dev
->io_window_1k
) {
413 /* Support 1K I/O space granularity */
414 io_mask
= PCI_IO_1K_RANGE_MASK
;
415 io_granularity
= 0x400;
418 res
= child
->resource
[0];
419 pci_read_config_byte(dev
, PCI_IO_BASE
, &io_base_lo
);
420 pci_read_config_byte(dev
, PCI_IO_LIMIT
, &io_limit_lo
);
421 base
= (io_base_lo
& io_mask
) << 8;
422 limit
= (io_limit_lo
& io_mask
) << 8;
424 if ((io_base_lo
& PCI_IO_RANGE_TYPE_MASK
) == PCI_IO_RANGE_TYPE_32
) {
425 u16 io_base_hi
, io_limit_hi
;
427 pci_read_config_word(dev
, PCI_IO_BASE_UPPER16
, &io_base_hi
);
428 pci_read_config_word(dev
, PCI_IO_LIMIT_UPPER16
, &io_limit_hi
);
429 base
|= ((unsigned long) io_base_hi
<< 16);
430 limit
|= ((unsigned long) io_limit_hi
<< 16);
434 res
->flags
= (io_base_lo
& PCI_IO_RANGE_TYPE_MASK
) | IORESOURCE_IO
;
436 region
.end
= limit
+ io_granularity
- 1;
437 pcibios_bus_to_resource(dev
->bus
, res
, ®ion
);
438 pci_printk(KERN_DEBUG
, dev
, " bridge window %pR\n", res
);
442 static void pci_read_bridge_mmio(struct pci_bus
*child
)
444 struct pci_dev
*dev
= child
->self
;
445 u16 mem_base_lo
, mem_limit_lo
;
446 unsigned long base
, limit
;
447 struct pci_bus_region region
;
448 struct resource
*res
;
450 res
= child
->resource
[1];
451 pci_read_config_word(dev
, PCI_MEMORY_BASE
, &mem_base_lo
);
452 pci_read_config_word(dev
, PCI_MEMORY_LIMIT
, &mem_limit_lo
);
453 base
= ((unsigned long) mem_base_lo
& PCI_MEMORY_RANGE_MASK
) << 16;
454 limit
= ((unsigned long) mem_limit_lo
& PCI_MEMORY_RANGE_MASK
) << 16;
456 res
->flags
= (mem_base_lo
& PCI_MEMORY_RANGE_TYPE_MASK
) | IORESOURCE_MEM
;
458 region
.end
= limit
+ 0xfffff;
459 pcibios_bus_to_resource(dev
->bus
, res
, ®ion
);
460 pci_printk(KERN_DEBUG
, dev
, " bridge window %pR\n", res
);
464 static void pci_read_bridge_mmio_pref(struct pci_bus
*child
)
466 struct pci_dev
*dev
= child
->self
;
467 u16 mem_base_lo
, mem_limit_lo
;
469 pci_bus_addr_t base
, limit
;
470 struct pci_bus_region region
;
471 struct resource
*res
;
473 res
= child
->resource
[2];
474 pci_read_config_word(dev
, PCI_PREF_MEMORY_BASE
, &mem_base_lo
);
475 pci_read_config_word(dev
, PCI_PREF_MEMORY_LIMIT
, &mem_limit_lo
);
476 base64
= (mem_base_lo
& PCI_PREF_RANGE_MASK
) << 16;
477 limit64
= (mem_limit_lo
& PCI_PREF_RANGE_MASK
) << 16;
479 if ((mem_base_lo
& PCI_PREF_RANGE_TYPE_MASK
) == PCI_PREF_RANGE_TYPE_64
) {
480 u32 mem_base_hi
, mem_limit_hi
;
482 pci_read_config_dword(dev
, PCI_PREF_BASE_UPPER32
, &mem_base_hi
);
483 pci_read_config_dword(dev
, PCI_PREF_LIMIT_UPPER32
, &mem_limit_hi
);
486 * Some bridges set the base > limit by default, and some
487 * (broken) BIOSes do not initialize them. If we find
488 * this, just assume they are not being used.
490 if (mem_base_hi
<= mem_limit_hi
) {
491 base64
|= (u64
) mem_base_hi
<< 32;
492 limit64
|= (u64
) mem_limit_hi
<< 32;
496 base
= (pci_bus_addr_t
) base64
;
497 limit
= (pci_bus_addr_t
) limit64
;
499 if (base
!= base64
) {
500 pci_err(dev
, "can't handle bridge window above 4GB (bus address %#010llx)\n",
501 (unsigned long long) base64
);
506 res
->flags
= (mem_base_lo
& PCI_PREF_RANGE_TYPE_MASK
) |
507 IORESOURCE_MEM
| IORESOURCE_PREFETCH
;
508 if (res
->flags
& PCI_PREF_RANGE_TYPE_64
)
509 res
->flags
|= IORESOURCE_MEM_64
;
511 region
.end
= limit
+ 0xfffff;
512 pcibios_bus_to_resource(dev
->bus
, res
, ®ion
);
513 pci_printk(KERN_DEBUG
, dev
, " bridge window %pR\n", res
);
517 void pci_read_bridge_bases(struct pci_bus
*child
)
519 struct pci_dev
*dev
= child
->self
;
520 struct resource
*res
;
523 if (pci_is_root_bus(child
)) /* It's a host bus, nothing to read */
526 pci_info(dev
, "PCI bridge to %pR%s\n",
528 dev
->transparent
? " (subtractive decode)" : "");
530 pci_bus_remove_resources(child
);
531 for (i
= 0; i
< PCI_BRIDGE_RESOURCE_NUM
; i
++)
532 child
->resource
[i
] = &dev
->resource
[PCI_BRIDGE_RESOURCES
+i
];
534 pci_read_bridge_io(child
);
535 pci_read_bridge_mmio(child
);
536 pci_read_bridge_mmio_pref(child
);
538 if (dev
->transparent
) {
539 pci_bus_for_each_resource(child
->parent
, res
, i
) {
540 if (res
&& res
->flags
) {
541 pci_bus_add_resource(child
, res
,
542 PCI_SUBTRACTIVE_DECODE
);
543 pci_printk(KERN_DEBUG
, dev
,
544 " bridge window %pR (subtractive decode)\n",
551 static struct pci_bus
*pci_alloc_bus(struct pci_bus
*parent
)
555 b
= kzalloc(sizeof(*b
), GFP_KERNEL
);
559 INIT_LIST_HEAD(&b
->node
);
560 INIT_LIST_HEAD(&b
->children
);
561 INIT_LIST_HEAD(&b
->devices
);
562 INIT_LIST_HEAD(&b
->slots
);
563 INIT_LIST_HEAD(&b
->resources
);
564 b
->max_bus_speed
= PCI_SPEED_UNKNOWN
;
565 b
->cur_bus_speed
= PCI_SPEED_UNKNOWN
;
566 #ifdef CONFIG_PCI_DOMAINS_GENERIC
568 b
->domain_nr
= parent
->domain_nr
;
573 static void devm_pci_release_host_bridge_dev(struct device
*dev
)
575 struct pci_host_bridge
*bridge
= to_pci_host_bridge(dev
);
577 if (bridge
->release_fn
)
578 bridge
->release_fn(bridge
);
580 pci_free_resource_list(&bridge
->windows
);
583 static void pci_release_host_bridge_dev(struct device
*dev
)
585 devm_pci_release_host_bridge_dev(dev
);
586 kfree(to_pci_host_bridge(dev
));
589 struct pci_host_bridge
*pci_alloc_host_bridge(size_t priv
)
591 struct pci_host_bridge
*bridge
;
593 bridge
= kzalloc(sizeof(*bridge
) + priv
, GFP_KERNEL
);
597 INIT_LIST_HEAD(&bridge
->windows
);
598 bridge
->dev
.release
= pci_release_host_bridge_dev
;
601 * We assume we can manage these PCIe features. Some systems may
602 * reserve these for use by the platform itself, e.g., an ACPI BIOS
603 * may implement its own AER handling and use _OSC to prevent the
604 * OS from interfering.
606 bridge
->native_aer
= 1;
607 bridge
->native_pcie_hotplug
= 1;
608 bridge
->native_shpc_hotplug
= 1;
609 bridge
->native_pme
= 1;
610 bridge
->native_ltr
= 1;
614 EXPORT_SYMBOL(pci_alloc_host_bridge
);
616 struct pci_host_bridge
*devm_pci_alloc_host_bridge(struct device
*dev
,
619 struct pci_host_bridge
*bridge
;
621 bridge
= devm_kzalloc(dev
, sizeof(*bridge
) + priv
, GFP_KERNEL
);
625 INIT_LIST_HEAD(&bridge
->windows
);
626 bridge
->dev
.release
= devm_pci_release_host_bridge_dev
;
630 EXPORT_SYMBOL(devm_pci_alloc_host_bridge
);
632 void pci_free_host_bridge(struct pci_host_bridge
*bridge
)
634 pci_free_resource_list(&bridge
->windows
);
638 EXPORT_SYMBOL(pci_free_host_bridge
);
640 static const unsigned char pcix_bus_speed
[] = {
641 PCI_SPEED_UNKNOWN
, /* 0 */
642 PCI_SPEED_66MHz_PCIX
, /* 1 */
643 PCI_SPEED_100MHz_PCIX
, /* 2 */
644 PCI_SPEED_133MHz_PCIX
, /* 3 */
645 PCI_SPEED_UNKNOWN
, /* 4 */
646 PCI_SPEED_66MHz_PCIX_ECC
, /* 5 */
647 PCI_SPEED_100MHz_PCIX_ECC
, /* 6 */
648 PCI_SPEED_133MHz_PCIX_ECC
, /* 7 */
649 PCI_SPEED_UNKNOWN
, /* 8 */
650 PCI_SPEED_66MHz_PCIX_266
, /* 9 */
651 PCI_SPEED_100MHz_PCIX_266
, /* A */
652 PCI_SPEED_133MHz_PCIX_266
, /* B */
653 PCI_SPEED_UNKNOWN
, /* C */
654 PCI_SPEED_66MHz_PCIX_533
, /* D */
655 PCI_SPEED_100MHz_PCIX_533
, /* E */
656 PCI_SPEED_133MHz_PCIX_533
/* F */
659 const unsigned char pcie_link_speed
[] = {
660 PCI_SPEED_UNKNOWN
, /* 0 */
661 PCIE_SPEED_2_5GT
, /* 1 */
662 PCIE_SPEED_5_0GT
, /* 2 */
663 PCIE_SPEED_8_0GT
, /* 3 */
664 PCIE_SPEED_16_0GT
, /* 4 */
665 PCI_SPEED_UNKNOWN
, /* 5 */
666 PCI_SPEED_UNKNOWN
, /* 6 */
667 PCI_SPEED_UNKNOWN
, /* 7 */
668 PCI_SPEED_UNKNOWN
, /* 8 */
669 PCI_SPEED_UNKNOWN
, /* 9 */
670 PCI_SPEED_UNKNOWN
, /* A */
671 PCI_SPEED_UNKNOWN
, /* B */
672 PCI_SPEED_UNKNOWN
, /* C */
673 PCI_SPEED_UNKNOWN
, /* D */
674 PCI_SPEED_UNKNOWN
, /* E */
675 PCI_SPEED_UNKNOWN
/* F */
678 void pcie_update_link_speed(struct pci_bus
*bus
, u16 linksta
)
680 bus
->cur_bus_speed
= pcie_link_speed
[linksta
& PCI_EXP_LNKSTA_CLS
];
682 EXPORT_SYMBOL_GPL(pcie_update_link_speed
);
684 static unsigned char agp_speeds
[] = {
692 static enum pci_bus_speed
agp_speed(int agp3
, int agpstat
)
698 else if (agpstat
& 2)
700 else if (agpstat
& 1)
712 return agp_speeds
[index
];
715 static void pci_set_bus_speed(struct pci_bus
*bus
)
717 struct pci_dev
*bridge
= bus
->self
;
720 pos
= pci_find_capability(bridge
, PCI_CAP_ID_AGP
);
722 pos
= pci_find_capability(bridge
, PCI_CAP_ID_AGP3
);
726 pci_read_config_dword(bridge
, pos
+ PCI_AGP_STATUS
, &agpstat
);
727 bus
->max_bus_speed
= agp_speed(agpstat
& 8, agpstat
& 7);
729 pci_read_config_dword(bridge
, pos
+ PCI_AGP_COMMAND
, &agpcmd
);
730 bus
->cur_bus_speed
= agp_speed(agpstat
& 8, agpcmd
& 7);
733 pos
= pci_find_capability(bridge
, PCI_CAP_ID_PCIX
);
736 enum pci_bus_speed max
;
738 pci_read_config_word(bridge
, pos
+ PCI_X_BRIDGE_SSTATUS
,
741 if (status
& PCI_X_SSTATUS_533MHZ
) {
742 max
= PCI_SPEED_133MHz_PCIX_533
;
743 } else if (status
& PCI_X_SSTATUS_266MHZ
) {
744 max
= PCI_SPEED_133MHz_PCIX_266
;
745 } else if (status
& PCI_X_SSTATUS_133MHZ
) {
746 if ((status
& PCI_X_SSTATUS_VERS
) == PCI_X_SSTATUS_V2
)
747 max
= PCI_SPEED_133MHz_PCIX_ECC
;
749 max
= PCI_SPEED_133MHz_PCIX
;
751 max
= PCI_SPEED_66MHz_PCIX
;
754 bus
->max_bus_speed
= max
;
755 bus
->cur_bus_speed
= pcix_bus_speed
[
756 (status
& PCI_X_SSTATUS_FREQ
) >> 6];
761 if (pci_is_pcie(bridge
)) {
765 pcie_capability_read_dword(bridge
, PCI_EXP_LNKCAP
, &linkcap
);
766 bus
->max_bus_speed
= pcie_link_speed
[linkcap
& PCI_EXP_LNKCAP_SLS
];
767 bridge
->link_active_reporting
= !!(linkcap
& PCI_EXP_LNKCAP_DLLLARC
);
769 pcie_capability_read_word(bridge
, PCI_EXP_LNKSTA
, &linksta
);
770 pcie_update_link_speed(bus
, linksta
);
774 static struct irq_domain
*pci_host_bridge_msi_domain(struct pci_bus
*bus
)
776 struct irq_domain
*d
;
779 * Any firmware interface that can resolve the msi_domain
780 * should be called from here.
782 d
= pci_host_bridge_of_msi_domain(bus
);
784 d
= pci_host_bridge_acpi_msi_domain(bus
);
786 #ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
788 * If no IRQ domain was found via the OF tree, try looking it up
789 * directly through the fwnode_handle.
792 struct fwnode_handle
*fwnode
= pci_root_bus_fwnode(bus
);
795 d
= irq_find_matching_fwnode(fwnode
,
803 static void pci_set_bus_msi_domain(struct pci_bus
*bus
)
805 struct irq_domain
*d
;
809 * The bus can be a root bus, a subordinate bus, or a virtual bus
810 * created by an SR-IOV device. Walk up to the first bridge device
811 * found or derive the domain from the host bridge.
813 for (b
= bus
, d
= NULL
; !d
&& !pci_is_root_bus(b
); b
= b
->parent
) {
815 d
= dev_get_msi_domain(&b
->self
->dev
);
819 d
= pci_host_bridge_msi_domain(b
);
821 dev_set_msi_domain(&bus
->dev
, d
);
824 static int pci_register_host_bridge(struct pci_host_bridge
*bridge
)
826 struct device
*parent
= bridge
->dev
.parent
;
827 struct resource_entry
*window
, *n
;
828 struct pci_bus
*bus
, *b
;
829 resource_size_t offset
;
830 LIST_HEAD(resources
);
831 struct resource
*res
;
836 bus
= pci_alloc_bus(NULL
);
842 /* Temporarily move resources off the list */
843 list_splice_init(&bridge
->windows
, &resources
);
844 bus
->sysdata
= bridge
->sysdata
;
845 bus
->msi
= bridge
->msi
;
846 bus
->ops
= bridge
->ops
;
847 bus
->number
= bus
->busn_res
.start
= bridge
->busnr
;
848 #ifdef CONFIG_PCI_DOMAINS_GENERIC
849 bus
->domain_nr
= pci_bus_find_domain_nr(bus
, parent
);
852 b
= pci_find_bus(pci_domain_nr(bus
), bridge
->busnr
);
854 /* Ignore it if we already got here via a different bridge */
855 dev_dbg(&b
->dev
, "bus already known\n");
860 dev_set_name(&bridge
->dev
, "pci%04x:%02x", pci_domain_nr(bus
),
863 err
= pcibios_root_bridge_prepare(bridge
);
867 err
= device_register(&bridge
->dev
);
869 put_device(&bridge
->dev
);
871 bus
->bridge
= get_device(&bridge
->dev
);
872 device_enable_async_suspend(bus
->bridge
);
873 pci_set_bus_of_node(bus
);
874 pci_set_bus_msi_domain(bus
);
877 set_dev_node(bus
->bridge
, pcibus_to_node(bus
));
879 bus
->dev
.class = &pcibus_class
;
880 bus
->dev
.parent
= bus
->bridge
;
882 dev_set_name(&bus
->dev
, "%04x:%02x", pci_domain_nr(bus
), bus
->number
);
883 name
= dev_name(&bus
->dev
);
885 err
= device_register(&bus
->dev
);
889 pcibios_add_bus(bus
);
891 /* Create legacy_io and legacy_mem files for this bus */
892 pci_create_legacy_files(bus
);
895 dev_info(parent
, "PCI host bridge to bus %s\n", name
);
897 pr_info("PCI host bridge to bus %s\n", name
);
899 /* Add initial resources to the bus */
900 resource_list_for_each_entry_safe(window
, n
, &resources
) {
901 list_move_tail(&window
->node
, &bridge
->windows
);
902 offset
= window
->offset
;
905 if (res
->flags
& IORESOURCE_BUS
)
906 pci_bus_insert_busn_res(bus
, bus
->number
, res
->end
);
908 pci_bus_add_resource(bus
, res
, 0);
911 if (resource_type(res
) == IORESOURCE_IO
)
912 fmt
= " (bus address [%#06llx-%#06llx])";
914 fmt
= " (bus address [%#010llx-%#010llx])";
916 snprintf(addr
, sizeof(addr
), fmt
,
917 (unsigned long long)(res
->start
- offset
),
918 (unsigned long long)(res
->end
- offset
));
922 dev_info(&bus
->dev
, "root bus resource %pR%s\n", res
, addr
);
925 down_write(&pci_bus_sem
);
926 list_add_tail(&bus
->node
, &pci_root_buses
);
927 up_write(&pci_bus_sem
);
932 put_device(&bridge
->dev
);
933 device_unregister(&bridge
->dev
);
940 static bool pci_bridge_child_ext_cfg_accessible(struct pci_dev
*bridge
)
946 * If extended config space isn't accessible on a bridge's primary
947 * bus, we certainly can't access it on the secondary bus.
949 if (bridge
->bus
->bus_flags
& PCI_BUS_FLAGS_NO_EXTCFG
)
953 * PCIe Root Ports and switch ports are PCIe on both sides, so if
954 * extended config space is accessible on the primary, it's also
955 * accessible on the secondary.
957 if (pci_is_pcie(bridge
) &&
958 (pci_pcie_type(bridge
) == PCI_EXP_TYPE_ROOT_PORT
||
959 pci_pcie_type(bridge
) == PCI_EXP_TYPE_UPSTREAM
||
960 pci_pcie_type(bridge
) == PCI_EXP_TYPE_DOWNSTREAM
))
964 * For the other bridge types:
965 * - PCI-to-PCI bridges
966 * - PCIe-to-PCI/PCI-X forward bridges
967 * - PCI/PCI-X-to-PCIe reverse bridges
968 * extended config space on the secondary side is only accessible
969 * if the bridge supports PCI-X Mode 2.
971 pos
= pci_find_capability(bridge
, PCI_CAP_ID_PCIX
);
975 pci_read_config_dword(bridge
, pos
+ PCI_X_STATUS
, &status
);
976 return status
& (PCI_X_STATUS_266MHZ
| PCI_X_STATUS_533MHZ
);
979 static struct pci_bus
*pci_alloc_child_bus(struct pci_bus
*parent
,
980 struct pci_dev
*bridge
, int busnr
)
982 struct pci_bus
*child
;
986 /* Allocate a new bus and inherit stuff from the parent */
987 child
= pci_alloc_bus(parent
);
991 child
->parent
= parent
;
992 child
->ops
= parent
->ops
;
993 child
->msi
= parent
->msi
;
994 child
->sysdata
= parent
->sysdata
;
995 child
->bus_flags
= parent
->bus_flags
;
998 * Initialize some portions of the bus device, but don't register
999 * it now as the parent is not properly set up yet.
1001 child
->dev
.class = &pcibus_class
;
1002 dev_set_name(&child
->dev
, "%04x:%02x", pci_domain_nr(child
), busnr
);
1004 /* Set up the primary, secondary and subordinate bus numbers */
1005 child
->number
= child
->busn_res
.start
= busnr
;
1006 child
->primary
= parent
->busn_res
.start
;
1007 child
->busn_res
.end
= 0xff;
1010 child
->dev
.parent
= parent
->bridge
;
1014 child
->self
= bridge
;
1015 child
->bridge
= get_device(&bridge
->dev
);
1016 child
->dev
.parent
= child
->bridge
;
1017 pci_set_bus_of_node(child
);
1018 pci_set_bus_speed(child
);
1021 * Check whether extended config space is accessible on the child
1022 * bus. Note that we currently assume it is always accessible on
1025 if (!pci_bridge_child_ext_cfg_accessible(bridge
)) {
1026 child
->bus_flags
|= PCI_BUS_FLAGS_NO_EXTCFG
;
1027 pci_info(child
, "extended config space not accessible\n");
1030 /* Set up default resource pointers and names */
1031 for (i
= 0; i
< PCI_BRIDGE_RESOURCE_NUM
; i
++) {
1032 child
->resource
[i
] = &bridge
->resource
[PCI_BRIDGE_RESOURCES
+i
];
1033 child
->resource
[i
]->name
= child
->name
;
1035 bridge
->subordinate
= child
;
1038 pci_set_bus_msi_domain(child
);
1039 ret
= device_register(&child
->dev
);
1042 pcibios_add_bus(child
);
1044 if (child
->ops
->add_bus
) {
1045 ret
= child
->ops
->add_bus(child
);
1046 if (WARN_ON(ret
< 0))
1047 dev_err(&child
->dev
, "failed to add bus: %d\n", ret
);
1050 /* Create legacy_io and legacy_mem files for this bus */
1051 pci_create_legacy_files(child
);
1056 struct pci_bus
*pci_add_new_bus(struct pci_bus
*parent
, struct pci_dev
*dev
,
1059 struct pci_bus
*child
;
1061 child
= pci_alloc_child_bus(parent
, dev
, busnr
);
1063 down_write(&pci_bus_sem
);
1064 list_add_tail(&child
->node
, &parent
->children
);
1065 up_write(&pci_bus_sem
);
1069 EXPORT_SYMBOL(pci_add_new_bus
);
1071 static void pci_enable_crs(struct pci_dev
*pdev
)
1075 /* Enable CRS Software Visibility if supported */
1076 pcie_capability_read_word(pdev
, PCI_EXP_RTCAP
, &root_cap
);
1077 if (root_cap
& PCI_EXP_RTCAP_CRSVIS
)
1078 pcie_capability_set_word(pdev
, PCI_EXP_RTCTL
,
1079 PCI_EXP_RTCTL_CRSSVE
);
1082 static unsigned int pci_scan_child_bus_extend(struct pci_bus
*bus
,
1083 unsigned int available_buses
);
1086 * pci_scan_bridge_extend() - Scan buses behind a bridge
1087 * @bus: Parent bus the bridge is on
1088 * @dev: Bridge itself
1089 * @max: Starting subordinate number of buses behind this bridge
1090 * @available_buses: Total number of buses available for this bridge and
1091 * the devices below. After the minimal bus space has
1092 * been allocated the remaining buses will be
1093 * distributed equally between hotplug-capable bridges.
1094 * @pass: Either %0 (scan already configured bridges) or %1 (scan bridges
1095 * that need to be reconfigured.
1097 * If it's a bridge, configure it and scan the bus behind it.
1098 * For CardBus bridges, we don't scan behind as the devices will
1099 * be handled by the bridge driver itself.
1101 * We need to process bridges in two passes -- first we scan those
1102 * already configured by the BIOS and after we are done with all of
1103 * them, we proceed to assigning numbers to the remaining buses in
1104 * order to avoid overlaps between old and new bus numbers.
1106 * Return: New subordinate number covering all buses behind this bridge.
1108 static int pci_scan_bridge_extend(struct pci_bus
*bus
, struct pci_dev
*dev
,
1109 int max
, unsigned int available_buses
,
1112 struct pci_bus
*child
;
1113 int is_cardbus
= (dev
->hdr_type
== PCI_HEADER_TYPE_CARDBUS
);
1114 u32 buses
, i
, j
= 0;
1116 u8 primary
, secondary
, subordinate
;
1120 * Make sure the bridge is powered on to be able to access config
1121 * space of devices below it.
1123 pm_runtime_get_sync(&dev
->dev
);
1125 pci_read_config_dword(dev
, PCI_PRIMARY_BUS
, &buses
);
1126 primary
= buses
& 0xFF;
1127 secondary
= (buses
>> 8) & 0xFF;
1128 subordinate
= (buses
>> 16) & 0xFF;
1130 pci_dbg(dev
, "scanning [bus %02x-%02x] behind bridge, pass %d\n",
1131 secondary
, subordinate
, pass
);
1133 if (!primary
&& (primary
!= bus
->number
) && secondary
&& subordinate
) {
1134 pci_warn(dev
, "Primary bus is hard wired to 0\n");
1135 primary
= bus
->number
;
1138 /* Check if setup is sensible at all */
1140 (primary
!= bus
->number
|| secondary
<= bus
->number
||
1141 secondary
> subordinate
)) {
1142 pci_info(dev
, "bridge configuration invalid ([bus %02x-%02x]), reconfiguring\n",
1143 secondary
, subordinate
);
1148 * Disable Master-Abort Mode during probing to avoid reporting of
1149 * bus errors in some architectures.
1151 pci_read_config_word(dev
, PCI_BRIDGE_CONTROL
, &bctl
);
1152 pci_write_config_word(dev
, PCI_BRIDGE_CONTROL
,
1153 bctl
& ~PCI_BRIDGE_CTL_MASTER_ABORT
);
1155 pci_enable_crs(dev
);
1157 if ((secondary
|| subordinate
) && !pcibios_assign_all_busses() &&
1158 !is_cardbus
&& !broken
) {
1162 * Bus already configured by firmware, process it in the
1163 * first pass and just note the configuration.
1169 * The bus might already exist for two reasons: Either we
1170 * are rescanning the bus or the bus is reachable through
1171 * more than one bridge. The second case can happen with
1172 * the i450NX chipset.
1174 child
= pci_find_bus(pci_domain_nr(bus
), secondary
);
1176 child
= pci_add_new_bus(bus
, dev
, secondary
);
1179 child
->primary
= primary
;
1180 pci_bus_insert_busn_res(child
, secondary
, subordinate
);
1181 child
->bridge_ctl
= bctl
;
1184 cmax
= pci_scan_child_bus(child
);
1185 if (cmax
> subordinate
)
1186 pci_warn(dev
, "bridge has subordinate %02x but max busn %02x\n",
1189 /* Subordinate should equal child->busn_res.end */
1190 if (subordinate
> max
)
1195 * We need to assign a number to this bus which we always
1196 * do in the second pass.
1199 if (pcibios_assign_all_busses() || broken
|| is_cardbus
)
1202 * Temporarily disable forwarding of the
1203 * configuration cycles on all bridges in
1204 * this bus segment to avoid possible
1205 * conflicts in the second pass between two
1206 * bridges programmed with overlapping bus
1209 pci_write_config_dword(dev
, PCI_PRIMARY_BUS
,
1215 pci_write_config_word(dev
, PCI_STATUS
, 0xffff);
1218 * Prevent assigning a bus number that already exists.
1219 * This can happen when a bridge is hot-plugged, so in this
1220 * case we only re-scan this bus.
1222 child
= pci_find_bus(pci_domain_nr(bus
), max
+1);
1224 child
= pci_add_new_bus(bus
, dev
, max
+1);
1227 pci_bus_insert_busn_res(child
, max
+1,
1231 if (available_buses
)
1234 buses
= (buses
& 0xff000000)
1235 | ((unsigned int)(child
->primary
) << 0)
1236 | ((unsigned int)(child
->busn_res
.start
) << 8)
1237 | ((unsigned int)(child
->busn_res
.end
) << 16);
1240 * yenta.c forces a secondary latency timer of 176.
1241 * Copy that behaviour here.
1244 buses
&= ~0xff000000;
1245 buses
|= CARDBUS_LATENCY_TIMER
<< 24;
1248 /* We need to blast all three values with a single write */
1249 pci_write_config_dword(dev
, PCI_PRIMARY_BUS
, buses
);
1252 child
->bridge_ctl
= bctl
;
1253 max
= pci_scan_child_bus_extend(child
, available_buses
);
1257 * For CardBus bridges, we leave 4 bus numbers as
1258 * cards with a PCI-to-PCI bridge can be inserted
1261 for (i
= 0; i
< CARDBUS_RESERVE_BUSNR
; i
++) {
1262 struct pci_bus
*parent
= bus
;
1263 if (pci_find_bus(pci_domain_nr(bus
),
1266 while (parent
->parent
) {
1267 if ((!pcibios_assign_all_busses()) &&
1268 (parent
->busn_res
.end
> max
) &&
1269 (parent
->busn_res
.end
<= max
+i
)) {
1272 parent
= parent
->parent
;
1277 * Often, there are two CardBus
1278 * bridges -- try to leave one
1279 * valid bus number for each one.
1288 /* Set subordinate bus number to its real value */
1289 pci_bus_update_busn_res_end(child
, max
);
1290 pci_write_config_byte(dev
, PCI_SUBORDINATE_BUS
, max
);
1293 sprintf(child
->name
,
1294 (is_cardbus
? "PCI CardBus %04x:%02x" : "PCI Bus %04x:%02x"),
1295 pci_domain_nr(bus
), child
->number
);
1297 /* Check that all devices are accessible */
1298 while (bus
->parent
) {
1299 if ((child
->busn_res
.end
> bus
->busn_res
.end
) ||
1300 (child
->number
> bus
->busn_res
.end
) ||
1301 (child
->number
< bus
->number
) ||
1302 (child
->busn_res
.end
< bus
->number
)) {
1303 dev_info(&dev
->dev
, "devices behind bridge are unusable because %pR cannot be assigned for them\n",
1311 pci_write_config_word(dev
, PCI_BRIDGE_CONTROL
, bctl
);
1313 pm_runtime_put(&dev
->dev
);
1319 * pci_scan_bridge() - Scan buses behind a bridge
1320 * @bus: Parent bus the bridge is on
1321 * @dev: Bridge itself
1322 * @max: Starting subordinate number of buses behind this bridge
1323 * @pass: Either %0 (scan already configured bridges) or %1 (scan bridges
1324 * that need to be reconfigured.
1326 * If it's a bridge, configure it and scan the bus behind it.
1327 * For CardBus bridges, we don't scan behind as the devices will
1328 * be handled by the bridge driver itself.
1330 * We need to process bridges in two passes -- first we scan those
1331 * already configured by the BIOS and after we are done with all of
1332 * them, we proceed to assigning numbers to the remaining buses in
1333 * order to avoid overlaps between old and new bus numbers.
1335 * Return: New subordinate number covering all buses behind this bridge.
1337 int pci_scan_bridge(struct pci_bus
*bus
, struct pci_dev
*dev
, int max
, int pass
)
1339 return pci_scan_bridge_extend(bus
, dev
, max
, 0, pass
);
1341 EXPORT_SYMBOL(pci_scan_bridge
);
1344 * Read interrupt line and base address registers.
1345 * The architecture-dependent code can tweak these, of course.
1347 static void pci_read_irq(struct pci_dev
*dev
)
1351 /* VFs are not allowed to use INTx, so skip the config reads */
1352 if (dev
->is_virtfn
) {
1358 pci_read_config_byte(dev
, PCI_INTERRUPT_PIN
, &irq
);
1361 pci_read_config_byte(dev
, PCI_INTERRUPT_LINE
, &irq
);
1365 void set_pcie_port_type(struct pci_dev
*pdev
)
1370 struct pci_dev
*parent
;
1372 pos
= pci_find_capability(pdev
, PCI_CAP_ID_EXP
);
1376 pdev
->pcie_cap
= pos
;
1377 pci_read_config_word(pdev
, pos
+ PCI_EXP_FLAGS
, ®16
);
1378 pdev
->pcie_flags_reg
= reg16
;
1379 pci_read_config_word(pdev
, pos
+ PCI_EXP_DEVCAP
, ®16
);
1380 pdev
->pcie_mpss
= reg16
& PCI_EXP_DEVCAP_PAYLOAD
;
1383 * A Root Port or a PCI-to-PCIe bridge is always the upstream end
1384 * of a Link. No PCIe component has two Links. Two Links are
1385 * connected by a Switch that has a Port on each Link and internal
1386 * logic to connect the two Ports.
1388 type
= pci_pcie_type(pdev
);
1389 if (type
== PCI_EXP_TYPE_ROOT_PORT
||
1390 type
== PCI_EXP_TYPE_PCIE_BRIDGE
)
1391 pdev
->has_secondary_link
= 1;
1392 else if (type
== PCI_EXP_TYPE_UPSTREAM
||
1393 type
== PCI_EXP_TYPE_DOWNSTREAM
) {
1394 parent
= pci_upstream_bridge(pdev
);
1397 * Usually there's an upstream device (Root Port or Switch
1398 * Downstream Port), but we can't assume one exists.
1400 if (parent
&& !parent
->has_secondary_link
)
1401 pdev
->has_secondary_link
= 1;
1405 void set_pcie_hotplug_bridge(struct pci_dev
*pdev
)
1409 pcie_capability_read_dword(pdev
, PCI_EXP_SLTCAP
, ®32
);
1410 if (reg32
& PCI_EXP_SLTCAP_HPC
)
1411 pdev
->is_hotplug_bridge
= 1;
1414 static void set_pcie_thunderbolt(struct pci_dev
*dev
)
1419 while ((vsec
= pci_find_next_ext_capability(dev
, vsec
,
1420 PCI_EXT_CAP_ID_VNDR
))) {
1421 pci_read_config_dword(dev
, vsec
+ PCI_VNDR_HEADER
, &header
);
1423 /* Is the device part of a Thunderbolt controller? */
1424 if (dev
->vendor
== PCI_VENDOR_ID_INTEL
&&
1425 PCI_VNDR_HEADER_ID(header
) == PCI_VSEC_ID_INTEL_TBT
) {
1426 dev
->is_thunderbolt
= 1;
1432 static void set_pcie_untrusted(struct pci_dev
*dev
)
1434 struct pci_dev
*parent
;
1437 * If the upstream bridge is untrusted we treat this device
1438 * untrusted as well.
1440 parent
= pci_upstream_bridge(dev
);
1441 if (parent
&& parent
->untrusted
)
1442 dev
->untrusted
= true;
1446 * pci_ext_cfg_is_aliased - Is ext config space just an alias of std config?
1449 * PCI Express to PCI/PCI-X Bridge Specification, rev 1.0, 4.1.4 says that
1450 * when forwarding a type1 configuration request the bridge must check that
1451 * the extended register address field is zero. The bridge is not permitted
1452 * to forward the transactions and must handle it as an Unsupported Request.
1453 * Some bridges do not follow this rule and simply drop the extended register
1454 * bits, resulting in the standard config space being aliased, every 256
1455 * bytes across the entire configuration space. Test for this condition by
1456 * comparing the first dword of each potential alias to the vendor/device ID.
1458 * ASM1083/1085 PCIe-to-PCI Reversible Bridge (1b21:1080, rev 01 & 03)
1459 * AMD/ATI SBx00 PCI to PCI Bridge (1002:4384, rev 40)
1461 static bool pci_ext_cfg_is_aliased(struct pci_dev
*dev
)
1463 #ifdef CONFIG_PCI_QUIRKS
1467 pci_read_config_dword(dev
, PCI_VENDOR_ID
, &header
);
1469 for (pos
= PCI_CFG_SPACE_SIZE
;
1470 pos
< PCI_CFG_SPACE_EXP_SIZE
; pos
+= PCI_CFG_SPACE_SIZE
) {
1471 if (pci_read_config_dword(dev
, pos
, &tmp
) != PCIBIOS_SUCCESSFUL
1483 * pci_cfg_space_size - Get the configuration space size of the PCI device
1486 * Regular PCI devices have 256 bytes, but PCI-X 2 and PCI Express devices
1487 * have 4096 bytes. Even if the device is capable, that doesn't mean we can
1488 * access it. Maybe we don't have a way to generate extended config space
1489 * accesses, or the device is behind a reverse Express bridge. So we try
1490 * reading the dword at 0x100 which must either be 0 or a valid extended
1491 * capability header.
1493 static int pci_cfg_space_size_ext(struct pci_dev
*dev
)
1496 int pos
= PCI_CFG_SPACE_SIZE
;
1498 if (pci_read_config_dword(dev
, pos
, &status
) != PCIBIOS_SUCCESSFUL
)
1499 return PCI_CFG_SPACE_SIZE
;
1500 if (status
== 0xffffffff || pci_ext_cfg_is_aliased(dev
))
1501 return PCI_CFG_SPACE_SIZE
;
1503 return PCI_CFG_SPACE_EXP_SIZE
;
1506 #ifdef CONFIG_PCI_IOV
1507 static bool is_vf0(struct pci_dev
*dev
)
1509 if (pci_iov_virtfn_devfn(dev
->physfn
, 0) == dev
->devfn
&&
1510 pci_iov_virtfn_bus(dev
->physfn
, 0) == dev
->bus
->number
)
1517 int pci_cfg_space_size(struct pci_dev
*dev
)
1523 #ifdef CONFIG_PCI_IOV
1524 /* Read cached value for all VFs except for VF0 */
1525 if (dev
->is_virtfn
&& !is_vf0(dev
))
1526 return dev
->physfn
->sriov
->cfg_size
;
1529 if (dev
->bus
->bus_flags
& PCI_BUS_FLAGS_NO_EXTCFG
)
1530 return PCI_CFG_SPACE_SIZE
;
1532 class = dev
->class >> 8;
1533 if (class == PCI_CLASS_BRIDGE_HOST
)
1534 return pci_cfg_space_size_ext(dev
);
1536 if (pci_is_pcie(dev
))
1537 return pci_cfg_space_size_ext(dev
);
1539 pos
= pci_find_capability(dev
, PCI_CAP_ID_PCIX
);
1541 return PCI_CFG_SPACE_SIZE
;
1543 pci_read_config_dword(dev
, pos
+ PCI_X_STATUS
, &status
);
1544 if (status
& (PCI_X_STATUS_266MHZ
| PCI_X_STATUS_533MHZ
))
1545 return pci_cfg_space_size_ext(dev
);
1547 return PCI_CFG_SPACE_SIZE
;
1550 static u32
pci_class(struct pci_dev
*dev
)
1554 #ifdef CONFIG_PCI_IOV
1556 return dev
->physfn
->sriov
->class;
1558 pci_read_config_dword(dev
, PCI_CLASS_REVISION
, &class);
1562 static void pci_subsystem_ids(struct pci_dev
*dev
, u16
*vendor
, u16
*device
)
1564 #ifdef CONFIG_PCI_IOV
1565 if (dev
->is_virtfn
) {
1566 *vendor
= dev
->physfn
->sriov
->subsystem_vendor
;
1567 *device
= dev
->physfn
->sriov
->subsystem_device
;
1571 pci_read_config_word(dev
, PCI_SUBSYSTEM_VENDOR_ID
, vendor
);
1572 pci_read_config_word(dev
, PCI_SUBSYSTEM_ID
, device
);
1575 static u8
pci_hdr_type(struct pci_dev
*dev
)
1579 #ifdef CONFIG_PCI_IOV
1581 return dev
->physfn
->sriov
->hdr_type
;
1583 pci_read_config_byte(dev
, PCI_HEADER_TYPE
, &hdr_type
);
1587 #define LEGACY_IO_RESOURCE (IORESOURCE_IO | IORESOURCE_PCI_FIXED)
1589 static void pci_msi_setup_pci_dev(struct pci_dev
*dev
)
1592 * Disable the MSI hardware to avoid screaming interrupts
1593 * during boot. This is the power on reset default so
1594 * usually this should be a noop.
1596 dev
->msi_cap
= pci_find_capability(dev
, PCI_CAP_ID_MSI
);
1598 pci_msi_set_enable(dev
, 0);
1600 dev
->msix_cap
= pci_find_capability(dev
, PCI_CAP_ID_MSIX
);
1602 pci_msix_clear_and_set_ctrl(dev
, PCI_MSIX_FLAGS_ENABLE
, 0);
1606 * pci_intx_mask_broken - Test PCI_COMMAND_INTX_DISABLE writability
1609 * Test whether PCI_COMMAND_INTX_DISABLE is writable for @dev. Check this
1610 * at enumeration-time to avoid modifying PCI_COMMAND at run-time.
1612 static int pci_intx_mask_broken(struct pci_dev
*dev
)
1614 u16 orig
, toggle
, new;
1616 pci_read_config_word(dev
, PCI_COMMAND
, &orig
);
1617 toggle
= orig
^ PCI_COMMAND_INTX_DISABLE
;
1618 pci_write_config_word(dev
, PCI_COMMAND
, toggle
);
1619 pci_read_config_word(dev
, PCI_COMMAND
, &new);
1621 pci_write_config_word(dev
, PCI_COMMAND
, orig
);
1624 * PCI_COMMAND_INTX_DISABLE was reserved and read-only prior to PCI
1625 * r2.3, so strictly speaking, a device is not *broken* if it's not
1626 * writable. But we'll live with the misnomer for now.
1633 static void early_dump_pci_device(struct pci_dev
*pdev
)
1638 pci_info(pdev
, "config space:\n");
1640 for (i
= 0; i
< 256; i
+= 4)
1641 pci_read_config_dword(pdev
, i
, &value
[i
/ 4]);
1643 print_hex_dump(KERN_INFO
, "", DUMP_PREFIX_OFFSET
, 16, 1,
1648 * pci_setup_device - Fill in class and map information of a device
1649 * @dev: the device structure to fill
1651 * Initialize the device structure with information about the device's
1652 * vendor,class,memory and IO-space addresses, IRQ lines etc.
1653 * Called at initialisation of the PCI subsystem and by CardBus services.
1654 * Returns 0 on success and negative if unknown type of device (not normal,
1655 * bridge or CardBus).
1657 int pci_setup_device(struct pci_dev
*dev
)
1663 struct pci_bus_region region
;
1664 struct resource
*res
;
1666 hdr_type
= pci_hdr_type(dev
);
1668 dev
->sysdata
= dev
->bus
->sysdata
;
1669 dev
->dev
.parent
= dev
->bus
->bridge
;
1670 dev
->dev
.bus
= &pci_bus_type
;
1671 dev
->hdr_type
= hdr_type
& 0x7f;
1672 dev
->multifunction
= !!(hdr_type
& 0x80);
1673 dev
->error_state
= pci_channel_io_normal
;
1674 set_pcie_port_type(dev
);
1676 pci_dev_assign_slot(dev
);
1679 * Assume 32-bit PCI; let 64-bit PCI cards (which are far rarer)
1680 * set this higher, assuming the system even supports it.
1682 dev
->dma_mask
= 0xffffffff;
1684 dev_set_name(&dev
->dev
, "%04x:%02x:%02x.%d", pci_domain_nr(dev
->bus
),
1685 dev
->bus
->number
, PCI_SLOT(dev
->devfn
),
1686 PCI_FUNC(dev
->devfn
));
1688 class = pci_class(dev
);
1690 dev
->revision
= class & 0xff;
1691 dev
->class = class >> 8; /* upper 3 bytes */
1693 pci_printk(KERN_DEBUG
, dev
, "[%04x:%04x] type %02x class %#08x\n",
1694 dev
->vendor
, dev
->device
, dev
->hdr_type
, dev
->class);
1697 early_dump_pci_device(dev
);
1699 /* Need to have dev->class ready */
1700 dev
->cfg_size
= pci_cfg_space_size(dev
);
1702 /* Need to have dev->cfg_size ready */
1703 set_pcie_thunderbolt(dev
);
1705 set_pcie_untrusted(dev
);
1707 /* "Unknown power state" */
1708 dev
->current_state
= PCI_UNKNOWN
;
1710 /* Early fixups, before probing the BARs */
1711 pci_fixup_device(pci_fixup_early
, dev
);
1713 /* Device class may be changed after fixup */
1714 class = dev
->class >> 8;
1716 if (dev
->non_compliant_bars
) {
1717 pci_read_config_word(dev
, PCI_COMMAND
, &cmd
);
1718 if (cmd
& (PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
)) {
1719 pci_info(dev
, "device has non-compliant BARs; disabling IO/MEM decoding\n");
1720 cmd
&= ~PCI_COMMAND_IO
;
1721 cmd
&= ~PCI_COMMAND_MEMORY
;
1722 pci_write_config_word(dev
, PCI_COMMAND
, cmd
);
1726 dev
->broken_intx_masking
= pci_intx_mask_broken(dev
);
1728 switch (dev
->hdr_type
) { /* header type */
1729 case PCI_HEADER_TYPE_NORMAL
: /* standard header */
1730 if (class == PCI_CLASS_BRIDGE_PCI
)
1733 pci_read_bases(dev
, 6, PCI_ROM_ADDRESS
);
1735 pci_subsystem_ids(dev
, &dev
->subsystem_vendor
, &dev
->subsystem_device
);
1738 * Do the ugly legacy mode stuff here rather than broken chip
1739 * quirk code. Legacy mode ATA controllers have fixed
1740 * addresses. These are not always echoed in BAR0-3, and
1741 * BAR0-3 in a few cases contain junk!
1743 if (class == PCI_CLASS_STORAGE_IDE
) {
1745 pci_read_config_byte(dev
, PCI_CLASS_PROG
, &progif
);
1746 if ((progif
& 1) == 0) {
1747 region
.start
= 0x1F0;
1749 res
= &dev
->resource
[0];
1750 res
->flags
= LEGACY_IO_RESOURCE
;
1751 pcibios_bus_to_resource(dev
->bus
, res
, ®ion
);
1752 pci_info(dev
, "legacy IDE quirk: reg 0x10: %pR\n",
1754 region
.start
= 0x3F6;
1756 res
= &dev
->resource
[1];
1757 res
->flags
= LEGACY_IO_RESOURCE
;
1758 pcibios_bus_to_resource(dev
->bus
, res
, ®ion
);
1759 pci_info(dev
, "legacy IDE quirk: reg 0x14: %pR\n",
1762 if ((progif
& 4) == 0) {
1763 region
.start
= 0x170;
1765 res
= &dev
->resource
[2];
1766 res
->flags
= LEGACY_IO_RESOURCE
;
1767 pcibios_bus_to_resource(dev
->bus
, res
, ®ion
);
1768 pci_info(dev
, "legacy IDE quirk: reg 0x18: %pR\n",
1770 region
.start
= 0x376;
1772 res
= &dev
->resource
[3];
1773 res
->flags
= LEGACY_IO_RESOURCE
;
1774 pcibios_bus_to_resource(dev
->bus
, res
, ®ion
);
1775 pci_info(dev
, "legacy IDE quirk: reg 0x1c: %pR\n",
1781 case PCI_HEADER_TYPE_BRIDGE
: /* bridge header */
1783 * The PCI-to-PCI bridge spec requires that subtractive
1784 * decoding (i.e. transparent) bridge must have programming
1785 * interface code of 0x01.
1788 dev
->transparent
= ((dev
->class & 0xff) == 1);
1789 pci_read_bases(dev
, 2, PCI_ROM_ADDRESS1
);
1790 pci_read_bridge_windows(dev
);
1791 set_pcie_hotplug_bridge(dev
);
1792 pos
= pci_find_capability(dev
, PCI_CAP_ID_SSVID
);
1794 pci_read_config_word(dev
, pos
+ PCI_SSVID_VENDOR_ID
, &dev
->subsystem_vendor
);
1795 pci_read_config_word(dev
, pos
+ PCI_SSVID_DEVICE_ID
, &dev
->subsystem_device
);
1799 case PCI_HEADER_TYPE_CARDBUS
: /* CardBus bridge header */
1800 if (class != PCI_CLASS_BRIDGE_CARDBUS
)
1803 pci_read_bases(dev
, 1, 0);
1804 pci_read_config_word(dev
, PCI_CB_SUBSYSTEM_VENDOR_ID
, &dev
->subsystem_vendor
);
1805 pci_read_config_word(dev
, PCI_CB_SUBSYSTEM_ID
, &dev
->subsystem_device
);
1808 default: /* unknown header */
1809 pci_err(dev
, "unknown header type %02x, ignoring device\n",
1814 pci_err(dev
, "ignoring class %#08x (doesn't match header type %02x)\n",
1815 dev
->class, dev
->hdr_type
);
1816 dev
->class = PCI_CLASS_NOT_DEFINED
<< 8;
1819 /* We found a fine healthy device, go go go... */
1823 static void pci_configure_mps(struct pci_dev
*dev
)
1825 struct pci_dev
*bridge
= pci_upstream_bridge(dev
);
1826 int mps
, mpss
, p_mps
, rc
;
1828 if (!pci_is_pcie(dev
) || !bridge
|| !pci_is_pcie(bridge
))
1831 /* MPS and MRRS fields are of type 'RsvdP' for VFs, short-circuit out */
1835 mps
= pcie_get_mps(dev
);
1836 p_mps
= pcie_get_mps(bridge
);
1841 if (pcie_bus_config
== PCIE_BUS_TUNE_OFF
) {
1842 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",
1843 mps
, pci_name(bridge
), p_mps
);
1848 * Fancier MPS configuration is done later by
1849 * pcie_bus_configure_settings()
1851 if (pcie_bus_config
!= PCIE_BUS_DEFAULT
)
1854 mpss
= 128 << dev
->pcie_mpss
;
1855 if (mpss
< p_mps
&& pci_pcie_type(bridge
) == PCI_EXP_TYPE_ROOT_PORT
) {
1856 pcie_set_mps(bridge
, mpss
);
1857 pci_info(dev
, "Upstream bridge's Max Payload Size set to %d (was %d, max %d)\n",
1858 mpss
, p_mps
, 128 << bridge
->pcie_mpss
);
1859 p_mps
= pcie_get_mps(bridge
);
1862 rc
= pcie_set_mps(dev
, p_mps
);
1864 pci_warn(dev
, "can't set Max Payload Size to %d; if necessary, use \"pci=pcie_bus_safe\" and report a bug\n",
1869 pci_info(dev
, "Max Payload Size set to %d (was %d, max %d)\n",
1873 static struct hpp_type0 pci_default_type0
= {
1875 .cache_line_size
= 8,
1876 .latency_timer
= 0x40,
1881 static void program_hpp_type0(struct pci_dev
*dev
, struct hpp_type0
*hpp
)
1883 u16 pci_cmd
, pci_bctl
;
1886 hpp
= &pci_default_type0
;
1888 if (hpp
->revision
> 1) {
1889 pci_warn(dev
, "PCI settings rev %d not supported; using defaults\n",
1891 hpp
= &pci_default_type0
;
1894 pci_write_config_byte(dev
, PCI_CACHE_LINE_SIZE
, hpp
->cache_line_size
);
1895 pci_write_config_byte(dev
, PCI_LATENCY_TIMER
, hpp
->latency_timer
);
1896 pci_read_config_word(dev
, PCI_COMMAND
, &pci_cmd
);
1897 if (hpp
->enable_serr
)
1898 pci_cmd
|= PCI_COMMAND_SERR
;
1899 if (hpp
->enable_perr
)
1900 pci_cmd
|= PCI_COMMAND_PARITY
;
1901 pci_write_config_word(dev
, PCI_COMMAND
, pci_cmd
);
1903 /* Program bridge control value */
1904 if ((dev
->class >> 8) == PCI_CLASS_BRIDGE_PCI
) {
1905 pci_write_config_byte(dev
, PCI_SEC_LATENCY_TIMER
,
1906 hpp
->latency_timer
);
1907 pci_read_config_word(dev
, PCI_BRIDGE_CONTROL
, &pci_bctl
);
1908 if (hpp
->enable_perr
)
1909 pci_bctl
|= PCI_BRIDGE_CTL_PARITY
;
1910 pci_write_config_word(dev
, PCI_BRIDGE_CONTROL
, pci_bctl
);
1914 static void program_hpp_type1(struct pci_dev
*dev
, struct hpp_type1
*hpp
)
1921 pos
= pci_find_capability(dev
, PCI_CAP_ID_PCIX
);
1925 pci_warn(dev
, "PCI-X settings not supported\n");
1928 static bool pcie_root_rcb_set(struct pci_dev
*dev
)
1930 struct pci_dev
*rp
= pcie_find_root_port(dev
);
1936 pcie_capability_read_word(rp
, PCI_EXP_LNKCTL
, &lnkctl
);
1937 if (lnkctl
& PCI_EXP_LNKCTL_RCB
)
1943 static void program_hpp_type2(struct pci_dev
*dev
, struct hpp_type2
*hpp
)
1951 if (!pci_is_pcie(dev
))
1954 if (hpp
->revision
> 1) {
1955 pci_warn(dev
, "PCIe settings rev %d not supported\n",
1961 * Don't allow _HPX to change MPS or MRRS settings. We manage
1962 * those to make sure they're consistent with the rest of the
1965 hpp
->pci_exp_devctl_and
|= PCI_EXP_DEVCTL_PAYLOAD
|
1966 PCI_EXP_DEVCTL_READRQ
;
1967 hpp
->pci_exp_devctl_or
&= ~(PCI_EXP_DEVCTL_PAYLOAD
|
1968 PCI_EXP_DEVCTL_READRQ
);
1970 /* Initialize Device Control Register */
1971 pcie_capability_clear_and_set_word(dev
, PCI_EXP_DEVCTL
,
1972 ~hpp
->pci_exp_devctl_and
, hpp
->pci_exp_devctl_or
);
1974 /* Initialize Link Control Register */
1975 if (pcie_cap_has_lnkctl(dev
)) {
1978 * If the Root Port supports Read Completion Boundary of
1979 * 128, set RCB to 128. Otherwise, clear it.
1981 hpp
->pci_exp_lnkctl_and
|= PCI_EXP_LNKCTL_RCB
;
1982 hpp
->pci_exp_lnkctl_or
&= ~PCI_EXP_LNKCTL_RCB
;
1983 if (pcie_root_rcb_set(dev
))
1984 hpp
->pci_exp_lnkctl_or
|= PCI_EXP_LNKCTL_RCB
;
1986 pcie_capability_clear_and_set_word(dev
, PCI_EXP_LNKCTL
,
1987 ~hpp
->pci_exp_lnkctl_and
, hpp
->pci_exp_lnkctl_or
);
1990 /* Find Advanced Error Reporting Enhanced Capability */
1991 pos
= pci_find_ext_capability(dev
, PCI_EXT_CAP_ID_ERR
);
1995 /* Initialize Uncorrectable Error Mask Register */
1996 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_MASK
, ®32
);
1997 reg32
= (reg32
& hpp
->unc_err_mask_and
) | hpp
->unc_err_mask_or
;
1998 pci_write_config_dword(dev
, pos
+ PCI_ERR_UNCOR_MASK
, reg32
);
2000 /* Initialize Uncorrectable Error Severity Register */
2001 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_SEVER
, ®32
);
2002 reg32
= (reg32
& hpp
->unc_err_sever_and
) | hpp
->unc_err_sever_or
;
2003 pci_write_config_dword(dev
, pos
+ PCI_ERR_UNCOR_SEVER
, reg32
);
2005 /* Initialize Correctable Error Mask Register */
2006 pci_read_config_dword(dev
, pos
+ PCI_ERR_COR_MASK
, ®32
);
2007 reg32
= (reg32
& hpp
->cor_err_mask_and
) | hpp
->cor_err_mask_or
;
2008 pci_write_config_dword(dev
, pos
+ PCI_ERR_COR_MASK
, reg32
);
2010 /* Initialize Advanced Error Capabilities and Control Register */
2011 pci_read_config_dword(dev
, pos
+ PCI_ERR_CAP
, ®32
);
2012 reg32
= (reg32
& hpp
->adv_err_cap_and
) | hpp
->adv_err_cap_or
;
2014 /* Don't enable ECRC generation or checking if unsupported */
2015 if (!(reg32
& PCI_ERR_CAP_ECRC_GENC
))
2016 reg32
&= ~PCI_ERR_CAP_ECRC_GENE
;
2017 if (!(reg32
& PCI_ERR_CAP_ECRC_CHKC
))
2018 reg32
&= ~PCI_ERR_CAP_ECRC_CHKE
;
2019 pci_write_config_dword(dev
, pos
+ PCI_ERR_CAP
, reg32
);
2022 * FIXME: The following two registers are not supported yet.
2024 * o Secondary Uncorrectable Error Severity Register
2025 * o Secondary Uncorrectable Error Mask Register
2029 int pci_configure_extended_tags(struct pci_dev
*dev
, void *ign
)
2031 struct pci_host_bridge
*host
;
2036 if (!pci_is_pcie(dev
))
2039 ret
= pcie_capability_read_dword(dev
, PCI_EXP_DEVCAP
, &cap
);
2043 if (!(cap
& PCI_EXP_DEVCAP_EXT_TAG
))
2046 ret
= pcie_capability_read_word(dev
, PCI_EXP_DEVCTL
, &ctl
);
2050 host
= pci_find_host_bridge(dev
->bus
);
2055 * If some device in the hierarchy doesn't handle Extended Tags
2056 * correctly, make sure they're disabled.
2058 if (host
->no_ext_tags
) {
2059 if (ctl
& PCI_EXP_DEVCTL_EXT_TAG
) {
2060 pci_info(dev
, "disabling Extended Tags\n");
2061 pcie_capability_clear_word(dev
, PCI_EXP_DEVCTL
,
2062 PCI_EXP_DEVCTL_EXT_TAG
);
2067 if (!(ctl
& PCI_EXP_DEVCTL_EXT_TAG
)) {
2068 pci_info(dev
, "enabling Extended Tags\n");
2069 pcie_capability_set_word(dev
, PCI_EXP_DEVCTL
,
2070 PCI_EXP_DEVCTL_EXT_TAG
);
2076 * pcie_relaxed_ordering_enabled - Probe for PCIe relaxed ordering enable
2077 * @dev: PCI device to query
2079 * Returns true if the device has enabled relaxed ordering attribute.
2081 bool pcie_relaxed_ordering_enabled(struct pci_dev
*dev
)
2085 pcie_capability_read_word(dev
, PCI_EXP_DEVCTL
, &v
);
2087 return !!(v
& PCI_EXP_DEVCTL_RELAX_EN
);
2089 EXPORT_SYMBOL(pcie_relaxed_ordering_enabled
);
2091 static void pci_configure_relaxed_ordering(struct pci_dev
*dev
)
2093 struct pci_dev
*root
;
2095 /* PCI_EXP_DEVICE_RELAX_EN is RsvdP in VFs */
2099 if (!pcie_relaxed_ordering_enabled(dev
))
2103 * For now, we only deal with Relaxed Ordering issues with Root
2104 * Ports. Peer-to-Peer DMA is another can of worms.
2106 root
= pci_find_pcie_root_port(dev
);
2110 if (root
->dev_flags
& PCI_DEV_FLAGS_NO_RELAXED_ORDERING
) {
2111 pcie_capability_clear_word(dev
, PCI_EXP_DEVCTL
,
2112 PCI_EXP_DEVCTL_RELAX_EN
);
2113 pci_info(dev
, "Relaxed Ordering disabled because the Root Port didn't support it\n");
2117 static void pci_configure_ltr(struct pci_dev
*dev
)
2119 #ifdef CONFIG_PCIEASPM
2120 struct pci_host_bridge
*host
= pci_find_host_bridge(dev
->bus
);
2121 struct pci_dev
*bridge
;
2124 if (!pci_is_pcie(dev
))
2127 pcie_capability_read_dword(dev
, PCI_EXP_DEVCAP2
, &cap
);
2128 if (!(cap
& PCI_EXP_DEVCAP2_LTR
))
2131 pcie_capability_read_dword(dev
, PCI_EXP_DEVCTL2
, &ctl
);
2132 if (ctl
& PCI_EXP_DEVCTL2_LTR_EN
) {
2133 if (pci_pcie_type(dev
) == PCI_EXP_TYPE_ROOT_PORT
) {
2138 bridge
= pci_upstream_bridge(dev
);
2139 if (bridge
&& bridge
->ltr_path
)
2145 if (!host
->native_ltr
)
2149 * Software must not enable LTR in an Endpoint unless the Root
2150 * Complex and all intermediate Switches indicate support for LTR.
2151 * PCIe r4.0, sec 6.18.
2153 if (pci_pcie_type(dev
) == PCI_EXP_TYPE_ROOT_PORT
||
2154 ((bridge
= pci_upstream_bridge(dev
)) &&
2155 bridge
->ltr_path
)) {
2156 pcie_capability_set_word(dev
, PCI_EXP_DEVCTL2
,
2157 PCI_EXP_DEVCTL2_LTR_EN
);
2163 static void pci_configure_eetlp_prefix(struct pci_dev
*dev
)
2165 #ifdef CONFIG_PCI_PASID
2166 struct pci_dev
*bridge
;
2170 if (!pci_is_pcie(dev
))
2173 pcie_capability_read_dword(dev
, PCI_EXP_DEVCAP2
, &cap
);
2174 if (!(cap
& PCI_EXP_DEVCAP2_EE_PREFIX
))
2177 pcie_type
= pci_pcie_type(dev
);
2178 if (pcie_type
== PCI_EXP_TYPE_ROOT_PORT
||
2179 pcie_type
== PCI_EXP_TYPE_RC_END
)
2180 dev
->eetlp_prefix_path
= 1;
2182 bridge
= pci_upstream_bridge(dev
);
2183 if (bridge
&& bridge
->eetlp_prefix_path
)
2184 dev
->eetlp_prefix_path
= 1;
2189 static void pci_configure_serr(struct pci_dev
*dev
)
2193 if (dev
->hdr_type
== PCI_HEADER_TYPE_BRIDGE
) {
2196 * A bridge will not forward ERR_ messages coming from an
2197 * endpoint unless SERR# forwarding is enabled.
2199 pci_read_config_word(dev
, PCI_BRIDGE_CONTROL
, &control
);
2200 if (!(control
& PCI_BRIDGE_CTL_SERR
)) {
2201 control
|= PCI_BRIDGE_CTL_SERR
;
2202 pci_write_config_word(dev
, PCI_BRIDGE_CONTROL
, control
);
2207 static void pci_configure_device(struct pci_dev
*dev
)
2209 struct hotplug_params hpp
;
2212 pci_configure_mps(dev
);
2213 pci_configure_extended_tags(dev
, NULL
);
2214 pci_configure_relaxed_ordering(dev
);
2215 pci_configure_ltr(dev
);
2216 pci_configure_eetlp_prefix(dev
);
2217 pci_configure_serr(dev
);
2219 memset(&hpp
, 0, sizeof(hpp
));
2220 ret
= pci_get_hp_params(dev
, &hpp
);
2224 program_hpp_type2(dev
, hpp
.t2
);
2225 program_hpp_type1(dev
, hpp
.t1
);
2226 program_hpp_type0(dev
, hpp
.t0
);
2229 static void pci_release_capabilities(struct pci_dev
*dev
)
2232 pci_vpd_release(dev
);
2233 pci_iov_release(dev
);
2234 pci_free_cap_save_buffers(dev
);
2238 * pci_release_dev - Free a PCI device structure when all users of it are
2240 * @dev: device that's been disconnected
2242 * Will be called only by the device core when all users of this PCI device are
2245 static void pci_release_dev(struct device
*dev
)
2247 struct pci_dev
*pci_dev
;
2249 pci_dev
= to_pci_dev(dev
);
2250 pci_release_capabilities(pci_dev
);
2251 pci_release_of_node(pci_dev
);
2252 pcibios_release_device(pci_dev
);
2253 pci_bus_put(pci_dev
->bus
);
2254 kfree(pci_dev
->driver_override
);
2255 bitmap_free(pci_dev
->dma_alias_mask
);
2259 struct pci_dev
*pci_alloc_dev(struct pci_bus
*bus
)
2261 struct pci_dev
*dev
;
2263 dev
= kzalloc(sizeof(struct pci_dev
), GFP_KERNEL
);
2267 INIT_LIST_HEAD(&dev
->bus_list
);
2268 dev
->dev
.type
= &pci_dev_type
;
2269 dev
->bus
= pci_bus_get(bus
);
2273 EXPORT_SYMBOL(pci_alloc_dev
);
2275 static bool pci_bus_crs_vendor_id(u32 l
)
2277 return (l
& 0xffff) == 0x0001;
2280 static bool pci_bus_wait_crs(struct pci_bus
*bus
, int devfn
, u32
*l
,
2285 if (!pci_bus_crs_vendor_id(*l
))
2286 return true; /* not a CRS completion */
2289 return false; /* CRS, but caller doesn't want to wait */
2292 * We got the reserved Vendor ID that indicates a completion with
2293 * Configuration Request Retry Status (CRS). Retry until we get a
2294 * valid Vendor ID or we time out.
2296 while (pci_bus_crs_vendor_id(*l
)) {
2297 if (delay
> timeout
) {
2298 pr_warn("pci %04x:%02x:%02x.%d: not ready after %dms; giving up\n",
2299 pci_domain_nr(bus
), bus
->number
,
2300 PCI_SLOT(devfn
), PCI_FUNC(devfn
), delay
- 1);
2305 pr_info("pci %04x:%02x:%02x.%d: not ready after %dms; waiting\n",
2306 pci_domain_nr(bus
), bus
->number
,
2307 PCI_SLOT(devfn
), PCI_FUNC(devfn
), delay
- 1);
2312 if (pci_bus_read_config_dword(bus
, devfn
, PCI_VENDOR_ID
, l
))
2317 pr_info("pci %04x:%02x:%02x.%d: ready after %dms\n",
2318 pci_domain_nr(bus
), bus
->number
,
2319 PCI_SLOT(devfn
), PCI_FUNC(devfn
), delay
- 1);
2324 bool pci_bus_generic_read_dev_vendor_id(struct pci_bus
*bus
, int devfn
, u32
*l
,
2327 if (pci_bus_read_config_dword(bus
, devfn
, PCI_VENDOR_ID
, l
))
2330 /* Some broken boards return 0 or ~0 if a slot is empty: */
2331 if (*l
== 0xffffffff || *l
== 0x00000000 ||
2332 *l
== 0x0000ffff || *l
== 0xffff0000)
2335 if (pci_bus_crs_vendor_id(*l
))
2336 return pci_bus_wait_crs(bus
, devfn
, l
, timeout
);
2341 bool pci_bus_read_dev_vendor_id(struct pci_bus
*bus
, int devfn
, u32
*l
,
2344 #ifdef CONFIG_PCI_QUIRKS
2345 struct pci_dev
*bridge
= bus
->self
;
2348 * Certain IDT switches have an issue where they improperly trigger
2349 * ACS Source Validation errors on completions for config reads.
2351 if (bridge
&& bridge
->vendor
== PCI_VENDOR_ID_IDT
&&
2352 bridge
->device
== 0x80b5)
2353 return pci_idt_bus_quirk(bus
, devfn
, l
, timeout
);
2356 return pci_bus_generic_read_dev_vendor_id(bus
, devfn
, l
, timeout
);
2358 EXPORT_SYMBOL(pci_bus_read_dev_vendor_id
);
2361 * Read the config data for a PCI device, sanity-check it,
2362 * and fill in the dev structure.
2364 static struct pci_dev
*pci_scan_device(struct pci_bus
*bus
, int devfn
)
2366 struct pci_dev
*dev
;
2369 if (!pci_bus_read_dev_vendor_id(bus
, devfn
, &l
, 60*1000))
2372 dev
= pci_alloc_dev(bus
);
2377 dev
->vendor
= l
& 0xffff;
2378 dev
->device
= (l
>> 16) & 0xffff;
2380 pci_set_of_node(dev
);
2382 if (pci_setup_device(dev
)) {
2383 pci_bus_put(dev
->bus
);
2391 static void pcie_report_downtraining(struct pci_dev
*dev
)
2393 if (!pci_is_pcie(dev
))
2396 /* Look from the device up to avoid downstream ports with no devices */
2397 if ((pci_pcie_type(dev
) != PCI_EXP_TYPE_ENDPOINT
) &&
2398 (pci_pcie_type(dev
) != PCI_EXP_TYPE_LEG_END
) &&
2399 (pci_pcie_type(dev
) != PCI_EXP_TYPE_UPSTREAM
))
2402 /* Multi-function PCIe devices share the same link/status */
2403 if (PCI_FUNC(dev
->devfn
) != 0 || dev
->is_virtfn
)
2406 /* Print link status only if the device is constrained by the fabric */
2407 __pcie_print_link_status(dev
, false);
2410 static void pci_init_capabilities(struct pci_dev
*dev
)
2412 /* Enhanced Allocation */
2415 /* Setup MSI caps & disable MSI/MSI-X interrupts */
2416 pci_msi_setup_pci_dev(dev
);
2418 /* Buffers for saving PCIe and PCI-X capabilities */
2419 pci_allocate_cap_save_buffers(dev
);
2421 /* Power Management */
2424 /* Vital Product Data */
2427 /* Alternative Routing-ID Forwarding */
2428 pci_configure_ari(dev
);
2430 /* Single Root I/O Virtualization */
2433 /* Address Translation Services */
2436 /* Enable ACS P2P upstream forwarding */
2437 pci_enable_acs(dev
);
2439 /* Precision Time Measurement */
2442 /* Advanced Error Reporting */
2445 pcie_report_downtraining(dev
);
2447 if (pci_probe_reset_function(dev
) == 0)
2452 * This is the equivalent of pci_host_bridge_msi_domain() that acts on
2453 * devices. Firmware interfaces that can select the MSI domain on a
2454 * per-device basis should be called from here.
2456 static struct irq_domain
*pci_dev_msi_domain(struct pci_dev
*dev
)
2458 struct irq_domain
*d
;
2461 * If a domain has been set through the pcibios_add_device()
2462 * callback, then this is the one (platform code knows best).
2464 d
= dev_get_msi_domain(&dev
->dev
);
2469 * Let's see if we have a firmware interface able to provide
2472 d
= pci_msi_get_device_domain(dev
);
2479 static void pci_set_msi_domain(struct pci_dev
*dev
)
2481 struct irq_domain
*d
;
2484 * If the platform or firmware interfaces cannot supply a
2485 * device-specific MSI domain, then inherit the default domain
2486 * from the host bridge itself.
2488 d
= pci_dev_msi_domain(dev
);
2490 d
= dev_get_msi_domain(&dev
->bus
->dev
);
2492 dev_set_msi_domain(&dev
->dev
, d
);
2495 void pci_device_add(struct pci_dev
*dev
, struct pci_bus
*bus
)
2499 pci_configure_device(dev
);
2501 device_initialize(&dev
->dev
);
2502 dev
->dev
.release
= pci_release_dev
;
2504 set_dev_node(&dev
->dev
, pcibus_to_node(bus
));
2505 dev
->dev
.dma_mask
= &dev
->dma_mask
;
2506 dev
->dev
.dma_parms
= &dev
->dma_parms
;
2507 dev
->dev
.coherent_dma_mask
= 0xffffffffull
;
2509 dma_set_max_seg_size(&dev
->dev
, 65536);
2510 dma_set_seg_boundary(&dev
->dev
, 0xffffffff);
2512 /* Fix up broken headers */
2513 pci_fixup_device(pci_fixup_header
, dev
);
2515 /* Moved out from quirk header fixup code */
2516 pci_reassigndev_resource_alignment(dev
);
2518 /* Clear the state_saved flag */
2519 dev
->state_saved
= false;
2521 /* Initialize various capabilities */
2522 pci_init_capabilities(dev
);
2525 * Add the device to our list of discovered devices
2526 * and the bus list for fixup functions, etc.
2528 down_write(&pci_bus_sem
);
2529 list_add_tail(&dev
->bus_list
, &bus
->devices
);
2530 up_write(&pci_bus_sem
);
2532 ret
= pcibios_add_device(dev
);
2535 /* Set up MSI IRQ domain */
2536 pci_set_msi_domain(dev
);
2538 /* Notifier could use PCI capabilities */
2539 dev
->match_driver
= false;
2540 ret
= device_add(&dev
->dev
);
2544 struct pci_dev
*pci_scan_single_device(struct pci_bus
*bus
, int devfn
)
2546 struct pci_dev
*dev
;
2548 dev
= pci_get_slot(bus
, devfn
);
2554 dev
= pci_scan_device(bus
, devfn
);
2558 pci_device_add(dev
, bus
);
2562 EXPORT_SYMBOL(pci_scan_single_device
);
2564 static unsigned next_fn(struct pci_bus
*bus
, struct pci_dev
*dev
, unsigned fn
)
2570 if (pci_ari_enabled(bus
)) {
2573 pos
= pci_find_ext_capability(dev
, PCI_EXT_CAP_ID_ARI
);
2577 pci_read_config_word(dev
, pos
+ PCI_ARI_CAP
, &cap
);
2578 next_fn
= PCI_ARI_CAP_NFN(cap
);
2580 return 0; /* protect against malformed list */
2585 /* dev may be NULL for non-contiguous multifunction devices */
2586 if (!dev
|| dev
->multifunction
)
2587 return (fn
+ 1) % 8;
2592 static int only_one_child(struct pci_bus
*bus
)
2594 struct pci_dev
*bridge
= bus
->self
;
2597 * Systems with unusual topologies set PCI_SCAN_ALL_PCIE_DEVS so
2598 * we scan for all possible devices, not just Device 0.
2600 if (pci_has_flag(PCI_SCAN_ALL_PCIE_DEVS
))
2604 * A PCIe Downstream Port normally leads to a Link with only Device
2605 * 0 on it (PCIe spec r3.1, sec 7.3.1). As an optimization, scan
2606 * only for Device 0 in that situation.
2608 * Checking has_secondary_link is a hack to identify Downstream
2609 * Ports because sometimes Switches are configured such that the
2610 * PCIe Port Type labels are backwards.
2612 if (bridge
&& pci_is_pcie(bridge
) && bridge
->has_secondary_link
)
2619 * pci_scan_slot - Scan a PCI slot on a bus for devices
2620 * @bus: PCI bus to scan
2621 * @devfn: slot number to scan (must have zero function)
2623 * Scan a PCI slot on the specified PCI bus for devices, adding
2624 * discovered devices to the @bus->devices list. New devices
2625 * will not have is_added set.
2627 * Returns the number of new devices found.
2629 int pci_scan_slot(struct pci_bus
*bus
, int devfn
)
2631 unsigned fn
, nr
= 0;
2632 struct pci_dev
*dev
;
2634 if (only_one_child(bus
) && (devfn
> 0))
2635 return 0; /* Already scanned the entire slot */
2637 dev
= pci_scan_single_device(bus
, devfn
);
2640 if (!pci_dev_is_added(dev
))
2643 for (fn
= next_fn(bus
, dev
, 0); fn
> 0; fn
= next_fn(bus
, dev
, fn
)) {
2644 dev
= pci_scan_single_device(bus
, devfn
+ fn
);
2646 if (!pci_dev_is_added(dev
))
2648 dev
->multifunction
= 1;
2652 /* Only one slot has PCIe device */
2653 if (bus
->self
&& nr
)
2654 pcie_aspm_init_link_state(bus
->self
);
2658 EXPORT_SYMBOL(pci_scan_slot
);
2660 static int pcie_find_smpss(struct pci_dev
*dev
, void *data
)
2664 if (!pci_is_pcie(dev
))
2668 * We don't have a way to change MPS settings on devices that have
2669 * drivers attached. A hot-added device might support only the minimum
2670 * MPS setting (MPS=128). Therefore, if the fabric contains a bridge
2671 * where devices may be hot-added, we limit the fabric MPS to 128 so
2672 * hot-added devices will work correctly.
2674 * However, if we hot-add a device to a slot directly below a Root
2675 * Port, it's impossible for there to be other existing devices below
2676 * the port. We don't limit the MPS in this case because we can
2677 * reconfigure MPS on both the Root Port and the hot-added device,
2678 * and there are no other devices involved.
2680 * Note that this PCIE_BUS_SAFE path assumes no peer-to-peer DMA.
2682 if (dev
->is_hotplug_bridge
&&
2683 pci_pcie_type(dev
) != PCI_EXP_TYPE_ROOT_PORT
)
2686 if (*smpss
> dev
->pcie_mpss
)
2687 *smpss
= dev
->pcie_mpss
;
2692 static void pcie_write_mps(struct pci_dev
*dev
, int mps
)
2696 if (pcie_bus_config
== PCIE_BUS_PERFORMANCE
) {
2697 mps
= 128 << dev
->pcie_mpss
;
2699 if (pci_pcie_type(dev
) != PCI_EXP_TYPE_ROOT_PORT
&&
2703 * For "Performance", the assumption is made that
2704 * downstream communication will never be larger than
2705 * the MRRS. So, the MPS only needs to be configured
2706 * for the upstream communication. This being the case,
2707 * walk from the top down and set the MPS of the child
2708 * to that of the parent bus.
2710 * Configure the device MPS with the smaller of the
2711 * device MPSS or the bridge MPS (which is assumed to be
2712 * properly configured at this point to the largest
2713 * allowable MPS based on its parent bus).
2715 mps
= min(mps
, pcie_get_mps(dev
->bus
->self
));
2718 rc
= pcie_set_mps(dev
, mps
);
2720 pci_err(dev
, "Failed attempting to set the MPS\n");
2723 static void pcie_write_mrrs(struct pci_dev
*dev
)
2728 * In the "safe" case, do not configure the MRRS. There appear to be
2729 * issues with setting MRRS to 0 on a number of devices.
2731 if (pcie_bus_config
!= PCIE_BUS_PERFORMANCE
)
2735 * For max performance, the MRRS must be set to the largest supported
2736 * value. However, it cannot be configured larger than the MPS the
2737 * device or the bus can support. This should already be properly
2738 * configured by a prior call to pcie_write_mps().
2740 mrrs
= pcie_get_mps(dev
);
2743 * MRRS is a R/W register. Invalid values can be written, but a
2744 * subsequent read will verify if the value is acceptable or not.
2745 * If the MRRS value provided is not acceptable (e.g., too large),
2746 * shrink the value until it is acceptable to the HW.
2748 while (mrrs
!= pcie_get_readrq(dev
) && mrrs
>= 128) {
2749 rc
= pcie_set_readrq(dev
, mrrs
);
2753 pci_warn(dev
, "Failed attempting to set the MRRS\n");
2758 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");
2761 static int pcie_bus_configure_set(struct pci_dev
*dev
, void *data
)
2765 if (!pci_is_pcie(dev
))
2768 if (pcie_bus_config
== PCIE_BUS_TUNE_OFF
||
2769 pcie_bus_config
== PCIE_BUS_DEFAULT
)
2772 mps
= 128 << *(u8
*)data
;
2773 orig_mps
= pcie_get_mps(dev
);
2775 pcie_write_mps(dev
, mps
);
2776 pcie_write_mrrs(dev
);
2778 pci_info(dev
, "Max Payload Size set to %4d/%4d (was %4d), Max Read Rq %4d\n",
2779 pcie_get_mps(dev
), 128 << dev
->pcie_mpss
,
2780 orig_mps
, pcie_get_readrq(dev
));
2786 * pcie_bus_configure_settings() requires that pci_walk_bus work in a top-down,
2787 * parents then children fashion. If this changes, then this code will not
2790 void pcie_bus_configure_settings(struct pci_bus
*bus
)
2797 if (!pci_is_pcie(bus
->self
))
2801 * FIXME - Peer to peer DMA is possible, though the endpoint would need
2802 * to be aware of the MPS of the destination. To work around this,
2803 * simply force the MPS of the entire system to the smallest possible.
2805 if (pcie_bus_config
== PCIE_BUS_PEER2PEER
)
2808 if (pcie_bus_config
== PCIE_BUS_SAFE
) {
2809 smpss
= bus
->self
->pcie_mpss
;
2811 pcie_find_smpss(bus
->self
, &smpss
);
2812 pci_walk_bus(bus
, pcie_find_smpss
, &smpss
);
2815 pcie_bus_configure_set(bus
->self
, &smpss
);
2816 pci_walk_bus(bus
, pcie_bus_configure_set
, &smpss
);
2818 EXPORT_SYMBOL_GPL(pcie_bus_configure_settings
);
2821 * Called after each bus is probed, but before its children are examined. This
2822 * is marked as __weak because multiple architectures define it.
2824 void __weak
pcibios_fixup_bus(struct pci_bus
*bus
)
2826 /* nothing to do, expected to be removed in the future */
2830 * pci_scan_child_bus_extend() - Scan devices below a bus
2831 * @bus: Bus to scan for devices
2832 * @available_buses: Total number of buses available (%0 does not try to
2833 * extend beyond the minimal)
2835 * Scans devices below @bus including subordinate buses. Returns new
2836 * subordinate number including all the found devices. Passing
2837 * @available_buses causes the remaining bus space to be distributed
2838 * equally between hotplug-capable bridges to allow future extension of the
2841 static unsigned int pci_scan_child_bus_extend(struct pci_bus
*bus
,
2842 unsigned int available_buses
)
2844 unsigned int used_buses
, normal_bridges
= 0, hotplug_bridges
= 0;
2845 unsigned int start
= bus
->busn_res
.start
;
2846 unsigned int devfn
, fn
, cmax
, max
= start
;
2847 struct pci_dev
*dev
;
2850 dev_dbg(&bus
->dev
, "scanning bus\n");
2852 /* Go find them, Rover! */
2853 for (devfn
= 0; devfn
< 256; devfn
+= 8) {
2854 nr_devs
= pci_scan_slot(bus
, devfn
);
2857 * The Jailhouse hypervisor may pass individual functions of a
2858 * multi-function device to a guest without passing function 0.
2859 * Look for them as well.
2861 if (jailhouse_paravirt() && nr_devs
== 0) {
2862 for (fn
= 1; fn
< 8; fn
++) {
2863 dev
= pci_scan_single_device(bus
, devfn
+ fn
);
2865 dev
->multifunction
= 1;
2870 /* Reserve buses for SR-IOV capability */
2871 used_buses
= pci_iov_bus_range(bus
);
2875 * After performing arch-dependent fixup of the bus, look behind
2876 * all PCI-to-PCI bridges on this bus.
2878 if (!bus
->is_added
) {
2879 dev_dbg(&bus
->dev
, "fixups for bus\n");
2880 pcibios_fixup_bus(bus
);
2885 * Calculate how many hotplug bridges and normal bridges there
2886 * are on this bus. We will distribute the additional available
2887 * buses between hotplug bridges.
2889 for_each_pci_bridge(dev
, bus
) {
2890 if (dev
->is_hotplug_bridge
)
2897 * Scan bridges that are already configured. We don't touch them
2898 * unless they are misconfigured (which will be done in the second
2901 for_each_pci_bridge(dev
, bus
) {
2903 max
= pci_scan_bridge_extend(bus
, dev
, max
, 0, 0);
2906 * Reserve one bus for each bridge now to avoid extending
2907 * hotplug bridges too much during the second scan below.
2911 used_buses
+= cmax
- max
- 1;
2914 /* Scan bridges that need to be reconfigured */
2915 for_each_pci_bridge(dev
, bus
) {
2916 unsigned int buses
= 0;
2918 if (!hotplug_bridges
&& normal_bridges
== 1) {
2921 * There is only one bridge on the bus (upstream
2922 * port) so it gets all available buses which it
2923 * can then distribute to the possible hotplug
2926 buses
= available_buses
;
2927 } else if (dev
->is_hotplug_bridge
) {
2930 * Distribute the extra buses between hotplug
2933 buses
= available_buses
/ hotplug_bridges
;
2934 buses
= min(buses
, available_buses
- used_buses
+ 1);
2938 max
= pci_scan_bridge_extend(bus
, dev
, cmax
, buses
, 1);
2939 /* One bus is already accounted so don't add it again */
2941 used_buses
+= max
- cmax
- 1;
2945 * Make sure a hotplug bridge has at least the minimum requested
2946 * number of buses but allow it to grow up to the maximum available
2947 * bus number of there is room.
2949 if (bus
->self
&& bus
->self
->is_hotplug_bridge
) {
2950 used_buses
= max_t(unsigned int, available_buses
,
2951 pci_hotplug_bus_size
- 1);
2952 if (max
- start
< used_buses
) {
2953 max
= start
+ used_buses
;
2955 /* Do not allocate more buses than we have room left */
2956 if (max
> bus
->busn_res
.end
)
2957 max
= bus
->busn_res
.end
;
2959 dev_dbg(&bus
->dev
, "%pR extended by %#02x\n",
2960 &bus
->busn_res
, max
- start
);
2965 * We've scanned the bus and so we know all about what's on
2966 * the other side of any bridges that may be on this bus plus
2969 * Return how far we've got finding sub-buses.
2971 dev_dbg(&bus
->dev
, "bus scan returning with max=%02x\n", max
);
2976 * pci_scan_child_bus() - Scan devices below a bus
2977 * @bus: Bus to scan for devices
2979 * Scans devices below @bus including subordinate buses. Returns new
2980 * subordinate number including all the found devices.
2982 unsigned int pci_scan_child_bus(struct pci_bus
*bus
)
2984 return pci_scan_child_bus_extend(bus
, 0);
2986 EXPORT_SYMBOL_GPL(pci_scan_child_bus
);
2989 * pcibios_root_bridge_prepare - Platform-specific host bridge setup
2990 * @bridge: Host bridge to set up
2992 * Default empty implementation. Replace with an architecture-specific setup
2993 * routine, if necessary.
2995 int __weak
pcibios_root_bridge_prepare(struct pci_host_bridge
*bridge
)
3000 void __weak
pcibios_add_bus(struct pci_bus
*bus
)
3004 void __weak
pcibios_remove_bus(struct pci_bus
*bus
)
3008 struct pci_bus
*pci_create_root_bus(struct device
*parent
, int bus
,
3009 struct pci_ops
*ops
, void *sysdata
, struct list_head
*resources
)
3012 struct pci_host_bridge
*bridge
;
3014 bridge
= pci_alloc_host_bridge(0);
3018 bridge
->dev
.parent
= parent
;
3020 list_splice_init(resources
, &bridge
->windows
);
3021 bridge
->sysdata
= sysdata
;
3022 bridge
->busnr
= bus
;
3025 error
= pci_register_host_bridge(bridge
);
3035 EXPORT_SYMBOL_GPL(pci_create_root_bus
);
3037 int pci_host_probe(struct pci_host_bridge
*bridge
)
3039 struct pci_bus
*bus
, *child
;
3042 ret
= pci_scan_root_bus_bridge(bridge
);
3044 dev_err(bridge
->dev
.parent
, "Scanning root bridge failed");
3051 * We insert PCI resources into the iomem_resource and
3052 * ioport_resource trees in either pci_bus_claim_resources()
3053 * or pci_bus_assign_resources().
3055 if (pci_has_flag(PCI_PROBE_ONLY
)) {
3056 pci_bus_claim_resources(bus
);
3058 pci_bus_size_bridges(bus
);
3059 pci_bus_assign_resources(bus
);
3061 list_for_each_entry(child
, &bus
->children
, node
)
3062 pcie_bus_configure_settings(child
);
3065 pci_bus_add_devices(bus
);
3068 EXPORT_SYMBOL_GPL(pci_host_probe
);
3070 int pci_bus_insert_busn_res(struct pci_bus
*b
, int bus
, int bus_max
)
3072 struct resource
*res
= &b
->busn_res
;
3073 struct resource
*parent_res
, *conflict
;
3077 res
->flags
= IORESOURCE_BUS
;
3079 if (!pci_is_root_bus(b
))
3080 parent_res
= &b
->parent
->busn_res
;
3082 parent_res
= get_pci_domain_busn_res(pci_domain_nr(b
));
3083 res
->flags
|= IORESOURCE_PCI_FIXED
;
3086 conflict
= request_resource_conflict(parent_res
, res
);
3089 dev_printk(KERN_DEBUG
, &b
->dev
,
3090 "busn_res: can not insert %pR under %s%pR (conflicts with %s %pR)\n",
3091 res
, pci_is_root_bus(b
) ? "domain " : "",
3092 parent_res
, conflict
->name
, conflict
);
3094 return conflict
== NULL
;
3097 int pci_bus_update_busn_res_end(struct pci_bus
*b
, int bus_max
)
3099 struct resource
*res
= &b
->busn_res
;
3100 struct resource old_res
= *res
;
3101 resource_size_t size
;
3104 if (res
->start
> bus_max
)
3107 size
= bus_max
- res
->start
+ 1;
3108 ret
= adjust_resource(res
, res
->start
, size
);
3109 dev_printk(KERN_DEBUG
, &b
->dev
,
3110 "busn_res: %pR end %s updated to %02x\n",
3111 &old_res
, ret
? "can not be" : "is", bus_max
);
3113 if (!ret
&& !res
->parent
)
3114 pci_bus_insert_busn_res(b
, res
->start
, res
->end
);
3119 void pci_bus_release_busn_res(struct pci_bus
*b
)
3121 struct resource
*res
= &b
->busn_res
;
3124 if (!res
->flags
|| !res
->parent
)
3127 ret
= release_resource(res
);
3128 dev_printk(KERN_DEBUG
, &b
->dev
,
3129 "busn_res: %pR %s released\n",
3130 res
, ret
? "can not be" : "is");
3133 int pci_scan_root_bus_bridge(struct pci_host_bridge
*bridge
)
3135 struct resource_entry
*window
;
3143 resource_list_for_each_entry(window
, &bridge
->windows
)
3144 if (window
->res
->flags
& IORESOURCE_BUS
) {
3149 ret
= pci_register_host_bridge(bridge
);
3154 bus
= bridge
->busnr
;
3158 "No busn resource found for root bus, will use [bus %02x-ff]\n",
3160 pci_bus_insert_busn_res(b
, bus
, 255);
3163 max
= pci_scan_child_bus(b
);
3166 pci_bus_update_busn_res_end(b
, max
);
3170 EXPORT_SYMBOL(pci_scan_root_bus_bridge
);
3172 struct pci_bus
*pci_scan_root_bus(struct device
*parent
, int bus
,
3173 struct pci_ops
*ops
, void *sysdata
, struct list_head
*resources
)
3175 struct resource_entry
*window
;
3180 resource_list_for_each_entry(window
, resources
)
3181 if (window
->res
->flags
& IORESOURCE_BUS
) {
3186 b
= pci_create_root_bus(parent
, bus
, ops
, sysdata
, resources
);
3192 "No busn resource found for root bus, will use [bus %02x-ff]\n",
3194 pci_bus_insert_busn_res(b
, bus
, 255);
3197 max
= pci_scan_child_bus(b
);
3200 pci_bus_update_busn_res_end(b
, max
);
3204 EXPORT_SYMBOL(pci_scan_root_bus
);
3206 struct pci_bus
*pci_scan_bus(int bus
, struct pci_ops
*ops
,
3209 LIST_HEAD(resources
);
3212 pci_add_resource(&resources
, &ioport_resource
);
3213 pci_add_resource(&resources
, &iomem_resource
);
3214 pci_add_resource(&resources
, &busn_resource
);
3215 b
= pci_create_root_bus(NULL
, bus
, ops
, sysdata
, &resources
);
3217 pci_scan_child_bus(b
);
3219 pci_free_resource_list(&resources
);
3223 EXPORT_SYMBOL(pci_scan_bus
);
3226 * pci_rescan_bus_bridge_resize - Scan a PCI bus for devices
3227 * @bridge: PCI bridge for the bus to scan
3229 * Scan a PCI bus and child buses for new devices, add them,
3230 * and enable them, resizing bridge mmio/io resource if necessary
3231 * and possible. The caller must ensure the child devices are already
3232 * removed for resizing to occur.
3234 * Returns the max number of subordinate bus discovered.
3236 unsigned int pci_rescan_bus_bridge_resize(struct pci_dev
*bridge
)
3239 struct pci_bus
*bus
= bridge
->subordinate
;
3241 max
= pci_scan_child_bus(bus
);
3243 pci_assign_unassigned_bridge_resources(bridge
);
3245 pci_bus_add_devices(bus
);
3251 * pci_rescan_bus - Scan a PCI bus for devices
3252 * @bus: PCI bus to scan
3254 * Scan a PCI bus and child buses for new devices, add them,
3257 * Returns the max number of subordinate bus discovered.
3259 unsigned int pci_rescan_bus(struct pci_bus
*bus
)
3263 max
= pci_scan_child_bus(bus
);
3264 pci_assign_unassigned_bus_resources(bus
);
3265 pci_bus_add_devices(bus
);
3269 EXPORT_SYMBOL_GPL(pci_rescan_bus
);
3272 * pci_rescan_bus(), pci_rescan_bus_bridge_resize() and PCI device removal
3273 * routines should always be executed under this mutex.
3275 static DEFINE_MUTEX(pci_rescan_remove_lock
);
3277 void pci_lock_rescan_remove(void)
3279 mutex_lock(&pci_rescan_remove_lock
);
3281 EXPORT_SYMBOL_GPL(pci_lock_rescan_remove
);
3283 void pci_unlock_rescan_remove(void)
3285 mutex_unlock(&pci_rescan_remove_lock
);
3287 EXPORT_SYMBOL_GPL(pci_unlock_rescan_remove
);
3289 static int __init
pci_sort_bf_cmp(const struct device
*d_a
,
3290 const struct device
*d_b
)
3292 const struct pci_dev
*a
= to_pci_dev(d_a
);
3293 const struct pci_dev
*b
= to_pci_dev(d_b
);
3295 if (pci_domain_nr(a
->bus
) < pci_domain_nr(b
->bus
)) return -1;
3296 else if (pci_domain_nr(a
->bus
) > pci_domain_nr(b
->bus
)) return 1;
3298 if (a
->bus
->number
< b
->bus
->number
) return -1;
3299 else if (a
->bus
->number
> b
->bus
->number
) return 1;
3301 if (a
->devfn
< b
->devfn
) return -1;
3302 else if (a
->devfn
> b
->devfn
) return 1;
3307 void __init
pci_sort_breadthfirst(void)
3309 bus_sort_breadthfirst(&pci_bus_type
, &pci_sort_bf_cmp
);
3312 int pci_hp_add_bridge(struct pci_dev
*dev
)
3314 struct pci_bus
*parent
= dev
->bus
;
3315 int busnr
, start
= parent
->busn_res
.start
;
3316 unsigned int available_buses
= 0;
3317 int end
= parent
->busn_res
.end
;
3319 for (busnr
= start
; busnr
<= end
; busnr
++) {
3320 if (!pci_find_bus(pci_domain_nr(parent
), busnr
))
3323 if (busnr
-- > end
) {
3324 pci_err(dev
, "No bus number available for hot-added bridge\n");
3328 /* Scan bridges that are already configured */
3329 busnr
= pci_scan_bridge(parent
, dev
, busnr
, 0);
3332 * Distribute the available bus numbers between hotplug-capable
3333 * bridges to make extending the chain later possible.
3335 available_buses
= end
- busnr
;
3337 /* Scan bridges that need to be reconfigured */
3338 pci_scan_bridge_extend(parent
, dev
, busnr
, available_buses
, 1);
3340 if (!dev
->subordinate
)
3345 EXPORT_SYMBOL_GPL(pci_hp_add_bridge
);