2 The header file for Tcg2 SMM driver.
4 Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15 #ifndef __TCG2_SMM_H__
16 #define __TCG2_SMM_H__
19 #include <IndustryStandard/Acpi.h>
20 #include <IndustryStandard/Tpm2Acpi.h>
22 #include <Guid/MemoryOverwriteControl.h>
23 #include <Guid/TpmInstance.h>
25 #include <Protocol/SmmSwDispatch2.h>
26 #include <Protocol/AcpiTable.h>
27 #include <Protocol/SmmVariable.h>
28 #include <Protocol/Tcg2Protocol.h>
30 #include <Library/BaseLib.h>
31 #include <Library/BaseMemoryLib.h>
32 #include <Library/DebugLib.h>
33 #include <Library/SmmServicesTableLib.h>
34 #include <Library/UefiDriverEntryPoint.h>
35 #include <Library/UefiBootServicesTableLib.h>
36 #include <Library/DxeServicesLib.h>
37 #include <Library/TpmMeasurementLib.h>
38 #include <Library/Tpm2DeviceLib.h>
39 #include <Library/Tcg2PhysicalPresenceLib.h>
47 UINT32 RequestParameter
;
50 } PHYSICAL_PRESENCE_NVS
;
60 PHYSICAL_PRESENCE_NVS PhysicalPresence
;
61 MEMORY_CLEAR_NVS MemoryClear
;
76 // The definition for TCG MOR
78 #define ACPI_FUNCTION_DSM_MEMORY_CLEAR_INTERFACE 1
79 #define ACPI_FUNCTION_PTS_CLEAR_MOR_BIT 2
82 // The return code for Memory Clear Interface Functions
84 #define MOR_REQUEST_SUCCESS 0
85 #define MOR_REQUEST_GENERAL_FAILURE 1
87 #endif // __TCG_SMM_H__