From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga17.intel.com (mga17.intel.com []) by mx.groups.io with SMTP id smtpd.web10.1179.1573087937087027705 for ; Wed, 06 Nov 2019 16:52:25 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: zhichao.gao@intel.com) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Nov 2019 16:52:25 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,276,1569308400"; d="scan'208";a="200879486" Received: from gaozhic-mobl.ccr.corp.intel.com ([10.249.173.67]) by fmsmga008.fm.intel.com with ESMTP; 06 Nov 2019 16:52:24 -0800 From: "Gao, Zhichao" To: devel@edk2.groups.io Cc: Ray Ni , Sai Chaganty Subject: [PATCH V3 6/8] ShellPkg/SmbiosView: SMBIOS 3.3.0 add support for CXL Flexbus Date: Thu, 7 Nov 2019 08:52:00 +0800 Message-Id: <20191107005202.11844-7-zhichao.gao@intel.com> X-Mailer: git-send-email 2.16.2.windows.1 In-Reply-To: <20191107005202.11844-1-zhichao.gao@intel.com> References: <20191107005202.11844-1-zhichao.gao@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2305 Various: – SMBIOSCR00183: add support for CXL Flexbus Cc: Ray Ni Cc: Sai Chaganty Reviewed-by: Sai Chaganty Signed-off-by: Zhichao Gao --- .../Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c index 3ba44c282e..086be40794 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c @@ -1432,6 +1432,10 @@ TABLE_ITEM SystemSlotTypeTable[] = { 0x23, L"PCI Express Mini 76-pin (CEM spec. 2.0) Corresponds to Display-Mini card" }, + { + 0x30, + L"CXL Flexbus 1.0" + }, { 0xA0, L"PC-98/C20 " @@ -2290,6 +2294,10 @@ TABLE_ITEM PMALocationTable[] = { { 0xA3, L" PC-98/Local bus add-on card" + }, + { + 0xA4, + L" CXL Flexbus 1.0 add-on card" } }; -- 2.16.2.windows.1