1 /*
2  * Copyright (c) 2022, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 
8 #include <stdint.h>
9 
10 #include <services/drtm_svc.h>
11 
12 /*
13  * This file contains DRTM platform functions which don't really do anything on
14  * FVP but are needed for DRTM to function.
15  */
16 
plat_drtm_get_min_size_normal_world_dce(void)17 uint64_t plat_drtm_get_min_size_normal_world_dce(void)
18 {
19 	return 0ULL;
20 }
21 
plat_drtm_get_imp_def_dlme_region_size(void)22 uint64_t plat_drtm_get_imp_def_dlme_region_size(void)
23 {
24 	return 0ULL;
25 }
26 
plat_drtm_get_tcb_hash_features(void)27 uint64_t plat_drtm_get_tcb_hash_features(void)
28 {
29 	return 0ULL;
30 }
31 
plat_drtm_get_tcb_hash_table_size(void)32 uint64_t plat_drtm_get_tcb_hash_table_size(void)
33 {
34 	return 0ULL;
35 }
36