aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel
diff options
context:
space:
mode:
authorLen Brown <len.brown@intel.com>2016-06-17 01:22:50 -0400
committerIngo Molnar <mingo@kernel.org>2016-07-11 15:30:12 -0400
commit02c0cd2dcf7fdc47d054b855b148ea8b82dbb7eb (patch)
treec7ef2757b0f34e1bec2f0058a9446e8308f85253 /arch/x86/kernel
parent6fcb41cdaee5056c96de88ee095bddd27a7697de (diff)
x86/tsc_msr: Remove irqoff around MSR-based TSC enumeration
Remove the irqoff/irqon around MSR-based TSC enumeration, as it is not necessary. Also rename: try_msr_calibrate_tsc() to cpu_khz_from_msr(), as that better describes what the routine does. Signed-off-by: Len Brown <len.brown@intel.com> Reviewed-by: Thomas Gleixner <tglx@linutronix.de> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/r/a6b5c3ecd3b068175d2309599ab28163fc34215e.1466138954.git.len.brown@intel.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r--arch/x86/kernel/tsc.c5
-rw-r--r--arch/x86/kernel/tsc_msr.c2
2 files changed, 2 insertions, 5 deletions
diff --git a/arch/x86/kernel/tsc.c b/arch/x86/kernel/tsc.c
index 38ba6de56ede..35a3976c19cc 100644
--- a/arch/x86/kernel/tsc.c
+++ b/arch/x86/kernel/tsc.c
@@ -674,10 +674,7 @@ unsigned long native_calibrate_tsc(void)
674 unsigned long flags, latch, ms, fast_calibrate; 674 unsigned long flags, latch, ms, fast_calibrate;
675 int hpet = is_hpet_enabled(), i, loopmin; 675 int hpet = is_hpet_enabled(), i, loopmin;
676 676
677 /* Calibrate TSC using MSR for Intel Atom SoCs */ 677 fast_calibrate = cpu_khz_from_msr();
678 local_irq_save(flags);
679 fast_calibrate = try_msr_calibrate_tsc();
680 local_irq_restore(flags);
681 if (fast_calibrate) 678 if (fast_calibrate)
682 return fast_calibrate; 679 return fast_calibrate;
683 680
diff --git a/arch/x86/kernel/tsc_msr.c b/arch/x86/kernel/tsc_msr.c
index 65b3d8cb8325..0fe720d64fef 100644
--- a/arch/x86/kernel/tsc_msr.c
+++ b/arch/x86/kernel/tsc_msr.c
@@ -68,7 +68,7 @@ static int match_cpu(u8 family, u8 model)
68 * Set global "lapic_timer_frequency" to bus_clock_cycles/jiffy 68 * Set global "lapic_timer_frequency" to bus_clock_cycles/jiffy
69 * Return processor base frequency in KHz, or 0 on failure. 69 * Return processor base frequency in KHz, or 0 on failure.
70 */ 70 */
71unsigned long try_msr_calibrate_tsc(void) 71unsigned long cpu_khz_from_msr(void)
72{ 72{
73 u32 lo, hi, ratio, freq_id, freq; 73 u32 lo, hi, ratio, freq_id, freq;
74 unsigned long res; 74 unsigned long res;