From 4a1d1e33b56beccfb70d4f10e4ea1a5b91a5af2f Mon Sep 17 00:00:00 2001 From: Jonathan Thackray Date: Thu, 27 Nov 2025 16:54:40 +0000 Subject: [PATCH] lscpu: Add a few missing Arm CPU identifiers --- sys-utils/lscpu-arm.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sys-utils/lscpu-arm.c b/sys-utils/lscpu-arm.c index b5cdd69a2..563ececfd 100644 --- a/sys-utils/lscpu-arm.c +++ b/sys-utils/lscpu-arm.c @@ -23,6 +23,9 @@ struct id_part { }; static const struct id_part arm_part[] = { + { 0xb36, "ARM1136j-s" }, + { 0xb56, "ARM1156t2-s" }, + { 0xb76, "ARM1176jz-s" }, { 0x810, "ARM810" }, { 0x920, "ARM920" }, { 0x922, "ARM922" }, @@ -69,10 +72,12 @@ static const struct id_part arm_part[] = { { 0xd0d, "Cortex-A77" }, { 0xd0e, "Cortex-A76AE" }, { 0xd13, "Cortex-R52" }, + { 0xd14, "Cortex-R82AE" }, { 0xd15, "Cortex-R82" }, { 0xd16, "Cortex-R52+" }, { 0xd20, "Cortex-M23" }, { 0xd21, "Cortex-M33" }, + { 0xd24, "Cortex-M52" }, { 0xd22, "Cortex-M55" }, { 0xd23, "Cortex-M85" }, { 0xd40, "Neoverse-V1" }, -- 2.47.3