blob: 9be4b3c8d2fe236293636b95de9431692df78c9d [file] [log] [blame]
Kever Yangaabb51d2018-08-23 17:18:00 +08001/*
2 * Copyright (C) 2017 Rockchip Electronic Co.,Ltd
3 *
4 * Simple U-boot fit source file containing U-Boot, dtb and optee
5 */
6
7/dts-v1/;
8
9/ {
10 description = "Simple image with OP-TEE support";
11 #address-cells = <1>;
12
13 images {
14 uboot@1 {
15 description = "U-Boot";
16 data = /incbin/("../../../u-boot-nodtb.bin");
17 type = "standalone";
18 os = "U-Boot";
19 arch = "arm";
20 compression = "none";
21 load = <0x61000000>;
22 };
23 optee@1 {
24 description = "OP-TEE";
25 data = /incbin/("../../../tee.bin");
26 type = "firmware";
27 arch = "arm";
28 os = "tee";
29 compression = "none";
30 load = <0x68400000>;
31 entry = <0x68400000>;
32 };
33 fdt@1 {
34 description = "dtb";
35 data = /incbin/("../../../u-boot.dtb");
36 type = "flat_dt";
37 compression = "none";
38 };
39 };
40
41 configurations {
42 default = "conf@1";
43 conf@1 {
44 description = "Rockchip armv7 with OP-TEE";
45 firmware = "optee@1";
46 loadables = "uboot@1";
47 fdt = "fdt@1";
48 };
49 };
50};