]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFsp2Pkg/Include/Guid/FspNonVolatileStorageHob2.h
1246108b96a6fecd2bdcffe7187e696db2367604
[mirror_edk2.git] / IntelFsp2Pkg / Include / Guid / FspNonVolatileStorageHob2.h
1 /** @file
2 Intel FSP Non-Volatile Storage (NVS) HOB version 2 definition from
3 Intel Firmware Support Package External Architecture Specification v2.3.
4
5 Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 #ifndef __FSP_NON_VOLATILE_STORAGE_HOB2_H__
11 #define __FSP_NON_VOLATILE_STORAGE_HOB2_H__
12
13 ///
14 /// The Non-Volatile Storage (NVS) HOB version 2 provides > 64KB buffer support.
15 ///
16 typedef struct {
17 EFI_HOB_GUID_TYPE GuidHob;
18 EFI_PHYSICAL_ADDRESS NvsDataPtr;
19 UINT64 NvsDataLength;
20 } FSP_NON_VOLATILE_STORAGE_HOB2;
21
22 extern EFI_GUID gFspNonVolatileStorageHob2Guid;
23
24 #endif