timex.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

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_TIMEX_H
  11. #define _ASM_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. /*
  18.  * Standard way to access the cycle counter.
  19.  * Currently only used on SMP for scheduling.
  20.  *
  21.  * Only the low 32 bits are available as a continuously counting entity. 
  22.  * But this only means we'll force a reschedule every 8 seconds or so,
  23.  * which isn't an evil thing.
  24.  *
  25.  * We know that all SMP capable CPUs have cycle counters.
  26.  */
  27. typedef unsigned int cycles_t;
  28. extern cycles_t cacheflush_time;
  29. static inline cycles_t get_cycles (void)
  30. {
  31. cycles_t val;
  32. __asm__ __volatile__(
  33. ".set noreordernt"
  34. "mfc0 %0, $9nt"
  35. ".set reorder"
  36. : "=r" (val));
  37. return val;
  38. }
  39. #endif /*  _ASM_TIMEX_H */