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