From 094ea67748567e26d7091a4d537f3e984c8ebde9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Sun, 27 Jun 2021 14:23:25 +0200 Subject: [PATCH] intel_pstates: disable Atom Silvermont and Airmont CPUs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit which need special support. Change-Id: I576f6b78dfd4d9213a7da073adf4c664aeea18b4 Reviewed-on: https://review.haiku-os.org/c/haiku/+/4120 Tested-by: Commit checker robot Reviewed-by: Jérôme Duval --- .../kernel/power/cpufreq/intel_pstates/intel_pstates.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/add-ons/kernel/power/cpufreq/intel_pstates/intel_pstates.cpp b/src/add-ons/kernel/power/cpufreq/intel_pstates/intel_pstates.cpp index 49e33121c5..a3e50aa661 100644 --- a/src/add-ons/kernel/power/cpufreq/intel_pstates/intel_pstates.cpp +++ b/src/add-ons/kernel/power/cpufreq/intel_pstates/intel_pstates.cpp @@ -163,10 +163,11 @@ is_cpu_model_supported(cpu_ent* cpu) return true; const uint8 kSupportedFamily6Models[] = { - 0x2a, 0x2d, 0x37, 0x3a, 0x3c, 0x3d, 0x3e, 0x3f, 0x45, 0x46, 0x47, 0x4a, - 0x4c, 0x4d, 0x4e, 0x4f, 0x55, 0x56, 0x57, 0x5a, 0x5c, 0x5e, 0x5f, 0x75, + 0x2a, 0x2d, 0x3a, 0x3c, 0x3d, 0x3e, 0x3f, 0x45, 0x46, 0x47, 0x4a, + 0x4d, 0x4e, 0x4f, 0x55, 0x56, 0x57, 0x5a, 0x5c, 0x5e, 0x5f, 0x75, 0x7a, 0x85 }; + /* TODO: support Atom Silvermont and Airmont: 0x37, 0x4c */ const int kSupportedFamily6ModelsCount = sizeof(kSupportedFamily6Models) / sizeof(uint8);