1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
//
//
// Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR>
//
// SPDX-License-Identifier: BSD-2-Clause-Patent
//
//
//
//
// Module Name:
//
// DebugConfiguration.vfi
//
// Abstract:
//
// Debug Configuration formset.
//
// --*/
form formid = DEBUG_CONFIGURATION_FORM_ID,
title = STRING_TOKEN(STR_DEBUG_CONFIGURATION_TITLE);
subtitle text = STRING_TOKEN(STR_NULL_STRING);
subtitle text = STRING_TOKEN(STR_ACPIMEMDBG_STRING);
//ACPI Memory Debug Switch
oneof varid = Setup.ACPIMemDbg,
prompt = STRING_TOKEN (STR_ACPIMEMDBG_SWTICH),
help = STRING_TOKEN (STR_ACPIMEMDBG_SWTICH_HELP),
option text = STRING_TOKEN (STR_ENABLE), value = 1, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
option text = STRING_TOKEN (STR_DISABLE), value = 0, flags = RESET_REQUIRED;
endoneof;
subtitle text = STRING_TOKEN(STR_NULL_STRING);
oneof varid = Setup.ExISupport,
prompt = STRING_TOKEN(STR_EXISUPPORT_PROMPT),
help = STRING_TOKEN(STR_EXISUPPORT_HELP),
option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = RESET_REQUIRED;
option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = DEFAULT | RESET_REQUIRED;
endoneof;
subtitle text = STRING_TOKEN(STR_WITT_CONFIGURATION_TITLE);
oneof varid = Setup.WittEnable,
prompt = STRING_TOKEN(STR_WITT_PROMPT),
help = STRING_TOKEN(STR_WITT_HELP),
option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = DEFAULT | RESET_REQUIRED;
option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = RESET_REQUIRED;
endoneof;
oneof varid = Setup.UtsEnable,
prompt = STRING_TOKEN(STR_UTS_PROMPT),
help = STRING_TOKEN(STR_UTS_HELP),
option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = DEFAULT | RESET_REQUIRED;
option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = RESET_REQUIRED;
endoneof;
//
//Lakemore Settings
//
subtitle text = STRING_TOKEN(STR_NULL_STRING);
subtitle text = STRING_TOKEN(STR_LM_INFORMATION_TITLE);
grayoutif ideqval Setup.PunitBIOSConfig == 0x1;
oneof varid = Setup.LmMemSize,
prompt = STRING_TOKEN (STR_LM_MEMORY_PROMPT),
help = STRING_TOKEN (STR_LM_MEMORY_HELP),
option text = STRING_TOKEN (STR_LM_MEMORY_16MB), value = 16384, flags = RESET_REQUIRED;
option text = STRING_TOKEN (STR_LM_MEMORY_8MB), value = 8192, flags = RESET_REQUIRED;
option text = STRING_TOKEN (STR_LM_MEMORY_1MB), value = 1024, flags = RESET_REQUIRED;
option text = STRING_TOKEN (STR_LM_MEMORY_128KB), value = 128, flags = RESET_REQUIRED;
option text = STRING_TOKEN (STR_LM_MEMORY_0MB), value = 0, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
endoneof;
endif;
oneof varid = Setup.PunitBIOSConfig,
prompt = STRING_TOKEN (STR_PUINT_BIOS_CONFIG_DISPLAY),
help = STRING_TOKEN (STR_PUINT_BIOS_CONFIG_DISPLAY_HELP),
option text = STRING_TOKEN (STR_PUINT_BIOS_PDM), value = 3, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
option text = STRING_TOKEN (STR_PUINT_BIOS_PERFORMANCE), value = 2, flags = RESET_REQUIRED;
option text = STRING_TOKEN (STR_PUINT_BIOS_POWERSAVE), value = 1, flags = RESET_REQUIRED;
option text = STRING_TOKEN (STR_PUINT_BIOS_RESERVED), value = 0, flags = RESET_REQUIRED;
endoneof;
suppressif NOT ideqval Setup.PunitBIOSConfig == 0x3;
oneof varid = Setup.PDMConfig,
prompt = STRING_TOKEN (STR_PDM_OUTPUT_CONFIG_SWTICH),
help = STRING_TOKEN (STR_PDM_OUTPUT_CONFIG_SWTICH_HELP),
option text = STRING_TOKEN (STR_DISABLE), value = 0, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
option text = STRING_TOKEN (STR_PDM_OUTPUT_MEM), value = 1, flags = RESET_REQUIRED;
option text = STRING_TOKEN (STR_PDM_OUTPUT_IO), value = 2, flags = RESET_REQUIRED;
endoneof;
endif;
subtitle text = STRING_TOKEN(STR_NULL_STRING);
oneof varid = Setup.ENDBG2,
prompt = STRING_TOKEN (STR_ENABLE_DBG2),
help = STRING_TOKEN (STR_ENABLE_DBG2_HELP),
option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = RESET_REQUIRED;
option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = DEFAULT | RESET_REQUIRED;
endoneof;
subtitle text = STRING_TOKEN(STR_NULL_STRING);
subtitle text = STRING_TOKEN(STR_NULL_STRING);
oneof varid = Setup.DisableCodec262,
prompt = STRING_TOKEN(STR_CODEC262_DISABLED_PROMPT),
help = STRING_TOKEN(STR_CODEC262_DISABLED_HELP),
option text = STRING_TOKEN(STR_YES), value = 1, flags = RESET_REQUIRED;
option text = STRING_TOKEN(STR_NO), value = 0, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
endoneof;
endform;
|