Lines Matching refs:port
46 #define insb(port, buf, ns) _insb((u8 *)((port)+_IO_BASE), (buf), (ns)) argument
47 #define outsb(port, buf, ns) _outsb((u8 *)((port)+_IO_BASE), (buf), (ns)) argument
48 #define insw(port, buf, ns) _insw_ns((u16 *)((port)+_IO_BASE), (buf), (ns)) argument
49 #define outsw(port, buf, ns) _outsw_ns((u16 *)((port)+_IO_BASE), (buf), (ns)) argument
50 #define insl(port, buf, nl) _insl_ns((u32 *)((port)+_IO_BASE), (buf), (nl)) argument
51 #define outsl(port, buf, nl) _outsl_ns((u32 *)((port)+_IO_BASE), (buf), (nl)) argument
53 #define inb(port) in_8((u8 *)((port)+_IO_BASE)) argument
54 #define outb(val, port) out_8((u8 *)((port)+_IO_BASE), (val)) argument
56 #define inw(port) in_be16((u16 *)((port)+_IO_BASE)) argument
57 #define outw(val, port) out_be16((u16 *)((port)+_IO_BASE), (val)) argument
58 #define inl(port) in_be32((u32 *)((port)+_IO_BASE)) argument
59 #define outl(val, port) out_be32((u32 *)((port)+_IO_BASE), (val)) argument
61 #define inw(port) in_le16((u16 *)((port)+_IO_BASE)) argument
62 #define outw(val, port) out_le16((u16 *)((port)+_IO_BASE), (val)) argument
63 #define inl(port) in_le32((u32 *)((port)+_IO_BASE)) argument
64 #define outl(val, port) out_le32((u32 *)((port)+_IO_BASE), (val)) argument
67 #define inb_p(port) in_8((u8 *)((port)+_IO_BASE)) argument
68 #define outb_p(val, port) out_8((u8 *)((port)+_IO_BASE), (val)) argument
69 #define inw_p(port) in_le16((u16 *)((port)+_IO_BASE)) argument
70 #define outw_p(val, port) out_le16((u16 *)((port)+_IO_BASE), (val)) argument
71 #define inl_p(port) in_le32((u32 *)((port)+_IO_BASE)) argument
72 #define outl_p(val, port) out_le32((u32 *)((port)+_IO_BASE), (val)) argument
74 extern void _insb(volatile u8 *port, void *buf, int ns);
75 extern void _outsb(volatile u8 *port, const void *buf, int ns);
76 extern void _insw(volatile u16 *port, void *buf, int ns);
77 extern void _outsw(volatile u16 *port, const void *buf, int ns);
78 extern void _insl(volatile u32 *port, void *buf, int nl);
79 extern void _outsl(volatile u32 *port, const void *buf, int nl);
80 extern void _insw_ns(volatile u16 *port, void *buf, int ns);
81 extern void _outsw_ns(volatile u16 *port, const void *buf, int ns);
82 extern void _insl_ns(volatile u32 *port, void *buf, int nl);
83 extern void _outsl_ns(volatile u32 *port, const void *buf, int nl);
90 #define insw_ns(port, buf, ns) _insw_ns((u16 *)((port)+_IO_BASE), (buf), (ns)) argument
91 #define outsw_ns(port, buf, ns) _outsw_ns((u16 *)((port)+_IO_BASE), (buf), (ns)) argument
92 #define insl_ns(port, buf, nl) _insl_ns((u32 *)((port)+_IO_BASE), (buf), (nl)) argument
93 #define outsl_ns(port, buf, nl) _outsl_ns((u32 *)((port)+_IO_BASE), (buf), (nl)) argument