hc
2024-03-25 edb30157bad0c0001c32b854271ace01d3b9a16a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/** @file
  Definition of the System Agent global NVS area protocol.
  This protocol publishes the address and format of a global ACPI NVS buffer
  used as a communications buffer between SMM/DXE/PEI code and ASL code.
 
  Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
  SPDX-License-Identifier: BSD-2-Clause-Patent
**/
 
#ifndef _SYSTEM_AGENT_NVS_AREA_H_
#define _SYSTEM_AGENT_NVS_AREA_H_
 
//
// SA NVS Area definition
//
#include <SaNvsAreaDef.h>
 
//
// Extern the GUID for protocol users.
//
extern EFI_GUID gSaNvsAreaProtocolGuid;
 
///
/// System Agent Global NVS Area Protocol
///
typedef struct {
  SYSTEM_AGENT_NVS_AREA *Area;        ///< System Agent Global NVS Area Structure
} SYSTEM_AGENT_NVS_AREA_PROTOCOL;
 
#endif // _SYSTEM_AGENT_NVS_AREA_H_