blob: 306bd89b9b5a98386079656a06c1f862e273027d [file] [log] [blame]
Louis Mayencourt9fdfae32020-02-12 09:26:09 +00001/*
2 * Copyright (c) 2018-2020, ARM Limited and Contributors. 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 {
Louis Mayencourtb26fafa2020-04-20 14:17:21 +010013 compatible = "fconf,dyn_cfg-dtb_registry";
Louis Mayencourt9fdfae32020-02-12 09:26:09 +000014
15 /* tb_fw_config is temporarily contained on this dtb */
16 tb_fw-config {
17 load-address = <0x0 0x4001010>;
18 max-size = <0x200>;
19 id = <TB_FW_CONFIG_ID>;
20 };
Louis Mayencourt9fdfae32020-02-12 09:26:09 +000021 };
22
23 tb_fw-config {
24 compatible = "arm,tb_fw";
25
26 /* Disable authentication for development */
27 disable_auth = <0x0>;
Madhukar Pappireddy6c40dd62020-03-27 12:52:22 -050028
29 /*
30 * The following two entries are placeholders for Mbed TLS
31 * heap information. The default values don't matter since
32 * they will be overwritten by BL1.
33 * In case of having shared Mbed TLS heap between BL1 and BL2,
34 * BL1 will populate these two properties with the respective
35 * info about the shared heap. This info will be available for
36 * BL2 in order to locate and re-use the heap.
37 */
38 mbedtls_heap_addr = <0x0 0x0>;
39 mbedtls_heap_size = <0x0>;
Louis Mayencourt9fdfae32020-02-12 09:26:09 +000040 };
41};