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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-ppc/timex.h
  3.  *
  4.  * PPC64 architecture timex specifications
  5.  *
  6.  * This program is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public License
  8.  * as published by the Free Software Foundation; either version
  9.  * 2 of the License, or (at your option) any later version.
  10.  */
  11. #ifndef _ASMPPC64_TIMEX_H
  12. #define _ASMPPC64_TIMEX_H
  13. #define CLOCK_TICK_RATE 1193180 /* Underlying HZ */
  14. #define CLOCK_TICK_FACTOR 20 /* Factor of both 1000000 and CLOCK_TICK_RATE */
  15. #define FINETUNE ((((((long)LATCH * HZ - CLOCK_TICK_RATE) << SHIFT_HZ) * 
  16. (1000000/CLOCK_TICK_FACTOR) / (CLOCK_TICK_RATE/CLOCK_TICK_FACTOR)) 
  17. << (SHIFT_SCALE-SHIFT_HZ)) / HZ)
  18. typedef unsigned long cycles_t;
  19. extern cycles_t cacheflush_time;
  20. static inline cycles_t get_cycles(void)
  21. {
  22. cycles_t ret;
  23. __asm__ __volatile__("mftb %0" : "=r" (ret) : );
  24. return ret;
  25. }
  26. #define vxtime_lock()          do {} while (0)
  27. #define vxtime_unlock()                do {} while (0)
  28. #endif