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		multiple-images;
11
12		ti_spl_template: template-1 {
13			fit {
14				description = "test-desc";
15				#address-cells = <1>;
16				images {
17					atf {
18						description = "atf";
19						ti-secure {
20							type = "collection";
21							content = <&atf>;
22							keyfile = "key.pem";
23						};
24						atf: atf-bl31 {
25							description = "atf";
26						};
27					};
28				};
29			};
30		};
31
32		image {
33			insert-template = <&ti_spl_template>;
34			fit {
35				images {
36					fdt-0 {
37						description = "fdt";
38						ti-secure {
39							type = "collection";
40							content = <&foo_dtb>;
41							keyfile = "key.pem";
42						};
43						foo_dtb: blob-ext {
44							filename = "vga.bin";
45						};
46					};
47				};
48			};
49		};
50
51		image-2 {
52			insert-template = <&ti_spl_template>;
53			fit {
54				images {
55					fdt-0 {
56						description = "fdt";
57						blob-ext {
58							filename = "vga.bin";
59						};
60					};
61				};
62			};
63		};
64	};
65};
66