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