From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by mx.groups.io with SMTP id smtpd.web10.30723.1602465663411739169 for ; Sun, 11 Oct 2020 18:21:04 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.31, mailfrom: zhichao.gao@intel.com) IronPort-SDR: 90mIV+emI8abMu0NBZ6B2nh887lKXf4WoF+SoVt3EanOylSucA/XShdvhv27EmuP9sX6A17Rgg 1obXgGb06Skg== X-IronPort-AV: E=McAfee;i="6000,8403,9771"; a="227323484" X-IronPort-AV: E=Sophos;i="5.77,365,1596524400"; d="scan'208";a="227323484" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Oct 2020 18:21:01 -0700 IronPort-SDR: hUIsmRYvSpHhFD0gVVWwWDuLmu364LNRiUt+Cn8FwgJO8nc7jt/ZQ3fCWNTq8z+lm789hoUZwz ReWIcc8xtAWQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,365,1596524400"; d="scan'208";a="345675053" Received: from fieedk001.ccr.corp.intel.com ([10.239.153.108]) by orsmga008.jf.intel.com with ESMTP; 11 Oct 2020 18:21:00 -0700 From: "Gao, Zhichao" To: devel@edk2.groups.io Cc: Ray Ni Subject: [PATCH] ShellPkg/SmbiosView: Add DDR5 support Date: Mon, 12 Oct 2020 09:20:51 +0800 Message-Id: <20201012012051.48448-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