mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] x86, smpboot: Disable frequency invariance when it's unsupported
@ 2020-04-16  2:12 Like Xu
  0 siblings, 0 replies; 5+ messages in thread
From: Like Xu @ 2020-04-16  2:12 UTC (permalink / raw)
  To: Giovanni Gherdovich; +Cc: linux-kernel, Like Xu

On the Intel SNR processors such as "Intel Atom(R) C6562", the
turbo_freq for 4C turbo may be zero which causes a divide by zero
exception and blocks the boot process when arch_scale_freq_tick().

When one of the preset base_freq or turbo_freq is meaningless,
we may disable frequency invariance.

Fixes: 1567c3e3467c ("x86, sched: Add support for frequency invariance")
Signed-off-by: Like Xu <like.xu@linux.intel.com>
---
 arch/x86/kernel/smpboot.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
index fe3ab9632f3b..741367ce4d14 100644
--- a/arch/x86/kernel/smpboot.c
+++ b/arch/x86/kernel/smpboot.c
@@ -1958,6 +1958,9 @@ static bool core_set_max_freq_ratio(u64 *base_freq, u64 *turbo_freq)
 	*base_freq = (*base_freq >> 8) & 0xFF;      /* max P state */
 	*turbo_freq = (*turbo_freq >> 24) & 0xFF;   /* 4C turbo    */
 
+	if (*turbo_freq == 0 || *base_freq == 0)
+		return false;
+
 	return true;
 }
 
-- 
2.21.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-04-16 18:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20200416020700.167294-1-like.xu@linux.intel.com>
     [not found] ` <1587017284.32139.20.camel@suse.cz>
2020-04-16  7:01   ` [PATCH] x86, smpboot: Disable frequency invariance when it's unsupported Like Xu
2020-04-16  8:40     ` Giovanni Gherdovich
2020-04-16 12:54       ` Like Xu
2020-04-16 18:09         ` Giovanni Gherdovich
2020-04-16  2:12 Like Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome