]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/IndustryStandard/WindowsSmmSecurityMitigationTable.h
MdePkg: Clean up source files
[mirror_edk2.git] / MdePkg / Include / IndustryStandard / WindowsSmmSecurityMitigationTable.h
CommitLineData
6a0d2422
JY
1/** @file\r
2 Defines Windows SMM Security Mitigation Table\r
e6877b56 3 @ https://msdn.microsoft.com/windows/hardware/drivers/bringup/acpi-system-description-tables#wsmt\r
6a0d2422 4\r
9095d37b
LG
5 Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.<BR>\r
6 This program and the accompanying materials\r
6a0d2422
JY
7 are licensed and made available under the terms and conditions of the BSD License\r
8 which accompanies this distribution. The full text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.php\r
10\r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
16\r
17#ifndef _WINDOWS_SMM_SECURITY_MITIGATION_TABLE_H_\r
18#define _WINDOWS_SMM_SECURITY_MITIGATION_TABLE_H_\r
19\r
20#include <IndustryStandard/Acpi.h>\r
21\r
22#define EFI_ACPI_WINDOWS_SMM_SECURITY_MITIGATION_TABLE_SIGNATURE SIGNATURE_32('W', 'S', 'M', 'T')\r
23\r
24#pragma pack(1)\r
25\r
26#define EFI_WSMT_TABLE_REVISION 1\r
27\r
28typedef struct {\r
29 EFI_ACPI_DESCRIPTION_HEADER Header;\r
30 UINT32 ProtectionFlags;\r
31} EFI_ACPI_WSMT_TABLE;\r
32\r
33#define EFI_WSMT_PROTECTION_FLAGS_FIXED_COMM_BUFFERS 0x1\r
34#define EFI_WSMT_PROTECTION_FLAGS_COMM_BUFFER_NESTED_PTR_PROTECTION 0x2\r
35#define EFI_WSMT_PROTECTION_FLAGS_SYSTEM_RESOURCE_PROTECTION 0x4\r
36\r
37#pragma pack()\r
38\r
39#endif\r