/** @file Copyright (C) 2008-2025 Advanced Micro Devices, Inc. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent **/ /* $NoKeywords:$ */ /** * @file * * PSP Mailbox related functions Prototype definition * * * @xrefitem bom "File Content Label" "Release Content" * @e project: AGESA * @e sub-project: PSP * @e \$Revision: 312133 $ @e \$Date: 2015-02-03 02:47:45 +0800 (Tue, 03 Feb 2015) $ */ #ifndef PSP_MBOX_H_ #define PSP_MBOX_H_ /** * @brief Bios send these commands to PSP to grant dTPM status and event log * * @param[out] DesiredConfig dTPM configuration requested * @param[out] ConfigStatus 0 - success. non-zero failure. * @param[in,out] LogDataSize Size of LogData buffer * @param[out] LogData Point to allocated event log buffer * * @retval EFI_STATUS 0: Success, NonZero Error */ EFI_STATUS PspMboxGetDTPMData ( OUT UINT32 *DesiredConfig, OUT UINT32 *ConfigStatus, IN OUT UINT32 *LogDataSize, OUT VOID *LogData ); #endif // PSP_MBOX_H_