Prepare v2023.10
[platform/kernel/u-boot.git] / tools / binman / test / 264_tee_os_opt_fit.dts
1 // SPDX-License-Identifier: GPL-2.0+
2
3 /dts-v1/;
4
5 / {
6         #address-cells = <1>;
7         #size-cells = <1>;
8
9         binman {
10                 fit {
11                         description = "test-desc";
12                         #address-cells = <1>;
13                         fit,fdt-list = "of-list";
14
15                         images {
16                                 @tee-SEQ {
17                                         fit,operation = "split-elf";
18                                         description = "TEE";
19                                         type = "tee";
20                                         arch = "arm64";
21                                         os = "tee";
22                                         compression = "none";
23                                         fit,load;
24                                         fit,entry;
25                                         fit,data;
26
27                                         tee-os {
28                                                 optional;
29                                         };
30                                 };
31                         };
32                 };
33         };
34 };