Skip to content

Commit 9ecfa94

Browse files
authored
Add part numbers for A715 and X3 aliased to A710/X2
1 parent 6876360 commit 9ecfa94

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

cpuid_arm64.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,10 +202,14 @@ int detect(void)
202202
return CPU_CORTEXA510;
203203
else if (strstr(cpu_part, "0xd47"))
204204
return CPU_CORTEXA710;
205+
else if (strstr(cpu_part, "0xd4d")) //A715
206+
return CPU_CORTEXA710;
205207
else if (strstr(cpu_part, "0xd44"))
206208
return CPU_CORTEXX1;
207209
else if (strstr(cpu_part, "0xd4c"))
208210
return CPU_CORTEXX2;
211+
else if (strstr(cpu_part, "0xd4e")) //X3
212+
return CPU_CORTEXX2;
209213
}
210214
// Qualcomm
211215
else if (strstr(cpu_implementer, "0x51") && strstr(cpu_part, "0xc00"))

0 commit comments

Comments
 (0)