Prepare v2023.10
[platform/kernel/u-boot.git] / tools / binman / test / 223_fit_fdt_oper.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                 u-boot {
11                 };
12                 fit {
13                         description = "test-desc";
14                         #address-cells = <1>;
15                         fit,fdt-list = "of-list";
16
17                         images {
18                                 kernel {
19                                         description = "Vanilla Linux kernel";
20                                         type = "kernel";
21                                         arch = "ppc";
22                                         os = "linux";
23                                         compression = "gzip";
24                                         load = <00000000>;
25                                         entry = <00000000>;
26                                         hash-1 {
27                                                 algo = "crc32";
28                                         };
29                                         hash-2 {
30                                                 algo = "sha1";
31                                         };
32                                         u-boot {
33                                         };
34                                 };
35                                 @fdt-SEQ {
36                                         fit,operation = "gen-fdt-nodes";
37                                         description = "fdt-NAME.dtb";
38                                         type = "flat_dt";
39                                         compression = "none";
40                                 };
41                         };
42
43                         configurations {
44                                 default = "@config-DEFAULT-SEQ";
45                                 @config-SEQ {
46                                         description = "conf-NAME.dtb";
47                                         firmware = "uboot";
48                                         loadables = "atf";
49                                         fdt = "fdt-SEQ";
50                                 };
51                         };
52                 };
53                 u-boot-nodtb {
54                 };
55         };
56 };