2017-04-07 17:13:38 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Theobroma Systems Design und Consulting GmbH
|
|
|
|
*
|
|
|
|
* Minimal dts for a SPL FIT image payload.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0+ X11
|
|
|
|
*/
|
|
|
|
|
|
|
|
/dts-v1/;
|
|
|
|
|
|
|
|
/ {
|
|
|
|
description = "FIT image with U-Boot proper, ATF bl31, M0 Firmware, DTB";
|
|
|
|
#address-cells = <1>;
|
|
|
|
|
|
|
|
images {
|
2017-05-05 10:33:24 +00:00
|
|
|
uboot {
|
2017-04-07 17:13:38 +00:00
|
|
|
description = "U-Boot (64-bit)";
|
|
|
|
data = /incbin/("../../../u-boot-nodtb.bin");
|
|
|
|
type = "standalone";
|
2017-09-13 19:29:40 +00:00
|
|
|
os = "U-Boot";
|
2017-04-07 17:13:38 +00:00
|
|
|
arch = "arm64";
|
|
|
|
compression = "none";
|
|
|
|
load = <0x00200000>;
|
|
|
|
};
|
2017-05-05 10:33:24 +00:00
|
|
|
atf {
|
2017-04-07 17:13:38 +00:00
|
|
|
description = "ARM Trusted Firmware";
|
2017-07-18 19:41:28 +00:00
|
|
|
data = /incbin/("../../../bl31-rk3399.bin");
|
2017-04-07 17:13:38 +00:00
|
|
|
type = "firmware";
|
|
|
|
arch = "arm64";
|
2017-09-13 19:29:40 +00:00
|
|
|
os = "arm-trusted-firmware";
|
2017-04-07 17:13:38 +00:00
|
|
|
compression = "none";
|
2017-09-13 19:29:40 +00:00
|
|
|
load = <0x1000>;
|
|
|
|
entry = <0x1000>;
|
2017-04-07 17:13:38 +00:00
|
|
|
};
|
2017-05-05 10:33:24 +00:00
|
|
|
pmu {
|
2017-04-07 17:13:38 +00:00
|
|
|
description = "Cortex-M0 firmware";
|
|
|
|
data = /incbin/("../../../rk3399m0.bin");
|
|
|
|
type = "pmu-firmware";
|
|
|
|
compression = "none";
|
2017-09-13 19:29:40 +00:00
|
|
|
load = <0x180000>;
|
2017-04-07 17:13:38 +00:00
|
|
|
};
|
2017-05-05 10:33:24 +00:00
|
|
|
fdt {
|
2017-04-07 17:13:38 +00:00
|
|
|
description = "RK3399-Q7 (Puma) flat device-tree";
|
|
|
|
data = /incbin/("../../../u-boot.dtb");
|
|
|
|
type = "flat_dt";
|
|
|
|
compression = "none";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
configurations {
|
2017-05-05 10:33:24 +00:00
|
|
|
default = "conf";
|
|
|
|
conf {
|
2017-04-07 17:13:38 +00:00
|
|
|
description = "Theobroma Systems RK3399-Q7 (Puma) SoM";
|
2017-09-13 19:29:40 +00:00
|
|
|
firmware = "atf";
|
|
|
|
loadables = "uboot", "pmu";
|
2017-05-05 10:33:24 +00:00
|
|
|
fdt = "fdt";
|
2017-04-07 17:13:38 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|