blob: 22c453e6037bb1e490414899aece1cda0d5d170a [file] [log] [blame]
Simon Glass5f423422022-03-05 20:19:12 -07001// SPDX-License-Identifier: GPL-2.0+
2
3/dts-v1/;
4
5/ {
6 #address-cells = <1>;
7 #size-cells = <1>;
8
9 binman {
10 u-boot {
11 };
12 fit {
13 description = "test-desc";
14 #address-cells = <1>;
15 fit,fdt-list = "of-list";
16
17 images {
18 @fdt-SEQ {
19 description = "fdt-NAME.dtb";
20 type = "flat_dt";
21 compression = "none";
22 };
23 atf: @atf-SEQ {
24 fit,operation = "split-elf";
25 description = "ARM Trusted Firmware";
26 type = "firmware";
27 arch = "arm64";
28 os = "arm-trusted-firmware";
29 compression = "none";
30 fit,load;
31 fit,entry;
32 fit,data;
33
34 atf-bl31 {
35 };
Jonas Karlmand2c7d902023-01-21 19:01:48 +000036 hash {
37 algo = "sha256";
38 };
Simon Glass5f423422022-03-05 20:19:12 -070039 };
40
41 @tee-SEQ {
42 fit,operation = "split-elf";
43 description = "TEE";
44 type = "tee";
45 arch = "arm64";
46 os = "tee";
47 compression = "none";
48 fit,load;
49 fit,entry;
50 fit,data;
51
52 tee-os {
53 };
Jonas Karlmand2c7d902023-01-21 19:01:48 +000054 hash-1 {
55 algo = "sha256";
56 };
Simon Glass5f423422022-03-05 20:19:12 -070057 };
58 };
59
60 configurations {
61 default = "@config-DEFAULT-SEQ";
62 config: @config-SEQ {
63 description = "conf-NAME.dtb";
64 fdt = "fdt-SEQ";
65 fit,loadables;
66 };
67 };
68 };
69
70 u-boot-nodtb {
71 };
72 };
73};