aboutsummaryrefslogtreecommitdiff
path: root/include/configs/sifive-unleashed.h
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2022-05-24 12:31:13 +0800
committerLeo Yu-Chi Liang <ycliang@andestech.com>2022-05-26 18:42:34 +0800
commitce78c4cd6e8f5cd5e2322a026cc2d333f500781b (patch)
treef7a73f8952853fe2e76748c3fd550939a2430f7c /include/configs/sifive-unleashed.h
parentb84d24c3c5963a9fd130c073d504f8d80b5d1a9c (diff)
downloadu-boot-ce78c4cd6e8f5cd5e2322a026cc2d333f500781b.zip
u-boot-ce78c4cd6e8f5cd5e2322a026cc2d333f500781b.tar.gz
u-boot-ce78c4cd6e8f5cd5e2322a026cc2d333f500781b.tar.bz2
riscv: sifive: unleashed: Set kernel_comp_addr_r for compressed kernel
Set kernel_comp_addr_r and kernel_comp_size for compressed kernel. Adjust existing addresses for ramdisk, so that kernel_comp_addr_r 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. Update unleashed.rst to remove the manual environment configuration for compressed kernel boot. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
Diffstat (limited to 'include/configs/sifive-unleashed.h')
-rw-r--r--include/configs/sifive-unleashed.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/configs/sifive-unleashed.h b/include/configs/sifive-unleashed.h
index 920f314..96e2eb6 100644
--- a/include/configs/sifive-unleashed.h
+++ b/include/configs/sifive-unleashed.h
@@ -61,12 +61,14 @@
"fdt_high=0xffffffffffffffff\0" \
"initrd_high=0xffffffffffffffff\0" \
"kernel_addr_r=0x84000000\0" \
- "fdt_addr_r=0x88000000\0" \
- "scriptaddr=0x88100000\0" \
+ "kernel_comp_addr_r=0x88000000\0" \
+ "kernel_comp_size=0x4000000\0" \
+ "fdt_addr_r=0x8c000000\0" \
+ "scriptaddr=0x8c100000\0" \
"script_offset_f=0x1fff000\0" \
"script_size_f=0x1000\0" \
- "pxefile_addr_r=0x88200000\0" \
- "ramdisk_addr_r=0x88300000\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" \