]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/theobroma-systems/lion_rk3368/fit_spl_atf.its
Merge git://git.denx.de/u-boot-sunxi
[people/ms/u-boot.git] / board / theobroma-systems / lion_rk3368 / fit_spl_atf.its
CommitLineData
4d02d206
PT
1/*
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";
b07856fe 20 os = "U-Boot";
4d02d206
PT
21 arch = "arm64";
22 compression = "none";
23 load = <0x00200000>;
24 };
25 atf {
26 description = "ARM Trusted Firmware";
27 data = /incbin/("../../../bl31-rk3368.bin");
28 type = "firmware";
b07856fe 29 os = "arm-trusted-firmware";
4d02d206
PT
30 arch = "arm64";
31 compression = "none";
6696fe5a
PT
32 load = <0x00100000>;
33 entry = <0x00100000>;
4d02d206
PT
34 };
35
36 fdt {
37 description = "RK3368-uQ7 (Lion) flat device-tree";
38 data = /incbin/("../../../u-boot.dtb");
39 type = "flat_dt";
40 compression = "none";
41 };
42 };
43
44 configurations {
45 default = "conf";
46 conf {
47 description = "Theobroma Systems RK3368-uQ7 (Puma) SoM";
b07856fe
PT
48 firmware = "atf";
49 loadables = "uboot";
fe1c3cd3 50 fdt = "fdt";
4d02d206
PT
51 };
52 };
53};