aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/include/asm
diff options
context:
space:
mode:
authorWei Yang <weiyang@linux.vnet.ibm.com>2015-03-25 04:23:55 -0400
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2015-03-30 22:02:37 -0400
commit6e628c7d33d99406cef374972c89389edcc3570f (patch)
tree21a6a79faa895cd26f5127dfaba7b3423b2ae409 /arch/powerpc/include/asm
parent9e8d4a19ab66ec9e132d405357b9108a4f26efd3 (diff)
powerpc/powernv: Reserve additional space for IOV BAR according to the number of total_pe
On PHB3, PF IOV BAR will be covered by M64 BAR to have better PE isolation. M64 BAR is a type of hardware resource in PHB3, which could map a range of MMIO to PE numbers on powernv platform. And this range is divided equally by the number of total_pe with each divided range mapping to a PE number. Also, the M64 BAR must map a MMIO range with power-of-two size. The total_pe number is usually different from total_VFs, which can lead to a conflict between MMIO space and the PE number. For example, if total_VFs is 128 and total_pe is 256, the second half of M64 BAR will be part of other PCI device, which may already belong to other PEs. This patch prevents the conflict by reserving additional space for the PF IOV BAR, which is total_pe number of VF's BAR size. [bhelgaas: make dev_printk() output more consistent, index resource[] conventionally] Signed-off-by: Wei Yang <weiyang@linux.vnet.ibm.com> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/include/asm')
-rw-r--r--arch/powerpc/include/asm/machdep.h4
-rw-r--r--arch/powerpc/include/asm/pci-bridge.h3
2 files changed, 7 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/machdep.h b/arch/powerpc/include/asm/machdep.h
index 098d51e924ea..b303833fa3fb 100644
--- a/arch/powerpc/include/asm/machdep.h
+++ b/arch/powerpc/include/asm/machdep.h
@@ -250,6 +250,10 @@ struct machdep_calls {
250 /* Reset the secondary bus of bridge */ 250 /* Reset the secondary bus of bridge */
251 void (*pcibios_reset_secondary_bus)(struct pci_dev *dev); 251 void (*pcibios_reset_secondary_bus)(struct pci_dev *dev);
252 252
253#ifdef CONFIG_PCI_IOV
254 void (*pcibios_fixup_sriov)(struct pci_dev *pdev);
255#endif /* CONFIG_PCI_IOV */
256
253 /* Called to shutdown machine specific hardware not already controlled 257 /* Called to shutdown machine specific hardware not already controlled
254 * by other drivers. 258 * by other drivers.
255 */ 259 */
diff --git a/arch/powerpc/include/asm/pci-bridge.h b/arch/powerpc/include/asm/pci-bridge.h
index ece30f589398..7b8ebc5929ff 100644
--- a/arch/powerpc/include/asm/pci-bridge.h
+++ b/arch/powerpc/include/asm/pci-bridge.h
@@ -178,6 +178,9 @@ struct pci_dn {
178#define IODA_INVALID_PE (-1) 178#define IODA_INVALID_PE (-1)
179#ifdef CONFIG_PPC_POWERNV 179#ifdef CONFIG_PPC_POWERNV
180 int pe_number; 180 int pe_number;
181#ifdef CONFIG_PCI_IOV
182 u16 vfs_expanded; /* number of VFs IOV BAR expanded */
183#endif /* CONFIG_PCI_IOV */
181#endif 184#endif
182 struct list_head child_list; 185 struct list_head child_list;
183 struct list_head list; 186 struct list_head list;