blob: d88b47376ced594420b4a744a734c46231446606 [file] [log] [blame]
Balint Dobszay1bf41f52022-05-30 12:56:38 +02001/* SPDX-License-Identifier: BSD-3-Clause */
2/*
Julian Hallb0c8fc22022-11-30 12:24:38 +00003 * Copyright (c) 2022-2023, Arm Limited. All rights reserved.
Balint Dobszay1bf41f52022-05-30 12:56:38 +02004 */
5
6/dts-v1/;
7
8/ {
9 compatible = "arm,ffa-core-manifest-1.0";
10 #address-cells = <2>;
11 #size-cells = <1>;
12
13 attribute {
14 spmc_id = <0x8000>;
15 maj_ver = <0x1>;
16 min_ver = <0x0>;
17 exec_state = <0x0>;
18 load_address = <0x0 0x6000000>;
19 entrypoint = <0x0 0x6000000>;
20 binary_size = <0x80000>;
21 };
22
23/*
24 * This file will be preprocessed by TF-A's build system. If Measured Boot is
25 * enabled in TF-A's config, the build system will add the MEASURED_BOOT=1 macro
26 * to the preprocessor arguments.
27 */
28#if MEASURED_BOOT
29 tpm_event_log {
30 compatible = "arm,tpm_event_log";
31 tpm_event_log_addr = <0x0 0x0>;
32 tpm_event_log_size = <0x0>;
Gyorgy Szinga64aa832023-10-11 17:03:04 +000033 tpm_event_log_max_size = <0x0>;
Balint Dobszay1bf41f52022-05-30 12:56:38 +020034 };
35#endif
Balint Dobszaydb9b8f02022-09-01 11:20:23 +020036
37/* If the ARM_BL2_SP_LIST_DTS is defined, SPs should be loaded from FIP */
38#ifdef ARM_BL2_SP_LIST_DTS
39 sp_packages {
40 compatible = "arm,sp_pkg";
Jelle Selsc26422b2022-12-15 10:21:49 +010041#if !SPMC_TESTS
Julian Hallb0c8fc22022-11-30 12:24:38 +000042 block_storage {
43 uuid = <0x806e6463 0x2f4652eb 0xdf8c4fac 0x9c518739>;
44 load-address = <0x0 0x7a00000>;
45 };
Balint Dobszaydb9b8f02022-09-01 11:20:23 +020046 internal_trusted_storage {
47 uuid = <0x48ef1edc 0xcf4c7ab1 0xcfdf8bac 0x141b71f7>;
Julian Hallb0c8fc22022-11-30 12:24:38 +000048 load-address = <0x0 0x7a80000>;
Balint Dobszaydb9b8f02022-09-01 11:20:23 +020049 };
50
51 protected_storage_sp {
52 uuid = <0x01f81b75 0x6847de3d 0x100f14a5 0x9017edae>;
53 load-address = <0x0 0x7b00000>;
54 };
55
56 crypto_sp {
57 uuid = <0xd552dfd9 0xb24ba216 0x6dd2a49a 0xc0e8843b>;
Julian Hallb0c8fc22022-11-30 12:24:38 +000058 load-address = <0x0 0x7b80000>;
Balint Dobszaydb9b8f02022-09-01 11:20:23 +020059 };
60
61#if MEASURED_BOOT
62 initial_attestation_sp {
63 uuid = <0x55f1baa1 0x95467688 0x95547c8f 0x74b98d5e>;
Julian Hallb0c8fc22022-11-30 12:24:38 +000064 load-address = <0x0 0x7c80000>;
Balint Dobszaydb9b8f02022-09-01 11:20:23 +020065 };
66#endif
67
Imre Kis0dbd3df2023-04-05 13:31:22 +020068#if TS_SMM_GATEWAY
Balint Dobszaydb9b8f02022-09-01 11:20:23 +020069 smm_gateway {
70 uuid = <0x33d532ed 0x0942e699 0x722dc09c 0xa798d9cd>;
Julian Hallb0c8fc22022-11-30 12:24:38 +000071 load-address = <0x0 0x7d00000>;
Balint Dobszaydb9b8f02022-09-01 11:20:23 +020072 };
Imre Kis0dbd3df2023-04-05 13:31:22 +020073#endif /* TS_SMM_GATEWAY */
Jelle Selsc26422b2022-12-15 10:21:49 +010074
Imre Kis0dbd3df2023-04-05 13:31:22 +020075#else /* SPMC_TESTS */
Jelle Selsc26422b2022-12-15 10:21:49 +010076 test_sp1 {
77 uuid = <0xc3db9e5c 0x67433a7b 0x197c839f 0x376ae81a>;
78 load-address = <0x0 0x7a00000>;
79 };
80
81 test_sp2 {
82 uuid = <0x4c161778 0x1a4d0cc4 0xb29b7a86 0x1af48c27>;
Imre Kis8a2098e2023-04-05 13:40:01 +020083 load-address = <0x0 0x7a20000>;
Jelle Selsc26422b2022-12-15 10:21:49 +010084 };
85
86 test_sp3 {
87 uuid = <0x0001eb23 0x97442ae3 0x112f5290 0xa6af84e5>;
Imre Kis8a2098e2023-04-05 13:40:01 +020088 load-address = <0x0 0x7a40000>;
Jelle Selsc26422b2022-12-15 10:21:49 +010089 };
90
Jelle Sels7fe310e2022-09-07 11:25:29 +020091 test_sp4 {
92 /* SP binary UUID */
93 uuid = <0xed623742 0x6f407277 0x270cd899 0xf8bb0ada>;
Imre Kis8a2098e2023-04-05 13:40:01 +020094 load-address = <0x0 0x7a80000>;
Jelle Sels7fe310e2022-09-07 11:25:29 +020095 };
Imre Kis0dbd3df2023-04-05 13:31:22 +020096#endif /* SPMC_TESTS */
Jelle Selsc26422b2022-12-15 10:21:49 +010097
Balint Dobszaydb9b8f02022-09-01 11:20:23 +020098 };
Imre Kis0dbd3df2023-04-05 13:31:22 +020099#endif /* ARM_BL2_SP_LIST_DTS */
Balint Dobszay1bf41f52022-05-30 12:56:38 +0200100};