Skip to content

Commit

Permalink
conf/evalsoc: add missing uboot_spl.its
Browse files Browse the repository at this point in the history
Signed-off-by: Huaqi Fang <[email protected]>
  • Loading branch information
fanghuaqi committed Mar 12, 2024
1 parent 0287b79 commit 1a48b78
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions conf/evalsoc/uboot_spl.its
Original file line number Diff line number Diff line change
@@ -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";
};

};
};

0 comments on commit 1a48b78

Please sign in to comment.