2011-09-02 09:49:32 +02:00
|
|
|
/** @file
|
|
|
|
Header file for NV data structure definition.
|
|
|
|
|
2018-06-27 15:13:09 +02:00
|
|
|
Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:06:56 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2011-09-02 09:49:32 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __TCG_CONFIG_NV_DATA_H__
|
|
|
|
#define __TCG_CONFIG_NV_DATA_H__
|
|
|
|
|
|
|
|
#include <Guid/HiiPlatformSetupFormset.h>
|
|
|
|
#include <Guid/PhysicalPresenceData.h>
|
2011-09-18 14:25:27 +02:00
|
|
|
#include <Guid/TcgConfigHii.h>
|
2011-09-02 09:49:32 +02:00
|
|
|
|
|
|
|
#define TCG_CONFIGURATION_VARSTORE_ID 0x0001
|
|
|
|
#define TCG_CONFIGURATION_FORM_ID 0x0001
|
|
|
|
|
2014-03-27 12:03:04 +01:00
|
|
|
#define KEY_TPM_ACTION 0x3000
|
2011-09-02 09:49:32 +02:00
|
|
|
|
2014-03-27 12:03:04 +01:00
|
|
|
#define LABEL_TCG_CONFIGURATION_TPM_OPERATION 0x0001
|
|
|
|
#define LABEL_END 0xffff
|
2011-09-02 09:49:32 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Nv Data structure referenced by IFR
|
|
|
|
//
|
|
|
|
typedef struct {
|
|
|
|
UINT8 TpmOperation;
|
|
|
|
BOOLEAN TpmEnable;
|
|
|
|
BOOLEAN TpmActivate;
|
|
|
|
} TCG_CONFIGURATION;
|
|
|
|
|
|
|
|
#endif
|