1# -------------------------------------------------------------------------------
2# Copyright (c) 2018-2020, Arm Limited. All rights reserved.
3# Copyright (c) 2021, Nordic Semiconductor ASA. All rights reserved.
4#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7# -------------------------------------------------------------------------------
8
9{
10  "psa_framework_version": 1.1,
11  "name": "TFM_SP_DP",
12  "type": "APPLICATION-ROT",
13  "priority": "NORMAL",
14  "model": "IPC",
15  "entry_point": "tfm_dp_req_mngr_init",
16  "stack_size": "0x800",
17
18  # Service definitions for IPC model.
19  "services": [
20    {
21      "name": "TFM_DP_SECRET_DIGEST",
22
23      # Bits [31:12] denote the vendor (change this),
24      # bits [11:0] are arbitrary at the discretion of the
25      # vendor.
26      "sid": "0xFFFFF001",
27      "non_secure_clients": true,
28      # Make the service connection based.
29      # We now require TFM_CONNECTION_BASED_SERVICE_API to be enabled.
30      "connection_based": true,
31      "version": 1,
32      "version_policy": "STRICT",
33    }
34  ],
35
36  "dependencies": [
37    "TFM_CRYPTO"
38  ]
39}
40