]> git.itanic.dy.fi Git - linux-stable/commitdiff
PCI: vmd: Correct PCI Header Type Register's multi-function check
authorIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
Tue, 3 Oct 2023 12:52:58 +0000 (15:52 +0300)
committerBjorn Helgaas <bhelgaas@google.com>
Tue, 3 Oct 2023 16:54:47 +0000 (11:54 -0500)
vmd_domain_reset() attempts to find whether the device may contain multiple
functions by checking 0x80 (Multi-Function Device), however, the hdr_type
variable has already been masked with PCI_HEADER_TYPE_MASK so the check can
never true.

To fix the issue, don't mask the read with PCI_HEADER_TYPE_MASK.

Fixes: 6aab5622296b ("PCI: vmd: Clean up domain before enumeration")
Link: https://lore.kernel.org/r/20231003125300.5541-2-ilpo.jarvinen@linux.intel.com
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Cc: Nirmal Patel <nirmal.patel@linux.intel.com>
drivers/pci/controller/vmd.c

index ad56df98b8e63d790a719a494104a80c669731b8..1c1c1aa940a513201acd205fa10555ed6aefbc61 100644 (file)
@@ -525,8 +525,7 @@ static void vmd_domain_reset(struct vmd_dev *vmd)
                        base = vmd->cfgbar + PCIE_ECAM_OFFSET(bus,
                                                PCI_DEVFN(dev, 0), 0);
 
-                       hdr_type = readb(base + PCI_HEADER_TYPE) &
-                                        PCI_HEADER_TYPE_MASK;
+                       hdr_type = readb(base + PCI_HEADER_TYPE);
 
                        functions = (hdr_type & 0x80) ? 8 : 1;
                        for (fn = 0; fn < functions; fn++) {