1/*
2 * Copyright (C) 2017 Theobroma Systems Design und Consulting GmbH
3 *
4 * Minimal dts for a SPL FIT image payload.
5 *
6 * SPDX-License-Identifier: GPL-2.0+  X11
7 */
8
9/dts-v1/;
10
11/ {
12	description = "FIT image with U-Boot proper, ATF bl31, DTB";
13	#address-cells = <1>;
14
15	images {
16		uboot {
17			description = "U-Boot (64-bit)";
18			data = /incbin/("../../../u-boot-nodtb.bin");
19			type = "standalone";
20			os = "U-Boot";
21			arch = "arm64";
22			compression = "none";
23			load = <0x00200000>;
24		};
25		atf {
26			description = "ARM Trusted Firmware";
27			data = /incbin/("../../../bl31-rk3368.bin");
28			type = "firmware";
29			os = "arm-trusted-firmware";
30			arch = "arm64";
31			compression = "none";
32			load = <0x00100000>;
33			entry = <0x00100000>;
34		};
35
36		fdt {
37			description = "RK3368-uQ7 (Lion) flat device-tree";
38			data = /incbin/("../../../u-boot.dtb");
39			type = "flat_dt";
40			compression = "none";
41		};
42	};
43
44	configurations {
45		default = "conf";
46		conf {
47			description = "Theobroma Systems RK3368-uQ7 (Puma) SoM";
48			firmware = "atf";
49			loadables = "uboot";
50			fdt = "fdt";
51		};
52	};
53};
54