From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mx.groups.io with SMTP id smtpd.web11.7963.1573540332536269221 for ; Mon, 11 Nov 2019 22:32:12 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.93, mailfrom: ray.ni@intel.com) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 11 Nov 2019 22:32:11 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,295,1569308400"; d="scan'208";a="197976710" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by orsmga008.jf.intel.com with ESMTP; 11 Nov 2019 22:32:11 -0800 Received: from FMSMSX109.amr.corp.intel.com (10.18.116.9) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.439.0; Mon, 11 Nov 2019 22:32:11 -0800 Received: from shsmsx106.ccr.corp.intel.com (10.239.4.159) by fmsmsx109.amr.corp.intel.com (10.18.116.9) with Microsoft SMTP Server (TLS) id 14.3.439.0; Mon, 11 Nov 2019 22:32:10 -0800 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.127]) by SHSMSX106.ccr.corp.intel.com ([169.254.10.248]) with mapi id 14.03.0439.000; Tue, 12 Nov 2019 14:32:08 +0800 From: "Ni, Ray" To: "Gao, Zhichao" , "devel@edk2.groups.io" CC: "Chaganty, Rangasai V" Subject: Re: [PATCH V4 6/8] ShellPkg/SmbiosView: SMBIOS 3.3.0 add support for CXL Flexbus Thread-Topic: [PATCH V4 6/8] ShellPkg/SmbiosView: SMBIOS 3.3.0 add support for CXL Flexbus Thread-Index: AQHVmQwuySnjbGL0kk6HmKULkHw6pKeHEvaQ Date: Tue, 12 Nov 2019 06:32:07 +0000 Deferred-Delivery: Tue, 12 Nov 2019 06:30:00 +0000 Message-ID: <734D49CCEBEEF84792F5B80ED585239D5C35A468@SHSMSX104.ccr.corp.intel.com> References: <20191112034900.11912-1-zhichao.gao@intel.com> <20191112034900.11912-7-zhichao.gao@intel.com> In-Reply-To: <20191112034900.11912-7-zhichao.gao@intel.com> Accept-Language: en-US, zh-CN X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Return-Path: ray.ni@intel.com Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Ray Ni > -----Original Message----- > From: Gao, Zhichao > Sent: Tuesday, November 12, 2019 11:49 AM > To: devel@edk2.groups.io > Cc: Ni, Ray ; Chaganty, Rangasai V > > Subject: [PATCH V4 6/8] ShellPkg/SmbiosView: SMBIOS 3.3.0 add support for > CXL Flexbus >=20 > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3D2305 >=20 > Various: > - SMBIOSCR00183: add support for CXL Flexbus >=20 > Cc: Ray Ni > Cc: Sai Chaganty > Signed-off-by: Zhichao Gao > --- > .../Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c | 8 > ++++++++ > 1 file changed, 8 insertions(+) >=20 > diff --git > a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable. > c > b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable. > c > index 94d995bda1..8ed2bae4d3 100644 > --- > a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable. > c > +++ > b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable. > c > @@ -1432,6 +1432,10 @@ TABLE_ITEM SystemSlotTypeTable[] =3D { > 0x23, > L"PCI Express Mini 76-pin (CEM spec. 2.0) Corresponds to Display-Min= i > card" > }, > + { > + SlotTypeCXLFlexbus10, > + L"CXL Flexbus 1.0" > + }, > { > 0xA0, > L"PC-98/C20 " > @@ -2290,6 +2294,10 @@ TABLE_ITEM PMALocationTable[] =3D { > { > 0xA3, > L" PC-98/Local bus add-on card" > + }, > + { > + MemoryArrayLocationCXLFlexbus10AddonCard, > + L" CXL Flexbus 1.0 add-on card" > } > }; >=20 > -- > 2.16.2.windows.1