mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 10:04:26 +00:00

DLME image authentication features are currently not supported on FVP. This patch introduces a stub function in fvp_drtm_stub.c as a placeholder for retrieving DLME image authentication features. Change-Id: I6d274834245774c5442d67ee93fcd641f3a9cd1a Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
45 lines
723 B
C
45 lines
723 B
C
/*
|
|
* Copyright (c) 2022-2025, 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;
|
|
}
|
|
|
|
uint64_t plat_drtm_get_acpi_tables_region_size(void)
|
|
{
|
|
return 0ULL;
|
|
}
|
|
|
|
uint64_t plat_drtm_get_dlme_img_auth_features(void)
|
|
{
|
|
return 0ULL;
|
|
}
|