]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/DriverSampleDxe/Vfr.vfr
1. Support inconsistent if opcode used in string/password opcode.
[mirror_edk2.git] / MdeModulePkg / Universal / DriverSampleDxe / Vfr.vfr
1 ///** @file
2 //
3 // Sample Setup formset.
4 //
5 // Copyright (c) 2004 - 2010, Intel Corporation. All rights reserved.<BR>
6 // This program and the accompanying materials
7 // are licensed and made available under the terms and conditions of the BSD License
8 // which accompanies this distribution. The full text of the license may be found at
9 // http://opensource.org/licenses/bsd-license.php
10 //
11 // THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13 //
14 //**/
15
16
17 #include "NVDataStruc.h"
18
19 //
20 // Formset class used by Device Manager
21 //
22 #define EFI_NON_DEVICE_CLASS 0x00
23 #define EFI_DISK_DEVICE_CLASS 0x01
24 #define EFI_VIDEO_DEVICE_CLASS 0x02
25 #define EFI_NETWORK_DEVICE_CLASS 0x04
26 #define EFI_INPUT_DEVICE_CLASS 0x08
27 #define EFI_ON_BOARD_DEVICE_CLASS 0x10
28 #define EFI_OTHER_DEVICE_CLASS 0x20
29
30 //
31 // Formset subclass
32 //
33 #define EFI_SETUP_APPLICATION_SUBCLASS 0x00
34 #define EFI_GENERAL_APPLICATION_SUBCLASS 0x01
35 #define EFI_FRONT_PAGE_SUBCLASS 0x02
36 #define EFI_SINGLE_USE_SUBCLASS 0x03
37
38 //
39 // EFI Variable attributes
40 //
41 #define EFI_VARIABLE_NON_VOLATILE 0x00000001
42 #define EFI_VARIABLE_BOOTSERVICE_ACCESS 0x00000002
43 #define EFI_VARIABLE_RUNTIME_ACCESS 0x00000004
44 #define EFI_VARIABLE_READ_ONLY 0x00000008
45
46 //
47 // Labels definition
48 //
49 #define LABEL_1_VALUE 0x01
50 #define LABEL_2_VALUE 0x1000
51 #define LABEL_UPDATE_BBS 0x2222
52
53 formset
54 guid = FORMSET_GUID,
55 title = STRING_TOKEN(STR_FORM_SET_TITLE),
56 help = STRING_TOKEN(STR_FORM_SET_TITLE_HELP),
57 classguid = EFI_HII_PLATFORM_SETUP_FORMSET_GUID,
58
59 //
60 // Notes: VfrCompiler will insert a Standard Default Storage declaration
61 // after the formset declaration. >00000040: 5C 06 00 00 00 00.
62 // So we don't need to declare the Standard Default.
63 // Please check the vfr.lst file for details.
64 // To enable list file for VFR, add "-l" to VfrCompile <Command> in [Build.Visual-Form-Representation-File] as follows:
65 // VfrCompile -l --no-pre-processing --output-directory ${d_path} $(OUTPUT_DIR)(+)${s_dir}(+)${s_base}.iii
66 //
67
68 //
69 // Define a Buffer Storage (EFI_IFR_VARSTORE)
70 //
71 varstore DRIVER_SAMPLE_CONFIGURATION, // This is the data structure type
72 varid = CONFIGURATION_VARSTORE_ID, // Optional VarStore ID
73 name = MyIfrNVData, // Define referenced name in vfr
74 guid = FORMSET_GUID; // GUID of this buffer storage
75
76 //
77 // Define another Buffer Storage
78 //
79 varstore MY_DATA2,
80 name = MyIfrNVData2,
81 guid = FORMSET_GUID;
82
83 //
84 // Define a EFI variable Storage (EFI_IFR_VARSTORE_EFI)
85 //
86 efivarstore MyEfiVar, // Define referenced name in vfr
87 attribute = EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_NON_VOLATILE, // EFI variable attribures
88 name = STRING_TOKEN(STR_VAR_NAME), // EFI variable name
89 varsize = 1, // Size of the EFI variable
90 guid = FORMSET_GUID; // EFI variable GUID
91
92 //
93 // Define a Name/Value Storage (EFI_IFR_VARSTORE_NAME_VALUE)
94 //
95 namevaluevarstore MyNameValueVar, // Define storage reference name in vfr
96 name = STRING_TOKEN(STR_NAME_VALUE_VAR_NAME0), // Define Name list of this storage, refer it by MyNameValueVar[0]
97 name = STRING_TOKEN(STR_NAME_VALUE_VAR_NAME1), // Define Name list of this storage, refer it by MyNameValueVar[1]
98 name = STRING_TOKEN(STR_NAME_VALUE_VAR_NAME2), // Define Name list of this storage, refer it by MyNameValueVar[2]
99 guid = FORMSET_GUID; // GUID of this Name/Value storage
100
101 defaultstore MyStandardDefault,
102 prompt = STRING_TOKEN(STR_STANDARD_DEFAULT_PROMPT),
103 attribute = 0x0000; // Default ID: 0000 standard default
104
105 defaultstore MyManufactureDefault,
106 prompt = STRING_TOKEN(STR_MANUFACTURE_DEFAULT_PROMPT),
107 attribute = 0x0001; // Default ID: 0001 manufacture default
108
109 //
110 // Define a Form (EFI_IFR_FORM)
111 //
112 form formid = 1, // Form ID
113 title = STRING_TOKEN(STR_FORM1_TITLE); // Form title
114
115 subtitle text = STRING_TOKEN(STR_SUBTITLE_TEXT);
116
117 subtitle text = STRING_TOKEN(STR_SUBTITLE_TEXT2);
118
119 //
120 // Define a display only text (EFI_IFR_TEXT)
121 //
122 text
123 help = STRING_TOKEN(STR_TEXT_HELP), // Help string
124 text = STRING_TOKEN(STR_CPU_STRING), // Prompt string
125 text = STRING_TOKEN(STR_CPU_STRING2); // TextTwo
126
127 //
128 // Define action button (EFI_IFR_ACTION)
129 //
130 text
131 help = STRING_TOKEN(STR_EXIT_TEXT),
132 text = STRING_TOKEN(STR_EXIT_TEXT),
133 text = STRING_TOKEN(STR_EXIT_TEXT),
134 flags = INTERACTIVE, // VfrCompiler will generate opcode EFI_IFR_ACTION for Text marked as INTERACTIVE
135 key = 0x1237;
136
137 text
138 help = STRING_TOKEN(STR_SAVE_TEXT),
139 text = STRING_TOKEN(STR_SAVE_TEXT),
140 text = STRING_TOKEN(STR_SAVE_TEXT),
141 flags = INTERACTIVE,
142 key = 0x1238;
143
144 //
145 // Define oneof (EFI_IFR_ONE_OF)
146 //
147 oneof name = MyOneOf, // Define reference name for Question
148 varid = MyIfrNVData.SuppressGrayOutSomething, // Use "DataStructure.Member" to reference Buffer Storage
149 prompt = STRING_TOKEN(STR_ONE_OF_PROMPT),
150 help = STRING_TOKEN(STR_ONE_OF_HELP),
151 //
152 // Define an option (EFI_IFR_ONE_OF_OPTION)
153 //
154 option text = STRING_TOKEN(STR_ONE_OF_TEXT4), value = 0x0, flags = 0;
155 option text = STRING_TOKEN(STR_ONE_OF_TEXT5), value = 0x1, flags = 0;
156 //
157 // DEFAULT indicate this option will be marked with EFI_IFR_OPTION_DEFAULT
158 //
159 option text = STRING_TOKEN(STR_ONE_OF_TEXT6), value = 0x2, flags = DEFAULT;
160 endoneof;
161
162 oneof varid = MyIfrNVData.BootOrderLarge,
163 prompt = STRING_TOKEN(STR_ONE_OF_PROMPT),
164 help = STRING_TOKEN(STR_ONE_OF_HELP),
165 default value = cond (pushthis == 0 ? 0 : cond ((questionref(MyOneOf) >> 0x4 & 0xF00) == 0x0 + 0x2 ? 0 : 1)),
166 option text = STRING_TOKEN(STR_BOOT_ORDER1), value = 0x0, flags = 0;
167 option text = STRING_TOKEN(STR_BOOT_ORDER2), value = 0x1, flags = 0;
168 endoneof;
169
170 grayoutif ideqval MyIfrNVData.SuppressGrayOutSomething == 0x1;
171 suppressif questionref(MyOneOf) == 0x0;
172
173 checkbox varid = MyIfrNVData.ChooseToActivateNuclearWeaponry,
174 prompt = STRING_TOKEN(STR_CHECK_BOX_PROMPT),
175 help = STRING_TOKEN(STR_CHECK_BOX_HELP),
176 //
177 // CHECKBOX_DEFAULT indicate this checkbox is marked with EFI_IFR_CHECKBOX_DEFAULT
178 // CHECKBOX_DEFAULT_MFG indicate EFI_IFR_CHECKBOX_DEFAULT_MFG.
179 //
180 flags = CHECKBOX_DEFAULT | CHECKBOX_DEFAULT_MFG,
181 key = 0,
182 default = 1,
183 endcheckbox;
184 endif;
185 endif;
186
187 //
188 // Ordered list:
189 // sizeof(MyIfrNVData) storage must be UINT8 array, and
190 // size written for the variable must be size of the entire
191 // variable.
192 //
193 //
194 suppressif ideqval MyIfrNVData.SuppressGrayOutSomething == 0x0;
195
196 //
197 // label is defined as an anchor where you want to insert some dynamic
198 // opcodes created on-the-fly
199 //
200 label LABEL_UPDATE_BBS;
201
202 orderedlist
203 varid = MyIfrNVData.BootOrder,
204 prompt = STRING_TOKEN(STR_BOOT_OPTIONS),
205 help = STRING_TOKEN(STR_NULL_STRING),
206 option text = STRING_TOKEN(STR_BOOT_OPTION2), value = 2, flags = RESET_REQUIRED;
207 option text = STRING_TOKEN(STR_BOOT_OPTION1), value = 1, flags = RESET_REQUIRED;
208 option text = STRING_TOKEN(STR_BOOT_OPTION3), value = 3, flags = RESET_REQUIRED;
209 suppressif ideqval MyIfrNVData.BootOrderLarge == 0;
210 option text = STRING_TOKEN(STR_BOOT_OPTION4), value = 4, flags = RESET_REQUIRED;
211 endif
212 endlist;
213
214 //
215 // label should be paired with each other
216 //
217 label LABEL_END;
218
219 endif; // end suppressif
220
221 disableif ideqval MyIfrNVData.SuppressGrayOutSomething == 0x2;
222 orderedlist
223 varid = MyIfrNVData.OrderedList,
224 prompt = STRING_TOKEN(STR_TEST_OPCODE),
225 help = STRING_TOKEN(STR_TEXT_HELP),
226 option text = STRING_TOKEN(STR_ONE_OF_TEXT1), value = 3, flags = RESET_REQUIRED;
227 option text = STRING_TOKEN(STR_ONE_OF_TEXT2), value = 2, flags = RESET_REQUIRED;
228 option text = STRING_TOKEN(STR_ONE_OF_TEXT3), value = 1, flags = RESET_REQUIRED;
229 endlist;
230 endif;
231
232 label 100;
233
234 //
235 // Define a hyperlink (EFI_IFR_REF)
236 //
237 goto 0x1234, // Destination Form ID
238 prompt = STRING_TOKEN(STR_GOTO_DYNAMIC), // Prompt string
239 help = STRING_TOKEN(STR_GOTO_HELP), // Help string
240 flags = INTERACTIVE, // INTERACTIVE indicate it's marked with EFI_IFR_FLAG_CALLBACK
241 key = 0x1234; // Question ID which will be passed-in in COnfigAccess.Callback()
242
243 goto 0x1234,
244 prompt = STRING_TOKEN(STR_GOTO_DYNAMIC2),
245 help = STRING_TOKEN(STR_GOTO_HELP),
246 flags = INTERACTIVE,
247 key = 0x1235;
248
249 oneof varid = MyIfrNVData.TestLateCheck,
250 prompt = STRING_TOKEN(STR_TEST_OPCODE),
251 help = STRING_TOKEN(STR_ONE_OF_HELP),
252 option text = STRING_TOKEN(STR_ONE_OF_TEXT1), value = 0, flags = RESET_REQUIRED;
253 option text = STRING_TOKEN(STR_ONE_OF_TEXT2), value = 1, flags = DEFAULT | RESET_REQUIRED;
254
255 endoneof;
256
257 oneof varid = MyIfrNVData.TestLateCheck2,
258 prompt = STRING_TOKEN(STR_TEST_OPCODE2),
259 help = STRING_TOKEN(STR_ONE_OF_HELP),
260 option text = STRING_TOKEN(STR_ONE_OF_TEXT1), value = 0, flags = DEFAULT | RESET_REQUIRED;
261 option text = STRING_TOKEN(STR_ONE_OF_TEXT2), value = 1, flags = RESET_REQUIRED;
262
263 inconsistentif prompt = STRING_TOKEN(STR_ERROR_POPUP),
264 ideqid MyIfrNVData.TestLateCheck == MyIfrNVData.TestLateCheck2
265 endif
266
267 endoneof;
268
269 oneof varid = MyIfrNVData.QuestionAboutTreeHugging,
270 prompt = STRING_TOKEN(STR_ONE_OF_PROMPT),
271 help = STRING_TOKEN(STR_ONE_OF_HELP),
272 option text = STRING_TOKEN(STR_ONE_OF_TEXT1), value = 0, flags = RESET_REQUIRED;
273 option text = STRING_TOKEN(STR_ONE_OF_TEXT2), value = 1, flags = DEFAULT | RESET_REQUIRED;
274 option text = STRING_TOKEN(STR_ONE_OF_TEXT3), value = 0x03, flags = RESET_REQUIRED;
275
276 endoneof;
277
278 //
279 // Define a string (EFI_IFR_STRING)
280 //
281 string varid = MyIfrNVData.MyStringData,
282 prompt = STRING_TOKEN(STR_MY_STRING_PROMPT2),
283 help = STRING_TOKEN(STR_MY_STRING_HELP2),
284 flags = INTERACTIVE,
285 key = 0x1236,
286 minsize = 6,
287 maxsize = 40,
288 inconsistentif prompt = STRING_TOKEN(STR_STRING_CHECK_ERROR_POPUP),
289 pushthis != stringref(STRING_TOKEN(STR_STRING_CHECK))
290 endif
291 endstring;
292
293 //
294 // Define a numeric (EFI_IFR_NUMERIC)
295 //
296 numeric varid = MyIfrNVData.HowOldAreYouInYearsManual,
297 prompt = STRING_TOKEN(STR_NUMERIC_READONLY_PROMPT),
298 help = STRING_TOKEN(STR_NUMERIC_HELP0),
299 flags = READ_ONLY, // READ_ONLY indicate it's marked with EFI_IFR_FLAG_READ_ONLY
300 minimum = 0,
301 maximum = 0xf0,
302 step = 0, // Stepping of 0 equates to a manual entering
303 // of a value, otherwise it will be adjusted by "+"/"-"
304 default = 21, // defaultstore could be used to specify the default type
305 // If no defaultstore is specified, it implies Standard Default
306
307 endnumeric;
308
309 numeric varid = MyIfrNVData.HowOldAreYouInYearsManual,
310 prompt = STRING_TOKEN(STR_NUMERIC_MANUAL_PROMPT),
311 help = STRING_TOKEN(STR_NUMERIC_HELP0),
312 minimum = 0,
313 maximum = 0xf0,
314 step = 0,
315 default = 21,
316
317 inconsistentif prompt = STRING_TOKEN(STR_ERROR_POPUP),
318 ideqval MyIfrNVData.HowOldAreYouInYearsManual == 99
319 OR
320 ideqid MyIfrNVData.HowOldAreYouInYearsManual == MyEfiVar
321 OR
322 ideqvallist MyIfrNVData.HowOldAreYouInYearsManual == 1 3 5 7
323 endif
324
325 endnumeric;
326
327 numeric varid = MyEfiVar, // Reference of EFI variable storage
328 questionid = 0x1111,
329 prompt = STRING_TOKEN(STR_TALL_HEX_PROMPT),
330 help = STRING_TOKEN(STR_NUMERIC_HELP1),
331 flags = DISPLAY_UINT_HEX | INTERACTIVE, // Display in HEX format (if not specified, default is in decimal format)
332 minimum = 0,
333 maximum = 250,
334 default = 175,
335
336 endnumeric;
337
338 //
339 // Define numeric using Name/Value Storage
340 //
341 numeric varid = MyNameValueVar[0], // This numeric take NameValueVar0 as storage
342 prompt = STRING_TOKEN(STR_NAME_VALUE_VAR_NAME0),
343 help = STRING_TOKEN(STR_NAME_VALUE_VAR_NAME0_HELP),
344 //
345 // Size should be defined for numeric when use Name/Value storage
346 // Valid value for numerice size are: NUMERIC_SIZE_1, NUMERIC_SIZE_2, NUMERIC_SIZE_4 and NUMERIC_SIZE_8
347 //
348 flags = NUMERIC_SIZE_1, // Size of this numeric is 1 byte
349 minimum = 0,
350 maximum = 0xff,
351 step = 0,
352 endnumeric;
353
354 numeric varid = MyNameValueVar[1], // This numeric take NameValueVar1 as storage
355 prompt = STRING_TOKEN(STR_NAME_VALUE_VAR_NAME1),
356 help = STRING_TOKEN(STR_NAME_VALUE_VAR_NAME1_HELP),
357 flags = NUMERIC_SIZE_2, // Size of this numeric is 2 bytes
358 minimum = 0,
359 maximum = 0xffff,
360 step = 0,
361 endnumeric;
362
363 //
364 // Define string using Name/Value Storage
365 //
366 string varid = MyNameValueVar[2], // This string take NameValueVar2 as storage
367 prompt = STRING_TOKEN(STR_NAME_VALUE_VAR_NAME2),
368 help = STRING_TOKEN(STR_NAME_VALUE_VAR_NAME2_HELP),
369 minsize = 2,
370 maxsize = 0x14,
371 endstring;
372
373 label LABEL_1_VALUE;
374 label LABEL_2_VALUE;
375
376 grayoutif ideqval MyIfrNVData.HowOldAreYouInYearsManual == 23 AND ideqval MyIfrNVData.SuppressGrayOutSomething == 0x1;
377 numeric varid = MyIfrNVData.HowOldAreYouInYears,
378 prompt = STRING_TOKEN(STR_NUMERIC_STEP_PROMPT),
379 help = STRING_TOKEN(STR_NUMERIC_HELP2),
380 minimum = 0,
381 maximum = 243,
382 step = 1,
383 default = 18, defaultstore = MyStandardDefault, // This is standard default value
384 default = 19, defaultstore = MyManufactureDefault, // This is manufacture default value
385
386 endnumeric;
387 endif;
388
389 resetbutton
390 defaultstore = MyStandardDefault,
391 prompt = STRING_TOKEN(STR_STANDARD_DEFAULT_PROMPT),
392 help = STRING_TOKEN(STR_STANDARD_DEFAULT_HELP),
393 endresetbutton;
394
395 resetbutton
396 defaultstore = MyManufactureDefault,
397 prompt = STRING_TOKEN(STR_MANUFACTURE_DEFAULT_PROMPT),
398 help = STRING_TOKEN(STR_MANUFACTURE_DEFAULT_HELP),
399 endresetbutton;
400
401 //
402 // Non-interactive password, validate by Setup Browser
403 //
404 password varid = MyIfrNVData.WhatIsThePassword,
405 prompt = STRING_TOKEN(STR_PASSWORD_PROMPT),
406 help = STRING_TOKEN(STR_PASSWORD_HELP),
407 minsize = 6,
408 maxsize = 20,
409 endpassword;
410
411 string varid = MyIfrNVData.PasswordClearText,
412 prompt = STRING_TOKEN(STR_MY_STRING_PROMPT),
413 help = STRING_TOKEN(STR_MY_STRING_HELP),
414 minsize = 6,
415 maxsize = 0x14,
416 endstring;
417
418 //
419 // Interactive password, validate via ConfigAccess.Callback()
420 //
421 password varid = MyIfrNVData.WhatIsThePassword2,
422 prompt = STRING_TOKEN(STR_PASSWORD_CALLBACK_PROMPT),
423 help = STRING_TOKEN(STR_PASSWORD_HELP),
424 flags = INTERACTIVE,
425 key = 0x2000,
426 minsize = 6,
427 maxsize = 20,
428 endpassword;
429
430 //
431 // Sample use case for IFR Security op-code
432 //
433 grayoutif NOT security (EFI_USER_INFO_ACCESS_SETUP_ADMIN_GUID);
434 text
435 help = STRING_TOKEN(STR_TEXT_SECRUITY_TEST_HELP),
436 text = STRING_TOKEN(STR_TEXT_SECRUITY_TEST_TEXT);
437 endif;
438
439 goto 2,
440 prompt = STRING_TOKEN(STR_GOTO_FORM2), //SecondSetupPage // this too has no end-op and basically it's a jump to a form ONLY
441 help = STRING_TOKEN(STR_GOTO_HELP);
442
443 goto 3,
444 prompt = STRING_TOKEN(STR_GOTO_FORM3), //ThirdSetupPage // this too has no end-op and basically it's a jump to a form ONLY
445 help = STRING_TOKEN(STR_GOTO_HELP);
446
447 goto 4,
448 prompt = STRING_TOKEN(STR_GOTO_FORM4), //FourthSetupPage // this too has no end-op and basically it's a jump to a form ONLY
449 help = STRING_TOKEN(STR_GOTO_HELP);
450
451 endform;
452
453 suppressif ideqval MyIfrNVData.BootOrderLarge == 0;
454 form formid = 2, // SecondSetupPage,
455 title = STRING_TOKEN(STR_FORM2_TITLE); // note formid is a variable (for readability) (UINT16) - also added Form to the line to signify the Op-Code
456
457
458 date year varid = Date.Year, // Note that it is a member of NULL, so the RTC will be the system resource to retrieve and save from
459 prompt = STRING_TOKEN(STR_DATE_PROMPT),
460 help = STRING_TOKEN(STR_DATE_HELP),
461 minimum = 1998,
462 maximum = 2099,
463 step = 1,
464 default = 2004,
465
466 month varid = Date.Month, // Note that it is a member of NULL, so the RTC will be the system resource to retrieve and save from
467 prompt = STRING_TOKEN(STR_DATE_PROMPT),
468 help = STRING_TOKEN(STR_DATE_HELP),
469 minimum = 1,
470 maximum = 12,
471 step = 1,
472 default = 1,
473
474 day varid = Date.Day, // Note that it is a member of NULL, so the RTC will be the system resource to retrieve and save from
475 prompt = STRING_TOKEN(STR_DATE_PROMPT),
476 help = STRING_TOKEN(STR_DATE_HELP),
477 minimum = 1,
478 maximum = 31,
479 step = 0x1,
480 default = 1,
481
482 inconsistentif prompt = STRING_TOKEN(STR_ERROR_POPUP),
483 ideqval Date.Day == 31
484 AND
485 ideqvallist Date.Month == 2 4 6 9 11
486 endif
487
488 //
489 // If the day is 30 AND month is 2
490 //
491 inconsistentif prompt = STRING_TOKEN(STR_ERROR_POPUP),
492 ideqval Date.Day == 30
493 AND
494 ideqval Date.Month == 2
495 endif
496
497 //
498 // If the day is 29 AND month is 2 AND it year is NOT a leapyear
499 //
500 inconsistentif prompt = STRING_TOKEN(STR_ERROR_POPUP),
501 ideqval Date.Day == 0x1D
502 AND
503 ideqval Date.Month == 2
504 AND
505 NOT
506 ideqvallist Date.Year == 2004 2008 20012 20016 2020 2024 2028 2032 2036
507 endif
508
509 enddate;
510
511 time hour varid = Time.Hours, // Note that it is a member of NULL, so the RTC will be the system resource to retrieve and save from
512 prompt = STRING_TOKEN(STR_TIME_PROMPT),
513 help = STRING_TOKEN(STR_TIME_HELP),
514 minimum = 0,
515 maximum = 23,
516 step = 1,
517 default = 0,
518
519 minute varid = Time.Minutes, // Note that it is a member of NULL, so the RTC will be the system resource to retrieve and save from
520 prompt = STRING_TOKEN(STR_TIME_PROMPT),
521 help = STRING_TOKEN(STR_TIME_HELP),
522 minimum = 0,
523 maximum = 59,
524 step = 1,
525 default = 0,
526
527 second varid = Time.Seconds, // Note that it is a member of NULL, so the RTC will be the system resource to retrieve and save from
528 prompt = STRING_TOKEN(STR_TIME_PROMPT),
529 help = STRING_TOKEN(STR_TIME_HELP),
530 minimum = 0,
531 maximum = 59,
532 step = 1,
533 default = 0,
534
535 endtime;
536
537 checkbox varid = MyIfrNVData.ChooseToActivateNuclearWeaponry,
538 prompt = STRING_TOKEN(STR_CHECK_BOX_PROMPT),
539 help = STRING_TOKEN(STR_CHECK_BOX_HELP),
540 flags = CHECKBOX_DEFAULT,
541 key = 0,
542 endcheckbox;
543
544 text
545 help = STRING_TOKEN(STR_TEXT_HELP),
546 text = STRING_TOKEN(STR_TEXT_TEXT_1);
547
548 text
549 help = STRING_TOKEN(STR_TEXT_HELP),
550 text = STRING_TOKEN(STR_TEXT_TEXT_1),
551 text = STRING_TOKEN(STR_TEXT_TEXT_2);
552
553 goto 1,
554 prompt = STRING_TOKEN(STR_GOTO_FORM1), //MainSetupPage // this too has no end-op and basically it's a jump to a form ONLY
555 help = STRING_TOKEN(STR_GOTO_HELP);
556
557 endform;
558 endif;
559
560 form formid = 3, title = STRING_TOKEN(STR_FORM3_TITLE); // note formid is a variable (for readability) (UINT16) - also added Form to the line to signify the Op-Code
561
562 suppressif ideqval MyEfiVar == 111;
563 text
564 help = STRING_TOKEN(STR_TEXT_HELP),
565 text = STRING_TOKEN(STR_TEXT_TEXT_1);
566 endif;
567
568 goto 1,
569 prompt = STRING_TOKEN(STR_GOTO_FORM1), //MainSetupPage
570 help = STRING_TOKEN(STR_GOTO_HELP);
571
572 numeric varid = MyIfrNVData.DynamicRefresh,
573 prompt = STRING_TOKEN(STR_NUMERIC_MANUAL_PROMPT),
574 help = STRING_TOKEN(STR_NUMERIC_HELP0),
575 flags = INTERACTIVE,
576 key = 0x5678,
577 minimum = 0,
578 maximum = 0xff,
579 step = 0,
580 default = 0,
581 refresh interval = 3 // Refresh interval in seconds
582 endnumeric;
583
584 label LABEL_UPDATE2;
585 label LABEL_END;
586
587 endform;
588
589 formmap formid = 4,
590 maptitle = STRING_TOKEN(STR_SAMPL_MAP_METHOD);
591 mapguid = FORMSET_GUID;
592 maptitle = STRING_TOKEN(STR_STANDARD_MAP_METHOD);
593 mapguid = EFI_HII_STANDARD_FORM_GUID;
594
595 oneof varid = MyIfrNVData.SerialPortNo,
596 prompt = STRING_TOKEN(STR_SERIAL_PORT),
597 help = STRING_TOKEN(STR_ONE_OF_HELP),
598
599 read cond (get(MyIfrNVData.SerialPortStatus) != 0 ? 0 : cond ((get(MyIfrNVData.SerialPortIo) & 0xF00) >> 0x8 == get(MyIfrNVData.SerialPortIrq) - 1 ? UNDEFINED : map (get(MyIfrNVData.SerialPortIo) : 0x3f8,1; 0x2F8,2; 0x3E8,3; 0x2E8,4;)));
600 write set(MyIfrNVData.SerialPortStatus, pushthis != 0) AND set(MyIfrNVData.SerialPortIo, map (pushthis : 1,0x3F8; 2,0x2F8; 3,0x3E8; 4,0x2E8;)) AND set (MyIfrNVData.SerialPortIrq, map (pushthis: 1,4; 2,3; 3,4; 4,3;));
601
602 option text = STRING_TOKEN(STR_SERIAL_PORT_DISABLE), value = 0x0, flags = DEFAULT;
603 option text = STRING_TOKEN(STR_SERIAL_PORT1), value = 0x1, flags = 0;
604 option text = STRING_TOKEN(STR_SERIAL_PORT2), value = 0x2, flags = 0;
605 option text = STRING_TOKEN(STR_SERIAL_PORT3), value = 0x3, flags = 0;
606 option text = STRING_TOKEN(STR_SERIAL_PORT4), value = 0x4, flags = 0;
607 endoneof;
608
609 grayoutif TRUE;
610 checkbox varid = MyIfrNVData.SerialPortStatus,
611 prompt = STRING_TOKEN(STR_SERIAL_PORT_STATUS),
612 help = STRING_TOKEN(STR_CHECK_BOX_HELP),
613 endcheckbox;
614 endif;
615
616 grayoutif TRUE;
617 suppressif ideqval MyIfrNVData.SerialPortStatus == 0;
618 oneof varid = MyIfrNVData.SerialPortIo,
619 prompt = STRING_TOKEN(STR_SERIAL_PORT_IO_ADDRESS),
620 help = STRING_TOKEN(STR_ONE_OF_HELP),
621
622 option text = STRING_TOKEN(STR_SERIAL_PORT1_IOADDR), value = 0x3F8, flags = DEFAULT;
623 option text = STRING_TOKEN(STR_SERIAL_PORT2_IOADDR), value = 0x2F8, flags = 0;
624 option text = STRING_TOKEN(STR_SERIAL_PORT3_IOADDR), value = 0x3E8, flags = 0;
625 option text = STRING_TOKEN(STR_SERIAL_PORT4_IOADDR), value = 0x2E8, flags = 0;
626 endoneof;
627 endif;
628 endif;
629
630 grayoutif TRUE;
631 suppressif ideqval MyIfrNVData.SerialPortStatus == 0;
632 oneof varid = MyIfrNVData.SerialPortIrq,
633 prompt = STRING_TOKEN(STR_SERIAL_PORT_IRQ),
634 help = STRING_TOKEN(STR_ONE_OF_HELP),
635
636 option text = STRING_TOKEN(STR_SERIAL_PORT13_IRQ), value = 0x4, flags = DEFAULT;
637 option text = STRING_TOKEN(STR_SERIAL_PORT24_IRQ), value = 0x3, flags = 0;
638 endoneof;
639 endif;
640 endif;
641
642 goto 1,
643 prompt = STRING_TOKEN(STR_GOTO_FORM1), //MainSetupPage
644 help = STRING_TOKEN(STR_GOTO_HELP);
645
646 endform;
647
648 form formid = 0x1234, // Dynamically created page,
649 title = STRING_TOKEN(STR_DYNAMIC_TITLE); // note formid is a variable (for readability) (UINT16) - also added Form to the line to signify the Op-Code
650
651 label LABEL_UPDATE1;
652 //
653 // This is where we will insert dynamic created opcodes
654 //
655 label LABEL_END;
656
657 endform;
658
659 endformset;