102 lines
3.5 KiB
C
102 lines
3.5 KiB
C
/** @file
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2012 - 2020, Insyde Software Corp. 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.
|
|
;*
|
|
;******************************************************************************
|
|
*/
|
|
/**@file
|
|
|
|
@copyright
|
|
INTEL CONFIDENTIAL
|
|
Copyright 2009 - 2021 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 Reference:
|
|
**/
|
|
#ifndef _ME_SETUP_H_
|
|
#define _ME_SETUP_H_
|
|
|
|
#define ME_MODE_MASK 0x0F
|
|
#define NORMAL_MODE 0x00
|
|
#define ME_IMAGE_CONSUMER_SKU_FW 0x03
|
|
#define ME_IMAGE_CORPORATE_SKU_FW 0x04
|
|
|
|
#define ME_FW_IMAGE_TYPE_CONSUMER_STRING "Consumer SKU"
|
|
#define ME_FW_IMAGE_TYPE_CORPORATE_STRING "Corporate SKU"
|
|
#define ME_FW_IMAGE_TYPE_UNIDENTIFIED_STRING "Unidentified"
|
|
|
|
#pragma pack(1)
|
|
|
|
/**
|
|
Making any setup structure change after code frozen
|
|
will need to maintain backward compatibility, bump up
|
|
structure revision and update below history table\n
|
|
<b>Revision 1</b>: - Initial version.
|
|
<b>Revision 2</b>: - Add ActiveLanInterface
|
|
**/
|
|
#define ME_SETUP_STORAGE_REVISION 2
|
|
|
|
typedef struct {
|
|
UINT8 MngState;
|
|
UINT8 FwUpdEnabled;
|
|
UINT8 MeStateControl;
|
|
UINT8 AfterEoP;
|
|
UINT8 RemoteSessionActive;
|
|
UINT8 PttState;
|
|
UINT8 TpmDeactivate;
|
|
UINT8 BootGuardSupport;
|
|
UINT8 MeasureBoot;
|
|
UINT8 DelayedAuthenticationMode;
|
|
UINT8 FipsModeSelect;
|
|
UINT8 InvokeArbSvnCommit;
|
|
UINT8 AmtState;
|
|
UINT8 UpidSupport;
|
|
UINT8 UpidState;
|
|
UINT8 UpidOsControlState;
|
|
UINT8 ActiveLanInterface;
|
|
} ME_SETUP_STORAGE;
|
|
|
|
typedef struct {
|
|
UINT8 MeFirmwareInfo;
|
|
UINT32 MeMajor;
|
|
UINT32 MeMinor;
|
|
UINT32 MeHotFix;
|
|
UINT32 MeBuildNo;
|
|
} ME_INFO_SETUP_DATA;
|
|
|
|
#pragma pack()
|
|
|
|
//[-start-200215-IB06462109-add]//
|
|
extern EFI_GUID gMeInfoSetupGuid;
|
|
//[-end-200215-IB06462109-add]//
|
|
#endif
|