2018-08-23 09:18:00 +00:00
|
|
|
/*
|
|
|
|
* 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 {
|
2019-07-22 11:59:22 +00:00
|
|
|
uboot {
|
2018-08-23 09:18:00 +00:00
|
|
|
description = "U-Boot";
|
|
|
|
data = /incbin/("../../../u-boot-nodtb.bin");
|
|
|
|
type = "standalone";
|
|
|
|
os = "U-Boot";
|
|
|
|
arch = "arm";
|
|
|
|
compression = "none";
|
|
|
|
load = <0x61000000>;
|
|
|
|
};
|
2019-07-22 11:59:22 +00:00
|
|
|
optee {
|
2018-08-23 09:18:00 +00:00
|
|
|
description = "OP-TEE";
|
|
|
|
data = /incbin/("../../../tee.bin");
|
|
|
|
type = "firmware";
|
|
|
|
arch = "arm";
|
|
|
|
os = "tee";
|
|
|
|
compression = "none";
|
|
|
|
load = <0x68400000>;
|
|
|
|
entry = <0x68400000>;
|
|
|
|
};
|
2019-07-22 11:59:22 +00:00
|
|
|
fdt {
|
2018-08-23 09:18:00 +00:00
|
|
|
description = "dtb";
|
|
|
|
data = /incbin/("../../../u-boot.dtb");
|
|
|
|
type = "flat_dt";
|
|
|
|
compression = "none";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
configurations {
|
2019-07-22 11:59:22 +00:00
|
|
|
default = "conf";
|
|
|
|
conf {
|
2018-08-23 09:18:00 +00:00
|
|
|
description = "Rockchip armv7 with OP-TEE";
|
2019-07-22 11:59:22 +00:00
|
|
|
firmware = "optee";
|
|
|
|
loadables = "uboot";
|
|
|
|
fdt = "fdt";
|
2018-08-23 09:18:00 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|