Skip to content

Commit 1ef6319

Browse files
authored
Merge pull request #5645 from martin-frbg/cortex925-cpuid
Add CPU autodetection for Arm Cortex X925/A725
2 parents 1690982 + 387be46 commit 1ef6319

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

cpuid_arm64.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,8 @@ int detect(void)
323323
return CPU_CORTEXX2;
324324
else if (strstr(cpu_part, "0xd4f")) //NVIDIA Grace et al.
325325
return CPU_NEOVERSEV2;
326+
else if (strstr(cpu_part, "0xd87") || strstr(cpu_part, "0xd85")) // X925/A725
327+
return CPU_NEOVERSEV2;
326328
else if (strstr(cpu_part, "0xd0b"))
327329
return CPU_CORTEXA76;
328330
}

0 commit comments

Comments
 (0)