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