Merge pull request #1530 from ashwinyes/develop_20180419_Tx2AutoDetect

ARM64: Enable Auto Detection of ThunderX2T99
This commit is contained in:
Martin Kroeker
2018-04-19 14:10:57 +02:00
committed by GitHub

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;
}