소스 검색

x86: Move tsc_init to late_time_init

We do not need the TSC before late_time_init. Move the tsc_init to the
late time init code so we can also utilize HPET for calibration (which
we claimed to do but never did except in some older kernel
version). This also helps Moorestown to calibrate the TSC with the
AHBT timer which needs to be initialized in late_time_init like HPET.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Thomas Gleixner 16 년 전
부모
커밋
dd0a70c8f9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      arch/x86/kernel/time.c

+ 1 - 1
arch/x86/kernel/time.c

@@ -108,6 +108,7 @@ void __init hpet_time_init(void)
 static void x86_late_time_init(void)
 static void x86_late_time_init(void)
 {
 {
 	x86_init.timers.timer_init();
 	x86_init.timers.timer_init();
+	tsc_init();
 }
 }
 
 
 /*
 /*
@@ -116,6 +117,5 @@ static void x86_late_time_init(void)
  */
  */
 void __init time_init(void)
 void __init time_init(void)
 {
 {
-	tsc_init();
 	late_time_init = x86_late_time_init;
 	late_time_init = x86_late_time_init;
 }
 }