Lines Matching refs:bwlq
66 #define __BUILD_UNCACHED_IO(bwlq, type) \ argument
67 static inline type read##bwlq##_uncached(unsigned long addr) \
71 ret = __raw_read##bwlq(addr); \
76 static inline void write##bwlq##_uncached(type v, unsigned long addr) \
79 __raw_write##bwlq(v, addr); \
88 #define __BUILD_MEMORY_STRING(pfx, bwlq, type) \ argument
91 pfx##writes##bwlq(volatile void __iomem *mem, const void *addr, \
97 __raw_write##bwlq(*__addr, mem); \
102 static inline void pfx##reads##bwlq(volatile void __iomem *mem, \
108 *__addr = __raw_read##bwlq(mem); \
157 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p, slow) \ argument
159 static inline void pfx##out##bwlq##p(type val, unsigned long port) \
168 static inline type pfx##in##bwlq##p(unsigned long port) \
180 #define __BUILD_IOPORT_PFX(bus, bwlq, type) \ argument
181 __BUILD_IOPORT_SINGLE(bus, bwlq, type, ,) \
182 __BUILD_IOPORT_SINGLE(bus, bwlq, type, _p, SLOW_DOWN_IO)
184 #define BUILDIO_IOPORT(bwlq, type) \ argument
185 __BUILD_IOPORT_PFX(, bwlq, type)
192 #define __BUILD_IOPORT_STRING(bwlq, type) \ argument
194 static inline void outs##bwlq(unsigned long port, const void *addr, \
200 out##bwlq(*__addr, port); \
205 static inline void ins##bwlq(unsigned long port, void *addr, \
211 *__addr = in##bwlq(port); \