@@ -15,6 +15,10 @@
#include <linux/tick.h>
#include <linux/sched/cpufreq.h>
+#ifdef CONFIG_X86
+#include <asm/cpu_device_id.h>
+#endif
+
#include "cpufreq_ondemand.h"
/* On-demand governor macros */
@@ -32,8 +36,7 @@ static unsigned int default_powersave_bias;
/*
* Not all CPUs want IO time to be accounted as busy; this depends on how
* efficient idling at a higher frequency/voltage is.
- * Pavel Machek says this is not so for various generations of AMD and old
- * Intel systems.
+ * Pavel Machek says this is not so for various generations of AMD.
* Mike Chan (android.com) claims this is also not true for ARM.
* Because of this, whitelist specific known (series) of CPUs by default, and
* leave all others up to the user.
@@ -42,11 +45,11 @@ static int should_io_be_busy(void)
{
#if defined(CONFIG_X86)
/*
- * For Intel, Core 2 (model 15) and later have an efficient idle.
+ * Starting with Family 6 consider all Intel CPUs to have an
+ * efficient idle.
*/
if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
- boot_cpu_data.x86 == 6 &&
- boot_cpu_data.x86_model >= 15)
+ boot_cpu_data.x86_vfm >= INTEL_PENTIUM_PRO)
return 1;
#endif
return 0;
should_io_be_busy() only considers certain family 6 CPUs as having efficient idling. However, Arjan (the original author) says that choice was due to the lack of testing done on the old systems. He suggests to consider all Intel processors as having efficient idle. Extend the check to all processors starting with family 6. Signed-off-by: Sohil Mehta <sohil.mehta@intel.com> --- drivers/cpufreq/cpufreq_ondemand.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-)