diff mbox series

[1/3] riscv: sifive: unmatched: Adjust for big ramdisk image

Message ID 20220524043114.45885-1-bmeng.cn@gmail.com
State Accepted
Commit b84d24c3c5963a9fd130c073d504f8d80b5d1a9c
Delegated to: Andes
Headers show
Series [1/3] riscv: sifive: unmatched: Adjust for big ramdisk image | expand

Commit Message

Bin Meng May 24, 2022, 4:31 a.m. UTC
Move kernel_comp_addr_r to an address that comes before the ramdisk
image, since the decompressed kernel size is known to us. This way
we can allow big ramdisk image to be loaded.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
---

 include/configs/sifive-unmatched.h | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

Comments

Leo Liang May 26, 2022, 9:06 a.m. UTC | #1
On Tue, May 24, 2022 at 12:31:12PM +0800, Bin Meng wrote:
> Move kernel_comp_addr_r to an address that comes before the ramdisk
> image, since the decompressed kernel size is known to us. This way
> we can allow big ramdisk image to be loaded.
> 
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> ---
> 
>  include/configs/sifive-unmatched.h | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)

Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
diff mbox series

Patch

diff --git a/include/configs/sifive-unmatched.h b/include/configs/sifive-unmatched.h
index 087764666b..fa734a66be 100644
--- a/include/configs/sifive-unmatched.h
+++ b/include/configs/sifive-unmatched.h
@@ -56,12 +56,12 @@ 
 
 #define CONFIG_EXTRA_ENV_SETTINGS \
 	"kernel_addr_r=0x84000000\0" \
-	"fdt_addr_r=0x88000000\0" \
-	"scriptaddr=0x88100000\0" \
-	"pxefile_addr_r=0x88200000\0" \
-	"ramdisk_addr_r=0x88300000\0" \
-	"kernel_comp_addr_r=0x90000000\0" \
+	"kernel_comp_addr_r=0x88000000\0" \
 	"kernel_comp_size=0x4000000\0" \
+	"fdt_addr_r=0x8c000000\0" \
+	"scriptaddr=0x8c100000\0" \
+	"pxefile_addr_r=0x8c200000\0" \
+	"ramdisk_addr_r=0x8c300000\0" \
 	"type_guid_gpt_loader1=" TYPE_GUID_LOADER1 "\0" \
 	"type_guid_gpt_loader2=" TYPE_GUID_LOADER2 "\0" \
 	"type_guid_gpt_system=" TYPE_GUID_SYSTEM "\0" \