rockchip: evb-rk3229: add fit source file for itb
We package U-Boot and OP-TEE into one itb file for SPL, so that we can support OP-TEE in SPL. Change-Id: I2c20333d6f3bb11ac1ec4bbb32c901028fb15d64 Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
This commit is contained in:
parent
821035d8ed
commit
3e3311d94f
|
|
@ -0,0 +1,48 @@
|
|||
/*
|
||||
* Copyright (C) 2017 Rockchip Electronic Co.,Ltd
|
||||
*
|
||||
* Simple U-boot fit source file containing U-Boot, dtb and optee
|
||||
*/
|
||||
|
||||
/dts-v1/;
|
||||
|
||||
/ {
|
||||
description = "Simple image with OP-TEE support";
|
||||
#address-cells = <1>;
|
||||
|
||||
images {
|
||||
uboot@1 {
|
||||
description = "U-Boot";
|
||||
data = /incbin/("../../../u-boot-nodtb.bin");
|
||||
type = "standalone";
|
||||
arch = "arm";
|
||||
compression = "none";
|
||||
load = <0x61000000>;
|
||||
};
|
||||
optee@1 {
|
||||
description = "ARM Trusted Firmware";
|
||||
data = /incbin/("../../../tee.bin");
|
||||
type = "firmware";
|
||||
arch = "arm";
|
||||
compression = "none";
|
||||
load = <0x68400000>;
|
||||
entry = <0x68400000>;
|
||||
};
|
||||
fdt@1 {
|
||||
description = "rk3229 dtb";
|
||||
data = /incbin/("../../../u-boot.dtb");
|
||||
type = "flat_dt";
|
||||
compression = "none";
|
||||
};
|
||||
};
|
||||
|
||||
configurations {
|
||||
default = "conf@1";
|
||||
conf@1 {
|
||||
description = "RK3399 evb";
|
||||
firmware = "uboot@1";
|
||||
loadables = "optee@1";
|
||||
fdt = "fdt@1";
|
||||
};
|
||||
};
|
||||
};
|
||||
Loading…
Reference in New Issue