]> git.proxmox.com Git - mirror_edk2.git/blob - Vlv2TbltDevicePkg/PlatformSetupDxe/Thermal.vfi
Fixed a couple of typos of 'Configuration' ('Congfiguration') in Vlv2TbltDevicePkg.
[mirror_edk2.git] / Vlv2TbltDevicePkg / PlatformSetupDxe / Thermal.vfi
1 //
2 //
3 // Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR>
4 //
5 // This program and the accompanying materials are licensed and made available under
6 // the terms and conditions of the BSD License that accompanies this distribution.
7 // The full text of the license may be found at
8 // http://opensource.org/licenses/bsd-license.php.
9 //
10 // THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 //
13 //
14 //
15 //
16 // Module Name:
17 //
18 // DPTF.vfr
19 //
20 // Abstract:
21 //
22 // Driver Setup formset.
23 //
24 // Revision History:
25 // ------------------------------------------------------------------------------
26 // Rev Date<MM/DD/YYYY> Name Description
27 // ------------------------------------------------------------------------------
28
29 // --*/
30
31 form formid = THERMAL_FORM_ID,
32
33 title = STRING_TOKEN(STR_THERMAL_TITLE);
34
35 subtitle text = STRING_TOKEN(STR_THERMAL_CONFIGURATION);
36
37
38 suppressif TRUE;
39 numeric varid = Setup.PassiveTc1Value,
40 prompt = STRING_TOKEN (STR_ACPI_PASSIVE_TC1_VALUE),
41 help = STRING_TOKEN (STR_ACPI_PASSIVE_TC1_VALUE_HELP),
42 flags = 0 | RESET_REQUIRED,
43 minimum = 1,
44 maximum = 16,
45 step = 1,
46 default = 1,
47 endnumeric;
48
49 numeric varid = Setup.PassiveTc2Value,
50 prompt = STRING_TOKEN (STR_ACPI_PASSIVE_TC2_VALUE),
51 help = STRING_TOKEN (STR_ACPI_PASSIVE_TC2_VALUE_HELP),
52 flags = 0 | RESET_REQUIRED,
53 minimum = 1,
54 maximum = 16,
55 step = 1,
56 default = 5,
57 endnumeric;
58
59 numeric varid = Setup.PassiveTspValue,
60 prompt = STRING_TOKEN (STR_ACPI_PASSIVE_TSP_VALUE),
61 help = STRING_TOKEN (STR_ACPI_PASSIVE_TSP_VALUE_HELP),
62 flags = 0 | RESET_REQUIRED,
63 minimum = 2,
64 maximum = 50,
65 step = 2,
66 default = 50,
67 endnumeric;
68 endif;
69
70 subtitle text = STRING_TOKEN(STR_NULL_STRING);
71
72 oneof varid = Setup.DisableActiveTripPoints,
73 prompt = STRING_TOKEN(STR_DATP_PROMPT),
74 help = STRING_TOKEN(STR_DATP_HELP),
75 option text = STRING_TOKEN(STR_DISABLED), value = 0, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
76 option text = STRING_TOKEN(STR_ENABLED), value = 1, flags = RESET_REQUIRED;
77 endoneof;
78
79 suppressif TRUE;
80 oneof varid = Setup.EnableDigitalThermalSensor,
81 prompt = STRING_TOKEN(STR_DTS_PROMPT),
82 help = STRING_TOKEN(STR_DTS_PROMPT_HELP),
83 option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = RESET_REQUIRED;
84 option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = MANUFACTURING |RESET_REQUIRED |DEFAULT;
85 endoneof;
86 endif;
87
88 subtitle text = STRING_TOKEN(STR_NULL_STRING);
89
90
91
92 endform;