From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: hao.a.wu@intel.com) Received: from mga14.intel.com (mga14.intel.com []) by groups.io with SMTP; Wed, 03 Apr 2019 22:57:35 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Apr 2019 22:57:35 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.60,306,1549958400"; d="scan'208";a="139998321" Received: from shwdeopenpsi014.ccr.corp.intel.com ([10.239.9.8]) by fmsmga007.fm.intel.com with ESMTP; 03 Apr 2019 22:57:34 -0700 From: "Wu, Hao A" To: devel@edk2.groups.io Cc: Hao Wu , Chasel Chiu , Michael A Kubacki Subject: [edk2-platforms/devel-MinPlatform][PATCH v1 5/6] KabylakeSiliconPkg: Remove unused PCD 'PcdUseHpetTimer' Date: Thu, 4 Apr 2019 13:57:27 +0800 Message-Id: <20190404055728.9368-6-hao.a.wu@intel.com> X-Mailer: git-send-email 2.12.0.windows.1 In-Reply-To: <20190404055728.9368-1-hao.a.wu@intel.com> References: <20190404055728.9368-1-hao.a.wu@intel.com> For platforms under KabylakeOpenBoardPkg & ClevoOpenBoardPkg, both of them are using the HPET timer unconditionally. The PCD 'PcdUseHpetTimer' is not being used. This commit will remove the above PCD within KabylakeSiliconPkg. Cc: Chasel Chiu Cc: Michael A Kubacki Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Hao Wu --- Silicon/Intel/KabylakeSiliconPkg/SiPkg.dec | 3 +-- Silicon/Intel/KabylakeSiliconPkg/KabylakeSiliconPkg.dsc | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Silicon/Intel/KabylakeSiliconPkg/SiPkg.dec b/Silicon/Intel/KabylakeSiliconPkg/SiPkg.dec index 92b6d492ee..cca1a2e60d 100644 --- a/Silicon/Intel/KabylakeSiliconPkg/SiPkg.dec +++ b/Silicon/Intel/KabylakeSiliconPkg/SiPkg.dec @@ -1,7 +1,7 @@ ## @file # Component description file for the Silicon Reference Code. # -# Copyright (c) 2017, Intel Corporation. All rights reserved.
+# Copyright (c) 2017 - 2019, Intel Corporation. All rights reserved.
# # This program and the accompanying materials are licensed and made available under # the terms and conditions of the BSD License which accompanies this distribution. @@ -592,7 +592,6 @@ [PcdsFeatureFlag] gSiPkgTokenSpaceGuid.PcdSerialGpioEnable |FALSE|BOOLEAN|0xF0000003 gSiPkgTokenSpaceGuid.PcdAtaEnable |FALSE|BOOLEAN|0xF0000004 gSiPkgTokenSpaceGuid.PcdSiCsmEnable |FALSE|BOOLEAN|0xF0000005 -gSiPkgTokenSpaceGuid.PcdUseHpetTimer |FALSE|BOOLEAN|0xF0000006 gSiPkgTokenSpaceGuid.PcdSgEnable |TRUE |BOOLEAN|0xF0000008 gSiPkgTokenSpaceGuid.PcdAcpiEnable |TRUE |BOOLEAN|0xF0000009 gSiPkgTokenSpaceGuid.PcdSourceDebugEnable |FALSE|BOOLEAN|0xF000000B diff --git a/Silicon/Intel/KabylakeSiliconPkg/KabylakeSiliconPkg.dsc b/Silicon/Intel/KabylakeSiliconPkg/KabylakeSiliconPkg.dsc index 7189ce6396..cbb2a8bec4 100644 --- a/Silicon/Intel/KabylakeSiliconPkg/KabylakeSiliconPkg.dsc +++ b/Silicon/Intel/KabylakeSiliconPkg/KabylakeSiliconPkg.dsc @@ -1,7 +1,7 @@ ## @file # Component description file for the SkyLake SiPkg DSC file. # -# Copyright (c) 2017, Intel Corporation. All rights reserved.
+# Copyright (c) 2017 - 2019, Intel Corporation. All rights reserved.
# # This program and the accompanying materials are licensed and made available under # the terms and conditions of the BSD License which accompanies this distribution. @@ -19,7 +19,6 @@ [PcdsFeatureFlag] gSiPkgTokenSpaceGuid.PcdSerialGpioEnable |FALSE gSiPkgTokenSpaceGuid.PcdAtaEnable |FALSE gSiPkgTokenSpaceGuid.PcdSiCsmEnable |FALSE -gSiPkgTokenSpaceGuid.PcdUseHpetTimer |FALSE gSiPkgTokenSpaceGuid.PcdSgEnable |TRUE gSiPkgTokenSpaceGuid.PcdAcpiEnable |FALSE gSiPkgTokenSpaceGuid.PcdSourceDebugEnable |FALSE -- 2.12.0.windows.1