Lines Matching defs:addr

27 static inline u8 readb(const volatile void __iomem *addr)  in readb()
32 static inline u16 readw(const volatile void __iomem *addr) in readw()
37 static inline u32 readl(const volatile void __iomem *addr) in readl()
50 static inline void writeb(u8 b, volatile void __iomem *addr) in writeb()
55 static inline void writew(u16 b, volatile void __iomem *addr) in writew()
60 static inline void writel(u32 b, volatile void __iomem *addr) in writel()
73 static inline u8 inb_local(unsigned long addr) in inb_local()
78 static inline void outb_local(u8 b, unsigned long addr) in outb_local()
83 static inline u8 inb(unsigned long addr) in inb()
88 static inline u16 inw(unsigned long addr) in inw()
93 static inline u32 inl(unsigned long addr) in inl()
98 static inline void outb(u8 b, unsigned long addr) in outb()
103 static inline void outw(u16 b, unsigned long addr) in outw()
108 static inline void outl(u32 b, unsigned long addr) in outl()
113 #define inb_p(addr) inb(addr) argument
114 #define inw_p(addr) inw(addr) argument
115 #define inl_p(addr) inl(addr) argument
116 #define outb_p(x, addr) outb((x), (addr)) argument
117 #define outw_p(x, addr) outw((x), (addr)) argument
118 #define outl_p(x, addr) outl((x), (addr)) argument
120 static inline void insb(unsigned long addr, void *buffer, int count) in insb()
131 static inline void insw(unsigned long addr, void *buffer, int count) in insw()
142 static inline void insl(unsigned long addr, void *buffer, int count) in insl()
153 static inline void outsb(unsigned long addr, const void *buffer, int count) in outsb()
163 static inline void outsw(unsigned long addr, const void *buffer, int count) in outsw()
174 static inline void outsl(unsigned long addr, const void *buffer, int count) in outsl()
187 #define ioread8(addr) readb(addr) argument
188 #define ioread16(addr) readw(addr) argument
189 #define ioread32(addr) readl(addr) argument
191 #define iowrite8(v, addr) writeb((v), (addr)) argument
192 #define iowrite16(v, addr) writew((v), (addr)) argument
193 #define iowrite32(v, addr) writel((v), (addr)) argument
276 static inline void iounmap(void __iomem *addr) in iounmap()