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

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) 1994 by Waldorf Electronics
  7.  * Copyright (C) 1995 - 2000 by Ralf Baechle
  8.  * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
  9.  */
  10. #ifndef _ASM_DELAY_H
  11. #define _ASM_DELAY_H
  12. #include <linux/config.h>
  13. #include <asm/param.h>
  14. extern unsigned long loops_per_jiffy;
  15. extern __inline__ void
  16. __delay(unsigned long loops)
  17. {
  18. __asm__ __volatile__ (
  19. ".settnoreordern"
  20. "1:tbnezt%0,1bnt"
  21. "dsubut%0,1nt"
  22. ".settreorder"
  23. :"=r" (loops)
  24. :"0" (loops));
  25. }
  26. /*
  27.  * Division by multiplication: you don't have to worry about
  28.  * loss of precision.
  29.  *
  30.  * Use only for very small delays ( < 1 msec).  Should probably use a
  31.  * lookup table, really, as the multiplications take much too long with
  32.  * short delays.  This is a "reasonable" implementation, though (and the
  33.  * first constant multiplications gets optimized away if the delay is
  34.  * a constant)
  35.  */
  36. extern __inline__ void __udelay(unsigned long usecs, unsigned long lpj)
  37. {
  38. unsigned long lo;
  39. #if (HZ == 100)
  40. usecs *= 0x00068db8bac710cbUL; /* 2**64 / (1000000 / HZ) */
  41. #elif (HZ == 128)
  42. usecs *= 0x0008637bd05af6c6UL; /* 2**64 / (1000000 / HZ) */
  43. #endif
  44. __asm__("dmultut%2,%3"
  45. :"=h" (usecs), "=l" (lo)
  46. :"r" (usecs),"r" (lpj));
  47. __delay(usecs);
  48. }
  49. #ifdef CONFIG_SMP
  50. #define __udelay_val cpu_data[smp_processor_id()].udelay_val
  51. #else
  52. #define __udelay_val loops_per_jiffy
  53. #endif
  54. #define udelay(usecs) __udelay((usecs),__udelay_val)
  55. #endif /* _ASM_DELAY_H */