blob: 09b9867e385ad8374ad072fe92e975f9040d752b [file] [log] [blame]
Louis Mayencourt9fdfae32020-02-12 09:26:09 +00001/*
2 * Copyright (c) 2019-2020, ARM Limited. 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/ {
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 };
21
22 nt_fw-config {
23 load-address = <0x0 0xFEF00000>;
24 max-size = <0x0100000>;
25 id = <NT_FW_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 /*
36 * The following two entries are placeholders for Mbed TLS
37 * heap information. The default values don't matter since
38 * they will be overwritten by BL1.
39 * In case of having shared Mbed TLS heap between BL1 and BL2,
40 * BL1 will populate these two properties with the respective
41 * info about the shared heap. This info will be available for
42 * BL2 in order to locate and re-use the heap.
43 */
44 mbedtls_heap_addr = <0x0 0x0>;
45 mbedtls_heap_size = <0x0>;
46 };
47};