Lines Matching refs:_IO_BASE
14 #ifndef _IO_BASE
15 #define _IO_BASE 0 macro
46 #define insb(port, buf, ns) _insb((u8 *)((port)+_IO_BASE), (buf), (ns))
47 #define outsb(port, buf, ns) _outsb((u8 *)((port)+_IO_BASE), (buf), (ns))
48 #define insw(port, buf, ns) _insw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
49 #define outsw(port, buf, ns) _outsw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
50 #define insl(port, buf, nl) _insl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
51 #define outsl(port, buf, nl) _outsl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
53 #define inb(port) in_8((u8 *)((port)+_IO_BASE))
54 #define outb(val, port) out_8((u8 *)((port)+_IO_BASE), (val))
56 #define inw(port) in_be16((u16 *)((port)+_IO_BASE))
57 #define outw(val, port) out_be16((u16 *)((port)+_IO_BASE), (val))
58 #define inl(port) in_be32((u32 *)((port)+_IO_BASE))
59 #define outl(val, port) out_be32((u32 *)((port)+_IO_BASE), (val))
61 #define inw(port) in_le16((u16 *)((port)+_IO_BASE))
62 #define outw(val, port) out_le16((u16 *)((port)+_IO_BASE), (val))
63 #define inl(port) in_le32((u32 *)((port)+_IO_BASE))
64 #define outl(val, port) out_le32((u32 *)((port)+_IO_BASE), (val))
151 #define insw_ns(port, buf, ns) _insw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
152 #define outsw_ns(port, buf, ns) _outsw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
153 #define insl_ns(port, buf, nl) _insl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
154 #define outsl_ns(port, buf, nl) _outsl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))