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.916.1581055680636325950 for ; Thu, 06 Feb 2020 22:08:00 -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 fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Feb 2020 22:07:55 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,411,1574150400"; d="scan'208";a="255325233" Received: from gaozhic-mobl.ccr.corp.intel.com ([10.255.29.191]) by fmsmga004.fm.intel.com with ESMTP; 06 Feb 2020 22:07:54 -0800 From: "Gao, Zhichao" To: devel@edk2.groups.io Cc: Matthew Carlson , Michael D Kinney , Liming Gao Subject: [PATCH] MdePkg/SmBios.h: Add two additional DWORD for smbios 3.3.0 type17 Date: Fri, 7 Feb 2020 14:07:18 +0800 Message-Id: <20200207060718.22384-1-zhichao.gao@intel.com> X-Mailer: git-send-email 2.16.2.windows.1 From: Matthew Carlson REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2482 Refer to DSP0134_3.3.0.pdf, there are two additional DWORD added for type 17. One is "Extended Speed", the other is "Extended Configured Memory Speed". The lack of these field may cause strange error i some operating systems. Cc: Michael D Kinney Cc: Liming Gao Signed-off-by: Zhichao Gao --- MdePkg/Include/IndustryStandard/SmBios.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/MdePkg/Include/IndustryStandard/SmBios.h b/MdePkg/Include/IndustryStandard/SmBios.h index 8b3c4d7ba9..b5401599db 100644 --- a/MdePkg/Include/IndustryStandard/SmBios.h +++ b/MdePkg/Include/IndustryStandard/SmBios.h @@ -1,7 +1,7 @@ /** @file Industry Standard Definitions of SMBIOS Table Specification v3.3.0. -Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.
+Copyright (c) 2006 - 2020, Intel Corporation. All rights reserved.
(C) Copyright 2015-2017 Hewlett Packard Enterprise Development LP
(C) Copyright 2015 - 2019 Hewlett Packard Enterprise Development LP
SPDX-License-Identifier: BSD-2-Clause-Patent @@ -1843,6 +1843,11 @@ typedef struct { UINT64 VolatileSize; UINT64 CacheSize; UINT64 LogicalSize; + // + // Add for smbios 3.3.0 + // + UINT32 ExtendedSpeed; + UINT32 ExtendedConfiguredMemorySpeed; } SMBIOS_TABLE_TYPE17; /// -- 2.16.2.windows.1