blob: cb7d92fead697205aed0b91344f12f7a6af9d051 [file] [log] [blame]
Klaus Goger81039932017-04-07 19:13:38 +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, M0 Firmware, DTB";
13 #address-cells = <1>;
14
15 images {
Philipp Tomsichdc30a6e2017-05-05 12:33:24 +020016 uboot {
Klaus Goger81039932017-04-07 19:13:38 +020017 description = "U-Boot (64-bit)";
18 data = /incbin/("../../../u-boot-nodtb.bin");
19 type = "standalone";
Philipp Tomsich832273a2017-09-13 21:29:40 +020020 os = "U-Boot";
Klaus Goger81039932017-04-07 19:13:38 +020021 arch = "arm64";
22 compression = "none";
23 load = <0x00200000>;
24 };
Philipp Tomsichdc30a6e2017-05-05 12:33:24 +020025 atf {
Klaus Goger81039932017-04-07 19:13:38 +020026 description = "ARM Trusted Firmware";
Klaus Goger653d2042017-07-18 21:41:28 +020027 data = /incbin/("../../../bl31-rk3399.bin");
Klaus Goger81039932017-04-07 19:13:38 +020028 type = "firmware";
29 arch = "arm64";
Philipp Tomsich832273a2017-09-13 21:29:40 +020030 os = "arm-trusted-firmware";
Klaus Goger81039932017-04-07 19:13:38 +020031 compression = "none";
Philipp Tomsich832273a2017-09-13 21:29:40 +020032 load = <0x1000>;
33 entry = <0x1000>;
Klaus Goger81039932017-04-07 19:13:38 +020034 };
Philipp Tomsichdc30a6e2017-05-05 12:33:24 +020035 pmu {
Klaus Goger81039932017-04-07 19:13:38 +020036 description = "Cortex-M0 firmware";
37 data = /incbin/("../../../rk3399m0.bin");
38 type = "pmu-firmware";
39 compression = "none";
Philipp Tomsich832273a2017-09-13 21:29:40 +020040 load = <0x180000>;
Klaus Goger81039932017-04-07 19:13:38 +020041 };
Philipp Tomsichdc30a6e2017-05-05 12:33:24 +020042 fdt {
Klaus Goger81039932017-04-07 19:13:38 +020043 description = "RK3399-Q7 (Puma) flat device-tree";
44 data = /incbin/("../../../u-boot.dtb");
45 type = "flat_dt";
46 compression = "none";
47 };
48 };
49
50 configurations {
Philipp Tomsichdc30a6e2017-05-05 12:33:24 +020051 default = "conf";
52 conf {
Klaus Goger81039932017-04-07 19:13:38 +020053 description = "Theobroma Systems RK3399-Q7 (Puma) SoM";
Philipp Tomsich832273a2017-09-13 21:29:40 +020054 firmware = "atf";
55 loadables = "uboot", "pmu";
Philipp Tomsichdc30a6e2017-05-05 12:33:24 +020056 fdt = "fdt";
Klaus Goger81039932017-04-07 19:13:38 +020057 };
58 };
59};