]> git.baikalelectronics.ru Git - kernel.git/commit
PCI: Add dev_flags bit to access VPD through function 0
authorMark Rustad <mark.d.rustad@intel.com>
Mon, 13 Jul 2015 18:40:02 +0000 (11:40 -0700)
committerBjorn Helgaas <bhelgaas@google.com>
Tue, 21 Jul 2015 18:11:53 +0000 (13:11 -0500)
commitb84fe6712a225182010c82fce821156bcad46d37
tree00a63ae50d202eb8a0ff9594df61f95214dabc18
parent46d4590be83258d5ed06ce2d217ed02e16fa8108
PCI: Add dev_flags bit to access VPD through function 0

Add a dev_flags bit, PCI_DEV_FLAGS_VPD_REF_F0, to access VPD through
function 0 to provide VPD access on other functions.  This is for hardware
devices that provide copies of the same VPD capability registers in
multiple functions.  Because the kernel expects that each function has its
own registers, both the locking and the state tracking are affected by VPD
accesses to different functions.

On such devices for example, if a VPD write is performed on function 0,
*any* later attempt to read VPD from any other function of that device will
hang.  This has to do with how the kernel tracks the expected value of the
F bit per function.

Concurrent accesses to different functions of the same device can not only
hang but also corrupt both read and write VPD data.

When hangs occur, typically the error message:

  vpd r/w failed.  This is likely a firmware bug on this device.

will be seen.

Never set this bit on function 0 or there will be an infinite recursion.

Signed-off-by: Mark Rustad <mark.d.rustad@intel.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Alexander Duyck <alexander.h.duyck@redhat.com>
CC: stable@vger.kernel.org
drivers/pci/access.c
include/linux/pci.h