blob: c58f17b62035cb2fc191c77dbc693709fa5d26ff [file] [log] [blame]
Manish V Badarkhe64616a52020-05-31 08:53:40 +01001/*
Arunachalam Ganapathy63128dc2022-04-11 14:43:15 +01002 * Copyright (c) 2020-2024, Arm Limited. All rights reserved.
Manish V Badarkhe64616a52020-05-31 08:53:40 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Davidson Kea84e432021-08-10 19:25:57 +05307#include <lib/libc/cdefs.h>
8
Manish V Badarkhe64616a52020-05-31 08:53:40 +01009/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 };
Arunachalam Ganapathyade4a202020-09-22 12:50:45 +010029
30 secure-partitions {
31 compatible = "arm,sp";
Davidson Kea84e432021-08-10 19:25:57 +053032#ifdef ARM_BL2_SP_LIST_DTS
33 #include __XSTRING(ARM_BL2_SP_LIST_DTS)
34#else
Davidson K9a949142021-03-10 12:07:15 +053035#ifdef TS_SP_FW_CONFIG
Davidson Kea84e432021-08-10 19:25:57 +053036 internal-trusted-storage {
Davidson K9a949142021-03-10 12:07:15 +053037 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 };
Tudor Cretu77b301a2021-09-24 12:09:53 +000044 firmware-update {
45 uuid = "6823a838-1b06-470e-9774-0cce8bfb53fd";
46 load-address = <0xfde00000>;
47 };
Davidson K9a949142021-03-10 12:07:15 +053048#endif
Arunachalam Ganapathyc44e43d2020-11-17 15:05:01 +000049#if OPTEE_SP_FW_CONFIG
50 op-tee {
Arunachalam Ganapathy4cb72e82021-05-27 16:01:57 +010051 uuid = "486178e0-e7f8-11e3-bc5e-0002a5d5c51b";
Arunachalam Ganapathyc44e43d2020-11-17 15:05:01 +000052 load-address = <0xfd280000>;
53 };
Arunachalam Ganapathy63128dc2022-04-11 14:43:15 +010054#elif TRUSTY_SP_FW_CONFIG
55 trusty {
56 uuid = "40ee25f0-a2bc-304c-8c4c-a173c57d8af1";
57 load-address = <0xf901c000>;
58 };
Arunachalam Ganapathyc44e43d2020-11-17 15:05:01 +000059#else
Arunachalam Ganapathyade4a202020-09-22 12:50:45 +010060 cactus-primary {
Arunachalam Ganapathy4cb72e82021-05-27 16:01:57 +010061 uuid = "b4b5671e-4a90-4fe1-b81f-fb13dae1dacb";
Arunachalam Ganapathyade4a202020-09-22 12:50:45 +010062 load-address = <0xfe000000>;
63 owner = "SiP";
64 };
65
66 cactus-secondary {
Arunachalam Ganapathy4cb72e82021-05-27 16:01:57 +010067 uuid = "d1582309-f023-47b9-827c-4464f5578fc8";
Arunachalam Ganapathyade4a202020-09-22 12:50:45 +010068 load-address = <0xfe100000>;
69 owner = "Plat";
70 };
71
72 cactus-tertiary {
Arunachalam Ganapathy4cb72e82021-05-27 16:01:57 +010073 uuid = "79b55c73-1d8c-44b9-8593-61e1770ad8d2";
Arunachalam Ganapathyade4a202020-09-22 12:50:45 +010074 load-address = <0xfe200000>;
75 };
Olivier Deprez05475992021-09-28 15:35:39 +020076
77 ivy {
78 uuid = "eaba83d8-baaf-4eaf-8144-f7fdcbe544a7";
79 load-address = <0xfe600000>;
80 owner = "Plat";
81 };
Arunachalam Ganapathyc44e43d2020-11-17 15:05:01 +000082#endif
Davidson Kea84e432021-08-10 19:25:57 +053083#endif /* ARM_BL2_SP_LIST_DTS */
Arunachalam Ganapathyade4a202020-09-22 12:50:45 +010084 };
Manish V Badarkhe64616a52020-05-31 08:53:40 +010085};