]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/HiiConfigAccess.h
Update for NetworkPkg.
[mirror_edk2.git] / MdePkg / Include / Protocol / HiiConfigAccess.h
CommitLineData
d1f95000 1/** @file\r
2\r
4ca9b6c4
LG
3 The EFI HII results processing protocol invokes this type of protocol \r
4 when it needs to forward results to a driver's configuration handler. \r
5 This protocol is published by drivers providing and requesting \r
6 configuration data from HII. It may only be invoked by HII.\r
d1f95000 7 \r
9df063a0 8Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>\r
af2dc6a7 9This program and the accompanying materials are licensed and made available under \r
10the terms and conditions of the BSD License that accompanies this distribution. \r
11The full text of the license may be found at\r
12http://opensource.org/licenses/bsd-license.php. \r
13 \r
14THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
15WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
d1f95000 16\r
d1f95000 17**/\r
18\r
19\r
20#ifndef __EFI_HII_CONFIG_ACCESS_H__\r
21#define __EFI_HII_CONFIG_ACCESS_H__\r
22\r
7d582d6b 23#include <Protocol/FormBrowser2.h>\r
1528fae8 24\r
5a1fc221 25#define EFI_HII_CONFIG_ACCESS_PROTOCOL_GUID \\r
d1f95000 26 { 0x330d4706, 0xf2a0, 0x4e4f, { 0xa3, 0x69, 0xb6, 0x6f, 0xa8, 0xd5, 0x43, 0x85 } }\r
27\r
28typedef struct _EFI_HII_CONFIG_ACCESS_PROTOCOL EFI_HII_CONFIG_ACCESS_PROTOCOL;\r
29\r
7d582d6b 30typedef UINTN EFI_BROWSER_ACTION;\r
31\r
0cd118f7
LG
32#define EFI_BROWSER_ACTION_CHANGING 0\r
33#define EFI_BROWSER_ACTION_CHANGED 1\r
34#define EFI_BROWSER_ACTION_RETRIEVE 2\r
35#define EFI_BROWSER_ACTION_FORM_OPEN 3\r
36#define EFI_BROWSER_ACTION_FORM_CLOSE 4\r
d4cb06e1
ED
37#define EFI_BROWSER_ACTION_DEFAULT_STANDARD 0x1000\r
38#define EFI_BROWSER_ACTION_DEFAULT_MANUFACTURING 0x1001\r
39#define EFI_BROWSER_ACTION_DEFAULT_SAFE 0x1002\r
40#define EFI_BROWSER_ACTION_DEFAULT_PLATFORM 0x2000\r
41#define EFI_BROWSER_ACTION_DEFAULT_HARDWARE 0x3000\r
42#define EFI_BROWSER_ACTION_DEFAULT_FIRMWARE 0x4000\r
7d582d6b 43\r
d1f95000 44/**\r
45 \r
46 This function allows the caller to request the current\r
47 configuration for one or more named elements. The resulting\r
48 string is in <ConfigAltResp> format. Any and all alternative\r
49 configuration strings shall also be appended to the end of the\r
50 current configuration string. If they are, they must appear\r
51 after the current configuration. They must contain the same\r
52 routing (GUID, NAME, PATH) as the current configuration string.\r
53 They must have an additional description indicating the type of\r
54 alternative configuration the string represents,\r
55 "ALTCFG=<StringToken>". That <StringToken> (when\r
56 converted from Hex UNICODE to binary) is a reference to a\r
57 string in the associated string pack.\r
58\r
4ca9b6c4 59 @param This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.\r
d1f95000 60\r
4ca9b6c4
LG
61 @param Request A null-terminated Unicode string in\r
62 <ConfigRequest> format. Note that this\r
63 includes the routing information as well as\r
64 the configurable name / value pairs. It is\r
65 invalid for this string to be in\r
a1e98f78
LG
66 <MultiConfigRequest> format. \r
67 If a NULL is passed in for the Request field, \r
68 all of the settings being abstracted by this function \r
69 will be returned in the Results field. In addition, \r
70 if a ConfigHdr is passed in with no request elements, \r
71 all of the settings being abstracted for that particular \r
72 ConfigHdr reference will be returned in the Results Field.\r
d1f95000 73\r
74 @param Progress On return, points to a character in the\r
75 Request string. Points to the string's null\r
76 terminator if request was successful. Points\r
77 to the most recent "&" before the first\r
78 failing name / value pair (or the beginning\r
79 of the string if the failure is in the first\r
80 name / value pair) if the request was not\r
af2dc6a7 81 successful.\r
d1f95000 82\r
4ca9b6c4 83 @param Results A null-terminated Unicode string in\r
a1e98f78 84 <MultiConfigAltResp> format which has all values\r
4ca9b6c4
LG
85 filled in for the names in the Request string.\r
86 String to be allocated by the called function.\r
d1f95000 87\r
4ca9b6c4
LG
88 @retval EFI_SUCCESS The Results string is filled with the\r
89 values corresponding to all requested\r
90 names.\r
d1f95000 91\r
e1f1fb16 92 @retval EFI_OUT_OF_RESOURCES Not enough memory to store the\r
4ca9b6c4
LG
93 parts of the results that must be\r
94 stored awaiting possible future\r
95 protocols.\r
d1f95000 96\r
4ca9b6c4
LG
97 @retval EFI_NOT_FOUND Routing data doesn't match any\r
98 known driver. Progress set to the\r
99 first character in the routing header.\r
100 Note: There is no requirement that the\r
101 driver validate the routing data. It\r
102 must skip the <ConfigHdr> in order to\r
103 process the names.\r
d1f95000 104\r
105 @retval EFI_INVALID_PARAMETER Illegal syntax. Progress set\r
630b4187 106 to most recent "&" before the\r
d1f95000 107 error or the beginning of the\r
108 string.\r
109\r
110 @retval EFI_INVALID_PARAMETER Unknown name. Progress points\r
111 to the & before the name in\r
112 question.\r
113\r
114**/\r
115typedef\r
116EFI_STATUS\r
8b13229b 117(EFIAPI * EFI_HII_ACCESS_EXTRACT_CONFIG)(\r
d1f95000 118 IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,\r
119 IN CONST EFI_STRING Request,\r
120 OUT EFI_STRING *Progress,\r
121 OUT EFI_STRING *Results\r
122);\r
123\r
124\r
125/**\r
126 \r
127 This function applies changes in a driver's configuration.\r
128 Input is a Configuration, which has the routing data for this\r
129 driver followed by name / value configuration pairs. The driver\r
130 must apply those pairs to its configurable storage. If the\r
131 driver's configuration is stored in a linear block of data\r
1cea34d4 132 and the driver's name / value pairs are in <BlockConfig>\r
d1f95000 133 format, it may use the ConfigToBlock helper function (above) to\r
134 simplify the job.\r
135\r
4ca9b6c4 136 @param This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.\r
d1f95000 137\r
138 @param Configuration A null-terminated Unicode string in\r
4ca9b6c4
LG
139 <ConfigString> format. \r
140 \r
141 @param Progress A pointer to a string filled in with the\r
d1f95000 142 offset of the most recent '&' before the\r
143 first failing name / value pair (or the\r
144 beginn ing of the string if the failure\r
145 is in the first name / value pair) or\r
146 the terminating NULL if all was\r
147 successful.\r
148\r
4ca9b6c4
LG
149 @retval EFI_SUCCESS The results have been distributed or are\r
150 awaiting distribution.\r
d1f95000 151 \r
e1f1fb16 152 @retval EFI_OUT_OF_RESOURCES Not enough memory to store the\r
4ca9b6c4
LG
153 parts of the results that must be\r
154 stored awaiting possible future\r
155 protocols.\r
d1f95000 156 \r
157 @retval EFI_INVALID_PARAMETERS Passing in a NULL for the\r
158 Results parameter would result\r
159 in this type of error.\r
160 \r
4ca9b6c4
LG
161 @retval EFI_NOT_FOUND Target for the specified routing data\r
162 was not found\r
d1f95000 163\r
164**/\r
165typedef\r
166EFI_STATUS\r
8b13229b 167(EFIAPI * EFI_HII_ACCESS_ROUTE_CONFIG)(\r
d1f95000 168 IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,\r
169 IN CONST EFI_STRING Configuration,\r
170 OUT EFI_STRING *Progress\r
171);\r
172\r
173/**\r
174 \r
175 This function is called to provide results data to the driver.\r
176 This data consists of a unique key that is used to identify\r
177 which data is either being passed back or being asked for.\r
178\r
4ca9b6c4
LG
179 @param This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.\r
180 @param Action Specifies the type of action taken by the browser.\r
181 @param QuestionId A unique value which is sent to the original\r
182 exporting driver so that it can identify the type\r
183 of data to expect. The format of the data tends to \r
630b4187 184 vary based on the opcode that generated the callback.\r
4ca9b6c4
LG
185 @param Type The type of value for the question.\r
186 @param Value A pointer to the data being sent to the original\r
187 exporting driver.\r
188 @param ActionRequest On return, points to the action requested by the\r
189 callback function.\r
190\r
191 @retval EFI_SUCCESS The callback successfully handled the action.\r
192 @retval EFI_OUT_OF_RESOURCES Not enough storage is available to hold the\r
193 variable and its data.\r
194 @retval EFI_DEVICE_ERROR The variable could not be saved.\r
195 @retval EFI_UNSUPPORTED The specified Action is not supported by the\r
196 callback.\r
d1f95000 197**/\r
198typedef\r
199EFI_STATUS\r
8b13229b 200(EFIAPI *EFI_HII_ACCESS_FORM_CALLBACK)(\r
0cd118f7
LG
201 IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,\r
202 IN EFI_BROWSER_ACTION Action,\r
203 IN EFI_QUESTION_ID QuestionId,\r
204 IN UINT8 Type,\r
205 IN OUT EFI_IFR_TYPE_VALUE *Value,\r
206 OUT EFI_BROWSER_ACTION_REQUEST *ActionRequest\r
5a1fc221 207 )\r
208 ;\r
721b16af 209 \r
44717a39 210///\r
211/// This protocol provides a callable interface between the HII and\r
212/// drivers. Only drivers which provide IFR data to HII are required\r
213/// to publish this protocol.\r
214///\r
d1f95000 215struct _EFI_HII_CONFIG_ACCESS_PROTOCOL {\r
5a1fc221 216 EFI_HII_ACCESS_EXTRACT_CONFIG ExtractConfig;\r
217 EFI_HII_ACCESS_ROUTE_CONFIG RouteConfig;\r
218 EFI_HII_ACCESS_FORM_CALLBACK Callback;\r
d1f95000 219} ;\r
220\r
221extern EFI_GUID gEfiHiiConfigAccessProtocolGuid;\r
222\r
223#endif\r
224\r
7d582d6b 225\r