mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00

Added platform hooks to retrieve DRTM features and address map. Additionally, implemented these hooks for the FVP platform. Signed-off-by: John Powell <john.powell@arm.com> Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com> Change-Id: I5621cc9807ffff8139ae8876250147f7b2c76759
35 lines
575 B
C
35 lines
575 B
C
/*
|
|
* Copyright (c) 2022, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <services/drtm_svc.h>
|
|
|
|
/*
|
|
* This file contains DRTM platform functions which don't really do anything on
|
|
* FVP but are needed for DRTM to function.
|
|
*/
|
|
|
|
uint64_t plat_drtm_get_min_size_normal_world_dce(void)
|
|
{
|
|
return 0ULL;
|
|
}
|
|
|
|
uint64_t plat_drtm_get_imp_def_dlme_region_size(void)
|
|
{
|
|
return 0ULL;
|
|
}
|
|
|
|
uint64_t plat_drtm_get_tcb_hash_features(void)
|
|
{
|
|
return 0ULL;
|
|
}
|
|
|
|
uint64_t plat_drtm_get_tcb_hash_table_size(void)
|
|
{
|
|
return 0ULL;
|
|
}
|