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