delay.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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, 01, 03 by Ralf Baechle
  8. * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
  9. * Copyright (C) 2007 Maciej W. Rozycki
  10. */
  11. #include <linux/module.h>
  12. #include <linux/param.h>
  13. #include <linux/smp.h>
  14. #include <asm/compiler.h>
  15. #include <asm/war.h>
  16. void __delay(unsigned long loops)
  17. {
  18. __asm__ __volatile__ (
  19. " .set noreorder \n"
  20. " .align 3 \n"
  21. "1: bnez %0, 1b \n"
  22. #if BITS_PER_LONG == 32
  23. " subu %0, 1 \n"
  24. #else
  25. " dsubu %0, 1 \n"
  26. #endif
  27. " .set reorder \n"
  28. : "=r" (loops)
  29. : "0" (loops));
  30. }
  31. EXPORT_SYMBOL(__delay);
  32. /*
  33. * Division by multiplication: you don't have to worry about
  34. * loss of precision.
  35. *
  36. * Use only for very small delays ( < 1 msec). Should probably use a
  37. * lookup table, really, as the multiplications take much too long with
  38. * short delays. This is a "reasonable" implementation, though (and the
  39. * first constant multiplications gets optimized away if the delay is
  40. * a constant)
  41. */
  42. void __udelay(unsigned long us)
  43. {
  44. unsigned int lpj = raw_current_cpu_data.udelay_val;
  45. __delay((us * 0x000010c7ull * HZ * lpj) >> 32);
  46. }
  47. EXPORT_SYMBOL(__udelay);
  48. void __ndelay(unsigned long ns)
  49. {
  50. unsigned int lpj = raw_current_cpu_data.udelay_val;
  51. __delay((ns * 0x00000005ull * HZ * lpj) >> 32);
  52. }
  53. EXPORT_SYMBOL(__ndelay);