From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=192.55.52.136; helo=mga12.intel.com; envelope-from=teemu.s.rytkonen@intel.com; receiver=edk2-devel@lists.01.org Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id CDFF921F0DA4D for ; Mon, 12 Feb 2018 13:38:18 -0800 (PST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 12 Feb 2018 13:44:06 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,504,1511856000"; d="scan'208";a="203639192" Received: from tsrytkon-mobl.ger.corp.intel.com ([10.232.214.72]) by fmsmga006.fm.intel.com with ESMTP; 12 Feb 2018 13:44:05 -0800 From: tsrytkon To: edk2-devel@lists.01.org Cc: david.wei@intel.com, anthony.loeppert@intel.com Date: Mon, 12 Feb 2018 13:41:25 -0800 Message-Id: <20180212214125.25960-1-teemu.s.rytkonen@intel.com> X-Mailer: git-send-email 2.15.1.windows.2 Subject: [Patch][edk2-platforms/devel-MinnowBoard3-UDK2017 2/2] Enable Turbo on CpuPower default configuration X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Feb 2018 21:38:19 -0000 Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: tsrytkon --- .../Common/PlatformSettings/PlatformSetupDxe/CpuPower.vfi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/CpuPower.vfi b/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/CpuPower.vfi index 9deea2534..0bedbc5fa 100644 --- a/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/CpuPower.vfi +++ b/Platform/BroxtonPlatformPkg/Common/PlatformSettings/PlatformSetupDxe/CpuPower.vfi @@ -40,8 +40,8 @@ form formid = CPU_PWR_CONFIGURATION_FORM_ID, oneof varid = Setup.TurboModeEnable, prompt = STRING_TOKEN(STR_PROCESSOR_TURBO_MODE), help = STRING_TOKEN(STR_PROCESSOR_TURBO_MODE_HELP), - option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = MANUFACTURING |DEFAULT | RESET_REQUIRED; - option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = RESET_REQUIRED; + option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = RESET_REQUIRED; + option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = MANUFACTURING |DEFAULT | RESET_REQUIRED; endoneof; endif; -- 2.15.1.windows.2