]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
lscpu: Add additional aarch64 models
authorJeremy Linton <lintonrjeremy@gmail.com>
Thu, 16 May 2019 17:10:17 +0000 (12:10 -0500)
committerJeremy Linton <lintonrjeremy@gmail.com>
Thu, 16 May 2019 17:10:17 +0000 (12:10 -0500)
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>
sys-utils/lscpu-arm.c

index 37b8f66f616005d175317d6521a0e870c3cc6135..fd9ab3f470d54a38ce181a4bef71fd38897d9855 100644 (file)
@@ -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" },
 };