TianoCore EDK2 master
|
#include <PiDxe.h>
#include <Guid/MemoryOverwriteControl.h>
#include <Library/UefiDriverEntryPoint.h>
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiRuntimeServicesTableLib.h>
#include <Library/DebugLib.h>
#include <Library/UefiLib.h>
#include <Library/MemoryAllocationLib.h>
#include <Protocol/StorageSecurityCommand.h>
#include <Protocol/BlockIo.h>
Go to the source code of this file.
Data Structures | |
struct | SUPPORTED_SECURITY_PROTOCOLS_PARAMETER_DATA |
Macros | |
#define | SECURITY_PROTOCOL_TCG 0x02 |
#define | SECURITY_PROTOCOL_IEEE1667 0xEE |
#define | ROUNDUP512(x) (((x) % 512 == 0) ? (x) : ((x) / 512 + 1) * 512) |
The header file for TcgMor.
Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
Definition in file TcgMor.h.
#define ROUNDUP512 | ( | x | ) | (((x) % 512 == 0) ? (x) : ((x) / 512 + 1) * 512) |