n1sdp_tb_fw_config.dts 723 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (c) 2022, Arm Limited. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. /dts-v1/;
  7. / {
  8. tb_fw-config {
  9. compatible = "arm,tb_fw";
  10. /* Disable authentication for development */
  11. disable_auth = <0x0>;
  12. /*
  13. * The following two entries are placeholders for Mbed TLS
  14. * heap information. The default values don't matter since
  15. * they will be overwritten by BL1.
  16. * In case of having shared Mbed TLS heap between BL1 and BL2,
  17. * BL1 will populate these two properties with the respective
  18. * info about the shared heap. This info will be available for
  19. * BL2 in order to locate and re-use the heap.
  20. */
  21. mbedtls_heap_addr = <0x0 0x0>;
  22. mbedtls_heap_size = <0x0>;
  23. };
  24. };