1#-------------------------------------------------------------------------------
2# Copyright (c) 2018-2022, Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6#-------------------------------------------------------------------------------
7
8# Identical to the standard TF-M Initial Attestation manifest except for the
9# addition of the Measured Boot dependency
10{
11  "psa_framework_version": 1.1,
12  "name": "TFM_SP_INITIAL_ATTESTATION",
13  "type": "PSA-ROT",
14  "priority": "NORMAL",
15  "model": "SFN",
16  "entry_init": "attest_partition_init",
17  "stack_size": "ATTEST_STACK_SIZE",
18  "services": [
19    {
20      "name": "TFM_ATTESTATION_SERVICE",
21      "sid": "0x00000020",
22      "non_secure_clients": true,
23      "connection_based": false,
24      "stateless_handle": 4,
25      "version": 1,
26      "version_policy": "STRICT",
27      "mm_iovec": "enable",
28    }
29  ],
30  "dependencies": [
31    "TFM_CRYPTO",
32    "TFM_MEASURED_BOOT"
33  ]
34}
35