1/*
2 * Copyright (c) 2020-2021, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <lib/libc/cdefs.h>
8
9/dts-v1/;
10
11/ {
12	tb_fw-config {
13		compatible = "arm,tb_fw";
14
15		/* Disable authentication for development */
16		disable_auth = <0x0>;
17		/*
18		 * The following two entries are placeholders for Mbed TLS
19		 * heap information. The default values don't matter since
20		 * they will be overwritten by BL1.
21		 * In case of having shared Mbed TLS heap between BL1 and BL2,
22		 * BL1 will populate these two properties with the respective
23		 * info about the shared heap. This info will be available for
24		 * BL2 in order to locate and re-use the heap.
25		 */
26		mbedtls_heap_addr = <0x0 0x0>;
27		mbedtls_heap_size = <0x0>;
28	};
29
30	secure-partitions {
31		compatible = "arm,sp";
32#ifdef ARM_BL2_SP_LIST_DTS
33	#include __XSTRING(ARM_BL2_SP_LIST_DTS)
34#else
35#ifdef TS_SP_FW_CONFIG
36		internal-trusted-storage {
37		       uuid = "dc1eef48-b17a-4ccf-ac8b-dfcff7711b14";
38		       load-address = <0xfee00000>;
39		};
40		crypto {
41		       uuid = "d9df52d5-16a2-4bb2-9aa4-d26d3b84e8c0";
42		       load-address = <0xfec00000>;
43		};
44#endif
45#if OPTEE_SP_FW_CONFIG
46		op-tee {
47		       uuid = "486178e0-e7f8-11e3-bc5e-0002a5d5c51b";
48		       load-address = <0xfd280000>;
49		};
50#else
51		cactus-primary {
52			uuid = "b4b5671e-4a90-4fe1-b81f-fb13dae1dacb";
53			load-address = <0xfe000000>;
54			owner = "SiP";
55		};
56
57		cactus-secondary {
58			uuid = "d1582309-f023-47b9-827c-4464f5578fc8";
59			load-address = <0xfe100000>;
60			owner = "Plat";
61		};
62
63		cactus-tertiary {
64			uuid = "79b55c73-1d8c-44b9-8593-61e1770ad8d2";
65			load-address = <0xfe200000>;
66		};
67
68		ivy {
69			uuid = "eaba83d8-baaf-4eaf-8144-f7fdcbe544a7";
70			load-address = <0xfe600000>;
71			owner = "Plat";
72		};
73#endif
74#endif /* ARM_BL2_SP_LIST_DTS */
75	};
76};
77