diff options
author | VlaoMao | 2017-09-22 18:49:02 +0300 |
---|---|---|
committer | Stefan Roese | 2017-11-16 11:43:15 +0100 |
commit | 49b23e035d96227e1d760e26a50688804de175ed (patch) | |
tree | 923fbd6c118e181a673802a66e23b830e65bb9e3 /drivers/pci/pci_mvebu.c | |
parent | c253573f3e269fd9a24ee6684d87dd91106018a5 (diff) |
pci: mvebu: Increase size of PCIe default mapping
Increase size PCI memory mapping from 32MiB to 128MiB.
Signed-off-by: VlaoMao <vlaomao@gmail.com>
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'drivers/pci/pci_mvebu.c')
-rw-r--r-- | drivers/pci/pci_mvebu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pci/pci_mvebu.c b/drivers/pci/pci_mvebu.c index da0aa29865e..076a63f2100 100644 --- a/drivers/pci/pci_mvebu.c +++ b/drivers/pci/pci_mvebu.c @@ -82,11 +82,11 @@ struct mvebu_pcie { /* * MVEBU PCIe controller needs MEMORY and I/O BARs to be mapped - * into SoCs address space. Each controller will map 32M of MEM + * into SoCs address space. Each controller will map 128M of MEM * and 64K of I/O space when registered. */ static void __iomem *mvebu_pcie_membase = (void __iomem *)MBUS_PCI_MEM_BASE; -#define PCIE_MEM_SIZE (32 << 20) +#define PCIE_MEM_SIZE (128 << 20) #if defined(CONFIG_ARMADA_38X) #define PCIE_BASE(if) \ |