From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mx.groups.io with SMTP id smtpd.web09.1667.1573611115388749086 for ; Tue, 12 Nov 2019 18:11:55 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.43, 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 fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 12 Nov 2019 18:11:44 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,298,1569308400"; d="scan'208";a="202611444" Received: from cchunbo-mobl.ccr.corp.intel.com (HELO gaozhic-MOBL.ccr.corp.intel.com) ([10.255.31.37]) by fmsmga008.fm.intel.com with ESMTP; 12 Nov 2019 18:11:42 -0800 From: "Gao, Zhichao" To: devel@edk2.groups.io Cc: "Gao, Zhichao" , Ray Ni , Sai Chaganty Subject: [PATCH V5 7/8] ShellPkg/SmbiosView: SMBIOS 3.3.0 Add value HBM and Die for type 17 Date: Wed, 13 Nov 2019 07:41:14 +0530 Message-Id: <20191113021115.16888-8-zhichao.gao@intel.com> X-Mailer: git-send-email 2.16.2.windows.1 In-Reply-To: <20191113021115.16888-1-zhichao.gao@intel.com> References: <20191113021115.16888-1-zhichao.gao@intel.com> From: "Gao, Zhichao" REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2305 Memory Device (Type 17): - SMBIOSCR00178: add new memory device type value (HBM) and new form factor value (Die) Cc: Ray Ni Cc: Sai Chaganty Reviewed-by: Ray Ni Signed-off-by: Zhichao Gao --- .../UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c index 8ed2bae4d3..16b75f2667 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c @@ -2423,6 +2423,10 @@ TABLE_ITEM MemoryDeviceFormFactorTable[] = { { 0x0F, L" FB-DIMM" + }, + { + MemoryFormFactorDie, + L" Die" } }; @@ -2538,6 +2542,14 @@ TABLE_ITEM MemoryDeviceTypeTable[] = { { 0x1F, L" Logical non-volatile device" + }, + { + MemoryTypeHBM, + L" HBM (High Bandwidth Memory)" + }, + { + MemoryTypeHBM2, + L" HBM2 (High Bandwidth Memory Generation 2)" } }; -- 2.16.2.windows.1