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 /* 19 * The following two entries are placeholders for Mbed TLS 20 * heap information. The default values don't matter since 21 * they will be overwritten by BL1. 22 * In case of having shared Mbed TLS heap between BL1 and BL2, 23 * BL1 will populate these two properties with the respective 24 * info about the shared heap. This info will be available for 25 * BL2 in order to locate and re-use the heap. 26 */ 27 mbedtls_heap_addr = <0x0 0x0>; 28 mbedtls_heap_size = <0x0>; 29 30#if MEASURED_BOOT 31 /* BL2 image hash calculated by BL1 */ 32 bl2_hash_data = [ 33 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 34#if BL2_HASH_SIZE > 32 35 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 36#if BL2_HASH_SIZE > 48 37 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 38#endif /* > 48 */ 39#endif /* > 32 */ 40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00]; 41#endif /* MEASURED_BOOT */ 42 }; 43 44 /* 45 * UUID's here are UUID RFC 4122 compliant meaning fieds are stored in 46 * network order (big endian) 47 */ 48 49#if ARM_IO_IN_DTB 50 arm-io_policies { 51 fip-handles { 52 compatible = "arm,io-fip-handle"; 53 scp_bl2_uuid = "9766fd3d-89be-e849-ae5d-78a140608213"; 54 bl31_uuid = "47d4086d-4cfe-9846-9b95-2950cbbd5a00"; 55 bl32_uuid = "05d0e189-53dc-1347-8d2b-500a4b7a3e38"; 56 bl32_extra1_uuid = "0b70c29b-2a5a-7840-9f65-0a5682738288"; 57 bl32_extra2_uuid = "8ea87bb1-cfa2-3f4d-85fd-e7bba50220d9"; 58 bl33_uuid = "d6d0eea7-fcea-d54b-9782-9934f234b6e4"; 59 hw_cfg_uuid = "08b8f1d9-c9cf-9349-a962-6fbc6b7265cc"; 60 soc_fw_cfg_uuid = "9979814b-0376-fb46-8c8e-8d267f7859e0"; 61 tos_fw_cfg_uuid = "26257c1a-dbc6-7f47-8d96-c4c4b0248021"; 62 nt_fw_cfg_uuid = "28da9815-93e8-7e44-ac66-1aaf801550f9"; 63 t_key_cert_uuid = "827ee890-f860-e411-a1b4-777a21b4f94c"; 64 scp_fw_key_uuid = "024221a1-f860-e411-8d9b-f33c0e15a014"; 65 soc_fw_key_uuid = "8ab8becc-f960-e411-9ad0-eb4822d8dcf8"; 66 tos_fw_key_cert_uuid = "9477d603-fb60-e411-85dd-b7105b8cee04"; 67 nt_fw_key_cert_uuid = "8ad5832a-fb60-e411-8aaf-df30bbc49859"; 68 scp_fw_content_cert_uuid = "44be6f04-5e63-e411-b28b-73d8eaae9656"; 69 soc_fw_content_cert_uuid = "e2b20c20-5e63-e411-9ce8-abccf92bb666"; 70 tos_fw_content_cert_uuid = "a49f4411-5e63-e411-8728-3f05722af33d"; 71 nt_fw_content_cert_uuid = "8ec4c1f3-5d63-e411-a7a9-87ee40b23fa7"; 72 sp_content_cert_uuid = "776dfd44-8697-4c3b-91eb-c13e025a2a6f"; 73 }; 74 }; 75#endif /* ARM_IO_IN_DTB */ 76 77 secure-partitions { 78 compatible = "arm,sp"; 79 80#ifdef ARM_BL2_SP_LIST_DTS 81 #include __XSTRING(ARM_BL2_SP_LIST_DTS) 82#else 83#ifdef OPTEE_SP_FW_CONFIG 84 op-tee { 85 uuid = "486178e0-e7f8-11e3-bc5e-0002a5d5c51b"; 86 load-address = <0x6280000>; 87 }; 88#else 89 cactus-primary { 90 uuid = "b4b5671e-4a90-4fe1-b81f-fb13dae1dacb"; 91 load-address = <0x7000000>; 92 owner = "SiP"; 93 }; 94 95 cactus-secondary { 96 uuid = "d1582309-f023-47b9-827c-4464f5578fc8"; 97 load-address = <0x7100000>; 98 owner = "Plat"; 99 }; 100 101 cactus-tertiary { 102 uuid = "79b55c73-1d8c-44b9-8593-61e1770ad8d2"; 103 load-address = <0x7200000>; 104 owner = "Plat"; 105 }; 106 107 ivy { 108 uuid = "eaba83d8-baaf-4eaf-8144-f7fdcbe544a7"; 109 load-address = <0x7600000>; 110 owner = "Plat"; 111 }; 112#endif 113#endif /* ARM_BL2_SP_LIST_DTS */ 114 }; 115 116#if COT_DESC_IN_DTB 117 #include "cot_descriptors.dtsi" 118#endif 119 120}; 121 122#if COT_DESC_IN_DTB 123 124#include "../fvp_def.h" 125 126&trusted_nv_counter { 127 reg = <TFW_NVCTR_BASE>; 128}; 129 130&non_trusted_nv_counter { 131 reg = <NTFW_CTR_BASE>; 132}; 133#endif 134