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
29 lines
629 B
C
29 lines
629 B
C
/*
|
|
* Copyright (c) 2022, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#include <drivers/measured_boot/event_log/event_log.h>
|
|
#include <plat/common/platform.h>
|
|
|
|
#include <platform_def.h>
|
|
|
|
/* DRTM TPM Features */
|
|
static const plat_drtm_tpm_features_t tpm_features = {
|
|
/* No TPM-based hashing supported. */
|
|
.tpm_based_hash_support = false,
|
|
|
|
/* Set to decided algorithm by Event Log driver */
|
|
.firmware_hash_algorithm = TPM_ALG_ID
|
|
|
|
};
|
|
|
|
const plat_drtm_tpm_features_t *plat_drtm_get_tpm_features(void)
|
|
{
|
|
return &tpm_features;
|
|
}
|