From 8b09c243e1d91bbbb2fb4db616a2056ed9cb947c Mon Sep 17 00:00:00 2001 From: Jeremy Linton Date: Tue, 10 Nov 2020 10:05:04 -0600 Subject: [PATCH] lscpu: Even more Arm part numbers Over the past two years Arm has published further MIDR/part numbers on https://developer.arm.com/ip-products/processors/cortex-a. Lets sync the arm_part structure for A65, A76AE, A77 and A78*. Signed-off-by: Jeremy Linton --- sys-utils/lscpu-arm.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sys-utils/lscpu-arm.c b/sys-utils/lscpu-arm.c index c9997d0623..55699925a5 100644 --- a/sys-utils/lscpu-arm.c +++ b/sys-utils/lscpu-arm.c @@ -66,16 +66,22 @@ static const struct id_part arm_part[] = { { 0xd03, "Cortex-A53" }, { 0xd04, "Cortex-A35" }, { 0xd05, "Cortex-A55" }, + { 0xd06, "Cortex-A65" }, { 0xd07, "Cortex-A57" }, { 0xd08, "Cortex-A72" }, { 0xd09, "Cortex-A73" }, { 0xd0a, "Cortex-A75" }, { 0xd0b, "Cortex-A76" }, { 0xd0c, "Neoverse-N1" }, + { 0xd0d, "Cortex-A77" }, + { 0xd0e, "Cortex-A76AE" }, { 0xd13, "Cortex-R52" }, { 0xd20, "Cortex-M23" }, { 0xd21, "Cortex-M33" }, + { 0xd41, "Cortex-A78" }, + { 0xd42, "Cortex-A78AE" }, { 0xd4a, "Neoverse-E1" }, + { 0xd4b, "Cortex-A78C" }, { -1, "unknown" }, }; -- 2.47.3