]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkPkg/Include/Ppi/ReadOnlyVariable.h
1. cleanup to refine the doxgen comment.
[mirror_edk2.git] / IntelFrameworkPkg / Include / Ppi / ReadOnlyVariable.h
CommitLineData
3e5a3960 1/** @file\r
7c6b0440 2 This file declares Read-only Variable Service PPI, which is required PPI by framework spec.\r
3\r
4a71b21a 4 These services provide a lightweight, read-only variant of the full EFI variable services. The\r
5 reason that these services are read-only is to reduce the complexity of flash management. Also,\r
6 some implementation of the PEI may use the same physical flash part for variable and PEIM\r
7 storage; as such, a write command to certain technologies would alter the contents of the entire part,\r
8 thus making the in situ PEIM execution not follow the required flow.\r
3e5a3960 9\r
2bbaeb0d 10 Copyright (c) 2006 - 2009, Intel Corporation\r
b80fbe85 11 All rights reserved. This program and the accompanying materials\r
12 are licensed and made available under the terms and conditions of the BSD License\r
13 which accompanies this distribution. The full text of the license may be found at\r
14 http://opensource.org/licenses/bsd-license.php\r
3e5a3960 15\r
b80fbe85 16 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
17 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
3e5a3960 18\r
3e5a3960 19**/\r
20\r
21#ifndef __PEI_READ_ONLY_VARIABLE_PPI_H__\r
22#define __PEI_READ_ONLY_VARIABLE_PPI_H__\r
23\r
b80fbe85 24#include <PiPei.h>\r
25\r
3e5a3960 26#define EFI_PEI_READ_ONLY_VARIABLE_ACCESS_PPI_GUID \\r
27 { \\r
28 0x3cdc90c6, 0x13fb, 0x4a75, {0x9e, 0x79, 0x59, 0xe9, 0xdd, 0x78, 0xb9, 0xfa } \\r
29 }\r
30\r
31typedef struct _EFI_PEI_READ_ONLY_VARIABLE_PPI EFI_PEI_READ_ONLY_VARIABLE_PPI;\r
32\r
33//\r
34// Variable attributes\r
35//\r
36#define EFI_VARIABLE_NON_VOLATILE 0x00000001\r
37#define EFI_VARIABLE_BOOTSERVICE_ACCESS 0x00000002\r
38#define EFI_VARIABLE_RUNTIME_ACCESS 0x00000004\r
3e5a3960 39\r
40/**\r
41 Get Variable value by Name and GUID pair\r
42\r
43 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.\r
44 @param VariableName A NULL-terminated Unicode string that is the name of the vendor's variable.\r
45 @param VendorGuid A unique identifier for the vendor.\r
46 @param Attributes If not NULL, a pointer to the memory location to return\r
47 the attributes bitmask for the variable.\r
48 @param DataSize On input, the size in bytes of the return Data buffer.\r
49 On output, the size of data returned in Data.\r
50 @param Data The buffer to return the contents of the variable.\r
51\r
52 @retval EFI_SUCCESS The function completed successfully.\r
53 @retval EFI_NOT_FOUND The variable was not found.\r
54 @retval EFI_BUFFER_TOO_SMALL The BufferSize is too small for the result.\r
55 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value.\r
56 @retval EFI_DEVICE_ERROR The variable could not be retrieved due to a hardware error.\r
57\r
58**/\r
59typedef\r
60EFI_STATUS\r
69686d56 61(EFIAPI *EFI_PEI_GET_VARIABLE)(\r
3e5a3960 62 IN EFI_PEI_SERVICES **PeiServices,\r
63 IN CHAR16 *VariableName,\r
64 IN EFI_GUID *VendorGuid,\r
65 OUT UINT32 *Attributes OPTIONAL,\r
66 IN OUT UINTN *DataSize,\r
67 OUT VOID *Data\r
68 );\r
69\r
70/**\r
b80fbe85 71 This function can be called multiple times to retrieve the VariableName\r
72 and VendorGuid of all variables currently available in the system. On each call\r
73 to GetNextVariableName() the previous results are passed into the interface,\r
74 and on output the interface returns the next variable name data. When the\r
3e5a3960 75 entire variable list has been returned, the error EFI_NOT_FOUND is returned.\r
76\r
77 @param PeiServices An indirect pointer to the PEI Services Table published by the PEI Foundation.\r
78 @param VariableNameSize The size of the VariableName buffer.\r
79 @param VariableName On input, supplies the last VariableName that was\r
80 returned by GetNextVariableName(). On output, returns the Null-terminated\r
81 Unicode string of the current variable.\r
82 @param VendorGuid On input, supplies the last VendorGuid that was\r
83 returned by GetNextVariableName(). On output, returns the VendorGuid\r
84 of the current variable.\r
85\r
86 @retval EFI_SUCCESS The function completed successfully.\r
87 @retval EFI_NOT_FOUND The next variable was not found.\r
88 @retval EFI_BUFFER_TOO_SMALL The VariableNameSize is too small for the result.\r
89 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value.\r
90 @retval EFI_DEVICE_ERROR The variable name could not be retrieved due to a hardware error.\r
91\r
92**/\r
93typedef\r
94EFI_STATUS\r
69686d56 95(EFIAPI *EFI_PEI_GET_NEXT_VARIABLE_NAME)(\r
3e5a3960 96 IN EFI_PEI_SERVICES **PeiServices,\r
97 IN OUT UINTN *VariableNameSize,\r
98 IN OUT CHAR16 *VariableName,\r
99 IN OUT EFI_GUID *VendorGuid\r
100 );\r
101\r
7c6b0440 102///\r
103/// This PPI provides a lightweight, read-only variant of the full EFI\r
104/// variable services. \r
105///\r
3e5a3960 106struct _EFI_PEI_READ_ONLY_VARIABLE_PPI {\r
2bbaeb0d 107 EFI_PEI_GET_VARIABLE PeiGetVariable; ///< A service to ascertain a given variable name.\r
108 EFI_PEI_GET_NEXT_VARIABLE_NAME PeiGetNextVariableName; ///< A service to ascertain a variable based upon a given, known variable\r
3e5a3960 109};\r
110\r
111extern EFI_GUID gEfiPeiReadOnlyVariablePpiGuid;\r
112\r
113#endif\r