timex.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-arm/arch-ixp4xx/timex.h
  3.  * 
  4.  */
  5. #include <asm/hardware.h>
  6. /*
  7.  * We use IXP425 General purpose timer for our timer needs, it runs at 
  8.  * 66.66... MHz. We do a convulted calculation of CLOCK_TICK_RATE b/c the
  9.  * timer register ignores the bottom 2 bits of the LATCH value.
  10.  */
  11. #define FREQ 66666666
  12. #define CLOCK_TICK_RATE (((FREQ / HZ & ~IXP4XX_OST_RELOAD_MASK) + 1) * HZ)