blob: 8ea6ba3194103e9fe2bfbda5974ded43dddbefc3 [file] [log] [blame]
Manish V Badarkhe64616a52020-05-31 08:53:40 +01001/*
David Horstmannb2df4c12021-04-08 14:50:21 +01002 * Copyright (c) 2020-2021, ARM Limited. All rights reserved.
Manish V Badarkhe64616a52020-05-31 08:53:40 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7/dts-v1/;
8
9/ {
10 tb_fw-config {
11 compatible = "arm,tb_fw";
12
13 /* Disable authentication for development */
14 disable_auth = <0x0>;
15
16 /*
17 * The following two entries are placeholders for Mbed TLS
18 * heap information. The default values don't matter since
19 * they will be overwritten by BL1.
20 * In case of having shared Mbed TLS heap between BL1 and BL2,
21 * BL1 will populate these two properties with the respective
22 * info about the shared heap. This info will be available for
23 * BL2 in order to locate and re-use the heap.
24 */
25 mbedtls_heap_addr = <0x0 0x0>;
26 mbedtls_heap_size = <0x0>;
27
28#if MEASURED_BOOT
29 /* BL2 image hash calculated by BL1 */
30 bl2_hash_data = [
31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
32#if BL2_HASH_SIZE > 32
33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
34#if BL2_HASH_SIZE > 48
35 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
36#endif /* > 48 */
37#endif /* > 32 */
38 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00];
39#endif /* MEASURED_BOOT */
40 };
41
42 /*
Ruari Phipps57d48a02020-08-10 15:53:45 +010043 * UUID's here are UUID RFC 4122 compliant meaning fieds are stored in
44 * network order (big endian)
Manish V Badarkhe64616a52020-05-31 08:53:40 +010045 */
Ruari Phipps57d48a02020-08-10 15:53:45 +010046
Manish V Badarkhe64616a52020-05-31 08:53:40 +010047#if ARM_IO_IN_DTB
48 arm-io_policies {
49 fip-handles {
50 compatible = "arm,io-fip-handle";
David Horstmannb2df4c12021-04-08 14:50:21 +010051 scp_bl2_uuid = "9766fd3d-89be-e849-ae5d-78a140608213";
52 bl31_uuid = "47d4086d-4cfe-9846-9b95-2950cbbd5a00";
53 bl32_uuid = "05d0e189-53dc-1347-8d2b-500a4b7a3e38";
Yann Gautierc8744032021-05-03 11:52:50 +020054 bl32_extra1_uuid = "0b70c29b-2a5a-7840-9f65-0a5682738288";
David Horstmannb2df4c12021-04-08 14:50:21 +010055 bl32_extra2_uuid = "8ea87bb1-cfa2-3f4d-85fd-e7bba50220d9";
56 bl33_uuid = "d6d0eea7-fcea-d54b-9782-9934f234b6e4";
57 hw_cfg_uuid = "08b8f1d9-c9cf-9349-a962-6fbc6b7265cc";
58 soc_fw_cfg_uuid = "9979814b-0376-fb46-8c8e-8d267f7859e0";
59 tos_fw_cfg_uuid = "26257c1a-dbc6-7f47-8d96-c4c4b0248021";
60 nt_fw_cfg_uuid = "28da9815-93e8-7e44-ac66-1aaf801550f9";
Yann Gautierc8744032021-05-03 11:52:50 +020061 t_key_cert_uuid = "827ee890-f860-e411-a1b4-777a21b4f94c";
David Horstmannb2df4c12021-04-08 14:50:21 +010062 scp_fw_key_uuid = "024221a1-f860-e411-8d9b-f33c0e15a014";
63 soc_fw_key_uuid = "8ab8becc-f960-e411-9ad0-eb4822d8dcf8";
64 tos_fw_key_cert_uuid = "9477d603-fb60-e411-85dd-b7105b8cee04";
65 nt_fw_key_cert_uuid = "8ad5832a-fb60-e411-8aaf-df30bbc49859";
66 scp_fw_content_cert_uuid = "44be6f04-5e63-e411-b28b-73d8eaae9656";
67 soc_fw_content_cert_uuid = "e2b20c20-5e63-e411-9ce8-abccf92bb666";
68 tos_fw_content_cert_uuid = "a49f4411-5e63-e411-8728-3f05722af33d";
69 nt_fw_content_cert_uuid = "8ec4c1f3-5d63-e411-a7a9-87ee40b23fa7";
70 sp_content_cert_uuid = "776dfd44-8697-4c3b-91eb-c13e025a2a6f";
Manish V Badarkhe64616a52020-05-31 08:53:40 +010071 };
72 };
73#endif /* ARM_IO_IN_DTB */
74
75 secure-partitions {
76 compatible = "arm,sp";
Olivier Deprezbcaa0682020-04-01 21:28:26 +020077#ifdef OPTEE_SP_FW_CONFIG
78 op-tee {
David Horstmannb2df4c12021-04-08 14:50:21 +010079 uuid = "486178e0-e7f8-11e3-bc5e-0002a5d5c51b";
Olivier Deprezbcaa0682020-04-01 21:28:26 +020080 load-address = <0x6280000>;
81 };
82#else
Manish V Badarkhe64616a52020-05-31 08:53:40 +010083 cactus-primary {
David Horstmannb2df4c12021-04-08 14:50:21 +010084 uuid = "b4b5671e-4a90-4fe1-b81f-fb13dae1dacb";
Manish V Badarkhe64616a52020-05-31 08:53:40 +010085 load-address = <0x7000000>;
Ruari Phipps960e99c2020-08-11 15:28:03 +010086 owner = "SiP";
Manish V Badarkhe64616a52020-05-31 08:53:40 +010087 };
88
89 cactus-secondary {
David Horstmannb2df4c12021-04-08 14:50:21 +010090 uuid = "d1582309-f023-47b9-827c-4464f5578fc8";
Manish V Badarkhe64616a52020-05-31 08:53:40 +010091 load-address = <0x7100000>;
Ruari Phipps960e99c2020-08-11 15:28:03 +010092 owner = "Plat";
Manish V Badarkhe64616a52020-05-31 08:53:40 +010093 };
Ruari Phippsd442a0d2020-07-17 16:43:50 +010094
95 cactus-tertiary {
David Horstmannb2df4c12021-04-08 14:50:21 +010096 uuid = "79b55c73-1d8c-44b9-8593-61e1770ad8d2";
Ruari Phippsd442a0d2020-07-17 16:43:50 +010097 load-address = <0x7200000>;
98 };
Olivier Deprezbcaa0682020-04-01 21:28:26 +020099#endif
Manish V Badarkhe64616a52020-05-31 08:53:40 +0100100 };
Manish V Badarkhe0bafa822020-06-29 11:14:07 +0100101
102#if COT_DESC_IN_DTB
103 #include "cot_descriptors.dtsi"
104#endif
105
106};
107
108#if COT_DESC_IN_DTB
109
110#include "../fvp_def.h"
111
112&trusted_nv_counter {
113 reg = <TFW_NVCTR_BASE>;
114};
115
116&non_trusted_nv_counter {
117 reg = <NTFW_CTR_BASE>;
Manish V Badarkhe64616a52020-05-31 08:53:40 +0100118};
Manish V Badarkhe0bafa822020-06-29 11:14:07 +0100119#endif