From 68a3c4fca60461f69fbec2da80454fde022b1adc Mon Sep 17 00:00:00 2001 From: Ashwin Sekhar T K Date: Thu, 19 Apr 2018 09:05:25 +0000 Subject: [PATCH] ARM64: Enable Auto Detection of ThunderX2T99 --- cpuid_arm64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpuid_arm64.c b/cpuid_arm64.c index bd7fb7f2d..a42346c88 100644 --- a/cpuid_arm64.c +++ b/cpuid_arm64.c @@ -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; }