blob: 3be08bd7eb72b8372308b2ba00225a942c322602 [file] [log] [blame]
Tamas Banafc4f3c2024-08-13 11:46:58 +02001/*
2 * Copyright (c) 2024, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
8#include <stdio.h>
9
10#include "dpe_plat.h"
11#include "tfm_sp_log.h"
12
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}