diff options
author | Srinivas Pandruvada <[email protected]> | 2018-02-12 11:50:47 -0800 |
---|---|---|
committer | Andy Shevchenko <[email protected]> | 2018-02-15 12:21:48 +0200 |
commit | 04e4e888558ebe5d9701e31bba61d4e256ab71a8 (patch) | |
tree | ef722c2cf320c24f5f8b408b01b823d1367e1586 | |
parent | b1ca80e4a23b91fc90545919dda90a32ec558663 (diff) |
platform/x86: intel_turbo_max_3: Remove restriction for HWP platforms
On systems supporting HWP (Hardware P-States) mode, we expected to
enumerate core priority via ACPI-CPPC tables. Unfortunately deployment of
TURBO 3.0 didn't use this method to show core priority. So users are not
able to utilize this feature in HWP mode.
So remove the loading restriction of this driver for HWP enabled systems.
Even if there are some systems, which are providing the core priority via
ACPI CPPC, this shouldn't cause any conflict as the source of priority
definition is same.
Signed-off-by: Srinivas Pandruvada <[email protected]>
Reported-and-tested-and-reviewed-by: Arjan van de Ven <[email protected]>
Signed-off-by: Andy Shevchenko <[email protected]>
-rw-r--r-- | drivers/platform/x86/intel_turbo_max_3.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/platform/x86/intel_turbo_max_3.c b/drivers/platform/x86/intel_turbo_max_3.c index d4ea01805879..a6d5aa0c3c47 100644 --- a/drivers/platform/x86/intel_turbo_max_3.c +++ b/drivers/platform/x86/intel_turbo_max_3.c @@ -138,9 +138,6 @@ static int __init itmt_legacy_init(void) if (!id) return -ENODEV; - if (boot_cpu_has(X86_FEATURE_HWP)) - return -ENODEV; - ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "platform/x86/turbo_max_3:online", itmt_legacy_cpu_online, NULL); |