Lines Matching refs:addr

62 	static inline void __ ## port ## len(const volatile void __iomem *addr,	\
71 ctype x = __raw_read ## len(addr); \
79 static inline void __ ## port ## len(volatile void __iomem *addr, \
88 __raw_write ## len(*buf++, addr); \
94 __io_reads_ins(reads, u8, b, __io_br(), __io_ar(addr))
95 __io_reads_ins(reads, u16, w, __io_br(), __io_ar(addr))
96 __io_reads_ins(reads, u32, l, __io_br(), __io_ar(addr))
97 #define readsb(addr, buffer, count) __readsb(addr, buffer, count)
98 #define readsw(addr, buffer, count) __readsw(addr, buffer, count)
99 #define readsl(addr, buffer, count) __readsl(addr, buffer, count)
101 __io_reads_ins(ins, u8, b, __io_pbr(), __io_par(addr))
102 __io_reads_ins(ins, u16, w, __io_pbr(), __io_par(addr))
103 __io_reads_ins(ins, u32, l, __io_pbr(), __io_par(addr))
104 #define insb(addr, buffer, count) __insb(PCI_IOBASE + (addr), buffer, count)
105 #define insw(addr, buffer, count) __insw(PCI_IOBASE + (addr), buffer, count)
106 #define insl(addr, buffer, count) __insl(PCI_IOBASE + (addr), buffer, count)
111 #define writesb(addr, buffer, count) __writesb(addr, buffer, count)
112 #define writesw(addr, buffer, count) __writesw(addr, buffer, count)
113 #define writesl(addr, buffer, count) __writesl(addr, buffer, count)
118 #define outsb(addr, buffer, count) __outsb(PCI_IOBASE + (addr), buffer, count)
119 #define outsw(addr, buffer, count) __outsw(PCI_IOBASE + (addr), buffer, count)
120 #define outsl(addr, buffer, count) __outsl(PCI_IOBASE + (addr), buffer, count)
123 __io_reads_ins(reads, u64, q, __io_br(), __io_ar(addr))
124 #define readsq(addr, buffer, count) __readsq(addr, buffer, count)
126 __io_reads_ins(ins, u64, q, __io_pbr(), __io_par(addr))
127 #define insq(addr, buffer, count) __insq(PCI_IOBASE + (addr), buffer, count)
130 #define writesq(addr, buffer, count) __writesq(addr, buffer, count)
133 #define outsq(addr, buffer, count) __outsq(PCI_IOBASE + (addr), buffer, count)
139 #define arch_memremap_wb(addr, size) \
140 ((__force void *)ioremap_prot((addr), (size), _PAGE_KERNEL))