Reduce RAM to 4 GiB

It seems to be hanging now in LVM.
This commit is contained in:
Rodrigo Arias 2024-10-10 16:09:44 +02:00
parent f19f5b19ae
commit 7d3fe35dfb

View File

@ -9,7 +9,8 @@
* [0x0_4000_0000, 0x0_6000_0000) -> IO (512 MiB) * [0x0_4000_0000, 0x0_6000_0000) -> IO (512 MiB)
* [0x0_6000_0000, 0x0_7000_0000) -> DMA pool (256 MiB) * [0x0_6000_0000, 0x0_7000_0000) -> DMA pool (256 MiB)
* [0x0_7000_0000, 0x0_8000_0000) -> DMA pool (256 MiB) * [0x0_7000_0000, 0x0_8000_0000) -> DMA pool (256 MiB)
* [0x0_8000_0000, 0x1_c000_0000) -> RAM memory (5 GiB) * [0x0_8000_0000, 0x1_8000_0000) -> RAM memory (4 GiB)
* [0x1_8000_0000, 0x1_c000_0000) -> Unused (1 GiB)
* [0x1_c000_0000, 0x2_8000_0000) -> PMEM (3 GiB) * [0x1_c000_0000, 0x2_8000_0000) -> PMEM (3 GiB)
*/ */
@ -46,7 +47,7 @@
/* Notice addresses > 32 bits from here */ /* Notice addresses > 32 bits from here */
#define MEM_ADDR 0x080000000 #define MEM_ADDR 0x080000000
#define MEM_SIZE 0x140000000 #define MEM_SIZE 0x100000000
#define PMEM_ADDR 0x1c0000000 #define PMEM_ADDR 0x1c0000000
#define PMEM_SIZE 0x0c0000000 #define PMEM_SIZE 0x0c0000000