1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
From: ThomasKaiser <ThomasKaiser@users.noreply.github.com>
Date: Thu, 30 Jun 2022 07:32:40 +0200
Subject: [PATCH 15/24] Add Makalu/Makalu-ELP (A715/X3)
Also fix names of A510/A710 cores
---
sys-utils/lscpu-arm.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/sys-utils/lscpu-arm.c b/sys-utils/lscpu-arm.c
index 57b4bba..30977cd 100644
--- a/sys-utils/lscpu-arm.c
+++ b/sys-utils/lscpu-arm.c
@@ -83,12 +83,14 @@ static const struct id_part arm_part[] = {
{ 0xd41, "Cortex-A78" },
{ 0xd42, "Cortex-A78AE" },
{ 0xd44, "Cortex-X1" },
- { 0xd46, "Cortex-510" },
- { 0xd47, "Cortex-710" },
+ { 0xd46, "Cortex-A510" },
+ { 0xd47, "Cortex-A710" },
{ 0xd48, "Cortex-X2" },
{ 0xd49, "Neoverse-N2" },
{ 0xd4a, "Neoverse-E1" },
{ 0xd4b, "Cortex-A78C" },
+ { 0xd4d, "Cortex-A715" },
+ { 0xd4e, "Cortex-X3" },
{ -1, "unknown" },
};
|