From 1a48b7800e1e8881eb565f88b52a8fef2c3eb89f Mon Sep 17 00:00:00 2001 From: Huaqi Fang <578567190@qq.com> Date: Tue, 12 Mar 2024 10:53:49 +0800 Subject: [PATCH] conf/evalsoc: add missing uboot_spl.its Signed-off-by: Huaqi Fang <578567190@qq.com> --- conf/evalsoc/uboot_spl.its | 61 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 conf/evalsoc/uboot_spl.its diff --git a/conf/evalsoc/uboot_spl.its b/conf/evalsoc/uboot_spl.its new file mode 100644 index 0000000..1233830 --- /dev/null +++ b/conf/evalsoc/uboot_spl.its @@ -0,0 +1,61 @@ +/dts-v1/; + +/ { + description = "UBoot SPL Image"; + #address-cells = <2>; + + images { + + opensbi { + description = "OpenSBI Dynamic Firmaware"; + data = /incbin/("opensbi.bin"); + type = "firmware"; + arch = "riscv"; + os = "opensbi"; + load = <0x0 0x80000000>; + entry = <0x0 0x80000000>; + compression = "none"; + hash-1 { + algo = "sha256"; + }; + }; + + uboot { + description = "U-Boot"; + data = /incbin/("u-boot.bin"); + type = "standalone"; + arch = "riscv"; + os = "U-Boot"; + load = <0x0 0x80200000>; + compression = "none"; + hash-1 { + algo = "sha256"; + }; + }; + + fdt { + description = "Firmware DTB"; + data = /incbin/("fdt.dtb"); + type = "flat_dt"; + arch = "riscv"; + load = <0x0 0x88000000>; + compression = "none"; + hash-1 { + algo = "sha256"; + }; + }; + }; + + configurations { + default = "boot"; + + boot { + description = "UBoot SPL"; + firmware = "opensbi"; + loadables = "uboot"; + fdt = "fdt"; + }; + + }; +}; +