configs: icore-rqs: Enable falcon mode
[oweals/u-boot.git] / board / theobroma-systems / lion_rk3368 / fit_spl_atf.its
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";
20                         arch = "arm64";
21                         compression = "none";
22                         load = <0x00200000>;
23                 };
24                 atf {
25                         description = "ARM Trusted Firmware";
26                         data = /incbin/("../../../bl31-rk3368.bin");
27                         type = "firmware";
28                         arch = "arm64";
29                         compression = "none";
30                         load = <0x00100000>;
31                         entry = <0x00100000>;
32                 };
33
34                 fdt {
35                         description = "RK3368-uQ7 (Lion) flat device-tree";
36                         data = /incbin/("../../../u-boot.dtb");
37                         type = "flat_dt";
38                         compression = "none";
39                 };
40         };
41
42         configurations {
43                 default = "conf";
44                 conf {
45                         description = "Theobroma Systems RK3368-uQ7 (Puma) SoM";
46                         firmware = "uboot";
47                         loadables = "atf";
48                         fdt = "fdt";
49                 };
50         };
51 };