]> git.proxmox.com Git - mirror_edk2.git/blob - UefiPayloadPkg/Include/Guid/NvVariableInfoGuid.h
UefiPayloadPkg: Add a common FVB SMM module
[mirror_edk2.git] / UefiPayloadPkg / Include / Guid / NvVariableInfoGuid.h
1 /** @file
2 This file defines the hob structure for the SPI flash variable info.
3
4 Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 **/
8
9 #ifndef NV_VARIABLE_INFO_GUID_H_
10 #define NV_VARIABLE_INFO_GUID_H_
11
12 //
13 // NV variable hob info GUID
14 //
15 extern EFI_GUID gNvVariableInfoGuid;
16
17 typedef struct {
18 UINT8 Revision;
19 UINT8 Reserved[3];
20 UINT32 VariableStoreBase;
21 UINT32 VariableStoreSize;
22 } NV_VARIABLE_INFO;
23
24 #endif