Lines Matching refs:addr
43 #define readx_poll_timeout(op, addr, val, cond, sleep_us, timeout_us) \ argument
48 (val) = op(addr); \
52 (val) = op(addr); \
78 #define readx_poll_timeout_atomic(op, addr, val, cond, delay_us, timeout_us) \ argument
82 (val) = op(addr); \
86 (val) = op(addr); \
96 #define readb_poll_timeout(addr, val, cond, delay_us, timeout_us) \ argument
97 readx_poll_timeout(readb, addr, val, cond, delay_us, timeout_us)
99 #define readb_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ argument
100 readx_poll_timeout_atomic(readb, addr, val, cond, delay_us, timeout_us)
102 #define readw_poll_timeout(addr, val, cond, delay_us, timeout_us) \ argument
103 readx_poll_timeout(readw, addr, val, cond, delay_us, timeout_us)
105 #define readw_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ argument
106 readx_poll_timeout_atomic(readw, addr, val, cond, delay_us, timeout_us)
108 #define readl_poll_timeout(addr, val, cond, delay_us, timeout_us) \ argument
109 readx_poll_timeout(readl, addr, val, cond, delay_us, timeout_us)
111 #define readl_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ argument
112 readx_poll_timeout_atomic(readl, addr, val, cond, delay_us, timeout_us)
114 #define readq_poll_timeout(addr, val, cond, delay_us, timeout_us) \ argument
115 readx_poll_timeout(readq, addr, val, cond, delay_us, timeout_us)
117 #define readq_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ argument
118 readx_poll_timeout_atomic(readq, addr, val, cond, delay_us, timeout_us)
120 #define readb_relaxed_poll_timeout(addr, val, cond, delay_us, timeout_us) \ argument
121 readx_poll_timeout(readb_relaxed, addr, val, cond, delay_us, timeout_us)
123 #define readb_relaxed_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ argument
124 readx_poll_timeout_atomic(readb_relaxed, addr, val, cond, delay_us, timeout_us)
126 #define readw_relaxed_poll_timeout(addr, val, cond, delay_us, timeout_us) \ argument
127 readx_poll_timeout(readw_relaxed, addr, val, cond, delay_us, timeout_us)
129 #define readw_relaxed_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ argument
130 readx_poll_timeout_atomic(readw_relaxed, addr, val, cond, delay_us, timeout_us)
132 #define readl_relaxed_poll_timeout(addr, val, cond, delay_us, timeout_us) \ argument
133 readx_poll_timeout(readl_relaxed, addr, val, cond, delay_us, timeout_us)
135 #define readl_relaxed_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ argument
136 readx_poll_timeout_atomic(readl_relaxed, addr, val, cond, delay_us, timeout_us)
138 #define readq_relaxed_poll_timeout(addr, val, cond, delay_us, timeout_us) \ argument
139 readx_poll_timeout(readq_relaxed, addr, val, cond, delay_us, timeout_us)
141 #define readq_relaxed_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ argument
142 readx_poll_timeout_atomic(readq_relaxed, addr, val, cond, delay_us, timeout_us)