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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _PARISC_DELAY_H
  2. #define _PARISC_DELAY_H
  3. #include <asm/system.h>    /* for mfctl() */
  4. #include <asm/processor.h> /* for boot_cpu_data */
  5. /*
  6.  * Copyright (C) 1993 Linus Torvalds
  7.  *
  8.  * Delay routines
  9.  */
  10. static __inline__ void __delay(unsigned long loops) {
  11. asm volatile(
  12. " .balignl 64,0x34000034n"
  13. " addib,UV -1,%0,.n"
  14. " nopn"
  15. : "=r" (loops) : "0" (loops));
  16. }
  17. static __inline__ void __cr16_delay(unsigned long clocks) {
  18. unsigned long start;
  19. /*
  20.  * Note: Due to unsigned math, cr16 rollovers shouldn't be
  21.  * a problem here. However, on 32 bit, we need to make sure
  22.  * we don't pass in too big a value. The current default
  23.  * value of MAX_UDELAY_MS should help prevent this.
  24.  */
  25. start = mfctl(16);
  26. while ((mfctl(16) - start) < clocks)
  27.     ;
  28. }
  29. static __inline__ void __udelay(unsigned long usecs) {
  30. __cr16_delay(usecs * ((unsigned long)boot_cpu_data.cpu_hz / 1000000UL));
  31. }
  32. #define udelay(n) __udelay(n)
  33. #endif /* defined(_PARISC_DELAY_H) */