ShellPkg/SmbiosView: Display extended memory info in smbiosview -t 17

REF:https://bugzilla.tianocore.org/show_bug.cgi?id=4014

If Configured Memory Speed is 65,535 MT/s or greater,
and the actual speed is stored in the Extended Configured Memory Speed
field. but current Smbiosview have no this logic.

Signed-off-by: Shengfengx Xue <shengfengx.xue@intel.com>
This commit is contained in:
Shengfengx Xue 2022-08-06 10:02:13 +08:00 committed by mergify[bot]
parent bd06717863
commit 74f44d920a
1 changed files with 5 additions and 0 deletions

View File

@ -878,6 +878,11 @@ SmbiosPrintStructure (
}
}
if (AE_SMBIOS_VERSION (0x3, 0x3) && (Struct->Hdr->Length > 0x54)) {
PRINT_STRUCT_VALUE_H (Struct, Type17, ExtendedSpeed);
PRINT_STRUCT_VALUE_H (Struct, Type17, ExtendedConfiguredMemorySpeed);
}
break;
//