]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/Variable/Pei/Variable.h
1. delete Include/Guid/VariableInfo.h
[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
6Copyright (c) 2006 - 2008, Intel Corporation\r
8d3a5c82 7All rights reserved. This program and the accompanying materials\r
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
8d3a5c82 32\r
8d3a5c82 33typedef struct {\r
34 VARIABLE_HEADER *CurrPtr;\r
35 VARIABLE_HEADER *EndPtr;\r
36 VARIABLE_HEADER *StartPtr;\r
37} VARIABLE_POINTER_TRACK;\r
38\r
39#define VARIABLE_INDEX_TABLE_VOLUME 122\r
40\r
41#define EFI_VARIABLE_INDEX_TABLE_GUID \\r
42 { 0x8cfdb8c8, 0xd6b2, 0x40f3, { 0x8e, 0x97, 0x02, 0x30, 0x7c, 0xc9, 0x8b, 0x7c } }\r
43\r
44typedef struct {\r
45 UINT16 Length;\r
46 UINT16 GoneThrough;\r
47 VARIABLE_HEADER *EndPtr;\r
48 VARIABLE_HEADER *StartPtr;\r
49 UINT16 Index[VARIABLE_INDEX_TABLE_VOLUME];\r
50} VARIABLE_INDEX_TABLE;\r
51\r
52\r
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
149/**\r
150 Get one variable by the index count.\r
151\r
152 @param IndexTable The pointer to variable index table.\r
153 @param Count The index count of variable in index table.\r
154\r
155 @return The pointer to variable header indexed by count.\r
156\r
157**/\r
158VARIABLE_HEADER *\r
159GetVariableByIndex (\r
160 IN VARIABLE_INDEX_TABLE *IndexTable,\r
161 IN UINT32 Count\r
162 );\r
163\r
164/**\r
165 Record Variable in VariableIndex HOB.\r
166\r
167 Record Variable in VariableIndex HOB and update the length of variable index table.\r
168\r
169 @param IndexTable The pointer to variable index table.\r
170 @param Variable The pointer to the variable that will be recorded.\r
171\r
8d3a5c82 172**/\r
173VOID\r
174VariableIndexTableUpdate (\r
175 IN OUT VARIABLE_INDEX_TABLE *IndexTable,\r
176 IN VARIABLE_HEADER *Variable\r
177 );\r
178\r
33479ddf 179#endif\r