Lines Matching refs:_IO_BASE
19 #ifndef _IO_BASE
20 #define _IO_BASE 0 macro
43 #define insb(port, buf, ns) _insb((u8 *)((port)+_IO_BASE), (buf), (ns))
44 #define outsb(port, buf, ns) _outsb((u8 *)((port)+_IO_BASE), (buf), (ns))
45 #define insw(port, buf, ns) _insw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
46 #define outsw(port, buf, ns) _outsw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
47 #define insl(port, buf, nl) _insl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
48 #define outsl(port, buf, nl) _outsl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
50 #define inb(port) in_8((u8 *)((port)+_IO_BASE))
51 #define outb(val, port) out_8((u8 *)((port)+_IO_BASE), (val))
53 #define inw(port) in_be16((u16 *)((port)+_IO_BASE))
54 #define outw(val, port) out_be16((u16 *)((port)+_IO_BASE), (val))
55 #define inl(port) in_be32((u32 *)((port)+_IO_BASE))
56 #define outl(val, port) out_be32((u32 *)((port)+_IO_BASE), (val))
58 #define inw(port) in_le16((u16 *)((port)+_IO_BASE))
59 #define outw(val, port) out_le16((u16 *)((port)+_IO_BASE), (val))
60 #define inl(port) in_le32((u32 *)((port)+_IO_BASE))
61 #define outl(val, port) out_le32((u32 *)((port)+_IO_BASE), (val))
64 #define inb_p(port) in_8((u8 *)((port)+_IO_BASE))
65 #define outb_p(val, port) out_8((u8 *)((port)+_IO_BASE), (val))
66 #define inw_p(port) in_le16((u16 *)((port)+_IO_BASE))
67 #define outw_p(val, port) out_le16((u16 *)((port)+_IO_BASE), (val))
68 #define inl_p(port) in_le32((u32 *)((port)+_IO_BASE))
69 #define outl_p(val, port) out_le32((u32 *)((port)+_IO_BASE), (val))
87 #define insw_ns(port, buf, ns) _insw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
88 #define outsw_ns(port, buf, ns) _outsw_ns((u16 *)((port)+_IO_BASE), (buf), (ns))
89 #define insl_ns(port, buf, nl) _insl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))
90 #define outsl_ns(port, buf, nl) _outsl_ns((u32 *)((port)+_IO_BASE), (buf), (nl))