2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2016-12-27 15:36:03 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2012-2014 The Linux Foundation. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LINUX_IOPOLL_H
|
|
|
|
#define _LINUX_IOPOLL_H
|
|
|
|
|
2020-05-02 07:15:02 +00:00
|
|
|
#include <linux/delay.h>
|
2016-12-27 15:36:03 +00:00
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/io.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
/**
|
2020-05-02 07:15:01 +00:00
|
|
|
* read_poll_timeout - Periodically poll an address until a condition is met or a timeout occurs
|
2016-12-27 15:36:03 +00:00
|
|
|
* @op: accessor function (takes @addr as its only argument)
|
|
|
|
* @addr: Address to poll
|
|
|
|
* @val: Variable to read the value into
|
|
|
|
* @cond: Break condition (usually involving @val)
|
2020-05-02 07:15:02 +00:00
|
|
|
* @sleep_us: Maximum time to sleep in us
|
2016-12-27 15:36:03 +00:00
|
|
|
* @timeout_us: Timeout in us, 0 means never timeout
|
|
|
|
*
|
|
|
|
* Returns 0 on success and -ETIMEDOUT upon a timeout. In either
|
|
|
|
* case, the last read value at @addr is stored in @val.
|
|
|
|
*
|
|
|
|
* When available, you'll probably want to use one of the specialized
|
|
|
|
* macros defined below rather than this macro directly.
|
|
|
|
*/
|
2020-05-02 07:15:02 +00:00
|
|
|
#define read_poll_timeout(op, addr, val, cond, sleep_us, timeout_us) \
|
2016-12-27 15:36:03 +00:00
|
|
|
({ \
|
|
|
|
unsigned long timeout = timer_get_us() + timeout_us; \
|
|
|
|
for (;;) { \
|
|
|
|
(val) = op(addr); \
|
|
|
|
if (cond) \
|
|
|
|
break; \
|
|
|
|
if (timeout_us && time_after(timer_get_us(), timeout)) { \
|
|
|
|
(val) = op(addr); \
|
|
|
|
break; \
|
|
|
|
} \
|
2020-05-02 07:15:02 +00:00
|
|
|
if (sleep_us) \
|
|
|
|
udelay(sleep_us); \
|
2016-12-27 15:36:03 +00:00
|
|
|
} \
|
|
|
|
(cond) ? 0 : -ETIMEDOUT; \
|
|
|
|
})
|
|
|
|
|
2020-05-02 07:15:03 +00:00
|
|
|
#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)
|
|
|
|
|
2020-05-02 07:15:01 +00:00
|
|
|
#define readx_poll_timeout(op, addr, val, cond, timeout_us) \
|
2020-05-02 07:15:02 +00:00
|
|
|
read_poll_timeout(op, addr, val, cond, false, timeout_us)
|
2016-12-27 15:36:03 +00:00
|
|
|
|
|
|
|
#define readb_poll_timeout(addr, val, cond, timeout_us) \
|
|
|
|
readx_poll_timeout(readb, addr, val, cond, timeout_us)
|
|
|
|
|
|
|
|
#define readw_poll_timeout(addr, val, cond, timeout_us) \
|
|
|
|
readx_poll_timeout(readw, addr, val, cond, timeout_us)
|
|
|
|
|
|
|
|
#define readl_poll_timeout(addr, val, cond, timeout_us) \
|
|
|
|
readx_poll_timeout(readl, addr, val, cond, timeout_us)
|
|
|
|
|
|
|
|
#define readq_poll_timeout(addr, val, cond, timeout_us) \
|
|
|
|
readx_poll_timeout(readq, addr, val, cond, timeout_us)
|
|
|
|
|
|
|
|
#define readb_relaxed_poll_timeout(addr, val, cond, timeout_us) \
|
|
|
|
readx_poll_timeout(readb_relaxed, addr, val, cond, timeout_us)
|
|
|
|
|
|
|
|
#define readw_relaxed_poll_timeout(addr, val, cond, timeout_us) \
|
|
|
|
readx_poll_timeout(readw_relaxed, addr, val, cond, timeout_us)
|
|
|
|
|
|
|
|
#define readl_relaxed_poll_timeout(addr, val, cond, timeout_us) \
|
|
|
|
readx_poll_timeout(readl_relaxed, addr, val, cond, timeout_us)
|
|
|
|
|
|
|
|
#define readq_relaxed_poll_timeout(addr, val, cond, timeout_us) \
|
|
|
|
readx_poll_timeout(readq_relaxed, addr, val, cond, timeout_us)
|
|
|
|
|
|
|
|
#endif /* _LINUX_IOPOLL_H */
|