home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / src / linux-headers-2.6.17-6 / include / asm-i386 / timex.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-08-11  |  1.3 KB  |  55 lines

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