From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 937451A1F52 for ; Thu, 8 Sep 2016 01:27:52 -0700 (PDT) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP; 08 Sep 2016 01:27:53 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,298,1470726000"; d="scan'208";a="1047211516" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by orsmga002.jf.intel.com with ESMTP; 08 Sep 2016 01:27:51 -0700 Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 8 Sep 2016 01:27:51 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.109]) by SHSMSX151.ccr.corp.intel.com ([169.254.3.250]) with mapi id 14.03.0248.002; Thu, 8 Sep 2016 16:27:49 +0800 From: "Fan, Jeff" To: Joseph Shifflett , "edk2-devel@lists.01.org" CC: "Kinney, Michael D" , "Justen, Jordan L" , Laszlo Ersek Thread-Topic: [edk2] [PATCH v1 0/5] Abstract the detect/enable/disable of several x86 features Thread-Index: AQHSCYm6wYxSfNZv4EuaQgLUYLaVlaBvP3yA Date: Thu, 8 Sep 2016 08:27:49 +0000 Message-ID: <542CF652F8836A4AB8DBFAAD40ED192A4A1DF97C@shsmsx102.ccr.corp.intel.com> References: <1473309015-26017-1-git-send-email-joseph.shifflett@hpe.com> In-Reply-To: <1473309015-26017-1-git-send-email-joseph.shifflett@hpe.com> Accept-Language: zh-CN, en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZjNmZTQyYmMtMTJkNS00MGMwLThlNjMtYmEwMWYzMmZhNDA2IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IlFKTTZCQ3l1dUZqWEFMaUY2NHBmcUdUN2FEZEIzNkRlYlwvQXhWUFJMaUtFPSJ9 x-ctpclassification: CTP_IC x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [PATCH v1 0/5] Abstract the detect/enable/disable of several x86 features X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Sep 2016 08:27:52 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hi, Joseph Abstracting the detect/enable operation on CPU SMM features is good idea on= UefiCpuPkg. Actually, we are planning to abstract as more as possible CPU features in o= ne new library in UefiCpuPKg. It not only includes CPU SMM features, but al= so includes the non-SMM features. We will work on it in the next a couple of months. We'd like to share some = information here and I'd like to get the input from you. Does it make sense= for you? Thanks! Jeff=20 -----Original Message----- From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of Jose= ph Shifflett Sent: Thursday, September 08, 2016 12:30 PM To: edk2-devel@lists.01.org Cc: Kinney, Michael D; Justen, Jordan L; Fan, Jeff; Laszlo Ersek Subject: [edk2] [PATCH v1 0/5] Abstract the detect/enable/disable of severa= l x86 features This series abstracts accesses to various x86 features. Existing code used= Intel specific MSR accesses to detect support and to enable/disable featur= es. Cc: Jeff Fan Cc: Michael D Kinney Cc: Kelly Steele Cc: Jordan Justen Cc: Laszlo Ersek Joseph Shifflett (5): UefiCpuPkg: SmmCpuFeaturesLib.h: Abstact processor features UefiCpuPkg/SmmCpuFeaturesLib: Abstact processor features QuarkSocPkg/SmmCpuFeaturesLib: Abstact processor features OvmfPkg/SmmCpuFeaturesLib: Abstact processor features UefiCpuPkg/PiSmmCpuDxeSmm: Abstact processor features UefiCpuPkg/Include/Library/SmmCpuFeaturesLib.h = | 37 ++++++++++ OvmfPkg/Library/SmmCpuFeaturesLib/SmmCpuFeaturesLib.c = | 44 +++++++++++ QuarkSocPkg/QuarkNorthCluster/Library/SmmCpuFeaturesLib/SmmCpuFeaturesLib.= c | 44 +++++++++++ UefiCpuPkg/Library/SmmCpuFeaturesLib/SmmCpuFeaturesLib.c = | 78 ++++++++++++++++++++ UefiCpuPkg/PiSmmCpuDxeSmm/MpService.c = | 13 +--- UefiCpuPkg/PiSmmCpuDxeSmm/SmmProfile.c = | 18 +---- 6 files changed, 208 insertions(+), 26 deletions(-) -- 2.7.4 _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel