mirror of https://github.com/acidanthera/audk.git
112 lines
4.6 KiB
Plaintext
112 lines
4.6 KiB
Plaintext
//
|
|
//
|
|
// Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR>
|
|
//
|
|
|
|
// This program and the accompanying materials are licensed and made available under
|
|
|
|
// the terms and conditions of the BSD License that accompanies this distribution.
|
|
|
|
// The full text of the license may be found at
|
|
|
|
// http://opensource.org/licenses/bsd-license.php.
|
|
|
|
//
|
|
|
|
// THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
//
|
|
|
|
//
|
|
//
|
|
//
|
|
// Module Name:
|
|
//
|
|
// DPTF.vfr
|
|
//
|
|
// Abstract:
|
|
//
|
|
// Driver Setup formset.
|
|
//
|
|
// Revision History:
|
|
// ------------------------------------------------------------------------------
|
|
// Rev Date<MM/DD/YYYY> Name Description
|
|
// ------------------------------------------------------------------------------
|
|
|
|
// --*/
|
|
|
|
form formid = THERMAL_FORM_ID,
|
|
|
|
title = STRING_TOKEN(STR_THERMAL_TITLE);
|
|
|
|
subtitle text = STRING_TOKEN(STR_THERMAL_CONFIGURATION);
|
|
oneof varid = Setup.CriticalThermalTripPoint,
|
|
prompt = STRING_TOKEN(STR_ACPI_CRITICAL_THERMAL_TRIP_POINT),
|
|
help = STRING_TOKEN(STR_ACPI_CRITICAL_THERMAL_TRIP_POINT_HELP),
|
|
option text = STRING_TOKEN (STR_85_C), value = 85, flags=0 | RESET_REQUIRED;
|
|
option text = STRING_TOKEN (STR_87_C), value = 87, flags=0 | RESET_REQUIRED;
|
|
option text = STRING_TOKEN (STR_90_C), value = 90, flags=0 | RESET_REQUIRED;
|
|
option text = STRING_TOKEN (STR_105_C), value = 105, flags=0 | RESET_REQUIRED;
|
|
option text = STRING_TOKEN (STR_110_C), value = 110, flags=0 | RESET_REQUIRED;
|
|
option text = STRING_TOKEN (STR_200_C), value = 200, flags=DEFAULT | MANUFACTURING | RESET_REQUIRED;
|
|
endoneof;
|
|
oneof varid = Setup.PassiveThermalTripPoint,
|
|
prompt = STRING_TOKEN (STR_ACPI_PASSIVE_THERMAL_TRIP_POINT),
|
|
help = STRING_TOKEN (STR_ACPI_PASSIVE_THERMAL_TRIP_POINT_HELP),
|
|
option text = STRING_TOKEN (STR_85_C), value = 85, flags=0 | RESET_REQUIRED;
|
|
option text = STRING_TOKEN (STR_87_C), value = 87, flags=0 | RESET_REQUIRED;
|
|
option text = STRING_TOKEN (STR_90_C), value = 90, flags=0 | RESET_REQUIRED;
|
|
option text = STRING_TOKEN (STR_100_C), value = 100, flags=0 | RESET_REQUIRED;
|
|
option text = STRING_TOKEN (STR_105_C), value = 105, flags=0 | RESET_REQUIRED;
|
|
option text = STRING_TOKEN (STR_180_C), value = 180, flags=DEFAULT | MANUFACTURING | RESET_REQUIRED;
|
|
endoneof;
|
|
|
|
suppressif TRUE;
|
|
numeric varid = Setup.PassiveTc1Value,
|
|
prompt = STRING_TOKEN (STR_ACPI_PASSIVE_TC1_VALUE),
|
|
help = STRING_TOKEN (STR_ACPI_PASSIVE_TC1_VALUE_HELP),
|
|
flags = 0 | RESET_REQUIRED,
|
|
minimum = 1,
|
|
maximum = 16,
|
|
step = 1,
|
|
default = 1,
|
|
endnumeric;
|
|
|
|
numeric varid = Setup.PassiveTc2Value,
|
|
prompt = STRING_TOKEN (STR_ACPI_PASSIVE_TC2_VALUE),
|
|
help = STRING_TOKEN (STR_ACPI_PASSIVE_TC2_VALUE_HELP),
|
|
flags = 0 | RESET_REQUIRED,
|
|
minimum = 1,
|
|
maximum = 16,
|
|
step = 1,
|
|
default = 5,
|
|
endnumeric;
|
|
|
|
numeric varid = Setup.PassiveTspValue,
|
|
prompt = STRING_TOKEN (STR_ACPI_PASSIVE_TSP_VALUE),
|
|
help = STRING_TOKEN (STR_ACPI_PASSIVE_TSP_VALUE_HELP),
|
|
flags = 0 | RESET_REQUIRED,
|
|
minimum = 2,
|
|
maximum = 50,
|
|
step = 2,
|
|
default = 50,
|
|
endnumeric;
|
|
endif;
|
|
|
|
subtitle text = STRING_TOKEN(STR_NULL_STRING);
|
|
|
|
oneof varid = Setup.DisableActiveTripPoints,
|
|
prompt = STRING_TOKEN(STR_DATP_PROMPT),
|
|
help = STRING_TOKEN(STR_DATP_HELP),
|
|
option text = STRING_TOKEN(STR_DISABLED), value = 0, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
|
|
option text = STRING_TOKEN(STR_ENABLED), value = 1, flags = RESET_REQUIRED;
|
|
endoneof;
|
|
|
|
suppressif TRUE;
|
|
oneof varid = Setup.EnableDigitalThermalSensor,
|
|
prompt = STRING_TOKEN(STR_DTS_PROMPT),
|
|
help = STRING_TOKEN(STR_DTS_PROMPT_HELP),
|
|
option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = RESET_REQUIRED;
|
|
option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = MANUFACTURING |RESET_REQUIRED |DEFAULT;
|
|
endoneof;
|
|
endif;
|
|
|
|
subtitle text = STRING_TOKEN(STR_NULL_STRING);
|
|
|
|
|
|
|
|
endform;
|