blob: 405750f3517b5588428626a9b136044b736d3868 [file] [log] [blame]
Philipp Tomsich1620d352017-07-13 01:36:39 +02001/*
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 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 arch = "arm64";
29 compression = "none";
30 load = <0x00010000>;
31 entry = <0x00010000>;
32 };
33
34 fdt {
35 description = "RK3368-uQ7 (Lion) flat device-tree";
36 data = /incbin/("../../../u-boot.dtb");
37 type = "flat_dt";
38 compression = "none";
39 };
40 };
41
42 configurations {
43 default = "conf";
44 conf {
45 description = "Theobroma Systems RK3368-uQ7 (Puma) SoM";
46 firmware = "uboot";
47 loadables = "atf";
Philipp Tomsich3560d7d2017-07-28 18:00:27 +020048 fdt = "fdt";
Philipp Tomsich1620d352017-07-13 01:36:39 +020049 };
50 };
51};