u-boot-brain/include/linux/iopoll.h
Tom Rini 83d290c56f SPDX: Convert all of our single license tags to Linux Kernel style
When U-Boot started using SPDX tags we were among the early adopters and
there weren't a lot of other examples to borrow from.  So we picked the
area of the file that usually had a full license text and replaced it
with an appropriate SPDX-License-Identifier: entry.  Since then, the
Linux Kernel has adopted SPDX tags and they place it as the very first
line in a file (except where shebangs are used, then it's second line)
and with slightly different comment styles than us.

In part due to community overlap, in part due to better tag visibility
and in part for other minor reasons, switch over to that style.

This commit changes all instances where we have a single declared
license in the tag as both the before and after are identical in tag
contents.  There's also a few places where I found we did not have a tag
and have introduced one.

Signed-off-by: Tom Rini <trini@konsulko.com>
2018-05-07 09:34:12 -04:00

68 lines
2.1 KiB
C

/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (c) 2012-2014 The Linux Foundation. All rights reserved.
*/
#ifndef _LINUX_IOPOLL_H
#define _LINUX_IOPOLL_H
#include <linux/errno.h>
#include <linux/io.h>
#include <time.h>
/**
* readx_poll_timeout - Periodically poll an address until a condition is met or a timeout occurs
* @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)
* @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.
*/
#define readx_poll_timeout(op, addr, val, cond, timeout_us) \
({ \
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; \
} \
} \
(cond) ? 0 : -ETIMEDOUT; \
})
#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 */