2 * check TSC synchronization.
4 * Copyright (C) 2006, Red Hat, Inc., Ingo Molnar
6 * We check whether all boot CPUs have their TSC's synchronized,
7 * print a warning if not and turn off the TSC clock-source.
9 * The warp-check is point-to-point between two CPUs, the CPU
10 * initiating the bootup is the 'source CPU', the freshly booting
11 * CPU is the 'target CPU'.
13 * Only two CPUs may participate - they can enter in any order.
14 * ( The serial nature of the boot logic and the CPU hotplug lock
15 * protects against more than 2 CPUs entering this code. )
17 #include <linux/spinlock.h>
18 #include <linux/kernel.h>
19 #include <linux/init.h>
20 #include <linux/smp.h>
21 #include <linux/nmi.h>
25 * Entry/exit counters that make sure that both CPUs
26 * run the measurement code at once:
28 static __cpuinitdata atomic_t start_count
;
29 static __cpuinitdata atomic_t stop_count
;
32 * We use a raw spinlock in this exceptional case, because
33 * we want to have the fastest, inlined, non-debug version
34 * of a critical section, to be able to prove TSC time-warps:
36 static __cpuinitdata arch_spinlock_t sync_lock
= __ARCH_SPIN_LOCK_UNLOCKED
;
38 static __cpuinitdata cycles_t last_tsc
;
39 static __cpuinitdata cycles_t max_warp
;
40 static __cpuinitdata
int nr_warps
;
43 * TSC-warp measurement loop running on both CPUs:
45 static __cpuinit
void check_tsc_warp(void)
47 cycles_t start
, now
, prev
, end
;
54 * The measurement runs for 20 msecs:
56 end
= start
+ tsc_khz
* 20ULL;
61 * We take the global lock, measure TSC, save the
62 * previous TSC that was measured (possibly on
63 * another CPU) and update the previous TSC timestamp.
65 arch_spin_lock(&sync_lock
);
71 arch_spin_unlock(&sync_lock
);
74 * Be nice every now and then (and also check whether
75 * measurement is done [we also insert a 10 million
76 * loops safety exit, so we dont lock up in case the
77 * TSC readout is totally broken]):
79 if (unlikely(!(i
& 7))) {
80 if (now
> end
|| i
> 10000000)
86 * Outside the critical section we can now see whether
87 * we saw a time-warp of the TSC going backwards:
89 if (unlikely(prev
> now
)) {
90 arch_spin_lock(&sync_lock
);
91 max_warp
= max(max_warp
, prev
- now
);
93 arch_spin_unlock(&sync_lock
);
97 "Warning: zero tsc calibration delta: %Ld [max: %Ld]\n",
98 now
-start
, end
-start
);
102 * Source CPU calls into this - it waits for the freshly booted
103 * target CPU to arrive and then starts the measurement:
105 void __cpuinit
check_tsc_sync_source(int cpu
)
110 * No need to check if we already know that the TSC is not
113 if (unsynchronized_tsc())
116 if (boot_cpu_has(X86_FEATURE_TSC_RELIABLE
)) {
117 if (cpu
== (nr_cpu_ids
-1) || system_state
!= SYSTEM_BOOTING
)
119 "Skipped synchronization checks as TSC is reliable.\n");
124 * Reset it - in case this is a second bootup:
126 atomic_set(&stop_count
, 0);
129 * Wait for the target to arrive:
131 while (atomic_read(&start_count
) != cpus
-1)
134 * Trigger the target to continue into the measurement too:
136 atomic_inc(&start_count
);
140 while (atomic_read(&stop_count
) != cpus
-1)
144 pr_warning("TSC synchronization [CPU#%d -> CPU#%d]:\n",
145 smp_processor_id(), cpu
);
146 pr_warning("Measured %Ld cycles TSC warp between CPUs, "
147 "turning off TSC clock.\n", max_warp
);
148 mark_tsc_unstable("check_tsc_sync_source failed");
150 pr_debug("TSC synchronization [CPU#%d -> CPU#%d]: passed\n",
151 smp_processor_id(), cpu
);
155 * Reset it - just in case we boot another CPU later:
157 atomic_set(&start_count
, 0);
163 * Let the target continue with the bootup:
165 atomic_inc(&stop_count
);
169 * Freshly booted CPUs call into this:
171 void __cpuinit
check_tsc_sync_target(void)
175 if (unsynchronized_tsc() || boot_cpu_has(X86_FEATURE_TSC_RELIABLE
))
179 * Register this CPU's participation and wait for the
180 * source CPU to start the measurement:
182 atomic_inc(&start_count
);
183 while (atomic_read(&start_count
) != cpus
)
191 atomic_inc(&stop_count
);
194 * Wait for the source CPU to print stuff:
196 while (atomic_read(&stop_count
) != cpus
)