From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mx.groups.io with SMTP id smtpd.web09.4429.1617863737207164971 for ; Wed, 07 Apr 2021 23:35:37 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.151, mailfrom: yun.lou@intel.com) IronPort-SDR: I4/ypuNq9Bf1voEqvJyHqnRn3mJf8Qr/IVf7v36Lqm38iq3xjd23HJab1JaThVB842TeGh4CpV GIUyPTrP7wGQ== X-IronPort-AV: E=McAfee;i="6000,8403,9947"; a="173552900" X-IronPort-AV: E=Sophos;i="5.82,205,1613462400"; d="scan'208";a="173552900" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Apr 2021 23:35:36 -0700 IronPort-SDR: kCJ3F3EBxxWt7lmxGtKYO9bmcQbb+mh1UDh7z9AZ+8gldwHy+no43eOj0CaUdy9c33oZUTYlr2 mx/PJejDe7Cw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.82,205,1613462400"; d="scan'208";a="458690370" Received: from shwdeopenlab102.ccr.corp.intel.com ([10.239.183.74]) by orsmga001.jf.intel.com with ESMTP; 07 Apr 2021 23:35:34 -0700 From: "Jason Lou" To: devel@edk2.groups.io Cc: Jason , Michael D Kinney , Liming Gao , Zhiguang Liu , Ray Ni Subject: [PATCH v1] MdePkg/Cpuid.h: Define new element in CPUID Leaf(07h) data structure. Date: Thu, 8 Apr 2021 14:35:26 +0800 Message-Id: <20210408063526.14564-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 | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/MdePkg/Include/Register/Intel/Cpuid.h b/MdePkg/Include/Registe= r/Intel/Cpuid.h index 19af99b6af..e7c0fd17e7 100644 --- a/MdePkg/Include/Register/Intel/Cpuid.h +++ b/MdePkg/Include/Register/Intel/Cpuid.h @@ -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 Reserved2: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 Reserved3: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 Reserved4: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