From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.31, mailfrom: eric.dong@intel.com) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by groups.io with SMTP; Mon, 08 Apr 2019 17:11:03 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 Apr 2019 17:11:01 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.60,327,1549958400"; d="scan'208";a="141101404" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by orsmga003.jf.intel.com with ESMTP; 08 Apr 2019 17:11:01 -0700 Received: from fmsmsx161.amr.corp.intel.com (10.18.125.9) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.408.0; Mon, 8 Apr 2019 17:11:00 -0700 Received: from shsmsx105.ccr.corp.intel.com (10.239.4.158) by FMSMSX161.amr.corp.intel.com (10.18.125.9) with Microsoft SMTP Server (TLS) id 14.3.408.0; Mon, 8 Apr 2019 17:11:00 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.206]) by SHSMSX105.ccr.corp.intel.com ([169.254.11.25]) with mapi id 14.03.0415.000; Tue, 9 Apr 2019 08:10:58 +0800 From: "Dong, Eric" To: "Ni, Ray" , "devel@edk2.groups.io" Subject: Re: [PATCH v2] UefiCpuPkg/Cpuid.h: Update CPUID.7H.ECX structure for 5-level paging Thread-Topic: [PATCH v2] UefiCpuPkg/Cpuid.h: Update CPUID.7H.ECX structure for 5-level paging Thread-Index: AQHU7eqmhrP0J1ggO0y922ClE2dboqYy9X3g Date: Tue, 9 Apr 2019 00:10:57 +0000 Message-ID: References: <20190408091124.115416-1-ray.ni@intel.com> In-Reply-To: <20190408091124.115416-1-ray.ni@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 Return-Path: eric.dong@intel.com Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Eric Dong > -----Original Message----- > From: Ni, Ray > Sent: Monday, April 8, 2019 5:11 PM > To: devel@edk2.groups.io > Cc: Dong, Eric > Subject: [PATCH v2] UefiCpuPkg/Cpuid.h: Update CPUID.7H.ECX structure > for 5-level paging >=20 > Reserved6 is changed to Reserved7 because the bit width is changed. >=20 > Contributed-under: TianoCore Contribution Agreement 1.1 > Signed-off-by: Ray Ni > Cc: Eric Dong > --- > UefiCpuPkg/Include/Register/Cpuid.h | 7 +++++-- > 1 file changed, 5 insertions(+), 2 deletions(-) >=20 > diff --git a/UefiCpuPkg/Include/Register/Cpuid.h > b/UefiCpuPkg/Include/Register/Cpuid.h > index e0f4f968f4..a67f2a1dff 100644 > --- a/UefiCpuPkg/Include/Register/Cpuid.h > +++ b/UefiCpuPkg/Include/Register/Cpuid.h > @@ -1506,8 +1506,11 @@ typedef union { > /// [Bits 14] AVX512_VPOPCNTDQ. (Intel Xeon Phi only.). > /// > UINT32 AVX512_VPOPCNTDQ:1; > - UINT32 Reserved6:2; > - > + UINT32 Reserved7:1; > + /// > + /// [Bits 16] Supports 5-level paging if 1. > + /// > + UINT32 FiveLevelPage:1; > /// > /// [Bits 21:17] The value of MAWAU used by the BNDLDX and BNDSTX > instructions > /// in 64-bit mode. > -- > 2.21.0.windows.1