blob: 530f059f3da5a0b8d0c5a2a69899fbdc0b983693 [file] [log] [blame]
Tom Rini8b0c8a12018-05-06 18:27:01 -04001/* SPDX-License-Identifier: GPL-2.0+ OR X11 */
Klaus Goger81039932017-04-07 19:13:38 +02002/*
3 * Copyright (C) 2017 Theobroma Systems Design und Consulting GmbH
4 *
5 * Minimal dts for a SPL FIT image payload.
Klaus Goger81039932017-04-07 19:13:38 +02006 */
7
8/dts-v1/;
9
10/ {
11 description = "FIT image with U-Boot proper, ATF bl31, M0 Firmware, DTB";
12 #address-cells = <1>;
13
14 images {
Philipp Tomsichdc30a6e2017-05-05 12:33:24 +020015 uboot {
Klaus Goger81039932017-04-07 19:13:38 +020016 description = "U-Boot (64-bit)";
17 data = /incbin/("../../../u-boot-nodtb.bin");
18 type = "standalone";
Philipp Tomsich832273a2017-09-13 21:29:40 +020019 os = "U-Boot";
Klaus Goger81039932017-04-07 19:13:38 +020020 arch = "arm64";
21 compression = "none";
22 load = <0x00200000>;
23 };
Philipp Tomsichdc30a6e2017-05-05 12:33:24 +020024 atf {
Klaus Goger81039932017-04-07 19:13:38 +020025 description = "ARM Trusted Firmware";
Klaus Goger653d2042017-07-18 21:41:28 +020026 data = /incbin/("../../../bl31-rk3399.bin");
Klaus Goger81039932017-04-07 19:13:38 +020027 type = "firmware";
28 arch = "arm64";
Philipp Tomsich832273a2017-09-13 21:29:40 +020029 os = "arm-trusted-firmware";
Klaus Goger81039932017-04-07 19:13:38 +020030 compression = "none";
Philipp Tomsich832273a2017-09-13 21:29:40 +020031 load = <0x1000>;
32 entry = <0x1000>;
Klaus Goger81039932017-04-07 19:13:38 +020033 };
Philipp Tomsichdc30a6e2017-05-05 12:33:24 +020034 pmu {
Klaus Goger81039932017-04-07 19:13:38 +020035 description = "Cortex-M0 firmware";
36 data = /incbin/("../../../rk3399m0.bin");
37 type = "pmu-firmware";
38 compression = "none";
Philipp Tomsich832273a2017-09-13 21:29:40 +020039 load = <0x180000>;
Klaus Goger81039932017-04-07 19:13:38 +020040 };
Philipp Tomsichdc30a6e2017-05-05 12:33:24 +020041 fdt {
Klaus Goger81039932017-04-07 19:13:38 +020042 description = "RK3399-Q7 (Puma) flat device-tree";
43 data = /incbin/("../../../u-boot.dtb");
44 type = "flat_dt";
45 compression = "none";
46 };
47 };
48
49 configurations {
Philipp Tomsichdc30a6e2017-05-05 12:33:24 +020050 default = "conf";
51 conf {
Klaus Goger81039932017-04-07 19:13:38 +020052 description = "Theobroma Systems RK3399-Q7 (Puma) SoM";
Philipp Tomsich832273a2017-09-13 21:29:40 +020053 firmware = "atf";
54 loadables = "uboot", "pmu";
Philipp Tomsichdc30a6e2017-05-05 12:33:24 +020055 fdt = "fdt";
Klaus Goger81039932017-04-07 19:13:38 +020056 };
57 };
58};