1 #include <linux/sched.h>
2 #include <linux/clocksource.h>
3 #include <linux/workqueue.h>
4 #include <linux/cpufreq.h>
5 #include <linux/jiffies.h>
6 #include <linux/init.h>
12 #include <asm/timer.h>
14 #include "mach_timer.h"
16 static int tsc_enabled;
19 * On some systems the TSC frequency does not
20 * change with the cpu frequency. So we need
21 * an extra value to store the TSC freq
24 EXPORT_SYMBOL_GPL(tsc_khz);
29 static int __init tsc_setup(char *str)
31 printk(KERN_WARNING "notsc: Kernel compiled with CONFIG_X86_TSC, "
32 "cannot disable TSC.\n");
37 * disable flag for tsc. Takes effect by clearing the TSC cpu flag
40 static int __init tsc_setup(char *str)
48 __setup("notsc", tsc_setup);
51 * code to mark and check if the TSC is unstable
52 * due to cpufreq or due to unsynced TSCs
54 static int tsc_unstable;
56 int check_tsc_unstable(void)
60 EXPORT_SYMBOL_GPL(check_tsc_unstable);
62 /* Accelerators for sched_clock()
63 * convert from cycles(64bits) => nanoseconds (64bits)
65 * ns = cycles / (freq / ns_per_sec)
66 * ns = cycles * (ns_per_sec / freq)
67 * ns = cycles * (10^9 / (cpu_khz * 10^3))
68 * ns = cycles * (10^6 / cpu_khz)
70 * Then we use scaling math (suggested by george@mvista.com) to get:
71 * ns = cycles * (10^6 * SC / cpu_khz) / SC
72 * ns = cycles * cyc2ns_scale / SC
74 * And since SC is a constant power of two, we can convert the div
77 * We can use khz divisor instead of mhz to keep a better precision, since
78 * cyc2ns_scale is limited to 10^6 * 2^10, which fits in 32 bits.
79 * (mathieu.desnoyers@polymtl.ca)
81 * -johnstul@us.ibm.com "math is hard, lets go shopping!"
83 unsigned long cyc2ns_scale __read_mostly;
85 #define CYC2NS_SCALE_FACTOR 10 /* 2^10, carefully chosen */
87 static inline void set_cyc2ns_scale(unsigned long cpu_khz)
89 cyc2ns_scale = (1000000 << CYC2NS_SCALE_FACTOR)/cpu_khz;
93 * Scheduler clock - returns current time in nanosec units.
95 unsigned long long native_sched_clock(void)
97 unsigned long long this_offset;
100 * Fall back to jiffies if there's no TSC available:
101 * ( But note that we still use it if the TSC is marked
102 * unstable. We do this because unlike Time Of Day,
103 * the scheduler clock tolerates small errors and it's
104 * very important for it to be as fast as the platform
107 if (unlikely(!tsc_enabled && !tsc_unstable))
108 /* No locking but a rare wrong value is not a big deal: */
109 return (jiffies_64 - INITIAL_JIFFIES) * (1000000000 / HZ);
111 /* read the Time Stamp Counter: */
112 rdtscll(this_offset);
114 /* return the value in ns */
115 return cycles_2_ns(this_offset);
118 /* We need to define a real function for sched_clock, to override the
119 weak default version */
120 #ifdef CONFIG_PARAVIRT
121 unsigned long long sched_clock(void)
123 return paravirt_sched_clock();
126 unsigned long long sched_clock(void)
127 __attribute__((alias("native_sched_clock")));
130 unsigned long native_calculate_cpu_khz(void)
132 unsigned long long start, end;
134 u64 delta64 = (u64)ULLONG_MAX;
138 local_irq_save(flags);
140 /* run 3 times to ensure the cache is warm and to get an accurate reading */
141 for (i = 0; i < 3; i++) {
142 mach_prepare_counter();
144 mach_countup(&count);
148 * Error: ECTCNEVERSET
149 * The CTC wasn't reliable: we got a hit on the very first read,
150 * or the CPU was so fast/slow that the quotient wouldn't fit in
156 /* cpu freq too slow: */
157 if ((end - start) <= CALIBRATE_TIME_MSEC)
161 * We want the minimum time of all runs in case one of them
162 * is inaccurate due to SMI or other delay
164 delta64 = min(delta64, (end - start));
167 /* cpu freq too fast (or every run was bad): */
168 if (delta64 > (1ULL<<32))
171 delta64 += CALIBRATE_TIME_MSEC/2; /* round for do_div */
172 do_div(delta64,CALIBRATE_TIME_MSEC);
174 local_irq_restore(flags);
175 return (unsigned long)delta64;
177 local_irq_restore(flags);
181 int recalibrate_cpu_khz(void)
184 unsigned long cpu_khz_old = cpu_khz;
187 cpu_khz = calculate_cpu_khz();
189 cpu_data(0).loops_per_jiffy =
190 cpufreq_scale(cpu_data(0).loops_per_jiffy,
191 cpu_khz_old, cpu_khz);
200 EXPORT_SYMBOL(recalibrate_cpu_khz);
202 #ifdef CONFIG_CPU_FREQ
205 * if the CPU frequency is scaled, TSC-based delays will need a different
206 * loops_per_jiffy value to function properly.
208 static unsigned int ref_freq = 0;
209 static unsigned long loops_per_jiffy_ref = 0;
210 static unsigned long cpu_khz_ref = 0;
213 time_cpufreq_notifier(struct notifier_block *nb, unsigned long val, void *data)
215 struct cpufreq_freqs *freq = data;
219 ref_freq = freq->new;
222 ref_freq = freq->old;
223 loops_per_jiffy_ref = cpu_data(freq->cpu).loops_per_jiffy;
224 cpu_khz_ref = cpu_khz;
227 if ((val == CPUFREQ_PRECHANGE && freq->old < freq->new) ||
228 (val == CPUFREQ_POSTCHANGE && freq->old > freq->new) ||
229 (val == CPUFREQ_RESUMECHANGE)) {
230 if (!(freq->flags & CPUFREQ_CONST_LOOPS))
231 cpu_data(freq->cpu).loops_per_jiffy =
232 cpufreq_scale(loops_per_jiffy_ref,
233 ref_freq, freq->new);
237 if (num_online_cpus() == 1)
238 cpu_khz = cpufreq_scale(cpu_khz_ref,
239 ref_freq, freq->new);
240 if (!(freq->flags & CPUFREQ_CONST_LOOPS)) {
242 set_cyc2ns_scale(cpu_khz);
244 * TSC based sched_clock turns
247 mark_tsc_unstable("cpufreq changes");
255 static struct notifier_block time_cpufreq_notifier_block = {
256 .notifier_call = time_cpufreq_notifier
259 static int __init cpufreq_tsc(void)
261 return cpufreq_register_notifier(&time_cpufreq_notifier_block,
262 CPUFREQ_TRANSITION_NOTIFIER);
264 core_initcall(cpufreq_tsc);
268 /* clock source code */
270 static unsigned long current_tsc_khz = 0;
272 static cycle_t read_tsc(void)
281 static struct clocksource clocksource_tsc = {
285 .mask = CLOCKSOURCE_MASK(64),
286 .mult = 0, /* to be set */
288 .flags = CLOCK_SOURCE_IS_CONTINUOUS |
289 CLOCK_SOURCE_MUST_VERIFY,
292 void mark_tsc_unstable(char *reason)
297 printk("Marking TSC unstable due to: %s.\n", reason);
298 /* Can be called before registration */
299 if (clocksource_tsc.mult)
300 clocksource_change_rating(&clocksource_tsc, 0);
302 clocksource_tsc.rating = 0;
305 EXPORT_SYMBOL_GPL(mark_tsc_unstable);
307 static int __init dmi_mark_tsc_unstable(const struct dmi_system_id *d)
309 printk(KERN_NOTICE "%s detected: marking TSC unstable.\n",
315 /* List of systems that have known TSC problems */
316 static struct dmi_system_id __initdata bad_tsc_dmi_table[] = {
318 .callback = dmi_mark_tsc_unstable,
319 .ident = "IBM Thinkpad 380XD",
321 DMI_MATCH(DMI_BOARD_VENDOR, "IBM"),
322 DMI_MATCH(DMI_BOARD_NAME, "2635FA0"),
329 * Make an educated guess if the TSC is trustworthy and synchronized
332 __cpuinit int unsynchronized_tsc(void)
334 if (!cpu_has_tsc || tsc_unstable)
337 * Intel systems are normally all synchronized.
338 * Exceptions must mark TSC as unstable:
340 if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL) {
341 /* assume multi socket systems are not synchronized: */
342 if (num_possible_cpus() > 1)
349 * Geode_LX - the OLPC CPU has a possibly a very reliable TSC
351 #ifdef CONFIG_MGEODE_LX
352 /* RTSC counts during suspend */
353 #define RTSC_SUSP 0x100
355 static void __init check_geode_tsc_reliable(void)
357 unsigned long res_low, res_high;
359 rdmsr_safe(MSR_GEODE_BUSCONT_CONF0, &res_low, &res_high);
360 if (res_low & RTSC_SUSP)
361 clocksource_tsc.flags &= ~CLOCK_SOURCE_MUST_VERIFY;
364 static inline void check_geode_tsc_reliable(void) { }
368 void __init tsc_init(void)
370 if (!cpu_has_tsc || tsc_disable)
373 cpu_khz = calculate_cpu_khz();
379 printk("Detected %lu.%03lu MHz processor.\n",
380 (unsigned long)cpu_khz / 1000,
381 (unsigned long)cpu_khz % 1000);
383 set_cyc2ns_scale(cpu_khz);
386 /* Check and install the TSC clocksource */
387 dmi_check_system(bad_tsc_dmi_table);
389 unsynchronized_tsc();
390 check_geode_tsc_reliable();
391 current_tsc_khz = tsc_khz;
392 clocksource_tsc.mult = clocksource_khz2mult(current_tsc_khz,
393 clocksource_tsc.shift);
394 /* lower the rating if we already know its unstable: */
395 if (check_tsc_unstable()) {
396 clocksource_tsc.rating = 0;
397 clocksource_tsc.flags &= ~CLOCK_SOURCE_IS_CONTINUOUS;
401 clocksource_register(&clocksource_tsc);
407 * Set the tsc_disable flag if there's no TSC support, this
408 * makes it a fast flag for the kernel to see whether it
409 * should be using the TSC.