From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga18.intel.com (mga18.intel.com []) by mx.groups.io with SMTP id smtpd.web12.2882.1572862404328988013 for ; Mon, 04 Nov 2019 02:13:29 -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 fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Nov 2019 02:13:29 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,266,1569308400"; d="scan'208";a="212282916" Received: from fieedk001.ccr.corp.intel.com ([10.239.33.119]) by fmsmga001.fm.intel.com with ESMTP; 04 Nov 2019 02:13:28 -0800 From: "Gao, Zhichao" To: devel@edk2.groups.io Cc: Ray Ni , Sai Chaganty Subject: [PATCH V2 7/8] ShellPkg/SmbiosView: SMBIOS 3.3.0 Add value HBM and Die for type 17 Date: Mon, 4 Nov 2019 18:13:19 +0800 Message-Id: <20191104101320.14156-8-zhichao.gao@intel.com> X-Mailer: git-send-email 2.21.0.windows.1 In-Reply-To: <20191104101320.14156-1-zhichao.gao@intel.com> References: <20191104101320.14156-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 Memory Device (Type 17): – SMBIOSCR00178: add new memory device type value (HBM) and new form factor value (Die) Cc: Ray Ni Cc: Sai Chaganty Signed-off-by: Zhichao Gao --- .../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 086be40794..b15de97248 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" + }, + { + 0x10, + L" Die" } }; @@ -2538,6 +2542,14 @@ TABLE_ITEM MemoryDeviceTypeTable[] = { { 0x1F, L" Logical non-volatile device" + }, + { + 0x20, + L" HBM (High Bandwidth Memory)" + }, + { + 0x21, + L" HBM2 (High Bandwidth Memory Generation 2)" } }; -- 2.21.0.windows.1