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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ASM_IA64_DELAY_H
  2. #define _ASM_IA64_DELAY_H
  3. /*
  4.  * Delay routines using a pre-computed "cycles/usec" value.
  5.  *
  6.  * Copyright (C) 1998, 1999 Hewlett-Packard Co
  7.  * Copyright (C) 1998, 1999 David Mosberger-Tang <davidm@hpl.hp.com>
  8.  * Copyright (C) 1999 VA Linux Systems
  9.  * Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
  10.  * Copyright (C) 1999 Asit Mallick <asit.k.mallick@intel.com>
  11.  * Copyright (C) 1999 Don Dugger <don.dugger@intel.com>
  12.  */
  13. #include <linux/config.h>
  14. #include <linux/kernel.h>
  15. #include <linux/sched.h>
  16. #include <asm/processor.h>
  17. static __inline__ void
  18. ia64_set_itm (unsigned long val)
  19. {
  20. __asm__ __volatile__("mov cr.itm=%0;; srlz.d;;" :: "r"(val) : "memory");
  21. }
  22. static __inline__ unsigned long
  23. ia64_get_itm (void)
  24. {
  25. unsigned long result;
  26. __asm__ __volatile__("mov %0=cr.itm;; srlz.d;;" : "=r"(result) :: "memory");
  27. return result;
  28. }
  29. static __inline__ void
  30. ia64_set_itv (unsigned long val)
  31. {
  32. __asm__ __volatile__("mov cr.itv=%0;; srlz.d;;" :: "r"(val) : "memory");
  33. }
  34. static __inline__ void
  35. ia64_set_itc (unsigned long val)
  36. {
  37. __asm__ __volatile__("mov ar.itc=%0;; srlz.d;;" :: "r"(val) : "memory");
  38. }
  39. static __inline__ unsigned long
  40. ia64_get_itc (void)
  41. {
  42. unsigned long result;
  43. __asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");
  44. #ifdef CONFIG_ITANIUM
  45. while (__builtin_expect ((__s32) result == -1, 0))
  46. __asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");
  47. #endif
  48. return result;
  49. }
  50. static __inline__ void
  51. __delay (unsigned long loops)
  52. {
  53.         unsigned long saved_ar_lc;
  54. if (loops < 1)
  55. return;
  56. __asm__ __volatile__("mov %0=ar.lc;;" : "=r"(saved_ar_lc));
  57. __asm__ __volatile__("mov ar.lc=%0;;" :: "r"(loops - 1));
  58.         __asm__ __volatile__("1:tbr.cloop.sptk.few 1b;;");
  59. __asm__ __volatile__("mov ar.lc=%0" :: "r"(saved_ar_lc));
  60. }
  61. static __inline__ void
  62. udelay (unsigned long usecs)
  63. {
  64. unsigned long start = ia64_get_itc();
  65. unsigned long cycles = usecs*local_cpu_data->cyc_per_usec;
  66. while (ia64_get_itc() - start < cycles)
  67. /* skip */;
  68. }
  69. #endif /* _ASM_IA64_DELAY_H */