tc_tb_fw_config.dts 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * Copyright (c) 2020-2024, Arm Limited. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #include <lib/libc/cdefs.h>
  7. /dts-v1/;
  8. / {
  9. tb_fw-config {
  10. compatible = "arm,tb_fw";
  11. /* Disable authentication for development */
  12. disable_auth = <0x0>;
  13. /*
  14. * The following two entries are placeholders for Mbed TLS
  15. * heap information. The default values don't matter since
  16. * they will be overwritten by BL1.
  17. * In case of having shared Mbed TLS heap between BL1 and BL2,
  18. * BL1 will populate these two properties with the respective
  19. * info about the shared heap. This info will be available for
  20. * BL2 in order to locate and re-use the heap.
  21. */
  22. mbedtls_heap_addr = <0x0 0x0>;
  23. mbedtls_heap_size = <0x0>;
  24. };
  25. secure-partitions {
  26. compatible = "arm,sp";
  27. #ifdef ARM_BL2_SP_LIST_DTS
  28. #include __XSTRING(ARM_BL2_SP_LIST_DTS)
  29. #else
  30. #ifdef TS_SP_FW_CONFIG
  31. internal-trusted-storage {
  32. uuid = "dc1eef48-b17a-4ccf-ac8b-dfcff7711b14";
  33. load-address = <0xfee00000>;
  34. };
  35. crypto {
  36. uuid = "d9df52d5-16a2-4bb2-9aa4-d26d3b84e8c0";
  37. load-address = <0xfec00000>;
  38. };
  39. firmware-update {
  40. uuid = "6823a838-1b06-470e-9774-0cce8bfb53fd";
  41. load-address = <0xfde00000>;
  42. };
  43. #endif
  44. #if OPTEE_SP_FW_CONFIG
  45. op-tee {
  46. uuid = "486178e0-e7f8-11e3-bc5e-0002a5d5c51b";
  47. load-address = <0xfd280000>;
  48. };
  49. #elif TRUSTY_SP_FW_CONFIG
  50. trusty {
  51. uuid = "40ee25f0-a2bc-304c-8c4c-a173c57d8af1";
  52. load-address = <0xf901c000>;
  53. };
  54. #else
  55. cactus-primary {
  56. uuid = "b4b5671e-4a90-4fe1-b81f-fb13dae1dacb";
  57. load-address = <0xfe000000>;
  58. owner = "SiP";
  59. };
  60. cactus-secondary {
  61. uuid = "d1582309-f023-47b9-827c-4464f5578fc8";
  62. load-address = <0xfe100000>;
  63. owner = "Plat";
  64. };
  65. cactus-tertiary {
  66. uuid = "79b55c73-1d8c-44b9-8593-61e1770ad8d2";
  67. load-address = <0xfe200000>;
  68. };
  69. ivy {
  70. uuid = "eaba83d8-baaf-4eaf-8144-f7fdcbe544a7";
  71. load-address = <0xfe600000>;
  72. owner = "Plat";
  73. };
  74. #endif
  75. #endif /* ARM_BL2_SP_LIST_DTS */
  76. };
  77. #if DICE_PROTECTION_ENVIRONMENT
  78. #include "dice_prot_env.dtsi"
  79. #endif
  80. };