]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkPkg/Include/Protocol/FormCallback.h
Modified header files to make them compile
[mirror_edk2.git] / IntelFrameworkPkg / Include / Protocol / FormCallback.h
CommitLineData
3e5a3960 1/** @file\r
b80fbe85 2 The EFI_FORM_CALLBACK_PROTOCOL is the defined interface for access to custom\r
3 NV storage devices as well as communication of user selections in a more\r
4 interactive environment. This protocol should be published by hardware\r
5 specific drivers which want to export access to custom hardware storage or\r
3e5a3960 6 publish IFR which has a requirement to call back the original driver.\r
7\r
b80fbe85 8 Copyright (c) 2006, Intel Corporation\r
9 All rights reserved. This program and the accompanying materials\r
10 are licensed and made available under the terms and conditions of the BSD License\r
11 which accompanies this distribution. The full text of the license may be found at\r
12 http://opensource.org/licenses/bsd-license.php\r
3e5a3960 13\r
b80fbe85 14 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
15 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
3e5a3960 16\r
17 Module Name: FormCallback.h\r
18\r
19 @par Revision Reference:\r
20 This protocol is defined in HII spec 0.92.\r
21\r
22**/\r
23\r
24#ifndef __FORM_CALLBACK_H__\r
25#define __FORM_CALLBACK_H__\r
26\r
b80fbe85 27#include <PiDxe.h>\r
3e5a3960 28\r
29#define EFI_FORM_CALLBACK_PROTOCOL_GUID \\r
30 { \\r
31 0xf3e4543d, 0xcf35, 0x6cef, {0x35, 0xc4, 0x4f, 0xe6, 0x34, 0x4d, 0xfc, 0x54 } \\r
32 }\r
33\r
34//\r
35// Forward reference for pure ANSI compatability\r
36//\r
37typedef struct _EFI_FORM_CALLBACK_PROTOCOL EFI_FORM_CALLBACK_PROTOCOL;\r
38\r
39\r
40#define RESET_REQUIRED 1 // Flags setting to signify that the callback operation resulted in an eventual\r
41// reset to be done upon exit of the browser\r
42//\r
43#define EXIT_REQUIRED 2 // Flags setting to signify that after the processing of the callback results - exit the browser\r
44#define SAVE_REQUIRED 4 // Flags setting to signify that after the processing of the callback results - save the NV data\r
45#define NV_CHANGED 8 // Flags setting to signify that after the processing of the callback results - turn the NV flag on\r
46#define NV_NOT_CHANGED 16 // Flags setting to signify that after the processing of the callback results - turn the NV flag off\r
47#pragma pack(1)\r
48typedef struct {\r
49 UINT8 OpCode; // Likely a string, numeric, or one-of\r
50 UINT8 Length; // Length of the EFI_IFR_DATA_ENTRY packet\r
51 UINT16 Flags; // Flags settings to determine what behavior is desired from the browser after the callback\r
52 VOID *Data; // The data in the form based on the op-code type - this is not a pointer to the data, the data follows immediately\r
53 // If the OpCode is a OneOf or Numeric type - Data is a UINT16 value\r
54 // If the OpCode is a String type - Data is a CHAR16[x] type\r
55 // If the OpCode is a Checkbox type - Data is a UINT8 value\r
56 // If the OpCode is a NV Access type - Data is a EFI_IFR_NV_DATA structure\r
57 //\r
58} EFI_IFR_DATA_ENTRY;\r
59\r
60typedef struct {\r
61 VOID *NvRamMap; // If the flag of the op-code specified retrieval of a copy of the NVRAM map,\r
62 // this is a pointer to a buffer copy\r
63 //\r
64 UINT32 EntryCount; // How many EFI_IFR_DATA_ENTRY entries\r
65 //\r
66 // EFI_IFR_DATA_ENTRY Data[1]; // The in-line Data entries.\r
67 //\r
68} EFI_IFR_DATA_ARRAY;\r
69\r
70typedef union {\r
71 EFI_IFR_DATA_ARRAY DataArray; // Primarily used by those who call back to their drivers and use HII as a repository\r
72 EFI_IFR_PACKET DataPacket; // Primarily used by those which do not use HII as a repository\r
73 CHAR16 *String; // If returning an error - fill the string with null-terminated contents\r
74} EFI_HII_CALLBACK_PACKET;\r
75\r
76typedef struct {\r
77 EFI_IFR_OP_HEADER Header;\r
78 UINT16 QuestionId; // Offset into the map\r
79 UINT8 StorageWidth; // Width of the value\r
80 //\r
81 // CHAR8 Data[1]; // The Data itself\r
82 //\r
83} EFI_IFR_NV_DATA;\r
84\r
85#pragma pack()\r
86//\r
87// The following types are currently defined:\r
88//\r
89/**\r
b80fbe85 90 Returns the value of a variable.\r
3e5a3960 91\r
92 @param This A pointer to the EFI_FORM_CALLBACK_PROTOCOL instance.\r
93 @param VariableName A NULL-terminated Unicode string that is the\r
94 name of the vendor's variable.\r
95 @param VendorGuid A unique identifier for the vendor.\r
96 @param Attributes If not NULL, a pointer to the memory location to\r
97 return the attribute's bit-mask for the variable.\r
98 @param DataSize The size in bytes of the Buffer. A size of zero causes\r
99 the variable to be deleted.\r
100 @param Buffer The buffer to return the contents of the variable.\r
101\r
102 @retval EFI_SUCCESS The function completed successfully.\r
103 @retval EFI_NOT_FOUND The variable was not found.\r
104 @retval EFI_BUFFER_TOO_SMALL The DataSize is too small for the result.\r
105 DataSize has been updated with the size needed to complete the request.\r
106 @retval EFI_INVALID_PARAMETER One of the parameters has an invalid value.\r
107 @retval EFI_DEVICE_ERROR The variable could not be saved due to a hardware failure.\r
108\r
109**/\r
110typedef\r
111EFI_STATUS\r
112(EFIAPI *EFI_NV_READ) (\r
113 IN EFI_FORM_CALLBACK_PROTOCOL *This,\r
114 IN CHAR16 *VariableName,\r
115 IN EFI_GUID *VendorGuid,\r
116 OUT UINT32 *Attributes OPTIONAL,\r
117 IN OUT UINTN *DataSize,\r
118 OUT VOID *Buffer\r
119 );\r
120\r
121/**\r
b80fbe85 122 Sets the value of a variable.\r
3e5a3960 123\r
124 @param This A pointer to the EFI_FORM_CALLBACK_PROTOCOL instance.\r
125 @param VariableName A NULL-terminated Unicode string that is the\r
126 name of the vendor's variable. Each VariableName is unique for each VendorGuid.\r
127 @param VendorGuid A unique identifier for the vendor.\r
128 @param Attributes Attributes bit-mask to set for the variable.\r
129 @param DataSize The size in bytes of the Buffer. A size of zero causes\r
130 the variable to be deleted.\r
131 @param Buffer The buffer containing the contents of the variable.\r
132 @param ResetRequired Returns a value from the driver that abstracts\r
133 this information and will enable a system to know if a system reset\r
134 is required to achieve the configuration changes being enabled through\r
135 this function.\r
136\r
137 @retval EFI_SUCCESS The firmware has successfully stored the variable and\r
138 its data as defined by the Attributes.\r
139 @retval EFI_OUT_OF_RESOURCES Not enough storage is available to hold\r
140 the variable and its data.\r
141 @retval EFI_INVALID_PARAMETER An invalid combination of Attributes bits\r
142 was supplied, or the DataSize exceeds the maximum allowed.\r
143 @retval EFI_DEVICE_ERROR The variable could not be saved due to a hardware failure.\r
144\r
145**/\r
146typedef\r
147EFI_STATUS\r
148(EFIAPI *EFI_NV_WRITE) (\r
149 IN EFI_FORM_CALLBACK_PROTOCOL *This,\r
150 IN CHAR16 *VariableName,\r
151 IN EFI_GUID *VendorGuid,\r
152 IN UINT32 Attributes,\r
153 IN UINTN DataSize,\r
154 IN VOID *Buffer,\r
155 OUT BOOLEAN *ResetRequired\r
156 );\r
157\r
158/**\r
b80fbe85 159 This function is called to provide results data to the driver.\r
3e5a3960 160\r
161 @param This A pointer to the EFI_FORM_CALLBACK_PROTOCOL instance.\r
162 @param KeyValue A unique value which is sent to the original exporting\r
163 driver so that it can identify the type of data to expect. The format of\r
164 the data tends to vary based on the opcode that generated the callback.\r
165 @param Data A pointer to the data being sent to the original exporting driver.\r
166 @param Packet A pointer to a packet of information which a driver passes\r
167 back to the browser.\r
168\r
169 @return Status Code\r
170\r
171**/\r
172typedef\r
173EFI_STATUS\r
174(EFIAPI *EFI_FORM_CALLBACK) (\r
175 IN EFI_FORM_CALLBACK_PROTOCOL *This,\r
176 IN UINT16 KeyValue,\r
177 IN EFI_IFR_DATA_ARRAY *Data,\r
178 OUT EFI_HII_CALLBACK_PACKET **Packet\r
179 );\r
180\r
181/**\r
182 @par Protocol Description:\r
b80fbe85 183 The EFI_FORM_CALLBACK_PROTOCOL is the defined interface for access to\r
184 custom NVS devices as well as communication of user selections in a more\r
185 interactive environment. This protocol should be published by hardware-specific\r
186 drivers that want to export access to custom hardware storage or publish IFR\r
3e5a3960 187 that has a requirement to call back the original driver.\r
188\r
189 @param NvRead\r
190 The read operation to access the NV data serviced by a hardware-specific driver.\r
191\r
192 @param NvWrite\r
193 The write operation to access the NV data serviced by a hardware-specific driver.\r
194\r
195 @param Callback\r
b80fbe85 196 The function that is called from the configuration browser to communicate key value pairs.\r
3e5a3960 197\r
198**/\r
199struct _EFI_FORM_CALLBACK_PROTOCOL {\r
200 EFI_NV_READ NvRead;\r
201 EFI_NV_WRITE NvWrite;\r
202 EFI_FORM_CALLBACK Callback;\r
203};\r
204\r
205extern EFI_GUID gEfiFormCallbackProtocolGuid;\r
206\r
207#endif\r