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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1998, 1999 by Ralf Baechle
  7.  *
  8.  * FIXME: For some of the supported machines this is dead wrong.
  9.  */
  10. #ifndef __ASM_MIPS_TIMEX_H
  11. #define __ASM_MIPS_TIMEX_H
  12. #define CLOCK_TICK_RATE 1193180 /* Underlying HZ */
  13. #define CLOCK_TICK_FACTOR 20 /* Factor of both 1000000 and CLOCK_TICK_RATE */
  14. #define FINETUNE ((((((long)LATCH * HZ - CLOCK_TICK_RATE) << SHIFT_HZ) * 
  15. (1000000/CLOCK_TICK_FACTOR) / (CLOCK_TICK_RATE/CLOCK_TICK_FACTOR)) 
  16. << (SHIFT_SCALE-SHIFT_HZ)) / HZ)
  17. #ifdef __KERNEL__
  18. /*
  19.  * Standard way to access the cycle counter.
  20.  * Currently only used on SMP for scheduling.
  21.  *
  22.  * Only the low 32 bits are available as a continuously counting entity.
  23.  * But this only means we'll force a reschedule every 8 seconds or so,
  24.  * which isn't an evil thing.
  25.  *
  26.  * We know that all SMP capable CPUs have cycle counters.
  27.  */
  28. typedef unsigned int cycles_t;
  29. extern cycles_t cacheflush_time;
  30. static inline cycles_t get_cycles (void)
  31. {
  32. return read_32bit_cp0_register(CP0_COUNT);
  33. }
  34. #endif /* __KERNEL__ */
  35. #define vxtime_lock() do {} while (0)
  36. #define vxtime_unlock() do {} while (0)
  37. #endif /*  __ASM_MIPS_TIMEX_H */