]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Uefi/UefiInternalFormRepresentation.h
MdePkg: Add reconnect definition in action request type and question attribute.
[mirror_edk2.git] / MdePkg / Include / Uefi / UefiInternalFormRepresentation.h
CommitLineData
959ccb23 1/** @file\r
2 This file defines the encoding for the VFR (Visual Form Representation) language.\r
3 IFR is primarily consumed by the EFI presentation engine, and produced by EFI\r
4 internal application and drivers as well as all add-in card option-ROM drivers\r
5\r
1c2a4962 6Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>\r
af2dc6a7 7This program and the accompanying materials are licensed and made available under \r
8the terms and conditions of the BSD License that accompanies this distribution. \r
9The 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
959ccb23 14\r
959ccb23 15 @par Revision Reference:\r
f6051525 16 These definitions are from UEFI 2.1 and 2.2.\r
959ccb23 17\r
18**/\r
19\r
20#ifndef __UEFI_INTERNAL_FORMREPRESENTATION_H__\r
21#define __UEFI_INTERNAL_FORMREPRESENTATION_H__\r
22\r
0cd118f7
LG
23#include <Guid/HiiFormMapMethodGuid.h>\r
24\r
fb5148a0 25///\r
26/// The following types are currently defined:\r
27///\r
7d582d6b 28typedef VOID* EFI_HII_HANDLE;\r
29typedef CHAR16* EFI_STRING;\r
d1f95000 30typedef UINT16 EFI_IMAGE_ID;\r
31typedef UINT16 EFI_QUESTION_ID;\r
32typedef UINT16 EFI_STRING_ID;\r
33typedef UINT16 EFI_FORM_ID;\r
34typedef UINT16 EFI_VARSTORE_ID;\r
f6051525 35typedef UINT16 EFI_ANIMATION_ID;\r
e0c047a0 36\r
7d582d6b 37typedef UINT16 EFI_DEFAULT_ID;\r
e0c047a0 38\r
7d582d6b 39typedef UINT32 EFI_HII_FONT_STYLE;\r
d1f95000 40\r
959ccb23 41\r
959ccb23 42\r
43#pragma pack(1)\r
7d582d6b 44\r
e0c047a0 45//\r
46// Definitions for Package Lists and Package Headers\r
47// Section 27.3.1\r
48//\r
7d582d6b 49\r
8b13229b 50///\r
e0c047a0 51/// The header found at the start of each package list.\r
8b13229b 52///\r
959ccb23 53typedef struct {\r
7d582d6b 54 EFI_GUID PackageListGuid;\r
55 UINT32 PackageLength;\r
56} EFI_HII_PACKAGE_LIST_HEADER;\r
959ccb23 57\r
e0c047a0 58///\r
59/// The header found at the start of each package.\r
60///\r
959ccb23 61typedef struct {\r
7d582d6b 62 UINT32 Length:24;\r
63 UINT32 Type:8;\r
64 // UINT8 Data[...];\r
65} EFI_HII_PACKAGE_HEADER;\r
959ccb23 66\r
7d582d6b 67//\r
e0c047a0 68// Value of HII package type\r
7d582d6b 69// \r
70#define EFI_HII_PACKAGE_TYPE_ALL 0x00\r
71#define EFI_HII_PACKAGE_TYPE_GUID 0x01\r
9185c388 72#define EFI_HII_PACKAGE_FORMS 0x02\r
7d582d6b 73#define EFI_HII_PACKAGE_STRINGS 0x04\r
74#define EFI_HII_PACKAGE_FONTS 0x05\r
75#define EFI_HII_PACKAGE_IMAGES 0x06\r
76#define EFI_HII_PACKAGE_SIMPLE_FONTS 0x07\r
77#define EFI_HII_PACKAGE_DEVICE_PATH 0x08\r
9185c388 78#define EFI_HII_PACKAGE_KEYBOARD_LAYOUT 0x09\r
66d550f9 79#define EFI_HII_PACKAGE_ANIMATIONS 0x0A\r
7d582d6b 80#define EFI_HII_PACKAGE_END 0xDF\r
81#define EFI_HII_PACKAGE_TYPE_SYSTEM_BEGIN 0xE0\r
82#define EFI_HII_PACKAGE_TYPE_SYSTEM_END 0xFF\r
959ccb23 83\r
7d582d6b 84//\r
e0c047a0 85// Definitions for Simplified Font Package\r
7d582d6b 86//\r
87\r
fbf926ad 88///\r
af2dc6a7 89/// Contents of EFI_NARROW_GLYPH.Attributes.\r
fbf926ad 90///@{\r
7d582d6b 91#define EFI_GLYPH_NON_SPACING 0x01\r
92#define EFI_GLYPH_WIDE 0x02\r
e0c047a0 93#define EFI_GLYPH_HEIGHT 19\r
94#define EFI_GLYPH_WIDTH 8\r
fbf926ad 95///@}\r
959ccb23 96\r
fbf926ad 97///\r
98/// The EFI_NARROW_GLYPH has a preferred dimension (w x h) of 8 x 19 pixels.\r
99///\r
959ccb23 100typedef struct {\r
fbf926ad 101 ///\r
102 /// The Unicode representation of the glyph. The term weight is the \r
103 /// technical term for a character code.\r
104 ///\r
7d582d6b 105 CHAR16 UnicodeWeight;\r
fbf926ad 106 ///\r
107 /// The data element containing the glyph definitions.\r
108 ///\r
7d582d6b 109 UINT8 Attributes;\r
fbf926ad 110 ///\r
111 /// The column major glyph representation of the character. Bits \r
112 /// with values of one indicate that the corresponding pixel is to be\r
113 /// on when normally displayed; those with zero are off.\r
114 ///\r
7d582d6b 115 UINT8 GlyphCol1[EFI_GLYPH_HEIGHT];\r
116} EFI_NARROW_GLYPH;\r
959ccb23 117\r
fbf926ad 118///\r
119/// The EFI_WIDE_GLYPH has a preferred dimension (w x h) of 16 x 19 pixels, which is large enough \r
120/// to accommodate logographic characters.\r
121///\r
959ccb23 122typedef struct {\r
fbf926ad 123 ///\r
124 /// The Unicode representation of the glyph. The term weight is the \r
125 /// technical term for a character code.\r
126 ///\r
7d582d6b 127 CHAR16 UnicodeWeight;\r
fbf926ad 128 ///\r
129 /// The data element containing the glyph definitions.\r
130 ///\r
7d582d6b 131 UINT8 Attributes;\r
fbf926ad 132 ///\r
133 /// The column major glyph representation of the character. Bits \r
134 /// with values of one indicate that the corresponding pixel is to be \r
135 /// on when normally displayed; those with zero are off.\r
136 ///\r
7d582d6b 137 UINT8 GlyphCol1[EFI_GLYPH_HEIGHT];\r
fbf926ad 138 ///\r
139 /// The column major glyph representation of the character. Bits \r
140 /// with values of one indicate that the corresponding pixel is to be \r
141 /// on when normally displayed; those with zero are off.\r
142 ///\r
7d582d6b 143 UINT8 GlyphCol2[EFI_GLYPH_HEIGHT];\r
fbf926ad 144 ///\r
145 /// Ensures that sizeof (EFI_WIDE_GLYPH) is twice the \r
146 /// sizeof (EFI_NARROW_GLYPH). The contents of Pad must \r
147 /// be zero.\r
148 ///\r
7d582d6b 149 UINT8 Pad[3];\r
150} EFI_WIDE_GLYPH;\r
151\r
e0c047a0 152///\r
153/// A simplified font package consists of a font header\r
154/// followed by a series of glyph structures.\r
155///\r
7d582d6b 156typedef struct _EFI_HII_SIMPLE_FONT_PACKAGE_HDR {\r
157 EFI_HII_PACKAGE_HEADER Header;\r
158 UINT16 NumberOfNarrowGlyphs;\r
159 UINT16 NumberOfWideGlyphs;\r
160 // EFI_NARROW_GLYPH NarrowGlyphs[];\r
161 // EFI_WIDE_GLYPH WideGlyphs[];\r
162} EFI_HII_SIMPLE_FONT_PACKAGE_HDR;\r
959ccb23 163\r
164//\r
e0c047a0 165// Definitions for Font Package\r
166// Section 27.3.3\r
959ccb23 167//\r
959ccb23 168\r
e0c047a0 169//\r
170// Value for font style\r
171//\r
54cf8780 172#define EFI_HII_FONT_STYLE_NORMAL 0x00000000\r
7d582d6b 173#define EFI_HII_FONT_STYLE_BOLD 0x00000001\r
174#define EFI_HII_FONT_STYLE_ITALIC 0x00000002\r
175#define EFI_HII_FONT_STYLE_EMBOSS 0x00010000\r
176#define EFI_HII_FONT_STYLE_OUTLINE 0x00020000\r
177#define EFI_HII_FONT_STYLE_SHADOW 0x00040000\r
178#define EFI_HII_FONT_STYLE_UNDERLINE 0x00080000\r
179#define EFI_HII_FONT_STYLE_DBL_UNDER 0x00100000\r
959ccb23 180\r
7d582d6b 181typedef struct _EFI_HII_GLYPH_INFO {\r
182 UINT16 Width;\r
183 UINT16 Height;\r
184 INT16 OffsetX;\r
185 INT16 OffsetY;\r
186 INT16 AdvanceX;\r
187} EFI_HII_GLYPH_INFO;\r
188\r
e0c047a0 189///\r
af2dc6a7 190/// The fixed header consists of a standard record header,\r
e0c047a0 191/// then the character values in this section, the flags\r
192/// (including the encoding method) and the offsets of the glyph\r
193/// information, the glyph bitmaps and the character map.\r
194///\r
7d582d6b 195typedef struct _EFI_HII_FONT_PACKAGE_HDR {\r
196 EFI_HII_PACKAGE_HEADER Header;\r
197 UINT32 HdrSize;\r
198 UINT32 GlyphBlockOffset;\r
199 EFI_HII_GLYPH_INFO Cell;\r
200 EFI_HII_FONT_STYLE FontStyle;\r
201 CHAR16 FontFamily[1];\r
202} EFI_HII_FONT_PACKAGE_HDR;\r
203\r
e0c047a0 204//\r
205// Value of different glyph info block types\r
206//\r
7d582d6b 207#define EFI_HII_GIBT_END 0x00\r
208#define EFI_HII_GIBT_GLYPH 0x10\r
209#define EFI_HII_GIBT_GLYPHS 0x11\r
210#define EFI_HII_GIBT_GLYPH_DEFAULT 0x12\r
211#define EFI_HII_GIBT_GLYPHS_DEFAULT 0x13\r
212#define EFI_HII_GIBT_DUPLICATE 0x20\r
213#define EFI_HII_GIBT_SKIP2 0x21\r
214#define EFI_HII_GIBT_SKIP1 0x22\r
215#define EFI_HII_GIBT_DEFAULTS 0x23\r
216#define EFI_HII_GIBT_EXT1 0x30\r
217#define EFI_HII_GIBT_EXT2 0x31\r
218#define EFI_HII_GIBT_EXT4 0x32\r
219\r
220typedef struct _EFI_HII_GLYPH_BLOCK {\r
221 UINT8 BlockType;\r
222} EFI_HII_GLYPH_BLOCK;\r
223\r
e0c047a0 224//\r
225// Definition of different glyph info block types\r
226//\r
227\r
7d582d6b 228typedef struct _EFI_HII_GIBT_DEFAULTS_BLOCK {\r
229 EFI_HII_GLYPH_BLOCK Header;\r
230 EFI_HII_GLYPH_INFO Cell;\r
231} EFI_HII_GIBT_DEFAULTS_BLOCK;\r
232\r
233typedef struct _EFI_HII_GIBT_DUPLICATE_BLOCK {\r
234 EFI_HII_GLYPH_BLOCK Header;\r
235 CHAR16 CharValue;\r
236} EFI_HII_GIBT_DUPLICATE_BLOCK;\r
237\r
238typedef struct _EFI_GLYPH_GIBT_END_BLOCK {\r
239 EFI_HII_GLYPH_BLOCK Header;\r
240} EFI_GLYPH_GIBT_END_BLOCK;\r
241\r
242typedef struct _EFI_HII_GIBT_EXT1_BLOCK {\r
243 EFI_HII_GLYPH_BLOCK Header;\r
244 UINT8 BlockType2;\r
245 UINT8 Length;\r
246} EFI_HII_GIBT_EXT1_BLOCK;\r
247\r
248typedef struct _EFI_HII_GIBT_EXT2_BLOCK {\r
249 EFI_HII_GLYPH_BLOCK Header;\r
250 UINT8 BlockType2;\r
251 UINT16 Length;\r
252} EFI_HII_GIBT_EXT2_BLOCK;\r
253\r
254typedef struct _EFI_HII_GIBT_EXT4_BLOCK {\r
255 EFI_HII_GLYPH_BLOCK Header;\r
256 UINT8 BlockType2;\r
257 UINT32 Length;\r
258} EFI_HII_GIBT_EXT4_BLOCK;\r
259\r
260typedef struct _EFI_HII_GIBT_GLYPH_BLOCK {\r
261 EFI_HII_GLYPH_BLOCK Header;\r
262 EFI_HII_GLYPH_INFO Cell;\r
e0c047a0 263 UINT8 BitmapData[1];\r
7d582d6b 264} EFI_HII_GIBT_GLYPH_BLOCK;\r
265\r
266typedef struct _EFI_HII_GIBT_GLYPHS_BLOCK {\r
267 EFI_HII_GLYPH_BLOCK Header;\r
268 EFI_HII_GLYPH_INFO Cell;\r
269 UINT16 Count; \r
e0c047a0 270 UINT8 BitmapData[1];\r
7d582d6b 271} EFI_HII_GIBT_GLYPHS_BLOCK;\r
272\r
273typedef struct _EFI_HII_GIBT_GLYPH_DEFAULT_BLOCK {\r
274 EFI_HII_GLYPH_BLOCK Header;\r
e0c047a0 275 UINT8 BitmapData[1];\r
7d582d6b 276} EFI_HII_GIBT_GLYPH_DEFAULT_BLOCK;\r
277\r
278typedef struct _EFI_HII_GIBT_GLYPHS_DEFAULT_BLOCK {\r
279 EFI_HII_GLYPH_BLOCK Header;\r
280 UINT16 Count;\r
e0c047a0 281 UINT8 BitmapData[1];\r
7d582d6b 282} EFI_HII_GIBT_GLYPHS_DEFAULT_BLOCK;\r
283\r
284typedef struct _EFI_HII_GIBT_SKIP1_BLOCK {\r
285 EFI_HII_GLYPH_BLOCK Header;\r
286 UINT8 SkipCount;\r
287} EFI_HII_GIBT_SKIP1_BLOCK;\r
288\r
289typedef struct _EFI_HII_GIBT_SKIP2_BLOCK {\r
290 EFI_HII_GLYPH_BLOCK Header;\r
291 UINT16 SkipCount;\r
292} EFI_HII_GIBT_SKIP2_BLOCK;\r
959ccb23 293\r
294//\r
e0c047a0 295// Definitions for Device Path Package\r
296// Section 27.3.4\r
959ccb23 297//\r
e0c047a0 298\r
299///\r
300/// The device path package is used to carry a device path\r
301/// associated with the package list.\r
302///\r
f620c889 303typedef struct _EFI_HII_DEVICE_PATH_PACKAGE_HDR {\r
7d582d6b 304 EFI_HII_PACKAGE_HEADER Header;\r
305 // EFI_DEVICE_PATH_PROTOCOL DevicePath[];\r
f620c889 306} EFI_HII_DEVICE_PATH_PACKAGE_HDR;\r
959ccb23 307\r
7d582d6b 308//\r
e0c047a0 309// Definitions for GUID Package\r
310// Section 27.3.5\r
7d582d6b 311//\r
e0c047a0 312\r
313///\r
314/// The GUID package is used to carry data where the format is defined by a GUID.\r
315///\r
7d582d6b 316typedef struct _EFI_HII_GUID_PACKAGE_HDR {\r
317 EFI_HII_PACKAGE_HEADER Header;\r
318 EFI_GUID Guid;\r
319 // Data per GUID definition may follow\r
320} EFI_HII_GUID_PACKAGE_HDR;\r
959ccb23 321\r
7d582d6b 322//\r
e0c047a0 323// Definitions for String Package\r
324// Section 27.3.6\r
7d582d6b 325//\r
959ccb23 326\r
234dfbf8 327#define UEFI_CONFIG_LANG "x-UEFI"\r
328#define UEFI_CONFIG_LANG_2 "x-i-UEFI"\r
7d582d6b 329\r
e0c047a0 330///\r
331/// The fixed header consists of a standard record header and then the string identifiers\r
332/// contained in this section and the offsets of the string and language information.\r
333///\r
7d582d6b 334typedef struct _EFI_HII_STRING_PACKAGE_HDR {\r
335 EFI_HII_PACKAGE_HEADER Header;\r
336 UINT32 HdrSize;\r
337 UINT32 StringInfoOffset;\r
338 CHAR16 LanguageWindow[16];\r
339 EFI_STRING_ID LanguageName;\r
340 CHAR8 Language[1];\r
341} EFI_HII_STRING_PACKAGE_HDR;\r
959ccb23 342\r
343typedef struct {\r
7d582d6b 344 UINT8 BlockType;\r
345} EFI_HII_STRING_BLOCK;\r
346\r
e0c047a0 347//\r
348// Value of different string information block types\r
349//\r
7d582d6b 350#define EFI_HII_SIBT_END 0x00\r
351#define EFI_HII_SIBT_STRING_SCSU 0x10\r
352#define EFI_HII_SIBT_STRING_SCSU_FONT 0x11\r
353#define EFI_HII_SIBT_STRINGS_SCSU 0x12\r
354#define EFI_HII_SIBT_STRINGS_SCSU_FONT 0x13\r
355#define EFI_HII_SIBT_STRING_UCS2 0x14\r
356#define EFI_HII_SIBT_STRING_UCS2_FONT 0x15\r
357#define EFI_HII_SIBT_STRINGS_UCS2 0x16\r
358#define EFI_HII_SIBT_STRINGS_UCS2_FONT 0x17\r
359#define EFI_HII_SIBT_DUPLICATE 0x20\r
360#define EFI_HII_SIBT_SKIP2 0x21\r
361#define EFI_HII_SIBT_SKIP1 0x22\r
362#define EFI_HII_SIBT_EXT1 0x30\r
363#define EFI_HII_SIBT_EXT2 0x31\r
364#define EFI_HII_SIBT_EXT4 0x32\r
365#define EFI_HII_SIBT_FONT 0x40\r
366\r
e0c047a0 367//\r
368// Definition of different string information block types\r
369//\r
370\r
7d582d6b 371typedef struct _EFI_HII_SIBT_DUPLICATE_BLOCK {\r
372 EFI_HII_STRING_BLOCK Header;\r
373 EFI_STRING_ID StringId;\r
374} EFI_HII_SIBT_DUPLICATE_BLOCK;\r
375\r
376typedef struct _EFI_HII_SIBT_END_BLOCK {\r
377 EFI_HII_STRING_BLOCK Header;\r
378} EFI_HII_SIBT_END_BLOCK;\r
379\r
380typedef struct _EFI_HII_SIBT_EXT1_BLOCK {\r
381 EFI_HII_STRING_BLOCK Header;\r
382 UINT8 BlockType2;\r
383 UINT8 Length;\r
384} EFI_HII_SIBT_EXT1_BLOCK;\r
385\r
386typedef struct _EFI_HII_SIBT_EXT2_BLOCK {\r
387 EFI_HII_STRING_BLOCK Header;\r
388 UINT8 BlockType2;\r
389 UINT16 Length;\r
390} EFI_HII_SIBT_EXT2_BLOCK;\r
391\r
392typedef struct _EFI_HII_SIBT_EXT4_BLOCK {\r
393 EFI_HII_STRING_BLOCK Header;\r
394 UINT8 BlockType2;\r
395 UINT32 Length;\r
396} EFI_HII_SIBT_EXT4_BLOCK;\r
397\r
398typedef struct _EFI_HII_SIBT_FONT_BLOCK {\r
399 EFI_HII_SIBT_EXT2_BLOCK Header;\r
400 UINT8 FontId;\r
401 UINT16 FontSize;\r
402 EFI_HII_FONT_STYLE FontStyle;\r
403 CHAR16 FontName[1];\r
404} EFI_HII_SIBT_FONT_BLOCK;\r
405\r
406typedef struct _EFI_HII_SIBT_SKIP1_BLOCK {\r
407 EFI_HII_STRING_BLOCK Header;\r
408 UINT8 SkipCount;\r
409} EFI_HII_SIBT_SKIP1_BLOCK;\r
410\r
411typedef struct _EFI_HII_SIBT_SKIP2_BLOCK {\r
412 EFI_HII_STRING_BLOCK Header;\r
413 UINT16 SkipCount;\r
414} EFI_HII_SIBT_SKIP2_BLOCK;\r
415\r
416typedef struct _EFI_HII_SIBT_STRING_SCSU_BLOCK {\r
417 EFI_HII_STRING_BLOCK Header;\r
418 UINT8 StringText[1];\r
419} EFI_HII_SIBT_STRING_SCSU_BLOCK;\r
420\r
421typedef struct _EFI_HII_SIBT_STRING_SCSU_FONT_BLOCK {\r
422 EFI_HII_STRING_BLOCK Header;\r
423 UINT8 FontIdentifier;\r
424 UINT8 StringText[1];\r
425} EFI_HII_SIBT_STRING_SCSU_FONT_BLOCK;\r
426\r
427typedef struct _EFI_HII_SIBT_STRINGS_SCSU_BLOCK {\r
428 EFI_HII_STRING_BLOCK Header;\r
429 UINT16 StringCount;\r
430 UINT8 StringText[1];\r
431} EFI_HII_SIBT_STRINGS_SCSU_BLOCK;\r
432\r
433typedef struct _EFI_HII_SIBT_STRINGS_SCSU_FONT_BLOCK {\r
434 EFI_HII_STRING_BLOCK Header;\r
435 UINT8 FontIdentifier;\r
436 UINT16 StringCount;\r
437 UINT8 StringText[1];\r
438} EFI_HII_SIBT_STRINGS_SCSU_FONT_BLOCK;\r
439\r
440typedef struct _EFI_HII_SIBT_STRING_UCS2_BLOCK {\r
441 EFI_HII_STRING_BLOCK Header;\r
442 CHAR16 StringText[1];\r
443} EFI_HII_SIBT_STRING_UCS2_BLOCK;\r
444\r
445typedef struct _EFI_HII_SIBT_STRING_UCS2_FONT_BLOCK {\r
446 EFI_HII_STRING_BLOCK Header;\r
447 UINT8 FontIdentifier;\r
448 CHAR16 StringText[1];\r
449} EFI_HII_SIBT_STRING_UCS2_FONT_BLOCK;\r
450\r
451typedef struct _EFI_HII_SIBT_STRINGS_UCS2_BLOCK {\r
452 EFI_HII_STRING_BLOCK Header;\r
453 UINT16 StringCount;\r
454 CHAR16 StringText[1];\r
455} EFI_HII_SIBT_STRINGS_UCS2_BLOCK;\r
456\r
457typedef struct _EFI_HII_SIBT_STRINGS_UCS2_FONT_BLOCK {\r
458 EFI_HII_STRING_BLOCK Header;\r
459 UINT8 FontIdentifier;\r
460 UINT16 StringCount;\r
461 CHAR16 StringText[1];\r
462} EFI_HII_SIBT_STRINGS_UCS2_FONT_BLOCK;\r
959ccb23 463\r
464//\r
e0c047a0 465// Definitions for Image Package\r
466// Section 27.3.7\r
7d582d6b 467//\r
468\r
469typedef struct _EFI_HII_IMAGE_PACKAGE_HDR {\r
470 EFI_HII_PACKAGE_HEADER Header;\r
471 UINT32 ImageInfoOffset;\r
472 UINT32 PaletteInfoOffset;\r
473} EFI_HII_IMAGE_PACKAGE_HDR;\r
474\r
475typedef struct _EFI_HII_IMAGE_BLOCK {\r
476 UINT8 BlockType;\r
477} EFI_HII_IMAGE_BLOCK;\r
478\r
e0c047a0 479//\r
480// Value of different image information block types\r
481//\r
7d582d6b 482#define EFI_HII_IIBT_END 0x00\r
483#define EFI_HII_IIBT_IMAGE_1BIT 0x10\r
484#define EFI_HII_IIBT_IMAGE_1BIT_TRANS 0x11\r
485#define EFI_HII_IIBT_IMAGE_4BIT 0x12\r
486#define EFI_HII_IIBT_IMAGE_4BIT_TRANS 0x13\r
487#define EFI_HII_IIBT_IMAGE_8BIT 0x14\r
488#define EFI_HII_IIBT_IMAGE_8BIT_TRANS 0x15\r
489#define EFI_HII_IIBT_IMAGE_24BIT 0x16\r
490#define EFI_HII_IIBT_IMAGE_24BIT_TRANS 0x17\r
491#define EFI_HII_IIBT_IMAGE_JPEG 0x18\r
492#define EFI_HII_IIBT_DUPLICATE 0x20\r
493#define EFI_HII_IIBT_SKIP2 0x21\r
494#define EFI_HII_IIBT_SKIP1 0x22\r
495#define EFI_HII_IIBT_EXT1 0x30\r
496#define EFI_HII_IIBT_EXT2 0x31\r
497#define EFI_HII_IIBT_EXT4 0x32\r
498\r
e0c047a0 499//\r
500// Definition of different image information block types\r
501//\r
502\r
7d582d6b 503typedef struct _EFI_HII_IIBT_END_BLOCK {\r
504 EFI_HII_IMAGE_BLOCK Header;\r
505} EFI_HII_IIBT_END_BLOCK;\r
506\r
507typedef struct _EFI_HII_IIBT_EXT1_BLOCK {\r
508 EFI_HII_IMAGE_BLOCK Header;\r
509 UINT8 BlockType2;\r
510 UINT8 Length;\r
511} EFI_HII_IIBT_EXT1_BLOCK;\r
512\r
513typedef struct _EFI_HII_IIBT_EXT2_BLOCK {\r
514 EFI_HII_IMAGE_BLOCK Header;\r
515 UINT8 BlockType2;\r
516 UINT16 Length;\r
517} EFI_HII_IIBT_EXT2_BLOCK;\r
518\r
519typedef struct _EFI_HII_IIBT_EXT4_BLOCK {\r
520 EFI_HII_IMAGE_BLOCK Header;\r
521 UINT8 BlockType2;\r
522 UINT32 Length;\r
523} EFI_HII_IIBT_EXT4_BLOCK;\r
524\r
525typedef struct _EFI_HII_IIBT_IMAGE_1BIT_BASE {\r
526 UINT16 Width;\r
527 UINT16 Height;\r
528 UINT8 Data[1];\r
529} EFI_HII_IIBT_IMAGE_1BIT_BASE;\r
530\r
531typedef struct _EFI_HII_IIBT_IMAGE_1BIT_BLOCK {\r
532 EFI_HII_IMAGE_BLOCK Header;\r
533 UINT8 PaletteIndex;\r
534 EFI_HII_IIBT_IMAGE_1BIT_BASE Bitmap;\r
535} EFI_HII_IIBT_IMAGE_1BIT_BLOCK;\r
536\r
537typedef struct _EFI_HII_IIBT_IMAGE_1BIT_TRANS_BLOCK {\r
538 EFI_HII_IMAGE_BLOCK Header;\r
539 UINT8 PaletteIndex;\r
540 EFI_HII_IIBT_IMAGE_1BIT_BASE Bitmap;\r
541} EFI_HII_IIBT_IMAGE_1BIT_TRANS_BLOCK;\r
542\r
543typedef struct _EFI_HII_RGB_PIXEL {\r
544 UINT8 b;\r
545 UINT8 g;\r
546 UINT8 r;\r
547} EFI_HII_RGB_PIXEL;\r
548\r
549typedef struct _EFI_HII_IIBT_IMAGE_24BIT_BASE {\r
550 UINT16 Width;\r
551 UINT16 Height;\r
552 EFI_HII_RGB_PIXEL Bitmap[1];\r
553} EFI_HII_IIBT_IMAGE_24BIT_BASE;\r
554\r
555typedef struct _EFI_HII_IIBT_IMAGE_24BIT_BLOCK {\r
556 EFI_HII_IMAGE_BLOCK Header;\r
557 EFI_HII_IIBT_IMAGE_24BIT_BASE Bitmap;\r
558} EFI_HII_IIBT_IMAGE_24BIT_BLOCK;\r
559\r
560typedef struct _EFI_HII_IIBT_IMAGE_24BIT_TRANS_BLOCK {\r
561 EFI_HII_IMAGE_BLOCK Header;\r
562 EFI_HII_IIBT_IMAGE_24BIT_BASE Bitmap;\r
563} EFI_HII_IIBT_IMAGE_24BIT_TRANS_BLOCK;\r
564\r
565typedef struct _EFI_HII_IIBT_IMAGE_4BIT_BASE {\r
566 UINT16 Width;\r
567 UINT16 Height;\r
568 UINT8 Data[1];\r
569} EFI_HII_IIBT_IMAGE_4BIT_BASE;\r
570\r
571typedef struct _EFI_HII_IIBT_IMAGE_4BIT_BLOCK {\r
572 EFI_HII_IMAGE_BLOCK Header;\r
573 UINT8 PaletteIndex;\r
574 EFI_HII_IIBT_IMAGE_4BIT_BASE Bitmap;\r
575} EFI_HII_IIBT_IMAGE_4BIT_BLOCK;\r
576\r
577typedef struct _EFI_HII_IIBT_IMAGE_4BIT_TRANS_BLOCK {\r
578 EFI_HII_IMAGE_BLOCK Header;\r
579 UINT8 PaletteIndex;\r
580 EFI_HII_IIBT_IMAGE_4BIT_BASE Bitmap;\r
581} EFI_HII_IIBT_IMAGE_4BIT_TRANS_BLOCK;\r
582\r
583typedef struct _EFI_HII_IIBT_IMAGE_8BIT_BASE {\r
584 UINT16 Width;\r
585 UINT16 Height;\r
586 UINT8 Data[1];\r
587} EFI_HII_IIBT_IMAGE_8BIT_BASE;\r
588\r
589typedef struct _EFI_HII_IIBT_IMAGE_8BIT_PALETTE_BLOCK {\r
590 EFI_HII_IMAGE_BLOCK Header;\r
591 UINT8 PaletteIndex;\r
592 EFI_HII_IIBT_IMAGE_8BIT_BASE Bitmap;\r
593} EFI_HII_IIBT_IMAGE_8BIT_BLOCK;\r
594\r
595typedef struct _EFI_HII_IIBT_IMAGE_8BIT_TRANS_BLOCK {\r
596 EFI_HII_IMAGE_BLOCK Header;\r
597 UINT8 PaletteIndex;\r
598 EFI_HII_IIBT_IMAGE_8BIT_BASE Bitmap;\r
599} EFI_HII_IIBT_IMAGE_8BIT_TRAN_BLOCK;\r
600\r
601typedef struct _EFI_HII_IIBT_DUPLICATE_BLOCK {\r
602 EFI_HII_IMAGE_BLOCK Header;\r
603 EFI_IMAGE_ID ImageId;\r
604} EFI_HII_IIBT_DUPLICATE_BLOCK;\r
605\r
606typedef struct _EFI_HII_IIBT_JPEG_BLOCK {\r
607 EFI_HII_IMAGE_BLOCK Header;\r
608 UINT32 Size;\r
609 UINT8 Data[1];\r
610} EFI_HII_IIBT_JPEG_BLOCK;\r
611\r
612typedef struct _EFI_HII_IIBT_SKIP1_BLOCK {\r
613 EFI_HII_IMAGE_BLOCK Header;\r
614 UINT8 SkipCount;\r
615} EFI_HII_IIBT_SKIP1_BLOCK;\r
616\r
617typedef struct _EFI_HII_IIBT_SKIP2_BLOCK {\r
618 EFI_HII_IMAGE_BLOCK Header;\r
619 UINT16 SkipCount;\r
620} EFI_HII_IIBT_SKIP2_BLOCK;\r
621\r
e0c047a0 622//\r
623// Definitions for Palette Information\r
624//\r
625\r
7d582d6b 626typedef struct _EFI_HII_IMAGE_PALETTE_INFO_HEADER {\r
627 UINT16 PaletteCount;\r
628} EFI_HII_IMAGE_PALETTE_INFO_HEADER;\r
629\r
630typedef struct _EFI_HII_IMAGE_PALETTE_INFO {\r
631 UINT16 PaletteSize;\r
632 EFI_HII_RGB_PIXEL PaletteValue[1];\r
633} EFI_HII_IMAGE_PALETTE_INFO;\r
634\r
959ccb23 635//\r
e0c047a0 636// Definitions for Forms Package\r
637// Section 27.3.8\r
7d582d6b 638//\r
639\r
e0c047a0 640///\r
f620c889 641/// The Form package is used to carry form-based encoding data.\r
e0c047a0 642///\r
f620c889 643typedef struct _EFI_HII_FORM_PACKAGE_HDR {\r
7d582d6b 644 EFI_HII_PACKAGE_HEADER Header;\r
645 // EFI_IFR_OP_HEADER OpCodeHeader;\r
646 // More op-codes follow\r
f620c889 647} EFI_HII_FORM_PACKAGE_HDR;\r
7d582d6b 648\r
959ccb23 649typedef struct {\r
7d582d6b 650 UINT8 Hour;\r
651 UINT8 Minute;\r
652 UINT8 Second;\r
653} EFI_HII_TIME;\r
959ccb23 654\r
655typedef struct {\r
7d582d6b 656 UINT16 Year;\r
657 UINT8 Month;\r
658 UINT8 Day;\r
659} EFI_HII_DATE;\r
660\r
2ed77d0d
ED
661typedef struct {\r
662 EFI_QUESTION_ID QuestionId;\r
663 EFI_FORM_ID FormId;\r
664 EFI_GUID FormSetGuid;\r
665 EFI_STRING_ID DevicePath;\r
666} EFI_HII_REF;\r
667\r
7d582d6b 668typedef union {\r
669 UINT8 u8;\r
670 UINT16 u16;\r
671 UINT32 u32;\r
672 UINT64 u64;\r
673 BOOLEAN b;\r
674 EFI_HII_TIME time;\r
675 EFI_HII_DATE date;\r
0cd118f7 676 EFI_STRING_ID string; ///< EFI_IFR_TYPE_STRING, EFI_IFR_TYPE_ACTION\r
2ed77d0d 677 EFI_HII_REF ref; ///< EFI_IFR_TYPE_REF\r
4e7d855f 678 // UINT8 buffer[]; ///< EFI_IFR_TYPE_BUFFER\r
7d582d6b 679} EFI_IFR_TYPE_VALUE;\r
680\r
d7132512
LG
681//\r
682// IFR Opcodes\r
683//\r
7d582d6b 684#define EFI_IFR_FORM_OP 0x01\r
685#define EFI_IFR_SUBTITLE_OP 0x02\r
686#define EFI_IFR_TEXT_OP 0x03\r
687#define EFI_IFR_IMAGE_OP 0x04\r
688#define EFI_IFR_ONE_OF_OP 0x05\r
689#define EFI_IFR_CHECKBOX_OP 0x06\r
690#define EFI_IFR_NUMERIC_OP 0x07\r
691#define EFI_IFR_PASSWORD_OP 0x08\r
692#define EFI_IFR_ONE_OF_OPTION_OP 0x09\r
693#define EFI_IFR_SUPPRESS_IF_OP 0x0A\r
694#define EFI_IFR_LOCKED_OP 0x0B\r
695#define EFI_IFR_ACTION_OP 0x0C\r
696#define EFI_IFR_RESET_BUTTON_OP 0x0D\r
697#define EFI_IFR_FORM_SET_OP 0x0E\r
698#define EFI_IFR_REF_OP 0x0F\r
699#define EFI_IFR_NO_SUBMIT_IF_OP 0x10\r
700#define EFI_IFR_INCONSISTENT_IF_OP 0x11\r
701#define EFI_IFR_EQ_ID_VAL_OP 0x12\r
702#define EFI_IFR_EQ_ID_ID_OP 0x13\r
e8ef4283 703#define EFI_IFR_EQ_ID_VAL_LIST_OP 0x14\r
7d582d6b 704#define EFI_IFR_AND_OP 0x15\r
705#define EFI_IFR_OR_OP 0x16\r
706#define EFI_IFR_NOT_OP 0x17\r
707#define EFI_IFR_RULE_OP 0x18\r
708#define EFI_IFR_GRAY_OUT_IF_OP 0x19\r
709#define EFI_IFR_DATE_OP 0x1A\r
710#define EFI_IFR_TIME_OP 0x1B\r
711#define EFI_IFR_STRING_OP 0x1C\r
712#define EFI_IFR_REFRESH_OP 0x1D\r
713#define EFI_IFR_DISABLE_IF_OP 0x1E\r
f6051525 714#define EFI_IFR_ANIMATION_OP 0x1F\r
7d582d6b 715#define EFI_IFR_TO_LOWER_OP 0x20\r
716#define EFI_IFR_TO_UPPER_OP 0x21\r
0cd118f7 717#define EFI_IFR_MAP_OP 0x22\r
7d582d6b 718#define EFI_IFR_ORDERED_LIST_OP 0x23\r
719#define EFI_IFR_VARSTORE_OP 0x24\r
720#define EFI_IFR_VARSTORE_NAME_VALUE_OP 0x25\r
721#define EFI_IFR_VARSTORE_EFI_OP 0x26\r
722#define EFI_IFR_VARSTORE_DEVICE_OP 0x27\r
723#define EFI_IFR_VERSION_OP 0x28\r
724#define EFI_IFR_END_OP 0x29\r
725#define EFI_IFR_MATCH_OP 0x2A\r
0cd118f7 726#define EFI_IFR_GET_OP 0x2B\r
2573712e 727#define EFI_IFR_SET_OP 0x2C\r
0cd118f7
LG
728#define EFI_IFR_READ_OP 0x2D\r
729#define EFI_IFR_WRITE_OP 0x2E\r
7d582d6b 730#define EFI_IFR_EQUAL_OP 0x2F\r
731#define EFI_IFR_NOT_EQUAL_OP 0x30\r
732#define EFI_IFR_GREATER_THAN_OP 0x31\r
733#define EFI_IFR_GREATER_EQUAL_OP 0x32\r
734#define EFI_IFR_LESS_THAN_OP 0x33\r
735#define EFI_IFR_LESS_EQUAL_OP 0x34\r
736#define EFI_IFR_BITWISE_AND_OP 0x35\r
737#define EFI_IFR_BITWISE_OR_OP 0x36\r
738#define EFI_IFR_BITWISE_NOT_OP 0x37\r
739#define EFI_IFR_SHIFT_LEFT_OP 0x38\r
740#define EFI_IFR_SHIFT_RIGHT_OP 0x39\r
741#define EFI_IFR_ADD_OP 0x3A\r
742#define EFI_IFR_SUBTRACT_OP 0x3B\r
743#define EFI_IFR_MULTIPLY_OP 0x3C\r
744#define EFI_IFR_DIVIDE_OP 0x3D\r
745#define EFI_IFR_MODULO_OP 0x3E\r
746#define EFI_IFR_RULE_REF_OP 0x3F\r
747#define EFI_IFR_QUESTION_REF1_OP 0x40\r
748#define EFI_IFR_QUESTION_REF2_OP 0x41\r
749#define EFI_IFR_UINT8_OP 0x42\r
750#define EFI_IFR_UINT16_OP 0x43\r
751#define EFI_IFR_UINT32_OP 0x44\r
752#define EFI_IFR_UINT64_OP 0x45\r
753#define EFI_IFR_TRUE_OP 0x46\r
754#define EFI_IFR_FALSE_OP 0x47\r
755#define EFI_IFR_TO_UINT_OP 0x48\r
756#define EFI_IFR_TO_STRING_OP 0x49\r
757#define EFI_IFR_TO_BOOLEAN_OP 0x4A\r
758#define EFI_IFR_MID_OP 0x4B\r
759#define EFI_IFR_FIND_OP 0x4C\r
760#define EFI_IFR_TOKEN_OP 0x4D\r
761#define EFI_IFR_STRING_REF1_OP 0x4E\r
762#define EFI_IFR_STRING_REF2_OP 0x4F\r
763#define EFI_IFR_CONDITIONAL_OP 0x50\r
764#define EFI_IFR_QUESTION_REF3_OP 0x51\r
765#define EFI_IFR_ZERO_OP 0x52\r
766#define EFI_IFR_ONE_OP 0x53\r
767#define EFI_IFR_ONES_OP 0x54\r
768#define EFI_IFR_UNDEFINED_OP 0x55\r
769#define EFI_IFR_LENGTH_OP 0x56\r
770#define EFI_IFR_DUP_OP 0x57\r
771#define EFI_IFR_THIS_OP 0x58\r
772#define EFI_IFR_SPAN_OP 0x59\r
773#define EFI_IFR_VALUE_OP 0x5A\r
774#define EFI_IFR_DEFAULT_OP 0x5B\r
775#define EFI_IFR_DEFAULTSTORE_OP 0x5C\r
0cd118f7 776#define EFI_IFR_FORM_MAP_OP 0x5D\r
7d582d6b 777#define EFI_IFR_CATENATE_OP 0x5E\r
778#define EFI_IFR_GUID_OP 0x5F\r
0cd118f7 779#define EFI_IFR_SECURITY_OP 0x60\r
26a65e5c 780#define EFI_IFR_MODAL_TAG_OP 0x61\r
dfc66bb9 781#define EFI_IFR_REFRESH_ID_OP 0x62\r
774b5736 782#define EFI_IFR_WARNING_IF_OP 0x63\r
7cc80bfd 783#define EFI_IFR_MATCH2_OP 0x64\r
7d582d6b 784\r
e0c047a0 785//\r
786// Definitions of IFR Standard Headers\r
787// Section 27.3.8.2\r
788//\r
7d582d6b 789\r
790typedef struct _EFI_IFR_OP_HEADER {\r
791 UINT8 OpCode;\r
792 UINT8 Length:7;\r
793 UINT8 Scope:1;\r
794} EFI_IFR_OP_HEADER;\r
795\r
796typedef struct _EFI_IFR_STATEMENT_HEADER {\r
797 EFI_STRING_ID Prompt;\r
798 EFI_STRING_ID Help;\r
799} EFI_IFR_STATEMENT_HEADER;\r
800\r
801typedef struct _EFI_IFR_QUESTION_HEADER {\r
802 EFI_IFR_STATEMENT_HEADER Header;\r
803 EFI_QUESTION_ID QuestionId;\r
804 EFI_VARSTORE_ID VarStoreId;\r
805 union {\r
806 EFI_STRING_ID VarName;\r
807 UINT16 VarOffset;\r
808 } VarStoreInfo;\r
809 UINT8 Flags;\r
810} EFI_IFR_QUESTION_HEADER;\r
811\r
e0c047a0 812//\r
813// Flag values of EFI_IFR_QUESTION_HEADER\r
814//\r
1c2a4962
ED
815#define EFI_IFR_FLAG_READ_ONLY 0x01\r
816#define EFI_IFR_FLAG_CALLBACK 0x04\r
817#define EFI_IFR_FLAG_RESET_REQUIRED 0x10\r
818#define EFI_IFR_FLAG_RECONNECT_REQUIRED 0x40\r
819#define EFI_IFR_FLAG_OPTIONS_ONLY 0x80\r
7d582d6b 820\r
e0c047a0 821//\r
822// Definition for Opcode Reference\r
823// Section 27.3.8.3\r
824//\r
7d582d6b 825typedef struct _EFI_IFR_DEFAULTSTORE {\r
826 EFI_IFR_OP_HEADER Header;\r
827 EFI_STRING_ID DefaultName;\r
828 UINT16 DefaultId;\r
829} EFI_IFR_DEFAULTSTORE;\r
830\r
e0c047a0 831//\r
832// Default Identifier of default store \r
833//\r
7d582d6b 834#define EFI_HII_DEFAULT_CLASS_STANDARD 0x0000\r
835#define EFI_HII_DEFAULT_CLASS_MANUFACTURING 0x0001\r
836#define EFI_HII_DEFAULT_CLASS_SAFE 0x0002\r
837#define EFI_HII_DEFAULT_CLASS_PLATFORM_BEGIN 0x4000\r
838#define EFI_HII_DEFAULT_CLASS_PLATFORM_END 0x7fff\r
839#define EFI_HII_DEFAULT_CLASS_HARDWARE_BEGIN 0x8000\r
840#define EFI_HII_DEFAULT_CLASS_HARDWARE_END 0xbfff\r
841#define EFI_HII_DEFAULT_CLASS_FIRMWARE_BEGIN 0xc000\r
842#define EFI_HII_DEFAULT_CLASS_FIRMWARE_END 0xffff\r
843\r
844typedef struct _EFI_IFR_VARSTORE {\r
845 EFI_IFR_OP_HEADER Header;\r
846 EFI_GUID Guid;\r
847 EFI_VARSTORE_ID VarStoreId;\r
848 UINT16 Size;\r
849 UINT8 Name[1];\r
850} EFI_IFR_VARSTORE;\r
851\r
852typedef struct _EFI_IFR_VARSTORE_EFI {\r
853 EFI_IFR_OP_HEADER Header;\r
54cf8780 854 EFI_VARSTORE_ID VarStoreId;\r
7d582d6b 855 EFI_GUID Guid;\r
856 UINT32 Attributes;\r
d23610eb
ED
857 UINT16 Size;\r
858 UINT8 Name[1];\r
7d582d6b 859} EFI_IFR_VARSTORE_EFI;\r
860\r
861typedef struct _EFI_IFR_VARSTORE_NAME_VALUE {\r
862 EFI_IFR_OP_HEADER Header;\r
54cf8780 863 EFI_VARSTORE_ID VarStoreId;\r
7d582d6b 864 EFI_GUID Guid;\r
865} EFI_IFR_VARSTORE_NAME_VALUE;\r
866\r
867typedef struct _EFI_IFR_FORM_SET {\r
868 EFI_IFR_OP_HEADER Header;\r
869 EFI_GUID Guid;\r
870 EFI_STRING_ID FormSetTitle;\r
871 EFI_STRING_ID Help;\r
c2ace45e
LG
872 UINT8 Flags;\r
873 // EFI_GUID ClassGuid[];\r
7d582d6b 874} EFI_IFR_FORM_SET;\r
875\r
876typedef struct _EFI_IFR_END {\r
877 EFI_IFR_OP_HEADER Header;\r
878} EFI_IFR_END;\r
879\r
880typedef struct _EFI_IFR_FORM {\r
881 EFI_IFR_OP_HEADER Header;\r
882 UINT16 FormId;\r
883 EFI_STRING_ID FormTitle;\r
884} EFI_IFR_FORM;\r
885\r
886typedef struct _EFI_IFR_IMAGE {\r
887 EFI_IFR_OP_HEADER Header;\r
888 EFI_IMAGE_ID Id;\r
889} EFI_IFR_IMAGE;\r
890\r
cadf8790 891typedef struct _EFI_IFR_MODAL_TAG {\r
26a65e5c 892 EFI_IFR_OP_HEADER Header;\r
cadf8790 893} EFI_IFR_MODAL_TAG;\r
26a65e5c 894\r
7d582d6b 895typedef struct _EFI_IFR_LOCKED {\r
896 EFI_IFR_OP_HEADER Header;\r
897} EFI_IFR_LOCKED;\r
898\r
899typedef struct _EFI_IFR_RULE {\r
900 EFI_IFR_OP_HEADER Header;\r
901 UINT8 RuleId;\r
902} EFI_IFR_RULE;\r
903\r
904typedef struct _EFI_IFR_DEFAULT {\r
905 EFI_IFR_OP_HEADER Header;\r
906 UINT16 DefaultId;\r
907 UINT8 Type;\r
908 EFI_IFR_TYPE_VALUE Value;\r
909} EFI_IFR_DEFAULT;\r
910\r
4706ff4f
ED
911typedef struct _EFI_IFR_DEFAULT_2 {\r
912 EFI_IFR_OP_HEADER Header;\r
913 UINT16 DefaultId;\r
914 UINT8 Type;\r
915} EFI_IFR_DEFAULT_2;\r
916\r
7d582d6b 917typedef struct _EFI_IFR_VALUE {\r
918 EFI_IFR_OP_HEADER Header;\r
919} EFI_IFR_VALUE;\r
920\r
921typedef struct _EFI_IFR_SUBTITLE {\r
922 EFI_IFR_OP_HEADER Header;\r
923 EFI_IFR_STATEMENT_HEADER Statement;\r
924 UINT8 Flags;\r
925} EFI_IFR_SUBTITLE;\r
926\r
927#define EFI_IFR_FLAGS_HORIZONTAL 0x01\r
928\r
929typedef struct _EFI_IFR_CHECKBOX {\r
930 EFI_IFR_OP_HEADER Header;\r
931 EFI_IFR_QUESTION_HEADER Question;\r
932 UINT8 Flags;\r
933} EFI_IFR_CHECKBOX;\r
934\r
935#define EFI_IFR_CHECKBOX_DEFAULT 0x01\r
936#define EFI_IFR_CHECKBOX_DEFAULT_MFG 0x02\r
937\r
938typedef struct _EFI_IFR_TEXT {\r
939 EFI_IFR_OP_HEADER Header;\r
940 EFI_IFR_STATEMENT_HEADER Statement;\r
941 EFI_STRING_ID TextTwo;\r
942} EFI_IFR_TEXT;\r
943\r
944typedef struct _EFI_IFR_REF {\r
945 EFI_IFR_OP_HEADER Header;\r
946 EFI_IFR_QUESTION_HEADER Question;\r
947 EFI_FORM_ID FormId;\r
948} EFI_IFR_REF;\r
949\r
950typedef struct _EFI_IFR_REF2 {\r
951 EFI_IFR_OP_HEADER Header;\r
952 EFI_IFR_QUESTION_HEADER Question;\r
953 EFI_FORM_ID FormId;\r
954 EFI_QUESTION_ID QuestionId;\r
955} EFI_IFR_REF2;\r
956\r
957typedef struct _EFI_IFR_REF3 {\r
958 EFI_IFR_OP_HEADER Header;\r
959 EFI_IFR_QUESTION_HEADER Question;\r
960 EFI_FORM_ID FormId;\r
961 EFI_QUESTION_ID QuestionId;\r
962 EFI_GUID FormSetId;\r
963} EFI_IFR_REF3;\r
964\r
965typedef struct _EFI_IFR_REF4 {\r
966 EFI_IFR_OP_HEADER Header;\r
967 EFI_IFR_QUESTION_HEADER Question;\r
968 EFI_FORM_ID FormId;\r
969 EFI_QUESTION_ID QuestionId;\r
970 EFI_GUID FormSetId;\r
971 EFI_STRING_ID DevicePath;\r
972} EFI_IFR_REF4;\r
973\r
2ed77d0d
ED
974typedef struct _EFI_IFR_REF5 {\r
975 EFI_IFR_OP_HEADER Header;\r
976 EFI_IFR_QUESTION_HEADER Question;\r
977} EFI_IFR_REF5;\r
978\r
7d582d6b 979typedef struct _EFI_IFR_RESET_BUTTON {\r
980 EFI_IFR_OP_HEADER Header;\r
16cb6eca 981 EFI_IFR_STATEMENT_HEADER Statement;\r
7d582d6b 982 EFI_DEFAULT_ID DefaultId;\r
983} EFI_IFR_RESET_BUTTON;\r
984\r
985typedef struct _EFI_IFR_ACTION {\r
986 EFI_IFR_OP_HEADER Header;\r
987 EFI_IFR_QUESTION_HEADER Question;\r
988 EFI_STRING_ID QuestionConfig;\r
989} EFI_IFR_ACTION;\r
990\r
991typedef struct _EFI_IFR_ACTION_1 {\r
992 EFI_IFR_OP_HEADER Header;\r
993 EFI_IFR_QUESTION_HEADER Question;\r
994} EFI_IFR_ACTION_1;\r
995\r
996typedef struct _EFI_IFR_DATE {\r
997 EFI_IFR_OP_HEADER Header;\r
998 EFI_IFR_QUESTION_HEADER Question;\r
999 UINT8 Flags;\r
959ccb23 1000} EFI_IFR_DATE;\r
1001\r
e0c047a0 1002//\r
1003// Flags that describe the behavior of the question.\r
1004//\r
7d582d6b 1005#define EFI_QF_DATE_YEAR_SUPPRESS 0x01\r
1006#define EFI_QF_DATE_MONTH_SUPPRESS 0x02\r
1007#define EFI_QF_DATE_DAY_SUPPRESS 0x04\r
959ccb23 1008\r
7d582d6b 1009#define EFI_QF_DATE_STORAGE 0x30\r
1010#define QF_DATE_STORAGE_NORMAL 0x00\r
1011#define QF_DATE_STORAGE_TIME 0x10\r
1012#define QF_DATE_STORAGE_WAKEUP 0x20\r
1013\r
1014typedef union {\r
1015 struct {\r
1016 UINT8 MinValue;\r
1017 UINT8 MaxValue;\r
1018 UINT8 Step;\r
1019 } u8;\r
1020 struct {\r
1021 UINT16 MinValue;\r
1022 UINT16 MaxValue;\r
1023 UINT16 Step;\r
1024 } u16;\r
1025 struct {\r
1026 UINT32 MinValue;\r
1027 UINT32 MaxValue;\r
1028 UINT32 Step;\r
1029 } u32;\r
1030 struct {\r
1031 UINT64 MinValue;\r
1032 UINT64 MaxValue;\r
1033 UINT64 Step;\r
1034 } u64;\r
1035} MINMAXSTEP_DATA;\r
1036\r
1037typedef struct _EFI_IFR_NUMERIC {\r
1038 EFI_IFR_OP_HEADER Header;\r
1039 EFI_IFR_QUESTION_HEADER Question;\r
1040 UINT8 Flags;\r
1041 MINMAXSTEP_DATA data;\r
1042} EFI_IFR_NUMERIC;\r
1043\r
e0c047a0 1044//\r
1045// Flags related to the numeric question\r
1046//\r
7d582d6b 1047#define EFI_IFR_NUMERIC_SIZE 0x03\r
e0c047a0 1048#define EFI_IFR_NUMERIC_SIZE_1 0x00\r
1049#define EFI_IFR_NUMERIC_SIZE_2 0x01\r
1050#define EFI_IFR_NUMERIC_SIZE_4 0x02\r
1051#define EFI_IFR_NUMERIC_SIZE_8 0x03\r
7d582d6b 1052\r
1053#define EFI_IFR_DISPLAY 0x30\r
e0c047a0 1054#define EFI_IFR_DISPLAY_INT_DEC 0x00\r
1055#define EFI_IFR_DISPLAY_UINT_DEC 0x10\r
1056#define EFI_IFR_DISPLAY_UINT_HEX 0x20\r
7d582d6b 1057\r
1058typedef struct _EFI_IFR_ONE_OF {\r
1059 EFI_IFR_OP_HEADER Header;\r
1060 EFI_IFR_QUESTION_HEADER Question;\r
1061 UINT8 Flags;\r
1062 MINMAXSTEP_DATA data;\r
1063} EFI_IFR_ONE_OF;\r
1064\r
1065typedef struct _EFI_IFR_STRING {\r
1066 EFI_IFR_OP_HEADER Header;\r
1067 EFI_IFR_QUESTION_HEADER Question;\r
1068 UINT8 MinSize;\r
1069 UINT8 MaxSize;\r
1070 UINT8 Flags;\r
959ccb23 1071} EFI_IFR_STRING;\r
1072\r
7d582d6b 1073#define EFI_IFR_STRING_MULTI_LINE 0x01\r
959ccb23 1074\r
7d582d6b 1075typedef struct _EFI_IFR_PASSWORD {\r
1076 EFI_IFR_OP_HEADER Header;\r
1077 EFI_IFR_QUESTION_HEADER Question;\r
1078 UINT16 MinSize;\r
1079 UINT16 MaxSize;\r
1080} EFI_IFR_PASSWORD;\r
959ccb23 1081\r
7d582d6b 1082typedef struct _EFI_IFR_ORDERED_LIST {\r
1083 EFI_IFR_OP_HEADER Header;\r
1084 EFI_IFR_QUESTION_HEADER Question;\r
1085 UINT8 MaxContainers;\r
1086 UINT8 Flags;\r
1087} EFI_IFR_ORDERED_LIST;\r
959ccb23 1088\r
7d582d6b 1089#define EFI_IFR_UNIQUE_SET 0x01\r
1090#define EFI_IFR_NO_EMPTY_SET 0x02\r
959ccb23 1091\r
7d582d6b 1092typedef struct _EFI_IFR_TIME {\r
1093 EFI_IFR_OP_HEADER Header;\r
1094 EFI_IFR_QUESTION_HEADER Question;\r
1095 UINT8 Flags;\r
1096} EFI_IFR_TIME;\r
959ccb23 1097\r
e0c047a0 1098//\r
1099// A bit-mask that determines which unique settings are active for this opcode.\r
1100//\r
7d582d6b 1101#define QF_TIME_HOUR_SUPPRESS 0x01\r
1102#define QF_TIME_MINUTE_SUPPRESS 0x02\r
1103#define QF_TIME_SECOND_SUPPRESS 0x04\r
1104\r
1105#define QF_TIME_STORAGE 0x30\r
e0c047a0 1106#define QF_TIME_STORAGE_NORMAL 0x00\r
1107#define QF_TIME_STORAGE_TIME 0x10\r
1108#define QF_TIME_STORAGE_WAKEUP 0x20\r
7d582d6b 1109\r
1110typedef struct _EFI_IFR_DISABLE_IF {\r
1111 EFI_IFR_OP_HEADER Header;\r
1112} EFI_IFR_DISABLE_IF;\r
1113\r
1114typedef struct _EFI_IFR_SUPPRESS_IF {\r
1115 EFI_IFR_OP_HEADER Header;\r
1116} EFI_IFR_SUPPRESS_IF;\r
1117\r
1118typedef struct _EFI_IFR_GRAY_OUT_IF {\r
1119 EFI_IFR_OP_HEADER Header;\r
1120} EFI_IFR_GRAY_OUT_IF;\r
1121\r
1122typedef struct _EFI_IFR_INCONSISTENT_IF {\r
1123 EFI_IFR_OP_HEADER Header;\r
1124 EFI_STRING_ID Error;\r
1125} EFI_IFR_INCONSISTENT_IF;\r
1126\r
1127typedef struct _EFI_IFR_NO_SUBMIT_IF {\r
1128 EFI_IFR_OP_HEADER Header;\r
1129 EFI_STRING_ID Error;\r
1130} EFI_IFR_NO_SUBMIT_IF;\r
1131\r
774b5736
ED
1132typedef struct _EFI_IFR_WARNING_IF {\r
1133 EFI_IFR_OP_HEADER Header;\r
1134 EFI_STRING_ID Warning;\r
1135 UINT8 TimeOut;\r
1136} EFI_IFR_WARNING_IF;\r
1137\r
7d582d6b 1138typedef struct _EFI_IFR_REFRESH {\r
1139 EFI_IFR_OP_HEADER Header;\r
1140 UINT8 RefreshInterval;\r
1141} EFI_IFR_REFRESH;\r
1142\r
1143typedef struct _EFI_IFR_VARSTORE_DEVICE {\r
1144 EFI_IFR_OP_HEADER Header;\r
1145 EFI_STRING_ID DevicePath;\r
1146} EFI_IFR_VARSTORE_DEVICE;\r
1147\r
1148typedef struct _EFI_IFR_ONE_OF_OPTION {\r
1149 EFI_IFR_OP_HEADER Header;\r
1150 EFI_STRING_ID Option;\r
1151 UINT8 Flags;\r
1152 UINT8 Type;\r
1153 EFI_IFR_TYPE_VALUE Value;\r
1154} EFI_IFR_ONE_OF_OPTION;\r
1155\r
e0c047a0 1156//\r
1157// Types of the option's value.\r
1158//\r
7d582d6b 1159#define EFI_IFR_TYPE_NUM_SIZE_8 0x00\r
1160#define EFI_IFR_TYPE_NUM_SIZE_16 0x01\r
1161#define EFI_IFR_TYPE_NUM_SIZE_32 0x02\r
1162#define EFI_IFR_TYPE_NUM_SIZE_64 0x03\r
1163#define EFI_IFR_TYPE_BOOLEAN 0x04\r
1164#define EFI_IFR_TYPE_TIME 0x05\r
1165#define EFI_IFR_TYPE_DATE 0x06\r
1166#define EFI_IFR_TYPE_STRING 0x07\r
1167#define EFI_IFR_TYPE_OTHER 0x08\r
0cd118f7
LG
1168#define EFI_IFR_TYPE_UNDEFINED 0x09\r
1169#define EFI_IFR_TYPE_ACTION 0x0A\r
1170#define EFI_IFR_TYPE_BUFFER 0x0B\r
2ed77d0d 1171#define EFI_IFR_TYPE_REF 0x0C\r
7d582d6b 1172\r
1173#define EFI_IFR_OPTION_DEFAULT 0x10\r
1174#define EFI_IFR_OPTION_DEFAULT_MFG 0x20\r
1175\r
1176typedef struct _EFI_IFR_GUID {\r
1177 EFI_IFR_OP_HEADER Header;\r
1178 EFI_GUID Guid;\r
1179 //Optional Data Follows\r
1180} EFI_IFR_GUID;\r
1181\r
dfc66bb9
ED
1182typedef struct _EFI_IFR_REFRESH_ID {\r
1183 EFI_IFR_OP_HEADER Header;\r
1184 EFI_GUID RefreshEventGroupId;\r
1185} EFI_IFR_REFRESH_ID;\r
1186\r
7d582d6b 1187typedef struct _EFI_IFR_DUP {\r
1188 EFI_IFR_OP_HEADER Header;\r
1189} EFI_IFR_DUP;\r
1190\r
1191typedef struct _EFI_IFR_EQ_ID_ID {\r
1192 EFI_IFR_OP_HEADER Header;\r
1193 EFI_QUESTION_ID QuestionId1;\r
1194 EFI_QUESTION_ID QuestionId2;\r
1195} EFI_IFR_EQ_ID_ID;\r
1196\r
1197typedef struct _EFI_IFR_EQ_ID_VAL {\r
1198 EFI_IFR_OP_HEADER Header;\r
1199 EFI_QUESTION_ID QuestionId;\r
1200 UINT16 Value;\r
959ccb23 1201} EFI_IFR_EQ_ID_VAL;\r
1202\r
66d550f9 1203typedef struct _EFI_IFR_EQ_ID_VAL_LIST {\r
7d582d6b 1204 EFI_IFR_OP_HEADER Header;\r
1205 EFI_QUESTION_ID QuestionId;\r
1206 UINT16 ListLength;\r
1207 UINT16 ValueList[1];\r
66d550f9 1208} EFI_IFR_EQ_ID_VAL_LIST;\r
959ccb23 1209\r
7d582d6b 1210typedef struct _EFI_IFR_UINT8 {\r
1211 EFI_IFR_OP_HEADER Header;\r
1212 UINT8 Value;\r
1213} EFI_IFR_UINT8;\r
959ccb23 1214\r
7d582d6b 1215typedef struct _EFI_IFR_UINT16 {\r
1216 EFI_IFR_OP_HEADER Header;\r
1217 UINT16 Value;\r
1218} EFI_IFR_UINT16;\r
1219\r
7d582d6b 1220typedef struct _EFI_IFR_UINT32 {\r
1221 EFI_IFR_OP_HEADER Header;\r
1222 UINT32 Value;\r
1223} EFI_IFR_UINT32;\r
1224\r
1225typedef struct _EFI_IFR_UINT64 {\r
1226 EFI_IFR_OP_HEADER Header;\r
1227 UINT64 Value;\r
1228} EFI_IFR_UINT64;\r
1229\r
e0c047a0 1230typedef struct _EFI_IFR_QUESTION_REF1 {\r
1231 EFI_IFR_OP_HEADER Header;\r
1232 EFI_QUESTION_ID QuestionId;\r
1233} EFI_IFR_QUESTION_REF1;\r
1234\r
1235typedef struct _EFI_IFR_QUESTION_REF2 {\r
1236 EFI_IFR_OP_HEADER Header;\r
1237} EFI_IFR_QUESTION_REF2;\r
1238\r
7d582d6b 1239typedef struct _EFI_IFR_QUESTION_REF3 {\r
1240 EFI_IFR_OP_HEADER Header;\r
1241} EFI_IFR_QUESTION_REF3;\r
1242\r
1243typedef struct _EFI_IFR_QUESTION_REF3_2 {\r
1244 EFI_IFR_OP_HEADER Header;\r
1245 EFI_STRING_ID DevicePath;\r
1246} EFI_IFR_QUESTION_REF3_2;\r
1247\r
1248typedef struct _EFI_IFR_QUESTION_REF3_3 {\r
1249 EFI_IFR_OP_HEADER Header;\r
1250 EFI_STRING_ID DevicePath;\r
1251 EFI_GUID Guid;\r
1252} EFI_IFR_QUESTION_REF3_3;\r
1253\r
1254typedef struct _EFI_IFR_RULE_REF {\r
1255 EFI_IFR_OP_HEADER Header;\r
1256 UINT8 RuleId;\r
1257} EFI_IFR_RULE_REF;\r
1258\r
1259typedef struct _EFI_IFR_STRING_REF1 {\r
1260 EFI_IFR_OP_HEADER Header;\r
1261 EFI_STRING_ID StringId;\r
1262} EFI_IFR_STRING_REF1;\r
1263\r
1264typedef struct _EFI_IFR_STRING_REF2 {\r
1265 EFI_IFR_OP_HEADER Header;\r
1266} EFI_IFR_STRING_REF2;\r
1267\r
1268typedef struct _EFI_IFR_THIS {\r
1269 EFI_IFR_OP_HEADER Header;\r
1270} EFI_IFR_THIS;\r
1271\r
1272typedef struct _EFI_IFR_TRUE {\r
1273 EFI_IFR_OP_HEADER Header;\r
1274} EFI_IFR_TRUE;\r
1275\r
1276typedef struct _EFI_IFR_FALSE {\r
1277 EFI_IFR_OP_HEADER Header;\r
1278} EFI_IFR_FALSE;\r
1279\r
1280typedef struct _EFI_IFR_ONE {\r
1281 EFI_IFR_OP_HEADER Header;\r
1282} EFI_IFR_ONE;\r
1283\r
1284typedef struct _EFI_IFR_ONES {\r
1285 EFI_IFR_OP_HEADER Header;\r
1286} EFI_IFR_ONES;\r
1287\r
1288typedef struct _EFI_IFR_ZERO {\r
1289 EFI_IFR_OP_HEADER Header;\r
1290} EFI_IFR_ZERO;\r
1291\r
1292typedef struct _EFI_IFR_UNDEFINED {\r
1293 EFI_IFR_OP_HEADER Header;\r
1294} EFI_IFR_UNDEFINED;\r
1295\r
1296typedef struct _EFI_IFR_VERSION {\r
1297 EFI_IFR_OP_HEADER Header;\r
1298} EFI_IFR_VERSION;\r
1299\r
1300typedef struct _EFI_IFR_LENGTH {\r
1301 EFI_IFR_OP_HEADER Header;\r
1302} EFI_IFR_LENGTH;\r
1303\r
1304typedef struct _EFI_IFR_NOT {\r
1305 EFI_IFR_OP_HEADER Header;\r
1306} EFI_IFR_NOT;\r
1307\r
1308typedef struct _EFI_IFR_BITWISE_NOT {\r
1309 EFI_IFR_OP_HEADER Header;\r
1310} EFI_IFR_BITWISE_NOT;\r
1311\r
1312typedef struct _EFI_IFR_TO_BOOLEAN {\r
1313 EFI_IFR_OP_HEADER Header;\r
1314} EFI_IFR_TO_BOOLEAN;\r
1315\r
fbf926ad 1316///\r
1317/// For EFI_IFR_TO_STRING, when converting from\r
1318/// unsigned integers, these flags control the format:\r
af2dc6a7 1319/// 0 = unsigned decimal.\r
1320/// 1 = signed decimal.\r
1321/// 2 = hexadecimal (lower-case alpha).\r
1322/// 3 = hexadecimal (upper-case alpha).\r
fbf926ad 1323///@{\r
7d582d6b 1324#define EFI_IFR_STRING_UNSIGNED_DEC 0\r
1325#define EFI_IFR_STRING_SIGNED_DEC 1\r
1326#define EFI_IFR_STRING_LOWERCASE_HEX 2\r
1327#define EFI_IFR_STRING_UPPERCASE_HEX 3\r
fbf926ad 1328///@}\r
1329\r
1330///\r
1331/// When converting from a buffer, these flags control the format:\r
af2dc6a7 1332/// 0 = ASCII.\r
1333/// 8 = Unicode.\r
fbf926ad 1334///@{\r
7d582d6b 1335#define EFI_IFR_STRING_ASCII 0\r
1336#define EFI_IFR_STRING_UNICODE 8\r
fbf926ad 1337///@}\r
7d582d6b 1338\r
1339typedef struct _EFI_IFR_TO_STRING {\r
1340 EFI_IFR_OP_HEADER Header;\r
1341 UINT8 Format;\r
1342} EFI_IFR_TO_STRING;\r
1343\r
1344typedef struct _EFI_IFR_TO_UINT {\r
1345 EFI_IFR_OP_HEADER Header;\r
1346} EFI_IFR_TO_UINT;\r
1347\r
1348typedef struct _EFI_IFR_TO_UPPER {\r
1349 EFI_IFR_OP_HEADER Header;\r
1350} EFI_IFR_TO_UPPER;\r
1351\r
1352typedef struct _EFI_IFR_TO_LOWER {\r
1353 EFI_IFR_OP_HEADER Header;\r
1354} EFI_IFR_TO_LOWER;\r
1355\r
1356typedef struct _EFI_IFR_ADD {\r
1357 EFI_IFR_OP_HEADER Header;\r
1358} EFI_IFR_ADD;\r
1359\r
1360typedef struct _EFI_IFR_AND {\r
1361 EFI_IFR_OP_HEADER Header;\r
959ccb23 1362} EFI_IFR_AND;\r
1363\r
7d582d6b 1364typedef struct _EFI_IFR_BITWISE_AND {\r
1365 EFI_IFR_OP_HEADER Header;\r
1366} EFI_IFR_BITWISE_AND;\r
1367\r
1368typedef struct _EFI_IFR_BITWISE_OR {\r
1369 EFI_IFR_OP_HEADER Header;\r
1370} EFI_IFR_BITWISE_OR;\r
1371\r
1372typedef struct _EFI_IFR_CATENATE {\r
1373 EFI_IFR_OP_HEADER Header;\r
1374} EFI_IFR_CATENATE;\r
1375\r
1376typedef struct _EFI_IFR_DIVIDE {\r
1377 EFI_IFR_OP_HEADER Header;\r
1378} EFI_IFR_DIVIDE;\r
1379\r
1380typedef struct _EFI_IFR_EQUAL {\r
1381 EFI_IFR_OP_HEADER Header;\r
1382} EFI_IFR_EQUAL;\r
1383\r
1384typedef struct _EFI_IFR_GREATER_EQUAL {\r
1385 EFI_IFR_OP_HEADER Header;\r
1386} EFI_IFR_GREATER_EQUAL;\r
1387\r
1388typedef struct _EFI_IFR_GREATER_THAN {\r
1389 EFI_IFR_OP_HEADER Header;\r
1390} EFI_IFR_GREATER_THAN;\r
1391\r
1392typedef struct _EFI_IFR_LESS_EQUAL {\r
1393 EFI_IFR_OP_HEADER Header;\r
1394} EFI_IFR_LESS_EQUAL;\r
1395\r
1396typedef struct _EFI_IFR_LESS_THAN {\r
1397 EFI_IFR_OP_HEADER Header;\r
1398} EFI_IFR_LESS_THAN;\r
1399\r
1400typedef struct _EFI_IFR_MATCH {\r
1401 EFI_IFR_OP_HEADER Header;\r
1402} EFI_IFR_MATCH;\r
1403\r
7cc80bfd
ED
1404typedef struct _EFI_IFR_MATCH2 {\r
1405 EFI_IFR_OP_HEADER Header;\r
1406 EFI_GUID SyntaxType;\r
1407} EFI_IFR_MATCH2;\r
1408\r
7d582d6b 1409typedef struct _EFI_IFR_MULTIPLY {\r
1410 EFI_IFR_OP_HEADER Header;\r
1411} EFI_IFR_MULTIPLY;\r
1412\r
1413typedef struct _EFI_IFR_MODULO {\r
1414 EFI_IFR_OP_HEADER Header;\r
1415} EFI_IFR_MODULO;\r
1416\r
1417typedef struct _EFI_IFR_NOT_EQUAL {\r
1418 EFI_IFR_OP_HEADER Header;\r
1419} EFI_IFR_NOT_EQUAL;\r
1420\r
1421typedef struct _EFI_IFR_OR {\r
1422 EFI_IFR_OP_HEADER Header;\r
959ccb23 1423} EFI_IFR_OR;\r
1424\r
7d582d6b 1425typedef struct _EFI_IFR_SHIFT_LEFT {\r
1426 EFI_IFR_OP_HEADER Header;\r
1427} EFI_IFR_SHIFT_LEFT;\r
959ccb23 1428\r
7d582d6b 1429typedef struct _EFI_IFR_SHIFT_RIGHT {\r
1430 EFI_IFR_OP_HEADER Header;\r
1431} EFI_IFR_SHIFT_RIGHT;\r
959ccb23 1432\r
7d582d6b 1433typedef struct _EFI_IFR_SUBTRACT {\r
1434 EFI_IFR_OP_HEADER Header;\r
1435} EFI_IFR_SUBTRACT;\r
959ccb23 1436\r
7d582d6b 1437typedef struct _EFI_IFR_CONDITIONAL {\r
1438 EFI_IFR_OP_HEADER Header;\r
1439} EFI_IFR_CONDITIONAL;\r
959ccb23 1440\r
e0c047a0 1441//\r
1442// Flags governing the matching criteria of EFI_IFR_FIND\r
1443//\r
7d582d6b 1444#define EFI_IFR_FF_CASE_SENSITIVE 0x00\r
1445#define EFI_IFR_FF_CASE_INSENSITIVE 0x01\r
959ccb23 1446\r
7d582d6b 1447typedef struct _EFI_IFR_FIND {\r
1448 EFI_IFR_OP_HEADER Header;\r
1449 UINT8 Format;\r
1450} EFI_IFR_FIND;\r
1451\r
1452typedef struct _EFI_IFR_MID {\r
1453 EFI_IFR_OP_HEADER Header;\r
1454} EFI_IFR_MID;\r
1455\r
1456typedef struct _EFI_IFR_TOKEN {\r
1457 EFI_IFR_OP_HEADER Header;\r
1458} EFI_IFR_TOKEN;\r
1459\r
e0c047a0 1460//\r
1461// Flags specifying whether to find the first matching string\r
1462// or the first non-matching string.\r
1463//\r
7d582d6b 1464#define EFI_IFR_FLAGS_FIRST_MATCHING 0x00\r
1465#define EFI_IFR_FLAGS_FIRST_NON_MATCHING 0x01\r
1466\r
1467typedef struct _EFI_IFR_SPAN {\r
1468 EFI_IFR_OP_HEADER Header;\r
1469 UINT8 Flags;\r
1470} EFI_IFR_SPAN;\r
959ccb23 1471\r
0cd118f7
LG
1472typedef struct _EFI_IFR_SECURITY {\r
1473 ///\r
1474 /// Standard opcode header, where Header.Op = EFI_IFR_SECURITY_OP.\r
1475 ///\r
1476 EFI_IFR_OP_HEADER Header;\r
1477 ///\r
1478 /// Security permission level.\r
1479 ///\r
1480 EFI_GUID Permissions;\r
1481} EFI_IFR_SECURITY;\r
1482\r
1483typedef struct _EFI_IFR_FORM_MAP_METHOD {\r
1484 ///\r
1485 /// The string identifier which provides the human-readable name of \r
1486 /// the configuration method for this standards map form.\r
1487 ///\r
1488 EFI_STRING_ID MethodTitle;\r
1489 ///\r
1490 /// Identifier which uniquely specifies the configuration methods \r
1491 /// associated with this standards map form.\r
1492 ///\r
1493 EFI_GUID MethodIdentifier;\r
1494} EFI_IFR_FORM_MAP_METHOD;\r
1495\r
1496typedef struct _EFI_IFR_FORM_MAP {\r
1497 ///\r
1498 /// The sequence that defines the type of opcode as well as the length \r
1499 /// of the opcode being defined. Header.OpCode = EFI_IFR_FORM_MAP_OP. \r
1500 ///\r
1501 EFI_IFR_OP_HEADER Header;\r
1502 ///\r
1503 /// The unique identifier for this particular form.\r
1504 ///\r
1505 EFI_FORM_ID FormId;\r
1506 ///\r
1507 /// One or more configuration method's name and unique identifier.\r
1508 ///\r
2573712e 1509 // EFI_IFR_FORM_MAP_METHOD Methods[];\r
0cd118f7
LG
1510} EFI_IFR_FORM_MAP;\r
1511\r
1512typedef struct _EFI_IFR_SET {\r
1513 ///\r
1514 /// The sequence that defines the type of opcode as well as the length \r
1515 /// of the opcode being defined. Header.OpCode = EFI_IFR_SET_OP. \r
1516 ///\r
1517 EFI_IFR_OP_HEADER Header;\r
1518 ///\r
1519 /// Specifies the identifier of a previously declared variable store to \r
1520 /// use when storing the question's value. \r
1521 ///\r
1522 EFI_VARSTORE_ID VarStoreId;\r
1523 union {\r
1524 ///\r
1525 /// A 16-bit Buffer Storage offset.\r
1526 ///\r
1527 EFI_STRING_ID VarName;\r
1528 ///\r
1529 /// A Name Value or EFI Variable name (VarName).\r
1530 ///\r
1531 UINT16 VarOffset;\r
1532 } VarStoreInfo;\r
2573712e
LG
1533 ///\r
1534 /// Specifies the type used for storage. \r
1535 ///\r
1536 UINT8 VarStoreType;\r
0cd118f7
LG
1537} EFI_IFR_SET;\r
1538\r
1539typedef struct _EFI_IFR_GET {\r
1540 ///\r
1541 /// The sequence that defines the type of opcode as well as the length \r
1542 /// of the opcode being defined. Header.OpCode = EFI_IFR_GET_OP. \r
1543 ///\r
1544 EFI_IFR_OP_HEADER Header;\r
1545 ///\r
1546 /// Specifies the identifier of a previously declared variable store to \r
1547 /// use when retrieving the value. \r
1548 ///\r
1549 EFI_VARSTORE_ID VarStoreId;\r
1550 union {\r
1551 ///\r
1552 /// A 16-bit Buffer Storage offset.\r
1553 ///\r
1554 EFI_STRING_ID VarName;\r
1555 ///\r
1556 /// A Name Value or EFI Variable name (VarName).\r
1557 ///\r
1558 UINT16 VarOffset;\r
1559 } VarStoreInfo;\r
1560 ///\r
1561 /// Specifies the type used for storage. \r
1562 ///\r
1563 UINT8 VarStoreType;\r
1564} EFI_IFR_GET;\r
1565\r
1566typedef struct _EFI_IFR_READ {\r
1567 EFI_IFR_OP_HEADER Header;\r
1568} EFI_IFR_READ;\r
1569\r
1570typedef struct _EFI_IFR_WRITE {\r
1571 EFI_IFR_OP_HEADER Header;\r
1572} EFI_IFR_WRITE;\r
1573\r
1574typedef struct _EFI_IFR_MAP {\r
1575 EFI_IFR_OP_HEADER Header;\r
1576} EFI_IFR_MAP;\r
959ccb23 1577//\r
e0c047a0 1578// Definitions for Keyboard Package\r
e0c047a0 1579// Releated definitions are in Section of EFI_HII_DATABASE_PROTOCOL\r
959ccb23 1580//\r
7d582d6b 1581\r
9319d2c2
LG
1582///\r
1583/// Each enumeration values maps a physical key on a keyboard.\r
1584///\r
7d582d6b 1585typedef enum { \r
1586 EfiKeyLCtrl,\r
1587 EfiKeyA0, \r
1588 EfiKeyLAlt,\r
1589 EfiKeySpaceBar,\r
1590 EfiKeyA2,\r
1591 EfiKeyA3,\r
1592 EfiKeyA4,\r
1593 EfiKeyRCtrl,\r
1594 EfiKeyLeftArrow,\r
1595 EfiKeyDownArrow,\r
1596 EfiKeyRightArrow,\r
1597 EfiKeyZero,\r
1598 EfiKeyPeriod,\r
1599 EfiKeyEnter,\r
1600 EfiKeyLShift,\r
1601 EfiKeyB0,\r
1602 EfiKeyB1,\r
1603 EfiKeyB2,\r
1604 EfiKeyB3,\r
1605 EfiKeyB4,\r
1606 EfiKeyB5,\r
1607 EfiKeyB6,\r
1608 EfiKeyB7,\r
1609 EfiKeyB8,\r
1610 EfiKeyB9,\r
1611 EfiKeyB10,\r
54cf8780 1612 EfiKeyRShift,\r
7d582d6b 1613 EfiKeyUpArrow,\r
1614 EfiKeyOne,\r
1615 EfiKeyTwo,\r
1616 EfiKeyThree,\r
1617 EfiKeyCapsLock,\r
1618 EfiKeyC1,\r
1619 EfiKeyC2,\r
1620 EfiKeyC3,\r
1621 EfiKeyC4,\r
1622 EfiKeyC5,\r
1623 EfiKeyC6,\r
1624 EfiKeyC7,\r
1625 EfiKeyC8,\r
1626 EfiKeyC9,\r
1627 EfiKeyC10,\r
1628 EfiKeyC11,\r
1629 EfiKeyC12,\r
1630 EfiKeyFour,\r
1631 EfiKeyFive,\r
1632 EfiKeySix,\r
1633 EfiKeyPlus,\r
1634 EfiKeyTab,\r
1635 EfiKeyD1,\r
1636 EfiKeyD2,\r
1637 EfiKeyD3,\r
1638 EfiKeyD4,\r
1639 EfiKeyD5,\r
1640 EfiKeyD6,\r
1641 EfiKeyD7,\r
1642 EfiKeyD8,\r
1643 EfiKeyD9,\r
1644 EfiKeyD10,\r
1645 EfiKeyD11,\r
1646 EfiKeyD12,\r
1647 EfiKeyD13,\r
1648 EfiKeyDel,\r
1649 EfiKeyEnd,\r
1650 EfiKeyPgDn,\r
1651 EfiKeySeven,\r
1652 EfiKeyEight,\r
1653 EfiKeyNine,\r
1654 EfiKeyE0,\r
1655 EfiKeyE1,\r
1656 EfiKeyE2,\r
1657 EfiKeyE3,\r
1658 EfiKeyE4,\r
1659 EfiKeyE5,\r
1660 EfiKeyE6,\r
1661 EfiKeyE7,\r
1662 EfiKeyE8,\r
1663 EfiKeyE9,\r
1664 EfiKeyE10,\r
1665 EfiKeyE11,\r
1666 EfiKeyE12,\r
1667 EfiKeyBackSpace,\r
1668 EfiKeyIns,\r
1669 EfiKeyHome,\r
1670 EfiKeyPgUp,\r
1671 EfiKeyNLck,\r
1672 EfiKeySlash,\r
1673 EfiKeyAsterisk,\r
1674 EfiKeyMinus,\r
1675 EfiKeyEsc,\r
1676 EfiKeyF1,\r
1677 EfiKeyF2,\r
1678 EfiKeyF3,\r
1679 EfiKeyF4,\r
1680 EfiKeyF5,\r
1681 EfiKeyF6,\r
1682 EfiKeyF7,\r
1683 EfiKeyF8,\r
1684 EfiKeyF9,\r
1685 EfiKeyF10,\r
1686 EfiKeyF11,\r
1687 EfiKeyF12,\r
1688 EfiKeyPrint,\r
1689 EfiKeySLck,\r
1690 EfiKeyPause\r
1691} EFI_KEY;\r
1692\r
959ccb23 1693typedef struct {\r
fbf926ad 1694 ///\r
1695 /// Used to describe a physical key on a keyboard.\r
1696 ///\r
7d582d6b 1697 EFI_KEY Key;\r
fbf926ad 1698 ///\r
1699 /// Unicode character code for the Key.\r
1700 ///\r
7d582d6b 1701 CHAR16 Unicode;\r
fbf926ad 1702 ///\r
1703 /// Unicode character code for the key with the shift key being held down.\r
1704 ///\r
7d582d6b 1705 CHAR16 ShiftedUnicode;\r
fbf926ad 1706 ///\r
1707 /// Unicode character code for the key with the Alt-GR being held down.\r
1708 ///\r
7d582d6b 1709 CHAR16 AltGrUnicode;\r
fbf926ad 1710 ///\r
1711 /// Unicode character code for the key with the Alt-GR and shift keys being held down.\r
1712 ///\r
7d582d6b 1713 CHAR16 ShiftedAltGrUnicode;\r
fbf926ad 1714 ///\r
1715 /// Modifier keys are defined to allow for special functionality that is not necessarily \r
1716 /// accomplished by a printable character. Many of these modifier keys are flags to toggle \r
1717 /// certain state bits on and off inside of a keyboard driver.\r
1718 ///\r
7d582d6b 1719 UINT16 Modifier;\r
1720 UINT16 AffectedAttribute;\r
1721} EFI_KEY_DESCRIPTOR;\r
1722\r
8b13229b 1723///\r
1724/// A key which is affected by all the standard shift modifiers. \r
1725/// Most keys would be expected to have this bit active.\r
1726///\r
7d582d6b 1727#define EFI_AFFECTED_BY_STANDARD_SHIFT 0x0001\r
8b13229b 1728\r
1729///\r
1730/// This key is affected by the caps lock so that if a keyboard driver\r
1731/// would need to disambiguate between a key which had a "1" defined\r
1a2f870c 1732/// versus an "a" character. Having this bit turned on would tell\r
8b13229b 1733/// the keyboard driver to use the appropriate shifted state or not.\r
1734///\r
7d582d6b 1735#define EFI_AFFECTED_BY_CAPS_LOCK 0x0002\r
8b13229b 1736\r
1737///\r
1738/// Similar to the case of CAPS lock, if this bit is active, the key\r
1739/// is affected by the num lock being turned on.\r
1740///\r
7d582d6b 1741#define EFI_AFFECTED_BY_NUM_LOCK 0x0004\r
959ccb23 1742\r
1743typedef struct {\r
7d582d6b 1744 UINT16 LayoutLength;\r
1745 EFI_GUID Guid;\r
1746 UINT32 LayoutDescriptorStringOffset;\r
1747 UINT8 DescriptorCount;\r
1748 // EFI_KEY_DESCRIPTOR Descriptors[];\r
1749} EFI_HII_KEYBOARD_LAYOUT;\r
959ccb23 1750\r
1751typedef struct {\r
7d582d6b 1752 EFI_HII_PACKAGE_HEADER Header;\r
1753 UINT16 LayoutCount;\r
1754 // EFI_HII_KEYBOARD_LAYOUT Layout[];\r
1755} EFI_HII_KEYBOARD_PACKAGE_HDR;\r
959ccb23 1756\r
959ccb23 1757//\r
7d582d6b 1758// Modifier values\r
959ccb23 1759//\r
7d582d6b 1760#define EFI_NULL_MODIFIER 0x0000\r
1761#define EFI_LEFT_CONTROL_MODIFIER 0x0001\r
1762#define EFI_RIGHT_CONTROL_MODIFIER 0x0002\r
1763#define EFI_LEFT_ALT_MODIFIER 0x0003\r
1764#define EFI_RIGHT_ALT_MODIFIER 0x0004\r
1765#define EFI_ALT_GR_MODIFIER 0x0005\r
1766#define EFI_INSERT_MODIFIER 0x0006\r
1767#define EFI_DELETE_MODIFIER 0x0007\r
1768#define EFI_PAGE_DOWN_MODIFIER 0x0008\r
1769#define EFI_PAGE_UP_MODIFIER 0x0009\r
1770#define EFI_HOME_MODIFIER 0x000A\r
1771#define EFI_END_MODIFIER 0x000B\r
1772#define EFI_LEFT_SHIFT_MODIFIER 0x000C\r
1773#define EFI_RIGHT_SHIFT_MODIFIER 0x000D\r
1774#define EFI_CAPS_LOCK_MODIFIER 0x000E\r
54cf8780 1775#define EFI_NUM_LOCK_MODIFIER 0x000F\r
7d582d6b 1776#define EFI_LEFT_ARROW_MODIFIER 0x0010\r
1777#define EFI_RIGHT_ARROW_MODIFIER 0x0011\r
1778#define EFI_DOWN_ARROW_MODIFIER 0x0012\r
1779#define EFI_UP_ARROW_MODIFIER 0x0013\r
1780#define EFI_NS_KEY_MODIFIER 0x0014\r
1781#define EFI_NS_KEY_DEPENDENCY_MODIFIER 0x0015\r
1782#define EFI_FUNCTION_KEY_ONE_MODIFIER 0x0016\r
1783#define EFI_FUNCTION_KEY_TWO_MODIFIER 0x0017\r
1784#define EFI_FUNCTION_KEY_THREE_MODIFIER 0x0018\r
1785#define EFI_FUNCTION_KEY_FOUR_MODIFIER 0x0019\r
1786#define EFI_FUNCTION_KEY_FIVE_MODIFIER 0x001A\r
1787#define EFI_FUNCTION_KEY_SIX_MODIFIER 0x001B\r
1788#define EFI_FUNCTION_KEY_SEVEN_MODIFIER 0x001C\r
1789#define EFI_FUNCTION_KEY_EIGHT_MODIFIER 0x001D\r
1790#define EFI_FUNCTION_KEY_NINE_MODIFIER 0x001E\r
1791#define EFI_FUNCTION_KEY_TEN_MODIFIER 0x001F\r
1792#define EFI_FUNCTION_KEY_ELEVEN_MODIFIER 0x0020\r
1793#define EFI_FUNCTION_KEY_TWELVE_MODIFIER 0x0021\r
959ccb23 1794\r
7d582d6b 1795//\r
1796// Keys that have multiple control functions based on modifier\r
1797// settings are handled in the keyboard driver implementation.\r
1a2f870c 1798// For instance, PRINT_KEY might have a modifier held down and\r
7d582d6b 1799// is still a nonprinting character, but might have an alternate\r
1800// control function like SYSREQUEST\r
1801//\r
1802#define EFI_PRINT_MODIFIER 0x0022\r
1803#define EFI_SYS_REQUEST_MODIFIER 0x0023\r
1804#define EFI_SCROLL_LOCK_MODIFIER 0x0024\r
1805#define EFI_PAUSE_MODIFIER 0x0025\r
1806#define EFI_BREAK_MODIFIER 0x0026\r
959ccb23 1807\r
54cf8780 1808#define EFI_LEFT_LOGO_MODIFIER 0x0027\r
1809#define EFI_RIGHT_LOGO_MODIFIER 0x0028\r
1810#define EFI_MENU_MODIFIER 0x0029\r
1811\r
f6051525 1812///\r
1813/// Animation IFR opcode\r
1814///\r
1815typedef struct _EFI_IFR_ANIMATION {\r
1816 ///\r
1817 /// Standard opcode header, where Header.OpCode is \r
1818 /// EFI_IFR_ANIMATION_OP.\r
1819 ///\r
1820 EFI_IFR_OP_HEADER Header;\r
1821 ///\r
1822 /// Animation identifier in the HII database.\r
1823 ///\r
1824 EFI_ANIMATION_ID Id;\r
1825} EFI_IFR_ANIMATION;\r
1826\r
1827///\r
af2dc6a7 1828/// HII animation package header.\r
f6051525 1829///\r
1830typedef struct _EFI_HII_ANIMATION_PACKAGE_HDR {\r
1831 ///\r
1832 /// Standard package header, where Header.Type = EFI_HII_PACKAGE_ANIMATIONS.\r
1833 ///\r
1834 EFI_HII_PACKAGE_HEADER Header;\r
1835 ///\r
1836 /// Offset, relative to this header, of the animation information. If \r
1837 /// this is zero, then there are no animation sequences in the package.\r
1838 ///\r
1839 UINT32 AnimationInfoOffset;\r
1840} EFI_HII_ANIMATION_PACKAGE_HDR;\r
1841\r
1842///\r
1843/// Animation information is encoded as a series of blocks,\r
af2dc6a7 1844/// with each block prefixed by a single byte header EFI_HII_ANIMATION_BLOCK.\r
f6051525 1845///\r
1846typedef struct _EFI_HII_ANIMATION_BLOCK {\r
1847 UINT8 BlockType;\r
1848 //UINT8 BlockBody[];\r
1849} EFI_HII_ANIMATION_BLOCK;\r
1850\r
1851///\r
af2dc6a7 1852/// Animation block types.\r
f6051525 1853///\r
1854#define EFI_HII_AIBT_END 0x00\r
1855#define EFI_HII_AIBT_OVERLAY_IMAGES 0x10\r
1856#define EFI_HII_AIBT_CLEAR_IMAGES 0x11\r
1857#define EFI_HII_AIBT_RESTORE_SCRN 0x12\r
1858#define EFI_HII_AIBT_OVERLAY_IMAGES_LOOP 0x18\r
1859#define EFI_HII_AIBT_CLEAR_IMAGES_LOOP 0x19\r
1860#define EFI_HII_AIBT_RESTORE_SCRN_LOOP 0x1A\r
1861#define EFI_HII_AIBT_DUPLICATE 0x20\r
1862#define EFI_HII_AIBT_SKIP2 0x21\r
1863#define EFI_HII_AIBT_SKIP1 0x22\r
1864#define EFI_HII_AIBT_EXT1 0x30\r
1865#define EFI_HII_AIBT_EXT2 0x31\r
1866#define EFI_HII_AIBT_EXT4 0x32\r
1867\r
1868///\r
1869/// Extended block headers used for variable sized animation records\r
1870/// which need an explicit length.\r
1871///\r
1872\r
1873typedef struct _EFI_HII_AIBT_EXT1_BLOCK {\r
1874 ///\r
af2dc6a7 1875 /// Standard animation header, where Header.BlockType = EFI_HII_AIBT_EXT1.\r
f6051525 1876 ///\r
1877 EFI_HII_ANIMATION_BLOCK Header;\r
1878 ///\r
af2dc6a7 1879 /// The block type.\r
f6051525 1880 ///\r
1881 UINT8 BlockType2;\r
1882 ///\r
1883 /// Size of the animation block, in bytes, including the animation block header.\r
1884 ///\r
1885 UINT8 Length;\r
1886} EFI_HII_AIBT_EXT1_BLOCK;\r
1887\r
1888typedef struct _EFI_HII_AIBT_EXT2_BLOCK {\r
1889 ///\r
af2dc6a7 1890 /// Standard animation header, where Header.BlockType = EFI_HII_AIBT_EXT2.\r
f6051525 1891 ///\r
1892 EFI_HII_ANIMATION_BLOCK Header;\r
1893 ///\r
1894 /// The block type\r
1895 ///\r
1896 UINT8 BlockType2;\r
1897 ///\r
1898 /// Size of the animation block, in bytes, including the animation block header.\r
1899 ///\r
1900 UINT16 Length;\r
1901} EFI_HII_AIBT_EXT2_BLOCK;\r
1902\r
1903typedef struct _EFI_HII_AIBT_EXT4_BLOCK {\r
1904 ///\r
af2dc6a7 1905 /// Standard animation header, where Header.BlockType = EFI_HII_AIBT_EXT4.\r
f6051525 1906 ///\r
1907 EFI_HII_ANIMATION_BLOCK Header;\r
1908 ///\r
1909 /// The block type\r
1910 ///\r
1911 UINT8 BlockType2;\r
1912 ///\r
1913 /// Size of the animation block, in bytes, including the animation block header.\r
1914 ///\r
1915 UINT32 Length;\r
1916} EFI_HII_AIBT_EXT4_BLOCK;\r
1917\r
1918typedef struct _EFI_HII_ANIMATION_CELL {\r
1919 ///\r
1920 /// The X offset from the upper left hand corner of the logical \r
1921 /// window to position the indexed image.\r
1922 ///\r
1923 UINT16 OffsetX;\r
1924 ///\r
1925 /// The Y offset from the upper left hand corner of the logical \r
1926 /// window to position the indexed image.\r
1927 ///\r
1928 UINT16 OffsetY;\r
1929 ///\r
1930 /// The image to display at the specified offset from the upper left \r
1931 /// hand corner of the logical window.\r
1932 ///\r
1933 EFI_IMAGE_ID ImageId;\r
1934 ///\r
1935 /// The number of milliseconds to delay after displaying the indexed \r
1936 /// image and before continuing on to the next linked image. If value \r
1937 /// is zero, no delay.\r
1938 ///\r
1939 UINT16 Delay;\r
1940} EFI_HII_ANIMATION_CELL;\r
1941\r
1942///\r
1943/// An animation block to describe an animation sequence that does not cycle, and\r
1944/// where one image is simply displayed over the previous image.\r
1945///\r
8c6d73fb 1946typedef struct _EFI_HII_AIBT_OVERLAY_IMAGES_BLOCK {\r
f6051525 1947 ///\r
1948 /// This is image that is to be reference by the image protocols, if the \r
1949 /// animation function is not supported or disabled. This image can \r
1950 /// be one particular image from the animation sequence (if any one \r
1951 /// of the animation frames has a complete image) or an alternate \r
1952 /// image that can be displayed alone. If the value is zero, no image \r
1953 /// is displayed.\r
1954 ///\r
1955 EFI_IMAGE_ID DftImageId;\r
1956 ///\r
1957 /// The overall width of the set of images (logical window width).\r
1958 ///\r
1959 UINT16 Width;\r
1960 ///\r
1961 /// The overall height of the set of images (logical window height).\r
1962 ///\r
1963 UINT16 Height;\r
1964 ///\r
1965 /// The number of EFI_HII_ANIMATION_CELL contained in the \r
1966 /// animation sequence.\r
1967 ///\r
1968 UINT16 CellCount;\r
1969 ///\r
1970 /// An array of CellCount animation cells.\r
1971 ///\r
1972 EFI_HII_ANIMATION_CELL AnimationCell[1];\r
1973} EFI_HII_AIBT_OVERLAY_IMAGES_BLOCK;\r
1974\r
1975///\r
1976/// An animation block to describe an animation sequence that does not cycle,\r
1977/// and where the logical window is cleared to the specified color before \r
1978/// the next image is displayed.\r
1979///\r
1980typedef struct _EFI_HII_AIBT_CLEAR_IMAGES_BLOCK {\r
1981 ///\r
1982 /// This is image that is to be reference by the image protocols, if the \r
1983 /// animation function is not supported or disabled. This image can \r
1984 /// be one particular image from the animation sequence (if any one \r
1985 /// of the animation frames has a complete image) or an alternate \r
1986 /// image that can be displayed alone. If the value is zero, no image \r
1987 /// is displayed.\r
1988 ///\r
1989 EFI_IMAGE_ID DftImageId;\r
1990 ///\r
1991 /// The overall width of the set of images (logical window width).\r
1992 ///\r
1993 UINT16 Width;\r
1994 ///\r
1995 /// The overall height of the set of images (logical window height).\r
1996 ///\r
1997 UINT16 Height;\r
1998 ///\r
1999 /// The number of EFI_HII_ANIMATION_CELL contained in the \r
2000 /// animation sequence.\r
2001 ///\r
2002 UINT16 CellCount;\r
2003 ///\r
2004 /// The color to clear the logical window to before displaying the \r
2005 /// indexed image.\r
2006 ///\r
2007 EFI_HII_RGB_PIXEL BackgndColor;\r
2008 ///\r
2009 /// An array of CellCount animation cells.\r
2010 ///\r
2011 EFI_HII_ANIMATION_CELL AnimationCell[1];\r
2012} EFI_HII_AIBT_CLEAR_IMAGES_BLOCK;\r
2013\r
2014///\r
2015/// An animation block to describe an animation sequence that does not cycle,\r
2016/// and where the screen is restored to the original state before the next \r
2017/// image is displayed.\r
2018///\r
2019typedef struct _EFI_HII_AIBT_RESTORE_SCRN_BLOCK {\r
2020 ///\r
2021 /// This is image that is to be reference by the image protocols, if the \r
2022 /// animation function is not supported or disabled. This image can \r
2023 /// be one particular image from the animation sequence (if any one \r
2024 /// of the animation frames has a complete image) or an alternate \r
2025 /// image that can be displayed alone. If the value is zero, no image \r
2026 /// is displayed.\r
2027 ///\r
2028 EFI_IMAGE_ID DftImageId;\r
2029 ///\r
2030 /// The overall width of the set of images (logical window width).\r
2031 ///\r
2032 UINT16 Width;\r
2033 ///\r
2034 /// The overall height of the set of images (logical window height).\r
2035 ///\r
2036 UINT16 Height;\r
2037 ///\r
2038 /// The number of EFI_HII_ANIMATION_CELL contained in the \r
2039 /// animation sequence.\r
2040 ///\r
2041 UINT16 CellCount;\r
2042 ///\r
2043 /// An array of CellCount animation cells.\r
2044 ///\r
2045 EFI_HII_ANIMATION_CELL AnimationCell[1];\r
2046} EFI_HII_AIBT_RESTORE_SCRN_BLOCK;\r
2047\r
2048///\r
2049/// An animation block to describe an animation sequence that continuously cycles,\r
2050/// and where one image is simply displayed over the previous image.\r
2051///\r
2052typedef EFI_HII_AIBT_OVERLAY_IMAGES_BLOCK EFI_HII_AIBT_OVERLAY_IMAGES_LOOP_BLOCK;\r
2053\r
2054///\r
2055/// An animation block to describe an animation sequence that continuously cycles,\r
2056/// and where the logical window is cleared to the specified color before \r
2057/// the next image is displayed.\r
2058///\r
2059typedef EFI_HII_AIBT_CLEAR_IMAGES_BLOCK EFI_HII_AIBT_CLEAR_IMAGES_LOOP_BLOCK;\r
2060\r
2061///\r
2062/// An animation block to describe an animation sequence that continuously cycles,\r
2063/// and where the screen is restored to the original state before \r
2064/// the next image is displayed.\r
2065///\r
2066typedef EFI_HII_AIBT_RESTORE_SCRN_BLOCK EFI_HII_AIBT_RESTORE_SCRN_LOOP_BLOCK;\r
2067\r
2068///\r
2069/// Assigns a new character value to a previously defined animation sequence.\r
2070///\r
2071typedef struct _EFI_HII_AIBT_DUPLICATE_BLOCK {\r
2072 ///\r
2073 /// The previously defined animation ID with the exact same \r
2074 /// animation information.\r
2075 ///\r
2076 EFI_ANIMATION_ID AnimationId;\r
2077} EFI_HII_AIBT_DUPLICATE_BLOCK;\r
2078\r
2079///\r
2080/// Skips animation IDs.\r
2081///\r
2082typedef struct _EFI_HII_AIBT_SKIP1_BLOCK {\r
2083 ///\r
2084 /// The unsigned 8-bit value to add to AnimationIdCurrent.\r
2085 ///\r
2086 UINT8 SkipCount;\r
2087} EFI_HII_AIBT_SKIP1_BLOCK;\r
2088\r
2089///\r
2090/// Skips animation IDs.\r
2091///\r
2092typedef struct _EFI_HII_AIBT_SKIP2_BLOCK {\r
2093 ///\r
2094 /// The unsigned 16-bit value to add to AnimationIdCurrent.\r
2095 ///\r
2096 UINT16 SkipCount;\r
2097} EFI_HII_AIBT_SKIP2_BLOCK;\r
2098\r
959ccb23 2099#pragma pack()\r
2100\r
2101\r
2102\r
8b13229b 2103///\r
2104/// References to string tokens must use this macro to enable scanning for\r
2105/// token usages.\r
2106///\r
2107///\r
2108/// STRING_TOKEN is not defined in UEFI specification. But it is placed \r
2109/// here for the easy access by C files and VFR source files.\r
2110///\r
e52c5a9f 2111#define STRING_TOKEN(t) t\r
2112\r
959ccb23 2113#endif\r