timer.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #ifndef _ASMi386_TIMER_H
  2. #define _ASMi386_TIMER_H
  3. #include <linux/init.h>
  4. #include <linux/pm.h>
  5. #define TICK_SIZE (tick_nsec / 1000)
  6. unsigned long long native_sched_clock(void);
  7. unsigned long native_calculate_cpu_khz(void);
  8. extern int timer_ack;
  9. extern int no_timer_check;
  10. extern int recalibrate_cpu_khz(void);
  11. #ifndef CONFIG_PARAVIRT
  12. #define calculate_cpu_khz() native_calculate_cpu_khz()
  13. #endif
  14. /* Accellerators for sched_clock()
  15. * convert from cycles(64bits) => nanoseconds (64bits)
  16. * basic equation:
  17. * ns = cycles / (freq / ns_per_sec)
  18. * ns = cycles * (ns_per_sec / freq)
  19. * ns = cycles * (10^9 / (cpu_khz * 10^3))
  20. * ns = cycles * (10^6 / cpu_khz)
  21. *
  22. * Then we use scaling math (suggested by george@mvista.com) to get:
  23. * ns = cycles * (10^6 * SC / cpu_khz) / SC
  24. * ns = cycles * cyc2ns_scale / SC
  25. *
  26. * And since SC is a constant power of two, we can convert the div
  27. * into a shift.
  28. *
  29. * We can use khz divisor instead of mhz to keep a better percision, since
  30. * cyc2ns_scale is limited to 10^6 * 2^10, which fits in 32 bits.
  31. * (mathieu.desnoyers@polymtl.ca)
  32. *
  33. * -johnstul@us.ibm.com "math is hard, lets go shopping!"
  34. */
  35. extern unsigned long cyc2ns_scale __read_mostly;
  36. #define CYC2NS_SCALE_FACTOR 10 /* 2^10, carefully chosen */
  37. static inline unsigned long long cycles_2_ns(unsigned long long cyc)
  38. {
  39. return (cyc * cyc2ns_scale) >> CYC2NS_SCALE_FACTOR;
  40. }
  41. #endif