Tom Rini | 8b0c8a1 | 2018-05-06 18:27:01 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ OR X11 */ |
Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2017 Theobroma Systems Design und Consulting GmbH |
| 4 | * |
| 5 | * Minimal dts for a SPL FIT image payload. |
Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | /dts-v1/; |
| 9 | |
| 10 | / { |
| 11 | description = "FIT image with U-Boot proper, ATF bl31, M0 Firmware, DTB"; |
| 12 | #address-cells = <1>; |
| 13 | |
| 14 | images { |
Philipp Tomsich | dc30a6e | 2017-05-05 12:33:24 +0200 | [diff] [blame] | 15 | uboot { |
Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 16 | description = "U-Boot (64-bit)"; |
| 17 | data = /incbin/("../../../u-boot-nodtb.bin"); |
| 18 | type = "standalone"; |
Philipp Tomsich | 832273a | 2017-09-13 21:29:40 +0200 | [diff] [blame] | 19 | os = "U-Boot"; |
Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 20 | arch = "arm64"; |
| 21 | compression = "none"; |
| 22 | load = <0x00200000>; |
| 23 | }; |
Philipp Tomsich | dc30a6e | 2017-05-05 12:33:24 +0200 | [diff] [blame] | 24 | atf { |
Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 25 | description = "ARM Trusted Firmware"; |
Klaus Goger | 653d204 | 2017-07-18 21:41:28 +0200 | [diff] [blame] | 26 | data = /incbin/("../../../bl31-rk3399.bin"); |
Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 27 | type = "firmware"; |
| 28 | arch = "arm64"; |
Philipp Tomsich | 832273a | 2017-09-13 21:29:40 +0200 | [diff] [blame] | 29 | os = "arm-trusted-firmware"; |
Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 30 | compression = "none"; |
Philipp Tomsich | 832273a | 2017-09-13 21:29:40 +0200 | [diff] [blame] | 31 | load = <0x1000>; |
| 32 | entry = <0x1000>; |
Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 33 | }; |
Philipp Tomsich | dc30a6e | 2017-05-05 12:33:24 +0200 | [diff] [blame] | 34 | pmu { |
Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 35 | description = "Cortex-M0 firmware"; |
| 36 | data = /incbin/("../../../rk3399m0.bin"); |
| 37 | type = "pmu-firmware"; |
| 38 | compression = "none"; |
Philipp Tomsich | 832273a | 2017-09-13 21:29:40 +0200 | [diff] [blame] | 39 | load = <0x180000>; |
Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 40 | }; |
Philipp Tomsich | dc30a6e | 2017-05-05 12:33:24 +0200 | [diff] [blame] | 41 | fdt { |
Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 42 | description = "RK3399-Q7 (Puma) flat device-tree"; |
| 43 | data = /incbin/("../../../u-boot.dtb"); |
| 44 | type = "flat_dt"; |
| 45 | compression = "none"; |
| 46 | }; |
| 47 | }; |
| 48 | |
| 49 | configurations { |
Philipp Tomsich | dc30a6e | 2017-05-05 12:33:24 +0200 | [diff] [blame] | 50 | default = "conf"; |
| 51 | conf { |
Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 52 | description = "Theobroma Systems RK3399-Q7 (Puma) SoM"; |
Philipp Tomsich | 832273a | 2017-09-13 21:29:40 +0200 | [diff] [blame] | 53 | firmware = "atf"; |
| 54 | loadables = "uboot", "pmu"; |
Philipp Tomsich | dc30a6e | 2017-05-05 12:33:24 +0200 | [diff] [blame] | 55 | fdt = "fdt"; |
Klaus Goger | 8103993 | 2017-04-07 19:13:38 +0200 | [diff] [blame] | 56 | }; |
| 57 | }; |
| 58 | }; |