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.web10.6845.1584068020095059767 for ; Thu, 12 Mar 2020 19:53:40 -0700 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 orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 12 Mar 2020 19:53:39 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,546,1574150400"; d="scan'208";a="389797927" Received: from fieedk001.ccr.corp.intel.com ([10.239.33.114]) by orsmga004.jf.intel.com with ESMTP; 12 Mar 2020 19:53:38 -0700 From: "Gao, Zhichao" To: devel@edk2.groups.io Cc: Ray Ni Subject: [edk2-staging/Smbios34] ShellPkg/SmbiosView: Add DDR5 support Date: Fri, 13 Mar 2020 10:53:36 +0800 Message-Id: <20200313025336.4948-1-zhichao.gao@intel.com> X-Mailer: git-send-email 2.21.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2352 Refer to SMBIOS 3.4 spec, add new memory device type - DDR5 and LPDDR5 support for the shell command "smbiosview". Cc: Ray Ni Signed-off-by: Zhichao Gao --- .../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 b80e16d56a..17a2a89d51 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c @@ -2550,6 +2550,14 @@ TABLE_ITEM MemoryDeviceTypeTable[] = { { MemoryTypeHBM2, L" HBM2 (High Bandwidth Memory Generation 2)" + }, + { + MemoryTypeDdr5, + L" DDR5" + }, + { + MemoryTypeLpddr5, + L" LPDDR5" } }; -- 2.21.0.windows.1