Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

PNP: Don't check for overlaps with unassigned PCI BARs

After 0509ad5e1a7d ("PNP: disable PNP motherboard resources that overlap
PCI BARs"), we disable and warn about PNP resources that overlap PCI BARs.
But we assume that all PCI BARs are valid, which is incorrect, because a
BAR may not have any space assigned to it. In that case, we will not
enable the BAR, so no other resource can conflict with it.

Ignore PCI BARs that are unassigned, as indicated by IORESOURCE_UNSET.

Firmware often leaves PCI BARs unassigned, containing zero. Zero is a
valid BAR value, so we can't just check for that, but the PCI core can set
IORESOURCE_UNSET when it detects an unassigned BAR by other means. This
should get rid of many of the annoying messages like this:

pnp 00:00: disabling [io 0x0061] because it overlaps 0001:05:00.0 BAR 0 [io 0x0000-0x00ff]

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

+6 -3
+6 -3
drivers/pnp/quirks.c
··· 246 246 */ 247 247 for_each_pci_dev(pdev) { 248 248 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) { 249 - unsigned long type; 249 + unsigned long flags, type; 250 250 251 - type = pci_resource_flags(pdev, i) & 252 - (IORESOURCE_IO | IORESOURCE_MEM); 251 + flags = pci_resource_flags(pdev, i); 252 + type = flags & (IORESOURCE_IO | IORESOURCE_MEM); 253 253 if (!type || pci_resource_len(pdev, i) == 0) 254 + continue; 255 + 256 + if (flags & IORESOURCE_UNSET) 254 257 continue; 255 258 256 259 pci_start = pci_resource_start(pdev, i);