linuxOS_D21X/target/d211/common/kernel.its.dtsi
2024-11-29 16:23:11 +08:00

55 lines
1.2 KiB
Plaintext

/*
* Simple U-Boot uImage source file containing a single kernel and FDT blob
*/
/dts-v1/;
/ {
description = "Artinchip Linux kernel and FDT blob";
#address-cells = <1>;
images {
kernel {
description = "Artinchip Linux kernel";
data = /incbin/("./Image");
type = "kernel";
arch = "riscv";
compression = "none";
os = "linux";
load = <0x40000000>;
entry = <0x40000000>;
};
opensbi {
description = "OpenSBI fw_dynamic Firmware";
type = "firmware";
os = "opensbi";
arch = "riscv";
compression = "none";
/* Don't set the load address and entry address for opensbi,
* let SPL determine the load address according DRAM size.
* load = <CONFIG_SPL_OPENSBI_LOAD_ADDR>;
* entry = <CONFIG_SPL_OPENSBI_LOAD_ADDR>;
*/
data = /incbin/("fw_dynamic.bin");
};
fdt-1 {
description = "Flattened Device Tree blob";
data = /incbin/("./u-boot.dtb");
type = "flat_dt";
arch = "riscv";
load = <0x43F00000>;
compression = "none";
};
};
configurations {
default = "conf-1";
conf-1 {
description = "Boot Linux kernel with FDT blob";
firmware = "opensbi";
kernel = "kernel";
fdt = "fdt-1";
};
};
};