TianoCore EDK2 master
|
Go to the source code of this file.
Functions | |
VOID | Tcg2NotifyMmReady (VOID) |
BOOLEAN | Tcg2IsPrimaryBufferValid (IN EFI_PHYSICAL_ADDRESS Buffer, IN UINT64 Length) |
BOOLEAN | Tcg2IsNonPrimaryBufferValid (IN EFI_PHYSICAL_ADDRESS Buffer, IN UINT64 Length) |
BOOLEAN | IsTpm20Dtpm (VOID) |
EFI_STATUS EFIAPI | InitializeTcgSmm (IN EFI_HANDLE ImageHandle, IN EFI_SYSTEM_TABLE *SystemTable) |
TCG2 SMM driver that updates TPM2 items in ACPI table and registers SMI2 callback functions for Tcg2 physical presence, ClearMemory, and sample for dTPM StartMethod.
Caution: This module requires additional review when modified. This driver will have external input - variable and ACPINvs data in SMM mode. This external input must be validated carefully to avoid security issue.
PhysicalPresenceCallback() and MemoryClearCallback() will receive untrusted input and do some check.
Copyright (c) 2015 - 2024, Intel Corporation. All rights reserved.
Copyright (c) Microsoft Corporation. SPDX-License-Identifier: BSD-2-Clause-Patent
Definition in file Tcg2TraditionalMm.c.
EFI_STATUS EFIAPI InitializeTcgSmm | ( | IN EFI_HANDLE | ImageHandle, |
IN EFI_SYSTEM_TABLE * | SystemTable | ||
) |
The driver's entry point.
It install callbacks for TPM physical presence and MemoryClear, and locate SMM variable to be used in the callback function.
[in] | ImageHandle | The firmware allocated handle for the EFI image. |
[in] | SystemTable | A pointer to the EFI System Table. |
EFI_SUCCESS | The entry point is executed successfully. |
Others | Some error occurs when executing this entry point. |
Definition at line 112 of file Tcg2TraditionalMm.c.
BOOLEAN IsTpm20Dtpm | ( | VOID | ) |
This function checks if the required DTPM instance is TPM 2.0.
TRUE | The required DTPM instance is equal to gEfiTpmDeviceInstanceTpm20DtpmGuid. |
FALSE | The required DTPM instance is not equal to gEfiTpmDeviceInstanceTpm20DtpmGuid. |
Definition at line 90 of file Tcg2TraditionalMm.c.
BOOLEAN Tcg2IsNonPrimaryBufferValid | ( | IN EFI_PHYSICAL_ADDRESS | Buffer, |
IN UINT64 | Length | ||
) |
This function is for the NonPrimary Buffer validation routine. The NonPrimary Buffer is the buffer which is pointed from the communication buffer.
Buffer | The buffer start address to be checked. |
Length | The buffer length to be checked. |
TRUE | This buffer is valid. |
FALSE | This buffer is not valid. |
Definition at line 75 of file Tcg2TraditionalMm.c.
BOOLEAN Tcg2IsPrimaryBufferValid | ( | IN EFI_PHYSICAL_ADDRESS | Buffer, |
IN UINT64 | Length | ||
) |
This function is for the Primary Buffer validation routine. The Primary Buffer is the communication buffer requested from Communicate protocol/PPI.
Buffer | The buffer start address to be checked. |
Length | The buffer length to be checked. |
TRUE | This buffer is valid per processor architecture and not overlap with SMRAM. |
FALSE | This buffer is not valid per processor architecture or overlap with SMRAM. |
Definition at line 55 of file Tcg2TraditionalMm.c.
VOID Tcg2NotifyMmReady | ( | VOID | ) |
Notify the system that the SMM variable driver is ready.
Definition at line 26 of file Tcg2TraditionalMm.c.