/* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2024 Arm Ltd. * * This device driver implements the TPM CRB start method * as defined in the TPM Service Command Response Buffer * Interface Over FF-A (DEN0138).
*/ #ifndef _TPM_CRB_FFA_H #define _TPM_CRB_FFA_H
#if IS_REACHABLE(CONFIG_TCG_ARM_CRB_FFA) int tpm_crb_ffa_init(void); int tpm_crb_ffa_start(int request_type, int locality); #else staticinlineint tpm_crb_ffa_init(void) { return 0; } staticinlineint tpm_crb_ffa_start(int request_type, int locality) { return 0; } #endif
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.