Lines Matching refs:bwlq
68 #define __BUILD_UNCACHED_IO(bwlq, type) \ argument
69 static inline type read##bwlq##_uncached(unsigned long addr) \
73 ret = __raw_read##bwlq(addr); \
78 static inline void write##bwlq##_uncached(type v, unsigned long addr) \
81 __raw_write##bwlq(v, addr); \
90 #define __BUILD_MEMORY_STRING(pfx, bwlq, type) \ argument
93 pfx##writes##bwlq(volatile void __iomem *mem, const void *addr, \
99 __raw_write##bwlq(*__addr, mem); \
104 static inline void pfx##reads##bwlq(volatile void __iomem *mem, \
110 *__addr = __raw_read##bwlq(mem); \
159 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p, slow) \ argument
161 static inline void pfx##out##bwlq##p(type val, unsigned long port) \
170 static inline type pfx##in##bwlq##p(unsigned long port) \
182 #define __BUILD_IOPORT_PFX(bus, bwlq, type) \ argument
183 __BUILD_IOPORT_SINGLE(bus, bwlq, type, ,) \
184 __BUILD_IOPORT_SINGLE(bus, bwlq, type, _p, SLOW_DOWN_IO)
186 #define BUILDIO_IOPORT(bwlq, type) \ argument
187 __BUILD_IOPORT_PFX(, bwlq, type)
194 #define __BUILD_IOPORT_STRING(bwlq, type) \ argument
196 static inline void outs##bwlq(unsigned long port, const void *addr, \
202 out##bwlq(*__addr, port); \
207 static inline void ins##bwlq(unsigned long port, void *addr, \
213 *__addr = in##bwlq(port); \