From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) (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 EDD7C21E1DAE1 for ; Thu, 3 Aug 2017 06:03:46 -0700 (PDT) Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Aug 2017 06:05:58 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.41,316,1498546800"; d="scan'208";a="135634497" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by fmsmga006.fm.intel.com with ESMTP; 03 Aug 2017 06:05:58 -0700 Received: from shsmsx104.ccr.corp.intel.com (10.239.4.70) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.319.2; Thu, 3 Aug 2017 06:05:57 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.146]) by SHSMSX104.ccr.corp.intel.com ([10.239.4.70]) with mapi id 14.03.0319.002; Thu, 3 Aug 2017 21:05:56 +0800 From: "Dong, Eric" To: "Wu, Hao A" , "edk2-devel@lists.01.org" CC: "Fan, Jeff" Thread-Topic: [PATCH] UefiCpuPkg/Msr: Add a missing IvyBridge processor signature Thread-Index: AQHTC2mMYhqbvqZaPEWHnVxxyOVKVaJym5VQ Date: Thu, 3 Aug 2017 13:05:55 +0000 Message-ID: References: <20170802082954.15704-1-hao.a.wu@intel.com> In-Reply-To: <20170802082954.15704-1-hao.a.wu@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [PATCH] UefiCpuPkg/Msr: Add a missing IvyBridge processor signature X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2017 13:03:47 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Eric Dong -----Original Message----- From: Wu, Hao A=20 Sent: Wednesday, August 2, 2017 4:30 PM To: edk2-devel@lists.01.org Cc: Wu, Hao A ; Dong, Eric ; Fan, = Jeff Subject: [PATCH] UefiCpuPkg/Msr: Add a missing IvyBridge processor signatur= e This commit modifies the CPUID signature check MACRO for IvyBridge processo= r by adding a missing DisplayModel 0x3E. The missing one appears at Section= 35.10.1 to Section 35.10.3 of the Intel(R) 64 and IA-32 Architectures Soft= ware Developer's Manual, Volume 3, September 2016. Cc: Eric Dong Cc: Jeff Fan Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hao Wu --- UefiCpuPkg/Include/Register/Msr/IvyBridgeMsr.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/UefiCpuPkg/Include/Register/Msr/IvyBridgeMsr.h b/UefiCpuPkg/In= clude/Register/Msr/IvyBridgeMsr.h index 9eb07994ec..39b0d1af12 100644 --- a/UefiCpuPkg/Include/Register/Msr/IvyBridgeMsr.h +++ b/UefiCpuPkg/Include/Register/Msr/IvyBridgeMsr.h @@ -38,7 +38,8 @@ #define IS_IVY_BRIDGE_PROCESSOR(DisplayFamily, DisplayModel) \ (DisplayFamily =3D=3D 0x06 && \ ( \ - DisplayModel =3D=3D 0x3A \ + DisplayModel =3D=3D 0x3A || \ + DisplayModel =3D=3D 0x3E \ ) \ ) =20 -- 2.12.0.windows.1