blob: 520f846d66a51bc56b0bcbc0f990e5415d306db8 [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";
20 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";
29 compression = "none";
30 load = <0x00001000>;
31 entry = <0x00001000>;
32 };
Philipp Tomsichdc30a6e2017-05-05 12:33:24 +020033 pmu {
Klaus Goger81039932017-04-07 19:13:38 +020034 description = "Cortex-M0 firmware";
35 data = /incbin/("../../../rk3399m0.bin");
36 type = "pmu-firmware";
37 compression = "none";
38 load = <0xff8c0000>;
39 };
Philipp Tomsichdc30a6e2017-05-05 12:33:24 +020040 fdt {
Klaus Goger81039932017-04-07 19:13:38 +020041 description = "RK3399-Q7 (Puma) flat device-tree";
42 data = /incbin/("../../../u-boot.dtb");
43 type = "flat_dt";
44 compression = "none";
45 };
46 };
47
48 configurations {
Philipp Tomsichdc30a6e2017-05-05 12:33:24 +020049 default = "conf";
50 conf {
Klaus Goger81039932017-04-07 19:13:38 +020051 description = "Theobroma Systems RK3399-Q7 (Puma) SoM";
Philipp Tomsichdc30a6e2017-05-05 12:33:24 +020052 firmware = "uboot";
53 loadables = "atf";
54 fdt = "fdt";
Klaus Goger81039932017-04-07 19:13:38 +020055 };
56 };
57};