1/dts-v1/;
2
3/ {
4	description = "U-Boot mainline";
5	#address-cells = <1>;
6
7	images {
8		uboot {
9			description = "U-Boot (32-bit)";
10			data = /incbin/("u-boot-nodtb.bin");
11			type = "standalone";
12			os = "U-Boot";
13			arch = "arm";
14			compression = "none";
15			load = <0xc0100000>;
16			entry = <0xc0100000>;
17		};
18
19		fdt-1 {
20			description = ".dtb";
21			data = /incbin/("arch/arm/dts/stm32mp15xx-dhcor-avenger96.dtb");
22			type = "flat_dt";
23			arch = "arm";
24			compression = "none";
25		};
26	};
27
28	configurations {
29		default = "config-1";
30
31		config-1 {
32			/* DT+SoM+board model */
33			description = "arrow,stm32mp15xx-avenger96_somrev0_boardrev1";
34			firmware = "uboot";
35			fdt = "fdt-1";
36		};
37
38		/* Add 586-200..586-400 with fdt-2..fdt-4 here */
39	};
40};
41