From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mx.groups.io with SMTP id smtpd.web09.9216.1617893455982011642 for ; Thu, 08 Apr 2021 07:50:56 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.100, mailfrom: yun.lou@intel.com) IronPort-SDR: gmhe4OSw36+Gy3ombjNXTreEcCTF7fTZvTS8ETUFT+Z6Y+w5TcMe0ftdx+aRXomKFCJMZuenb+ NXGhjDcK+l6Q== X-IronPort-AV: E=McAfee;i="6000,8403,9948"; a="257537561" X-IronPort-AV: E=Sophos;i="5.82,206,1613462400"; d="scan'208";a="257537561" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Apr 2021 07:50:54 -0700 IronPort-SDR: iWis6AKzZHYH4yvw4ktzjKUbyFkaYNZEoUj5o9Ezz+Twv4thyNBakENQGTkybgVMaVgDdRdYML 7S2PlY/YqcjA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.82,206,1613462400"; d="scan'208";a="449704406" Received: from shwdeopenlab102.ccr.corp.intel.com ([10.239.183.74]) by fmsmga002.fm.intel.com with ESMTP; 08 Apr 2021 07:50:52 -0700 From: "Jason Lou" To: devel@edk2.groups.io Cc: Jason , Michael D Kinney , Liming Gao , Zhiguang Liu , Ray Ni Subject: [PATCH v3] MdePkg/Cpuid.h: Define new element in CPUID Leaf(07h) data structure. Date: Thu, 8 Apr 2021 22:50:49 +0800 Message-Id: <20210408145049.14851-1-yun.lou@intel.com> X-Mailer: git-send-email 2.28.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3D3309 Define new element(Hybird) in CPUID_STRUCTURED_EXTENDED_FEATURE_FLAGS (07h) data structure. Signed-off-by: Jason Lou Cc: Michael D Kinney Cc: Liming Gao Cc: Zhiguang Liu Cc: Ray Ni --- MdePkg/Include/Register/Intel/Cpuid.h | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/MdePkg/Include/Register/Intel/Cpuid.h b/MdePkg/Include/Registe= r/Intel/Cpuid.h index 19af99b6af..25ec65a746 100644 --- a/MdePkg/Include/Register/Intel/Cpuid.h +++ b/MdePkg/Include/Register/Intel/Cpuid.h @@ -6,7 +6,7 @@ If a register returned is a single 32-bit value, then a data structure i= s=0D not provided for that register.=0D =0D - Copyright (c) 2015 - 2019, Intel Corporation. All rights reserved.
=0D + Copyright (c) 2015 - 2021, Intel Corporation. All rights reserved.
=0D SPDX-License-Identifier: BSD-2-Clause-Patent=0D =0D @par Specification Reference:=0D @@ -1550,9 +1550,17 @@ typedef union { ///=0D UINT32 AVX512_4FMAPS:1;=0D ///=0D - /// [Bit 25:4] Reserved.=0D + /// [Bit 14:4] Reserved.=0D ///=0D - UINT32 Reserved2:22;=0D + UINT32 Reserved4:11;=0D + ///=0D + /// [Bit 15] Hybrid. If 1, the processor is identified as a hybrid par= t.=0D + ///=0D + UINT32 Hybrid:1;=0D + ///=0D + /// [Bit 25:16] Reserved.=0D + ///=0D + UINT32 Reserved5:10;=0D ///=0D /// [Bit 26] Enumerates support for indirect branch restricted specula= tion=0D /// (IBRS) and the indirect branch pre-dictor barrier (IBPB). Processo= rs=0D @@ -1581,7 +1589,7 @@ typedef union { ///=0D /// [Bit 30] Reserved.=0D ///=0D - UINT32 Reserved3:1;=0D + UINT32 Reserved6:1;=0D ///=0D /// [Bit 31] Enumerates support for Speculative Store Bypass Disable (= SSBD).=0D /// Processors that set this bit sup-port the IA32_SPEC_CTRL MSR. They= allow=0D --=20 2.28.0.windows.1