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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/lib/delay.S
  3.  *
  4.  *  Copyright (C) 1995, 1996 Russell King
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  */
  10. #include <linux/linkage.h>
  11. #include <asm/assembler.h>
  12. .text
  13. LC0: .word SYMBOL_NAME(loops_per_jiffy)
  14. /*
  15.  * 0 <= r0 <= 2000
  16.  */
  17. ENTRY(udelay)
  18. mov r2,     #0x6800
  19. orr r2, r2, #0x00db
  20. mul r1, r0, r2
  21. ldr r2, LC0
  22. ldr r2, [r2]
  23. mov r1, r1, lsr #11
  24. mov r2, r2, lsr #11
  25. mul r0, r1, r2
  26. movs r0, r0, lsr #6
  27. RETINSTR(moveq,pc,lr)
  28. /*
  29.  * loops = (r0 * 0x10c6 * 100 * loops_per_jiffie) / 2^32
  30.  */
  31. @ Delay routine
  32. ENTRY(__delay)
  33. subs r0, r0, #1
  34. RETINSTR(movcc,pc,lr)
  35. subs r0, r0, #1
  36. RETINSTR(movcc,pc,lr)
  37. subs r0, r0, #1
  38. RETINSTR(movcc,pc,lr)
  39. subs r0, r0, #1
  40. RETINSTR(movcc,pc,lr)
  41. subs r0, r0, #1
  42. RETINSTR(movcc,pc,lr)
  43. subs r0, r0, #1
  44. RETINSTR(movcc,pc,lr)
  45. subs r0, r0, #1
  46. RETINSTR(movcc,pc,lr)
  47. subs r0, r0, #1
  48. bcs SYMBOL_NAME(__delay)
  49. RETINSTR(mov,pc,lr)