diff options
| author | Anup Patel <[email protected]> | 2019-07-22 05:16:28 +0000 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2019-07-24 09:24:28 +0530 |
| commit | e3f743339ab3d103aa5399a7bbb357f8cc618862 (patch) | |
| tree | 2ce10fd754927568ff26ff748611010dba8ec16f | |
| parent | e7456399e439cf8c2f8c44264c0988218b2b6ac5 (diff) | |
platform: sifive/fu540: Move FDT further up
This patch changes FW_xyz_FDT_ADDR to RAM_START+128MB (i.e. 0x88000000)
so that next stage bootloader (i.e. U-Boot) has enough space to unpack
bigger kernel images.
Reported-by: David Abdurachmanov <[email protected]>
Signed-off-by: Anup Patel <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
Reviewed-by: David Abdurachmanov <[email protected]>
Tested-by: David Abdurachmanov <[email protected]>
| -rw-r--r-- | platform/sifive/fu540/config.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/sifive/fu540/config.mk b/platform/sifive/fu540/config.mk index 59054338..84b09876 100644 --- a/platform/sifive/fu540/config.mk +++ b/platform/sifive/fu540/config.mk @@ -18,7 +18,7 @@ FW_TEXT_START=0x80000000 FW_DYNAMIC=y FW_JUMP=y FW_JUMP_ADDR=0x80200000 -FW_JUMP_FDT_ADDR=0x82200000 +FW_JUMP_FDT_ADDR=0x88000000 FW_PAYLOAD=y FW_PAYLOAD_OFFSET=0x200000 -FW_PAYLOAD_FDT_ADDR=0x82200000 +FW_PAYLOAD_FDT_ADDR=0x88000000 |
