We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6876360 commit 9ecfa94Copy full SHA for 9ecfa94
1 file changed
cpuid_arm64.c
@@ -202,10 +202,14 @@ int detect(void)
202
return CPU_CORTEXA510;
203
else if (strstr(cpu_part, "0xd47"))
204
return CPU_CORTEXA710;
205
+ else if (strstr(cpu_part, "0xd4d")) //A715
206
+ return CPU_CORTEXA710;
207
else if (strstr(cpu_part, "0xd44"))
208
return CPU_CORTEXX1;
209
else if (strstr(cpu_part, "0xd4c"))
210
return CPU_CORTEXX2;
211
+ else if (strstr(cpu_part, "0xd4e")) //X3
212
+ return CPU_CORTEXX2;
213
}
214
// Qualcomm
215
else if (strstr(cpu_implementer, "0x51") && strstr(cpu_part, "0xc00"))
0 commit comments