blob: 88d8e99d821da3c29ea9229330578f0c6cbf168e [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
Manish Pandeyf4110242020-06-08 14:48:09 +01007#include <common/tbbr/tbbr_img_def.h>
Louis Mayencourt9fdfae32020-02-12 09:26:09 +00008
9/dts-v1/;
10/ {
11 dtb-registry {
Louis Mayencourtb26fafa2020-04-20 14:17:21 +010012 compatible = "fconf,dyn_cfg-dtb_registry";
Louis Mayencourt9fdfae32020-02-12 09:26:09 +000013
14 /* tb_fw_config is temporarily contained on this dtb */
15 tb_fw-config {
16 load-address = <0x0 0x80001010>;
17 max-size = <0x200>;
18 id = <TB_FW_CONFIG_ID>;
19 };
20
21 nt_fw-config {
22 load-address = <0x0 0xFEF00000>;
23 max-size = <0x0100000>;
24 id = <NT_FW_CONFIG_ID>;
25 };
26 };
27
28 tb_fw-config {
29 compatible = "arm,tb_fw";
30
31 /* Disable authentication for development */
32 disable_auth = <0x0>;
33
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};
47