From 0ec33398b40f949cb3aaeed33fab94faf3fa0912 Mon Sep 17 00:00:00 2001 From: Rebecca Cran Date: Wed, 28 Oct 2020 01:29:29 +0800 Subject: [PATCH] ShellPkg: Add ARM64 SoC ID to Processor Characteristics in smbiosview SMBIOS 3.4.0 defines bit 9 of the Type 4 table Processor Characteristics field to be the ARM64 SoC ID support. Add support for it to the smbiosview command. Signed-off-by: Rebecca Cran Reviewed-by: Zhichao Gao Reviewed-by: Liming Gao --- .../UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c index 17a2a89d51..d0796a0e51 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c @@ -624,6 +624,10 @@ TABLE_ITEM ProcessorCharacteristicsTable[] = { { 8, L" 128-bit Capable" + }, + { + 9, + L" ARM64 SoC ID" } }; -- 2.39.2