timex.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-x8664/timex.h
  3.  *
  4.  * x8664 architecture timex specifications
  5.  */
  6. #ifndef _ASMx8664_TIMEX_H
  7. #define _ASMx8664_TIMEX_H
  8. #include <linux/config.h>
  9. #include <asm/msr.h>
  10. #include <asm/vsyscall.h>
  11. #define CLOCK_TICK_RATE (hpet.address ? hpet.hz : 1193182L)
  12. #define FINETUNE ((((((long)LATCH * HZ - CLOCK_TICK_RATE) << SHIFT_HZ) * 
  13. 1000000 / CLOCK_TICK_RATE) << (SHIFT_SCALE - SHIFT_HZ)) / HZ)
  14. /*
  15.  * We only use the low 32 bits, and we'd simply better make sure
  16.  * that we reschedule before that wraps. Scheduling at least every
  17.  * four billion cycles just basically sounds like a good idea,
  18.  * regardless of how fast the machine is.
  19.  */
  20. typedef unsigned long long cycles_t;
  21. extern cycles_t cacheflush_time;
  22. static inline cycles_t get_cycles (void)
  23. {
  24. unsigned long long ret;
  25. rdtscll(ret);
  26. return ret;
  27. }
  28. extern unsigned int cpu_khz;
  29. /*
  30.  * Documentation on HPET can be found at:
  31.  *      http://www.intel.com/ial/home/sp/pcmmspec.htm
  32.  *      ftp://download.intel.com/ial/home/sp/mmts098.pdf
  33.  */
  34. #define HPET_ID 0x000
  35. #define HPET_PERIOD 0x004
  36. #define HPET_CFG 0x010
  37. #define HPET_STATUS 0x020
  38. #define HPET_COUNTER 0x0f0
  39. #define HPET_T0_CFG 0x100
  40. #define HPET_T0_CMP 0x108
  41. #define HPET_T0_ROUTE 0x110
  42. #define HPET_ID_VENDOR 0xffff0000
  43. #define HPET_ID_LEGSUP 0x00008000
  44. #define HPET_ID_NUMBER 0x00000f00
  45. #define HPET_ID_REV 0x000000ff
  46. #define HPET_CFG_ENABLE 0x001
  47. #define HPET_CFG_LEGACY 0x002
  48. #define HPET_T0_ENABLE 0x004
  49. #define HPET_T0_PERIODIC 0x008
  50. #define HPET_T0_SETVAL 0x040
  51. #define HPET_T0_32BIT 0x100
  52. extern struct hpet_data hpet;
  53. #endif