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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Precise Delay Loops for i386
  3.  *
  4.  * Copyright (C) 1993 Linus Torvalds
  5.  * Copyright (C) 1997 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
  6.  *
  7.  * The __delay function must _NOT_ be inlined as its execution time
  8.  * depends wildly on alignment on many x86 processors. 
  9.  */
  10. #include <linux/config.h>
  11. #include <linux/sched.h>
  12. #include <linux/delay.h>
  13. #include <asm/delay.h>
  14. #ifdef CONFIG_SMP
  15. #include <asm/smp.h>
  16. #endif
  17. void __delay(unsigned long loops)
  18. {
  19. #ifndef CONFIG_SIMNOW
  20. unsigned long bclock, now;
  21. rdtscl(bclock);
  22. do
  23. {
  24. rep_nop(); 
  25. rdtscl(now);
  26. }
  27. while((now-bclock) < loops);
  28. #endif
  29. }
  30. inline void __const_udelay(unsigned long xloops)
  31. {
  32.         __delay(((xloops * current_cpu_data.loops_per_jiffy) >> 32) * HZ);
  33. }
  34. void __udelay(unsigned long usecs)
  35. {
  36. __const_udelay(usecs * 0x000010c6);  /* 2**32 / 1000000 */
  37. }