aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2023-12-07 22:15:18 +0100
committerHelge Deller <deller@gmx.de>2024-01-04 18:48:50 +0100
commite4772c981329b1c5854f1e9c85598d6f5f0cb5f8 (patch)
treec7995d08727dfef1cc3479a0653f3dba9be24649
parent4c6ecda618f2066707f50c53f31419244fd7f77a (diff)
downloadseabios-hppa-e4772c981329b1c5854f1e9c85598d6f5f0cb5f8.zip
seabios-hppa-e4772c981329b1c5854f1e9c85598d6f5f0cb5f8.tar.gz
seabios-hppa-e4772c981329b1c5854f1e9c85598d6f5f0cb5f8.tar.bz2
parisc: Increase PCI mapping space with PARISC_MMIO_LIMIT
Increase the limit for which the PCI memory region is mapped into shared memory. This fixes loading of megaraid-sas driver. Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r--src/fw/pciinit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fw/pciinit.c b/src/fw/pciinit.c
index d79fb56..55f331a 100644
--- a/src/fw/pciinit.c
+++ b/src/fw/pciinit.c
@@ -513,7 +513,7 @@ static void mch_mem_addr_setup(struct pci_device *dev, void *arg)
* parisc: If mmio bar is bigger than this size, map the bar it into the
* directed ELMMIO instead of the distributed LMMIO region.
*/
-#define PARISC_MMIO_LIMIT 0x10000
+#define PARISC_MMIO_LIMIT 0x40000
#if CONFIG_PARISC
static int dino_pci_slot_get_irq(struct pci_device *pci, int pin)