mirror of
https://xff.cz/git/u-boot/
synced 2025-08-31 08:12:06 +02:00
iopoll: Add readl_poll_sleep_timeout
Add readl poll API with sleep and timeout support. This change is referenced from Linux from below commit: commit <5f5323a14cad19323060a8cbf9d96f2280a462dd> ("iopoll: introduce read_poll_timeout macro") Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
This commit is contained in:
@@ -43,6 +43,12 @@
|
||||
(cond) ? 0 : -ETIMEDOUT; \
|
||||
})
|
||||
|
||||
#define readx_poll_sleep_timeout(op, addr, val, cond, sleep_us, timeout_us) \
|
||||
read_poll_timeout(op, addr, val, cond, sleep_us, timeout_us)
|
||||
|
||||
#define readl_poll_sleep_timeout(addr, val, cond, sleep_us, timeout_us) \
|
||||
readx_poll_sleep_timeout(readl, addr, val, cond, sleep_us, timeout_us)
|
||||
|
||||
#define readx_poll_timeout(op, addr, val, cond, timeout_us) \
|
||||
read_poll_timeout(op, addr, val, cond, false, timeout_us)
|
||||
|
||||
|
Reference in New Issue
Block a user