Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef _LINUX_DELAY_H |
| 3 | #define _LINUX_DELAY_H |
| 4 | |
| 5 | /* |
| 6 | * Copyright (C) 1993 Linus Torvalds |
| 7 | * |
| 8 | * Delay routines, using a pre-computed "loops_per_jiffy" value. |
Russell King | 9f81979 | 2017-01-19 10:59:13 +0000 | [diff] [blame] | 9 | * |
| 10 | * Please note that ndelay(), udelay() and mdelay() may return early for |
| 11 | * several reasons: |
| 12 | * 1. computed loops_per_jiffy too low (due to the time taken to |
| 13 | * execute the timer interrupt.) |
| 14 | * 2. cache behaviour affecting the time it takes to execute the |
| 15 | * loop function. |
| 16 | * 3. CPU clock rate changes. |
| 17 | * |
| 18 | * Please see this thread: |
Alexander A. Klimov | 7f317d3 | 2020-08-11 18:34:19 -0700 | [diff] [blame] | 19 | * https://lists.openwall.net/linux-kernel/2011/01/09/56 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | */ |
| 21 | |
Andrew Morton | 5cba6d2 | 2008-03-04 14:28:45 -0800 | [diff] [blame] | 22 | #include <linux/kernel.h> |
| 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | extern unsigned long loops_per_jiffy; |
| 25 | |
| 26 | #include <asm/delay.h> |
| 27 | |
| 28 | /* |
| 29 | * Using udelay() for intervals greater than a few milliseconds can |
| 30 | * risk overflow for high loops_per_jiffy (high bogomips) machines. The |
| 31 | * mdelay() provides a wrapper to prevent this. For delays greater |
| 32 | * than MAX_UDELAY_MS milliseconds, the wrapper is used. Architecture |
| 33 | * specific values can be defined in asm-???/delay.h as an override. |
| 34 | * The 2nd mdelay() definition ensures GCC will optimize away the |
| 35 | * while loop for the common cases where n <= MAX_UDELAY_MS -- Paul G. |
| 36 | */ |
| 37 | |
| 38 | #ifndef MAX_UDELAY_MS |
| 39 | #define MAX_UDELAY_MS 5 |
| 40 | #endif |
| 41 | |
Anton Blanchard | 1e92a55 | 2006-06-15 14:11:22 +1000 | [diff] [blame] | 42 | #ifndef mdelay |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #define mdelay(n) (\ |
| 44 | (__builtin_constant_p(n) && (n)<=MAX_UDELAY_MS) ? udelay((n)*1000) : \ |
| 45 | ({unsigned long __ms=(n); while (__ms--) udelay(1000);})) |
| 46 | #endif |
| 47 | |
| 48 | #ifndef ndelay |
Andrew Morton | 5cba6d2 | 2008-03-04 14:28:45 -0800 | [diff] [blame] | 49 | static inline void ndelay(unsigned long x) |
| 50 | { |
| 51 | udelay(DIV_ROUND_UP(x, 1000)); |
| 52 | } |
| 53 | #define ndelay(x) ndelay(x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | #endif |
| 55 | |
Alok Kataria | f3f3149 | 2008-06-23 18:21:56 -0700 | [diff] [blame] | 56 | extern unsigned long lpj_fine; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | void calibrate_delay(void); |
Valdis Kletnieks | 8496ecd | 2019-03-07 16:29:06 -0800 | [diff] [blame] | 58 | void __attribute__((weak)) calibration_delay_done(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | void msleep(unsigned int msecs); |
| 60 | unsigned long msleep_interruptible(unsigned int msecs); |
Patrick Pannuto | 5e7f5a1 | 2010-08-02 15:01:04 -0700 | [diff] [blame] | 61 | void usleep_range(unsigned long min, unsigned long max); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
| 63 | static inline void ssleep(unsigned int seconds) |
| 64 | { |
| 65 | msleep(seconds * 1000); |
| 66 | } |
| 67 | |
Heiner Kallweit | c6af13d | 2020-05-01 23:27:21 +0200 | [diff] [blame] | 68 | /* see Documentation/timers/timers-howto.rst for the thresholds */ |
| 69 | static inline void fsleep(unsigned long usecs) |
| 70 | { |
| 71 | if (usecs <= 10) |
| 72 | udelay(usecs); |
| 73 | else if (usecs <= 20000) |
| 74 | usleep_range(usecs, 2 * usecs); |
| 75 | else |
| 76 | msleep(DIV_ROUND_UP(usecs, 1000)); |
| 77 | } |
| 78 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | #endif /* defined(_LINUX_DELAY_H) */ |