From: Jeremy Linton Date: Tue, 10 Nov 2020 16:05:04 +0000 (-0600) Subject: lscpu: Even more Arm part numbers X-Git-Tag: v2.37-rc1~294 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dbc27723057544f56e70a9c84202dc7053518556;p=thirdparty%2Futil-linux.git 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 --- diff --git a/sys-utils/lscpu-arm.c b/sys-utils/lscpu-arm.c index 5611aacb73..73c8b45f32 100644 --- a/sys-utils/lscpu-arm.c +++ b/sys-utils/lscpu-arm.c @@ -67,16 +67,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" }, };