blob: 8d7faf8b440bb594e9e8795808c9155f8bb69e0c [file] [log] [blame]
Usama Arifbec5afd2020-04-17 16:13:39 +01001/*
2 * Copyright (c) 2020, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <export/common/tbbr/tbbr_img_def_exp.h>
8
9/dts-v1/;
10
11/ {
12 dtb-registry {
13 compatible = "fconf,dyn_cfg-dtb_registry";
14
15 /* tb_fw_config is temporarily contained in this dtb */
16 tb_fw-config {
17 load-address = <0x0 0x2001010>;
18 max-size = <0x200>;
19 id = <TB_FW_CONFIG_ID>;
20 };
21
22 hw-config {
23 load-address = <0x0 0x83000000>;
24 max-size = <0x01000000>;
25 id = <HW_CONFIG_ID>;
26 };
27 };
28
29 tb_fw-config {
30 compatible = "arm,tb_fw";
31
32 /* Disable authentication for development */
33 disable_auth = <0x0>;
34 /*
35 * The following two entries are placeholders for Mbed TLS
36 * heap information. The default values don't matter since
37 * they will be overwritten by BL1.
38 * In case of having shared Mbed TLS heap between BL1 and BL2,
39 * BL1 will populate these two properties with the respective
40 * info about the shared heap. This info will be available for
41 * BL2 in order to locate and re-use the heap.
42 */
43 mbedtls_heap_addr = <0x0 0x0>;
44 mbedtls_heap_size = <0x0>;
45 };
46};