/* * Copyright (c) 2022, Arm Limited. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #include #include #include #include #include #include /* 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; }