summaryrefslogtreecommitdiffstats
path: root/sys-utils
diff options
context:
space:
mode:
authorJeremy Linton2019-05-16 19:10:17 +0200
committerJeremy Linton2019-05-16 19:10:17 +0200
commit8d124f0fc7c7acfec717935994bb877606d916ba (patch)
tree6f62e87b237a8a4048cbd352525cdffe0822d728 /sys-utils
parentMerge branch 'lscpu-output-fix' of https://github.com/kerolasa/util-linux (diff)
downloadkernel-qcow2-util-linux-8d124f0fc7c7acfec717935994bb877606d916ba.tar.gz
kernel-qcow2-util-linux-8d124f0fc7c7acfec717935994bb877606d916ba.tar.xz
kernel-qcow2-util-linux-8d124f0fc7c7acfec717935994bb877606d916ba.zip
lscpu: Add additional aarch64 models
ARM has released docs for Cortex-A76, Neoverse-N1 and Neoverse-E1. That means we know the midr partnums, so we can add them to the human readable model name table. Signed-off-by: Jeremy Linton <lintonrjeremy@gmail.com>
Diffstat (limited to 'sys-utils')
-rw-r--r--sys-utils/lscpu-arm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys-utils/lscpu-arm.c b/sys-utils/lscpu-arm.c
index 37b8f66f6..fd9ab3f47 100644
--- a/sys-utils/lscpu-arm.c
+++ b/sys-utils/lscpu-arm.c
@@ -70,9 +70,12 @@ static const struct id_part arm_part[] = {
{ 0xd08, "Cortex-A72" },
{ 0xd09, "Cortex-A73" },
{ 0xd0a, "Cortex-A75" },
+ { 0xd0b, "Cortex-A76" },
+ { 0xd0c, "Neoverse-N1" },
{ 0xd13, "Cortex-R52" },
{ 0xd20, "Cortex-M23" },
{ 0xd21, "Cortex-M33" },
+ { 0xd4a, "Neoverse-E1" },
{ -1, "unknown" },
};