95 lines
3.6 KiB
C
95 lines
3.6 KiB
C
/** @file
|
|
Hsti Results driver definitions
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2018 , Insyde Software Corporation. All Rights Reserved.
|
|
;*
|
|
;* You may not reproduce, distribute, publish, display, perform, modify, adapt,
|
|
;* transmit, broadcast, present, recite, release, license or otherwise exploit
|
|
;* any part of this publication in any form, by any means, without the prior
|
|
;* written permission of Insyde Software Corporation.
|
|
;*
|
|
;******************************************************************************
|
|
|
|
@copyright
|
|
INTEL CONFIDENTIAL
|
|
Copyright 2015 - 2016 Intel Corporation.
|
|
|
|
The source code contained or described herein and all documents related to the
|
|
source code ("Material") are owned by Intel Corporation or its suppliers or
|
|
licensors. Title to the Material remains with Intel Corporation or its suppliers
|
|
and licensors. The Material may contain trade secrets and proprietary and
|
|
confidential information of Intel Corporation and its suppliers and licensors,
|
|
and is protected by worldwide copyright and trade secret laws and treaty
|
|
provisions. No part of the Material may be used, copied, reproduced, modified,
|
|
published, uploaded, posted, transmitted, distributed, or disclosed in any way
|
|
without Intel's prior express written permission.
|
|
|
|
No license under any patent, copyright, trade secret or other intellectual
|
|
property right is granted to or conferred upon you by disclosure or delivery
|
|
of the Materials, either expressly, by implication, inducement, estoppel or
|
|
otherwise. Any license under such intellectual property rights must be
|
|
express and approved by Intel in writing.
|
|
|
|
Unless otherwise agreed by Intel in writing, you may not remove or alter
|
|
this notice or any other notice embedded in Materials by Intel or
|
|
Intel's suppliers or licensors in any way.
|
|
|
|
This file contains a 'Sample Driver' and is licensed as such under the terms
|
|
of your license agreement with Intel or your vendor. This file may be modified
|
|
by the user, subject to the additional terms of the license agreement.
|
|
|
|
@par Specification
|
|
**/
|
|
|
|
#ifndef _HSTI_RESULT_DXE_H_
|
|
#define _HSTI_RESULT_DXE_H_
|
|
|
|
#include <PiDxe.h>
|
|
#include <Library/DebugLib.h>
|
|
#include <Library/UefiDriverEntryPoint.h>
|
|
#include <Library/BaseLib.h>
|
|
#include <Library/UefiLib.h>
|
|
#include <Library/DevicePathLib.h>
|
|
#include <Library/BaseMemoryLib.h>
|
|
#include <Library/MemoryAllocationLib.h>
|
|
#include <Library/UefiBootServicesTableLib.h>
|
|
#include <Library/UefiRuntimeServicesTableLib.h>
|
|
|
|
#include <Protocol/SiPolicyProtocol.h>
|
|
#include <HstiFeatureBit_1_1a.h>
|
|
#include <PlatformConfigurationChangeVariable.h>
|
|
#include <Protocol/VariableLock.h>
|
|
#include <Guid/EventGroup.h>
|
|
#include <MemInfoHob.h>
|
|
#include <Library/HobLib.h>
|
|
//[-start-180724-IB11790262-add]//
|
|
#include <Protocol/SetupUtilityApplication.h>
|
|
//[-end-180724-IB11790262-add]//
|
|
|
|
#pragma pack(1)
|
|
typedef struct {
|
|
UINT32 Version;
|
|
UINT32 Role;
|
|
CHAR16 ImplementationID[256];
|
|
UINT32 SecurityFeaturesSize;
|
|
UINT8 SecurityFeaturesRequired[HSTI_SECURITY_FEATURE_SIZE];
|
|
UINT8 SecurityFeaturesImplemented[HSTI_SECURITY_FEATURE_SIZE];
|
|
UINT8 SecurityFeaturesVerified[HSTI_SECURITY_FEATURE_SIZE];
|
|
CHAR16 End;
|
|
} ADAPTER_INFO_PLATFORM_SECURITY_STRUCT;
|
|
#pragma pack()
|
|
|
|
#define HSTI_STORAGE_NAME L"HSTI_RESULTS"
|
|
#define HSTI_STORED_RESULTS_GUID \
|
|
{ \
|
|
0x8732b833, 0x5367, 0x422c, { 0xa7, 0x7d, 0x99, 0xe5, 0xb5, 0x10, 0x39, 0xa8 } \
|
|
}
|
|
|
|
EFI_GUID gHstiStoredResultsGuid = HSTI_STORED_RESULTS_GUID;
|
|
//[-start-180724-IB11790262-add]//
|
|
extern EFI_GUID gEfiSetupUtilityApplicationProtocolGuid;
|
|
//[-end-180724-IB11790262-add]//
|
|
|
|
#endif
|