On powernv platform, the IOV BAR size will be adjusted to meet the alignment requirement from hardware. This leads to the VF resource size need to be retrieved from hardware directly. This patch adds this flag for IOV BAR on powernv platform. Signed-off-by: Wei Yang <weiyang@xxxxxxxxxxxxxxxxxx> --- arch/powerpc/platforms/powernv/pci.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/arch/powerpc/platforms/powernv/pci.c b/arch/powerpc/platforms/powernv/pci.c index b97aa79..cc7c9a6 100644 --- a/arch/powerpc/platforms/powernv/pci.c +++ b/arch/powerpc/platforms/powernv/pci.c @@ -21,6 +21,7 @@ #include <linux/io.h> #include <linux/msi.h> #include <linux/iommu.h> +#include <uapi/linux/pci_regs.h> #include <asm/sections.h> #include <asm/io.h> @@ -876,3 +877,20 @@ static int __init tce_iommu_bus_notifier_init(void) } subsys_initcall_sync(tce_iommu_bus_notifier_init); + +static void pnv_sriov_final_fixup(struct pci_dev *dev) +{ + struct resource *res; + int i; + + if (!dev->is_physfn) + return; + + for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) { + res = dev->resource + PCI_IOV_RESOURCES + i; + if (!res->flags) + continue; + res->flags |= IORESOURCE_ARCH; + } +} +DECLARE_PCI_FIXUP_FINAL(PCI_ANY_ID, PCI_ANY_ID, pnv_sriov_final_fixup); -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html