delay.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _LINUX_DELAY_H
  3. #define _LINUX_DELAY_H
  4. /*
  5. * Copyright (C) 1993 Linus Torvalds
  6. *
  7. * Delay routines, using a pre-computed "loops_per_jiffy" value.
  8. *
  9. * Please note that ndelay(), udelay() and mdelay() may return early for
  10. * several reasons:
  11. * 1. computed loops_per_jiffy too low (due to the time taken to
  12. * execute the timer interrupt.)
  13. * 2. cache behaviour affecting the time it takes to execute the
  14. * loop function.
  15. * 3. CPU clock rate changes.
  16. *
  17. * Please see this thread:
  18. * http://lists.openwall.net/linux-kernel/2011/01/09/56
  19. */
  20. #include <linux/kernel.h>
  21. extern unsigned long loops_per_jiffy;
  22. #include <asm/delay.h>
  23. /*
  24. * Using udelay() for intervals greater than a few milliseconds can
  25. * risk overflow for high loops_per_jiffy (high bogomips) machines. The
  26. * mdelay() provides a wrapper to prevent this. For delays greater
  27. * than MAX_UDELAY_MS milliseconds, the wrapper is used. Architecture
  28. * specific values can be defined in asm-???/delay.h as an override.
  29. * The 2nd mdelay() definition ensures GCC will optimize away the
  30. * while loop for the common cases where n <= MAX_UDELAY_MS -- Paul G.
  31. */
  32. #ifndef MAX_UDELAY_MS
  33. #define MAX_UDELAY_MS 5
  34. #endif
  35. #ifndef mdelay
  36. #define mdelay(n) (\
  37. (__builtin_constant_p(n) && (n)<=MAX_UDELAY_MS) ? udelay((n)*1000) : \
  38. ({unsigned long __ms=(n); while (__ms--) udelay(1000);}))
  39. #endif
  40. #ifndef ndelay
  41. static inline void ndelay(unsigned long x)
  42. {
  43. udelay(DIV_ROUND_UP(x, 1000));
  44. }
  45. #define ndelay(x) ndelay(x)
  46. #endif
  47. extern unsigned long lpj_fine;
  48. void calibrate_delay(void);
  49. void msleep(unsigned int msecs);
  50. unsigned long msleep_interruptible(unsigned int msecs);
  51. void usleep_range(unsigned long min, unsigned long max);
  52. static inline void ssleep(unsigned int seconds)
  53. {
  54. msleep(seconds * 1000);
  55. }
  56. #endif /* defined(_LINUX_DELAY_H) */