Browse Source

ARM64: Enable Auto Detection of ThunderX2T99

tags/v0.3.0^2
Ashwin Sekhar T K 7 years ago
parent
commit
68a3c4fca6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cpuid_arm64.c

+ 1
- 1
cpuid_arm64.c View File

@@ -121,7 +121,7 @@ int detect(void)
return CPU_VULCAN;
else if (strstr(cpu_part, "0x0a1") && strstr(cpu_implementer, "0x43"))
return CPU_THUNDERX;
else if (strstr(cpu_part, "0xFFF") && strstr(cpu_implementer, "0x43")) /* TODO */
else if (strstr(cpu_part, "0x0af") && strstr(cpu_implementer, "0x43"))
return CPU_THUNDERX2T99;
}



Loading…
Cancel
Save