diff options
| author | Svyatoslav Ryhel <[email protected]> | 2025-03-07 10:59:57 +0200 |
|---|---|---|
| committer | Svyatoslav Ryhel <[email protected]> | 2025-03-08 16:27:22 +0200 |
| commit | e6883b6b30784a529fbccd74f3226ad493d15116 (patch) | |
| tree | 85142fb05bb3fe50a68c12bdc0f6a846b8e34a48 /include | |
| parent | 0fd7ee0306a88bd99d3820167fa45a7ee6fbc1e1 (diff) | |
sandbox: remap memory load addresses
The existing memory layout places the bloblist at 0xb000 and the fdt at
0x100, resulting in a 0xaf00 size constraint for the fdt. This constraint
has been reached. Lets modify the layout by moving the bloblist to 0x100,
device tree to 0x1000 and placing early memory allocation after pre-console
buffer at 0xf4000. This should guarantee sufficient memory allocation for
future expansion.
Signed-off-by: Svyatoslav Ryhel <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/sandbox.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h index 2372485c84e..db2ac7f83bb 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -6,7 +6,7 @@ #ifndef __CONFIG_H #define __CONFIG_H -#define CFG_MALLOC_F_ADDR 0x0010000 +#define CFG_MALLOC_F_ADDR 0x000f4000 /* Size of our emulated memory */ #define SB_CONCAT(x, y) x ## y |
