summaryrefslogtreecommitdiffstats
path: root/ShellPkg
diff options
context:
space:
mode:
authorRebecca Cran <rebecca@nuviainc.com>2020-10-28 01:29:29 +0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2020-10-30 01:39:30 +0000
commit0ec33398b40f949cb3aaeed33fab94faf3fa0912 (patch)
tree4f88556bef975d2d50a6eb6ab8209757507498b0 /ShellPkg
parenta46e4738f5b8330effa07610faf1f04e5f2ba66c (diff)
downloadedk2-0ec33398b40f949cb3aaeed33fab94faf3fa0912.tar.gz
edk2-0ec33398b40f949cb3aaeed33fab94faf3fa0912.tar.bz2
edk2-0ec33398b40f949cb3aaeed33fab94faf3fa0912.zip
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 <rebecca@nuviainc.com> Reviewed-by: Zhichao Gao <zhichao.gao@intel.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
Diffstat (limited to 'ShellPkg')
-rw-r--r--ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c4
1 files changed, 4 insertions, 0 deletions
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"
}
};