blob: 043d0a6dfdd2999028aec91b97cbbb73b6a5753d [file] [log] [blame]
Tamas Banafc4f3c2024-08-13 11:46:58 +02001/*
Jackson Cooper-Driver90d89a02025-03-03 16:41:37 +00002 * SPDX-FileCopyrightText: Copyright The TrustedFirmware-M Contributors
Tamas Banafc4f3c2024-08-13 11:46:58 +02003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
8#include <stdio.h>
9
10#include "dpe_plat.h"
Jackson Cooper-Driver90d89a02025-03-03 16:41:37 +000011#include "tfm_log_unpriv.h"
Tamas Banafc4f3c2024-08-13 11:46:58 +020012
13extern psa_key_id_t rot_cdi_id;
14extern psa_key_id_t root_attest_key_id;
15
16psa_key_id_t dpe_plat_get_rot_cdi_key_id(void)
17{
18 return rot_cdi_id;
19}
20
21psa_key_id_t dpe_plat_get_root_attest_key_id(void)
22{
23 return root_attest_key_id;
24}
25
26
27int dpe_plat_share_context_with_ap(int ctx_handle)
28{
29 return 0;
30}
31
32
33int32_t dpe_plat_get_client_locality(int32_t client_id)
34{
35 return 0;
36}