]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/DriverSampleDxe/Vfr.vfr
Add FormMap form example.
[mirror_edk2.git] / MdeModulePkg / Universal / DriverSampleDxe / Vfr.vfr
1 ///** @file
2 //
3 // Sample Setup formset.
4 //
5 // Copyright (c) 2004 - 2010, Intel Corporation. <BR>
6 // All rights reserved. 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 endstring;
289
290 //
291 // Define a numeric (EFI_IFR_NUMERIC)
292 //
293 numeric varid = MyIfrNVData.HowOldAreYouInYearsManual,
294 prompt = STRING_TOKEN(STR_NUMERIC_READONLY_PROMPT),
295 help = STRING_TOKEN(STR_NUMERIC_HELP0),
296 flags = READ_ONLY, // READ_ONLY indicate it's marked with EFI_IFR_FLAG_READ_ONLY
297 minimum = 0,
298 maximum = 0xf0,
299 step = 0, // Stepping of 0 equates to a manual entering
300 // of a value, otherwise it will be adjusted by "+"/"-"
301 default = 21, // defaultstore could be used to specify the default type
302 // If no defaultstore is specified, it implies Standard Default
303
304 endnumeric;
305
306 numeric varid = MyIfrNVData.HowOldAreYouInYearsManual,
307 prompt = STRING_TOKEN(STR_NUMERIC_MANUAL_PROMPT),
308 help = STRING_TOKEN(STR_NUMERIC_HELP0),
309 minimum = 0,
310 maximum = 0xf0,
311 step = 0,
312 default = 21,
313
314 inconsistentif prompt = STRING_TOKEN(STR_ERROR_POPUP),
315 ideqval MyIfrNVData.HowOldAreYouInYearsManual == 99
316 OR
317 ideqid MyIfrNVData.HowOldAreYouInYearsManual == MyEfiVar
318 OR
319 ideqvallist MyIfrNVData.HowOldAreYouInYearsManual == 1 3 5 7
320 endif
321
322 endnumeric;
323
324 numeric varid = MyEfiVar, // Reference of EFI variable storage
325 questionid = 0x1111,
326 prompt = STRING_TOKEN(STR_TALL_HEX_PROMPT),
327 help = STRING_TOKEN(STR_NUMERIC_HELP1),
328 flags = DISPLAY_UINT_HEX | INTERACTIVE, // Display in HEX format (if not specified, default is in decimal format)
329 minimum = 0,
330 maximum = 250,
331 default = 175,
332
333 endnumeric;
334
335 //
336 // Define numeric using Name/Value Storage
337 //
338 numeric varid = MyNameValueVar[0], // This numeric take NameValueVar0 as storage
339 prompt = STRING_TOKEN(STR_NAME_VALUE_VAR_NAME0),
340 help = STRING_TOKEN(STR_NAME_VALUE_VAR_NAME0_HELP),
341 //
342 // Size should be defined for numeric when use Name/Value storage
343 // Valid value for numerice size are: NUMERIC_SIZE_1, NUMERIC_SIZE_2, NUMERIC_SIZE_4 and NUMERIC_SIZE_8
344 //
345 flags = NUMERIC_SIZE_1, // Size of this numeric is 1 byte
346 minimum = 0,
347 maximum = 0xff,
348 step = 0,
349 endnumeric;
350
351 numeric varid = MyNameValueVar[1], // This numeric take NameValueVar1 as storage
352 prompt = STRING_TOKEN(STR_NAME_VALUE_VAR_NAME1),
353 help = STRING_TOKEN(STR_NAME_VALUE_VAR_NAME1_HELP),
354 flags = NUMERIC_SIZE_2, // Size of this numeric is 2 bytes
355 minimum = 0,
356 maximum = 0xffff,
357 step = 0,
358 endnumeric;
359
360 //
361 // Define string using Name/Value Storage
362 //
363 string varid = MyNameValueVar[2], // This string take NameValueVar2 as storage
364 prompt = STRING_TOKEN(STR_NAME_VALUE_VAR_NAME2),
365 help = STRING_TOKEN(STR_NAME_VALUE_VAR_NAME2_HELP),
366 minsize = 2,
367 maxsize = 0x14,
368 endstring;
369
370 label LABEL_1_VALUE;
371 label LABEL_2_VALUE;
372
373 grayoutif ideqval MyIfrNVData.HowOldAreYouInYearsManual == 23 AND ideqval MyIfrNVData.SuppressGrayOutSomething == 0x1;
374 numeric varid = MyIfrNVData.HowOldAreYouInYears,
375 prompt = STRING_TOKEN(STR_NUMERIC_STEP_PROMPT),
376 help = STRING_TOKEN(STR_NUMERIC_HELP2),
377 minimum = 0,
378 maximum = 243,
379 step = 1,
380 default = 18, defaultstore = MyStandardDefault, // This is standard default value
381 default = 19, defaultstore = MyManufactureDefault, // This is manufacture default value
382
383 endnumeric;
384 endif;
385
386 resetbutton
387 defaultstore = MyStandardDefault,
388 prompt = STRING_TOKEN(STR_STANDARD_DEFAULT_PROMPT),
389 help = STRING_TOKEN(STR_STANDARD_DEFAULT_HELP),
390 endresetbutton;
391
392 resetbutton
393 defaultstore = MyManufactureDefault,
394 prompt = STRING_TOKEN(STR_MANUFACTURE_DEFAULT_PROMPT),
395 help = STRING_TOKEN(STR_MANUFACTURE_DEFAULT_HELP),
396 endresetbutton;
397
398 //
399 // Non-interactive password, validate by Setup Browser
400 //
401 password varid = MyIfrNVData.WhatIsThePassword,
402 prompt = STRING_TOKEN(STR_PASSWORD_PROMPT),
403 help = STRING_TOKEN(STR_PASSWORD_HELP),
404 minsize = 6,
405 maxsize = 20,
406 endpassword;
407
408 string varid = MyIfrNVData.PasswordClearText,
409 prompt = STRING_TOKEN(STR_MY_STRING_PROMPT),
410 help = STRING_TOKEN(STR_MY_STRING_HELP),
411 minsize = 6,
412 maxsize = 0x14,
413 endstring;
414
415 //
416 // Interactive password, validate via ConfigAccess.Callback()
417 //
418 password varid = MyIfrNVData.WhatIsThePassword2,
419 prompt = STRING_TOKEN(STR_PASSWORD_CALLBACK_PROMPT),
420 help = STRING_TOKEN(STR_PASSWORD_HELP),
421 flags = INTERACTIVE,
422 key = 0x2000,
423 minsize = 6,
424 maxsize = 20,
425 endpassword;
426
427 goto 2,
428 prompt = STRING_TOKEN(STR_GOTO_FORM2), //SecondSetupPage // this too has no end-op and basically it's a jump to a form ONLY
429 help = STRING_TOKEN(STR_GOTO_HELP);
430
431 goto 3,
432 prompt = STRING_TOKEN(STR_GOTO_FORM3), //ThirdSetupPage // this too has no end-op and basically it's a jump to a form ONLY
433 help = STRING_TOKEN(STR_GOTO_HELP);
434
435 goto 4,
436 prompt = STRING_TOKEN(STR_GOTO_FORM4), //FourthSetupPage // this too has no end-op and basically it's a jump to a form ONLY
437 help = STRING_TOKEN(STR_GOTO_HELP);
438
439 endform;
440
441 suppressif ideqval MyIfrNVData.BootOrderLarge == 0;
442 form formid = 2, // SecondSetupPage,
443 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
444
445
446 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
447 prompt = STRING_TOKEN(STR_DATE_PROMPT),
448 help = STRING_TOKEN(STR_DATE_HELP),
449 minimum = 1998,
450 maximum = 2099,
451 step = 1,
452 default = 2004,
453
454 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
455 prompt = STRING_TOKEN(STR_DATE_PROMPT),
456 help = STRING_TOKEN(STR_DATE_HELP),
457 minimum = 1,
458 maximum = 12,
459 step = 1,
460 default = 1,
461
462 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
463 prompt = STRING_TOKEN(STR_DATE_PROMPT),
464 help = STRING_TOKEN(STR_DATE_HELP),
465 minimum = 1,
466 maximum = 31,
467 step = 0x1,
468 default = 1,
469
470 inconsistentif prompt = STRING_TOKEN(STR_ERROR_POPUP),
471 ideqval Date.Day == 31
472 AND
473 ideqvallist Date.Month == 2 4 6 9 11
474 endif
475
476 //
477 // If the day is 30 AND month is 2
478 //
479 inconsistentif prompt = STRING_TOKEN(STR_ERROR_POPUP),
480 ideqval Date.Day == 30
481 AND
482 ideqval Date.Month == 2
483 endif
484
485 //
486 // If the day is 29 AND month is 2 AND it year is NOT a leapyear
487 //
488 inconsistentif prompt = STRING_TOKEN(STR_ERROR_POPUP),
489 ideqval Date.Day == 0x1D
490 AND
491 ideqval Date.Month == 2
492 AND
493 NOT
494 ideqvallist Date.Year == 2004 2008 20012 20016 2020 2024 2028 2032 2036
495 endif
496
497 enddate;
498
499 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
500 prompt = STRING_TOKEN(STR_TIME_PROMPT),
501 help = STRING_TOKEN(STR_TIME_HELP),
502 minimum = 0,
503 maximum = 23,
504 step = 1,
505 default = 0,
506
507 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
508 prompt = STRING_TOKEN(STR_TIME_PROMPT),
509 help = STRING_TOKEN(STR_TIME_HELP),
510 minimum = 0,
511 maximum = 59,
512 step = 1,
513 default = 0,
514
515 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
516 prompt = STRING_TOKEN(STR_TIME_PROMPT),
517 help = STRING_TOKEN(STR_TIME_HELP),
518 minimum = 0,
519 maximum = 59,
520 step = 1,
521 default = 0,
522
523 endtime;
524
525 checkbox varid = MyIfrNVData.ChooseToActivateNuclearWeaponry,
526 prompt = STRING_TOKEN(STR_CHECK_BOX_PROMPT),
527 help = STRING_TOKEN(STR_CHECK_BOX_HELP),
528 flags = CHECKBOX_DEFAULT,
529 key = 0,
530 endcheckbox;
531
532 text
533 help = STRING_TOKEN(STR_TEXT_HELP),
534 text = STRING_TOKEN(STR_TEXT_TEXT_1);
535
536 text
537 help = STRING_TOKEN(STR_TEXT_HELP),
538 text = STRING_TOKEN(STR_TEXT_TEXT_1),
539 text = STRING_TOKEN(STR_TEXT_TEXT_2);
540
541 goto 1,
542 prompt = STRING_TOKEN(STR_GOTO_FORM1), //MainSetupPage // this too has no end-op and basically it's a jump to a form ONLY
543 help = STRING_TOKEN(STR_GOTO_HELP);
544
545 endform;
546 endif;
547
548 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
549
550 suppressif ideqval MyEfiVar == 111;
551 text
552 help = STRING_TOKEN(STR_TEXT_HELP),
553 text = STRING_TOKEN(STR_TEXT_TEXT_1);
554 endif;
555
556 goto 1,
557 prompt = STRING_TOKEN(STR_GOTO_FORM1), //MainSetupPage
558 help = STRING_TOKEN(STR_GOTO_HELP);
559
560 numeric varid = MyIfrNVData.DynamicRefresh,
561 prompt = STRING_TOKEN(STR_NUMERIC_MANUAL_PROMPT),
562 help = STRING_TOKEN(STR_NUMERIC_HELP0),
563 flags = INTERACTIVE,
564 key = 0x5678,
565 minimum = 0,
566 maximum = 0xff,
567 step = 0,
568 default = 0,
569 refresh interval = 3 // Refresh interval in seconds
570 endnumeric;
571
572 label LABEL_UPDATE2;
573 label LABEL_END;
574
575 endform;
576
577 formmap formid = 4,
578 maptitle = STRING_TOKEN(STR_SAMPL_MAP_METHOD);
579 mapguid = FORMSET_GUID;
580 maptitle = STRING_TOKEN(STR_STANDARD_MAP_METHOD);
581 mapguid = EFI_HII_STANDARD_FORM_GUID;
582
583 oneof varid = MyIfrNVData.SerialPortNo,
584 prompt = STRING_TOKEN(STR_SERIAL_PORT),
585 help = STRING_TOKEN(STR_ONE_OF_HELP),
586
587 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;)));
588 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;));
589
590 option text = STRING_TOKEN(STR_SERIAL_PORT_DISABLE), value = 0x0, flags = DEFAULT;
591 option text = STRING_TOKEN(STR_SERIAL_PORT1), value = 0x1, flags = 0;
592 option text = STRING_TOKEN(STR_SERIAL_PORT2), value = 0x2, flags = 0;
593 option text = STRING_TOKEN(STR_SERIAL_PORT3), value = 0x3, flags = 0;
594 option text = STRING_TOKEN(STR_SERIAL_PORT4), value = 0x4, flags = 0;
595 endoneof;
596
597 grayoutif TRUE;
598 checkbox varid = MyIfrNVData.SerialPortStatus,
599 prompt = STRING_TOKEN(STR_SERIAL_PORT_STATUS),
600 help = STRING_TOKEN(STR_CHECK_BOX_HELP),
601 endcheckbox;
602 endif;
603
604 grayoutif TRUE;
605 suppressif ideqval MyIfrNVData.SerialPortStatus == 0;
606 oneof varid = MyIfrNVData.SerialPortIo,
607 prompt = STRING_TOKEN(STR_SERIAL_PORT_IO_ADDRESS),
608 help = STRING_TOKEN(STR_ONE_OF_HELP),
609
610 option text = STRING_TOKEN(STR_SERIAL_PORT1_IOADDR), value = 0x3F8, flags = DEFAULT;
611 option text = STRING_TOKEN(STR_SERIAL_PORT2_IOADDR), value = 0x2F8, flags = 0;
612 option text = STRING_TOKEN(STR_SERIAL_PORT3_IOADDR), value = 0x3E8, flags = 0;
613 option text = STRING_TOKEN(STR_SERIAL_PORT4_IOADDR), value = 0x2E8, flags = 0;
614 endoneof;
615 endif;
616 endif;
617
618 grayoutif TRUE;
619 suppressif ideqval MyIfrNVData.SerialPortStatus == 0;
620 oneof varid = MyIfrNVData.SerialPortIrq,
621 prompt = STRING_TOKEN(STR_SERIAL_PORT_IRQ),
622 help = STRING_TOKEN(STR_ONE_OF_HELP),
623
624 option text = STRING_TOKEN(STR_SERIAL_PORT13_IRQ), value = 0x4, flags = DEFAULT;
625 option text = STRING_TOKEN(STR_SERIAL_PORT24_IRQ), value = 0x3, flags = 0;
626 endoneof;
627 endif;
628 endif;
629
630 goto 1,
631 prompt = STRING_TOKEN(STR_GOTO_FORM1), //MainSetupPage
632 help = STRING_TOKEN(STR_GOTO_HELP);
633
634 endform;
635
636 form formid = 0x1234, // Dynamically created page,
637 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
638
639 label LABEL_UPDATE1;
640 //
641 // This is where we will insert dynamic created opcodes
642 //
643 label LABEL_END;
644
645 endform;
646
647 endformset;