timex.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * linux/include/asm-i386/timex.h
  3. *
  4. * i386 architecture timex specifications
  5. */
  6. #ifndef _ASMi386_TIMEX_H
  7. #define _ASMi386_TIMEX_H
  8. #include <linux/config.h>
  9. #include <asm/processor.h>
  10. #ifdef CONFIG_X86_ELAN
  11. # define CLOCK_TICK_RATE 1189200 /* AMD Elan has different frequency! */
  12. #else
  13. # define CLOCK_TICK_RATE 1193182 /* Underlying HZ */
  14. #endif
  15. /*
  16. * Standard way to access the cycle counter on i586+ CPUs.
  17. * Currently only used on SMP.
  18. *
  19. * If you really have a SMP machine with i486 chips or older,
  20. * compile for that, and this will just always return zero.
  21. * That's ok, it just means that the nicer scheduling heuristics
  22. * won't work for you.
  23. *
  24. * We only use the low 32 bits, and we'd simply better make sure
  25. * that we reschedule before that wraps. Scheduling at least every
  26. * four billion cycles just basically sounds like a good idea,
  27. * regardless of how fast the machine is.
  28. */
  29. typedef unsigned long long cycles_t;
  30. static inline cycles_t get_cycles (void)
  31. {
  32. unsigned long long ret=0;
  33. #ifndef CONFIG_X86_TSC
  34. if (!cpu_has_tsc)
  35. return 0;
  36. #endif
  37. #if defined(CONFIG_X86_GENERIC) || defined(CONFIG_X86_TSC)
  38. rdtscll(ret);
  39. #endif
  40. return ret;
  41. }
  42. extern unsigned int cpu_khz;
  43. extern int read_current_timer(unsigned long *timer_value);
  44. #define ARCH_HAS_READ_CURRENT_TIMER 1
  45. #endif