blob: 51a713e33a9ee8d590e4729657521601588a6a8b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _ASMi386_TIMER_H
2#define _ASMi386_TIMER_H
3#include <linux/init.h>
Shaohua Lic3c433e2005-09-03 15:57:07 -07004#include <linux/pm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#define TICK_SIZE (tick_nsec / 1000)
Zachary Amsden6cb9a832007-03-05 00:30:35 -08007
Linus Torvalds1da177e2005-04-16 15:20:36 -07008void setup_pit_timer(void);
Zachary Amsden6cb9a832007-03-05 00:30:35 -08009unsigned long long native_sched_clock(void);
Zachary Amsden1182d852007-03-05 00:30:36 -080010unsigned long native_calculate_cpu_khz(void);
Zachary Amsden6cb9a832007-03-05 00:30:35 -080011
Linus Torvalds1da177e2005-04-16 15:20:36 -070012extern int timer_ack;
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +010013extern int no_timer_check;
Zachary Amsdenbbab4f32007-02-13 13:26:21 +010014extern int no_sync_cmos_clock;
Dave Jonesc5d28fb2005-05-31 19:03:46 -070015extern int recalibrate_cpu_khz(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Zachary Amsden6cb9a832007-03-05 00:30:35 -080017#ifndef CONFIG_PARAVIRT
Zachary Amsden1182d852007-03-05 00:30:36 -080018#define calculate_cpu_khz() native_calculate_cpu_khz()
Zachary Amsden6cb9a832007-03-05 00:30:35 -080019#endif
20
Jeremy Fitzhardinge688340e2007-07-17 18:37:04 -070021/* Accellerators for sched_clock()
22 * convert from cycles(64bits) => nanoseconds (64bits)
23 * basic equation:
24 * ns = cycles / (freq / ns_per_sec)
25 * ns = cycles * (ns_per_sec / freq)
26 * ns = cycles * (10^9 / (cpu_khz * 10^3))
27 * ns = cycles * (10^6 / cpu_khz)
28 *
29 * Then we use scaling math (suggested by george@mvista.com) to get:
30 * ns = cycles * (10^6 * SC / cpu_khz) / SC
31 * ns = cycles * cyc2ns_scale / SC
32 *
33 * And since SC is a constant power of two, we can convert the div
34 * into a shift.
35 *
36 * We can use khz divisor instead of mhz to keep a better percision, since
37 * cyc2ns_scale is limited to 10^6 * 2^10, which fits in 32 bits.
38 * (mathieu.desnoyers@polymtl.ca)
39 *
40 * -johnstul@us.ibm.com "math is hard, lets go shopping!"
41 */
42extern unsigned long cyc2ns_scale __read_mostly;
43
44#define CYC2NS_SCALE_FACTOR 10 /* 2^10, carefully chosen */
45
46static inline unsigned long long cycles_2_ns(unsigned long long cyc)
47{
48 return (cyc * cyc2ns_scale) >> CYC2NS_SCALE_FACTOR;
49}
50
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#endif