• Home
  • Raw
  • Download

Lines Matching refs:port

43 #define insb(port, buf, ns) _insb((u8 *)((port)+_IO_BASE), (buf), (ns))  argument
44 #define outsb(port, buf, ns) _outsb((u8 *)((port)+_IO_BASE), (buf), (ns)) argument
45 #define insw(port, buf, ns) _insw_ns((u16 *)((port)+_IO_BASE), (buf), (ns)) argument
46 #define outsw(port, buf, ns) _outsw_ns((u16 *)((port)+_IO_BASE), (buf), (ns)) argument
47 #define insl(port, buf, nl) _insl_ns((u32 *)((port)+_IO_BASE), (buf), (nl)) argument
48 #define outsl(port, buf, nl) _outsl_ns((u32 *)((port)+_IO_BASE), (buf), (nl)) argument
50 #define inb(port) in_8((u8 *)((port)+_IO_BASE)) argument
51 #define outb(val, port) out_8((u8 *)((port)+_IO_BASE), (val)) argument
53 #define inw(port) in_be16((u16 *)((port)+_IO_BASE)) argument
54 #define outw(val, port) out_be16((u16 *)((port)+_IO_BASE), (val)) argument
55 #define inl(port) in_be32((u32 *)((port)+_IO_BASE)) argument
56 #define outl(val, port) out_be32((u32 *)((port)+_IO_BASE), (val)) argument
58 #define inw(port) in_le16((u16 *)((port)+_IO_BASE)) argument
59 #define outw(val, port) out_le16((u16 *)((port)+_IO_BASE), (val)) argument
60 #define inl(port) in_le32((u32 *)((port)+_IO_BASE)) argument
61 #define outl(val, port) out_le32((u32 *)((port)+_IO_BASE), (val)) argument
64 #define inb_p(port) in_8((u8 *)((port)+_IO_BASE)) argument
65 #define outb_p(val, port) out_8((u8 *)((port)+_IO_BASE), (val)) argument
66 #define inw_p(port) in_le16((u16 *)((port)+_IO_BASE)) argument
67 #define outw_p(val, port) out_le16((u16 *)((port)+_IO_BASE), (val)) argument
68 #define inl_p(port) in_le32((u32 *)((port)+_IO_BASE)) argument
69 #define outl_p(val, port) out_le32((u32 *)((port)+_IO_BASE), (val)) argument
71 extern void _insb(volatile u8 *port, void *buf, int ns);
72 extern void _outsb(volatile u8 *port, const void *buf, int ns);
73 extern void _insw(volatile u16 *port, void *buf, int ns);
74 extern void _outsw(volatile u16 *port, const void *buf, int ns);
75 extern void _insl(volatile u32 *port, void *buf, int nl);
76 extern void _outsl(volatile u32 *port, const void *buf, int nl);
77 extern void _insw_ns(volatile u16 *port, void *buf, int ns);
78 extern void _outsw_ns(volatile u16 *port, const void *buf, int ns);
79 extern void _insl_ns(volatile u32 *port, void *buf, int nl);
80 extern void _outsl_ns(volatile u32 *port, const void *buf, int nl);
87 #define insw_ns(port, buf, ns) _insw_ns((u16 *)((port)+_IO_BASE), (buf), (ns)) argument
88 #define outsw_ns(port, buf, ns) _outsw_ns((u16 *)((port)+_IO_BASE), (buf), (ns)) argument
89 #define insl_ns(port, buf, nl) _insl_ns((u32 *)((port)+_IO_BASE), (buf), (nl)) argument
90 #define outsl_ns(port, buf, nl) _outsl_ns((u32 *)((port)+_IO_BASE), (buf), (nl)) argument