]>
Commit | Line | Data |
---|---|---|
4549e789 | 1 | /* SPDX-License-Identifier: GPL-2.0+ OR X11 */ |
4d02d206 PT |
2 | /* |
3 | * Copyright (C) 2017 Theobroma Systems Design und Consulting GmbH | |
4 | * | |
5 | * Minimal dts for a SPL FIT image payload. | |
4d02d206 PT |
6 | */ |
7 | ||
8 | /dts-v1/; | |
9 | ||
10 | / { | |
11 | description = "FIT image with U-Boot proper, ATF bl31, DTB"; | |
12 | #address-cells = <1>; | |
13 | ||
14 | images { | |
15 | uboot { | |
16 | description = "U-Boot (64-bit)"; | |
17 | data = /incbin/("../../../u-boot-nodtb.bin"); | |
18 | type = "standalone"; | |
b07856fe | 19 | os = "U-Boot"; |
4d02d206 PT |
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"; | |
b07856fe | 28 | os = "arm-trusted-firmware"; |
4d02d206 PT |
29 | arch = "arm64"; |
30 | compression = "none"; | |
6696fe5a PT |
31 | load = <0x00100000>; |
32 | entry = <0x00100000>; | |
4d02d206 PT |
33 | }; |
34 | ||
35 | fdt { | |
36 | description = "RK3368-uQ7 (Lion) flat device-tree"; | |
37 | data = /incbin/("../../../u-boot.dtb"); | |
38 | type = "flat_dt"; | |
39 | compression = "none"; | |
40 | }; | |
41 | }; | |
42 | ||
43 | configurations { | |
44 | default = "conf"; | |
45 | conf { | |
46 | description = "Theobroma Systems RK3368-uQ7 (Puma) SoM"; | |
b07856fe PT |
47 | firmware = "atf"; |
48 | loadables = "uboot"; | |
fe1c3cd3 | 49 | fdt = "fdt"; |
4d02d206 PT |
50 | }; |
51 | }; | |
52 | }; |