From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mx.groups.io with SMTP id smtpd.web11.3448.1617933681501358737 for ; Thu, 08 Apr 2021 19:01:21 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.24, mailfrom: yun.lou@intel.com) IronPort-SDR: KEU0/zdxp1diQA0DH/wBcKoZ9CGK06JdR8lneGZcCC/fJyjONF0C+8yyxqiE4GfGr0ytKLJRHG 1oGZqB8NTE5g== X-IronPort-AV: E=McAfee;i="6000,8403,9948"; a="193783499" X-IronPort-AV: E=Sophos;i="5.82,208,1613462400"; d="scan'208";a="193783499" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Apr 2021 19:01:20 -0700 IronPort-SDR: 2g4rTdkOYtsQ/7X6C4BTrwprUI/iGY76pBDzyFfjnqWyU2tgdBHcLx7RaLE2ZT9p1/61xq7jXd 0UkQHSyBl8mA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.82,208,1613462400"; d="scan'208";a="520092556" Received: from shwdeopenlab102.ccr.corp.intel.com ([10.239.183.74]) by fmsmga001.fm.intel.com with ESMTP; 08 Apr 2021 19:01:18 -0700 From: "Jason Lou" To: devel@edk2.groups.io Cc: Jason , Michael D Kinney , Liming Gao , Zhiguang Liu , Ray Ni Subject: [PATCH v4] MdePkg/Cpuid.h: Define new element in CPUID Leaf(07h) data structure. Date: Fri, 9 Apr 2021 10:01:12 +0800 Message-Id: <20210409020112.14954-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..6f77e174c1 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 --=20 2.28.0.windows.1