]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/Variable/Pei/Variable.h
MdeModulePkg: Variable drivers robustly handle crashes during Reclaim().
[mirror_edk2.git] / MdeModulePkg / Universal / Variable / Pei / Variable.h
CommitLineData
504214c4 1/** @file\r
8d3a5c82 2\r
504214c4
LG
3 The internal header file includes the common header files, defines\r
4 internal structure and functions used by PeiVariable module.\r
5\r
3e02ebb2 6Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR>\r
e5eed7d3 7This program and the accompanying materials\r
8d3a5c82 8are licensed and made available under the terms and conditions of the BSD License\r
9which accompanies this distribution. The full text of the license may be found at\r
10http://opensource.org/licenses/bsd-license.php\r
11\r
12THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
13WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
14\r
504214c4 15**/\r
8d3a5c82 16\r
33479ddf 17#ifndef _PEI_VARIABLE_H_\r
18#define _PEI_VARIABLE_H_\r
8d3a5c82 19\r
20#include <PiPei.h>\r
21#include <Ppi/ReadOnlyVariable2.h>\r
33479ddf 22\r
8d3a5c82 23#include <Library/DebugLib.h>\r
24#include <Library/PeimEntryPoint.h>\r
25#include <Library/HobLib.h>\r
26#include <Library/PcdLib.h>\r
27#include <Library/BaseMemoryLib.h>\r
28#include <Library/PeiServicesTablePointerLib.h>\r
33479ddf 29#include <Library/PeiServicesLib.h>\r
30\r
3709c4cd 31#include <Guid/VariableFormat.h>\r
9725730b 32#include <Guid/VariableIndexTable.h>\r
d6550260 33#include <Guid/SystemNvDataGuid.h>\r
3e02ebb2 34#include <Guid/FaultTolerantWrite.h>\r
0f7aff72
RN
35\r
36typedef enum {\r
37 VariableStoreTypeHob,\r
38 VariableStoreTypeNv,\r
39 VariableStoreTypeMax\r
40} VARIABLE_STORE_TYPE;\r
41\r
3e02ebb2
SZ
42typedef struct {\r
43 VARIABLE_STORE_HEADER *VariableStoreHeader;\r
44 VARIABLE_INDEX_TABLE *IndexTable;\r
45 //\r
46 // If it is not NULL, it means there may be an inconsecutive variable whose\r
47 // partial content is still in NV storage, but another partial content is backed up\r
48 // in spare block.\r
49 //\r
50 FAULT_TOLERANT_WRITE_LAST_WRITE_DATA *FtwLastWriteData;\r
51} VARIABLE_STORE_INFO;\r
52\r
8d3a5c82 53//\r
54// Functions\r
55//\r
33479ddf 56/**\r
57 Provide the functionality of the variable services.\r
58 \r
59 @param FileHandle Handle of the file being invoked. \r
60 Type EFI_PEI_FILE_HANDLE is defined in FfsFindNextFile().\r
61 @param PeiServices General purpose services available to every PEIM.\r
62\r
63 @retval EFI_SUCCESS If the interface could be successfully installed\r
64 @retval Others Returned from PeiServicesInstallPpi()\r
65\r
66**/\r
8d3a5c82 67EFI_STATUS\r
68EFIAPI\r
69PeimInitializeVariableServices (\r
33479ddf 70 IN EFI_PEI_FILE_HANDLE FileHandle,\r
71 IN CONST EFI_PEI_SERVICES **PeiServices\r
72 );\r
8d3a5c82 73\r
33479ddf 74/**\r
75 This service retrieves a variable's value using its name and GUID.\r
76\r
77 Read the specified variable from the UEFI variable store. If the Data \r
78 buffer is too small to hold the contents of the variable, the error\r
79 EFI_BUFFER_TOO_SMALL is returned and DataSize is set to the required buffer\r
80 size to obtain the data.\r
81\r
82 @param This A pointer to this instance of the EFI_PEI_READ_ONLY_VARIABLE2_PPI.\r
83 @param VariableName A pointer to a null-terminated string that is the variable's name.\r
84 @param VariableGuid A pointer to an EFI_GUID that is the variable's GUID. The combination of\r
85 VariableGuid and VariableName must be unique.\r
86 @param Attributes If non-NULL, on return, points to the variable's attributes.\r
87 @param DataSize On entry, points to the size in bytes of the Data buffer.\r
88 On return, points to the size of the data returned in Data.\r
89 @param Data Points to the buffer which will hold the returned variable value.\r
90\r
91 @retval EFI_SUCCESS The variable was read successfully.\r
92 @retval EFI_NOT_FOUND The variable could not be found.\r
93 @retval EFI_BUFFER_TOO_SMALL The DataSize is too small for the resulting data. \r
94 DataSize is updated with the size required for \r
95 the specified variable.\r
96 @retval EFI_INVALID_PARAMETER VariableName, VariableGuid, DataSize or Data is NULL.\r
97 @retval EFI_DEVICE_ERROR The variable could not be retrieved because of a device error.\r
8d3a5c82 98\r
33479ddf 99**/\r
8d3a5c82 100EFI_STATUS\r
101EFIAPI\r
102PeiGetVariable (\r
103 IN CONST EFI_PEI_READ_ONLY_VARIABLE2_PPI *This,\r
104 IN CONST CHAR16 *VariableName,\r
105 IN CONST EFI_GUID *VariableGuid,\r
106 OUT UINT32 *Attributes,\r
107 IN OUT UINTN *DataSize,\r
108 OUT VOID *Data\r
33479ddf 109 );\r
8d3a5c82 110\r
33479ddf 111/**\r
112 Return the next variable name and GUID.\r
8d3a5c82 113\r
33479ddf 114 This function is called multiple times to retrieve the VariableName \r
115 and VariableGuid of all variables currently available in the system. \r
116 On each call, the previous results are passed into the interface, \r
117 and, on return, the interface returns the data for the next \r
118 interface. When the entire variable list has been returned, \r
119 EFI_NOT_FOUND is returned.\r
8d3a5c82 120\r
33479ddf 121 @param This A pointer to this instance of the EFI_PEI_READ_ONLY_VARIABLE2_PPI.\r
8d3a5c82 122\r
33479ddf 123 @param VariableNameSize On entry, points to the size of the buffer pointed to by VariableName.\r
124 @param VariableName On entry, a pointer to a null-terminated string that is the variable's name.\r
125 On return, points to the next variable's null-terminated name string.\r
8d3a5c82 126\r
33479ddf 127 @param VariableGuid On entry, a pointer to an UEFI _GUID that is the variable's GUID. \r
128 On return, a pointer to the next variable's GUID.\r
8d3a5c82 129\r
33479ddf 130 @retval EFI_SUCCESS The variable was read successfully.\r
131 @retval EFI_NOT_FOUND The variable could not be found.\r
132 @retval EFI_BUFFER_TOO_SMALL The VariableNameSize is too small for the resulting\r
133 data. VariableNameSize is updated with the size\r
134 required for the specified variable.\r
135 @retval EFI_INVALID_PARAMETER VariableName, VariableGuid or\r
136 VariableNameSize is NULL.\r
137 @retval EFI_DEVICE_ERROR The variable could not be retrieved because of a device error.\r
8d3a5c82 138\r
33479ddf 139**/\r
8d3a5c82 140EFI_STATUS\r
141EFIAPI\r
142PeiGetNextVariableName (\r
143 IN CONST EFI_PEI_READ_ONLY_VARIABLE2_PPI *This,\r
144 IN OUT UINTN *VariableNameSize,\r
145 IN OUT CHAR16 *VariableName,\r
146 IN OUT EFI_GUID *VariableGuid\r
33479ddf 147 );\r
8d3a5c82 148\r
33479ddf 149#endif\r