Lines Matching refs:port
59 #define inb(port) readb((u8 *)((port))) argument
60 #define outb(val, port) writeb((val), (u8 *)((unsigned long)(port))) argument
61 #define inw(port) readw((u16 *)((port))) argument
62 #define outw(val, port) writew((val), (u16 *)((unsigned long)(port))) argument
63 #define inl(port) readl((u32 *)((port))) argument
64 #define outl(val, port) writel((val), (u32 *)((unsigned long)(port))) argument
66 #define inb_p(port) inb((port)) argument
67 #define outb_p(val, port) outb((val), (port)) argument
68 #define inw_p(port) inw((port)) argument
69 #define outw_p(val, port) outw((val), (port)) argument
70 #define inl_p(port) inl((port)) argument
71 #define outl_p(val, port) outl((val), (port)) argument
73 void insb(unsigned long port, void *dst, unsigned long count);
74 void insw(unsigned long port, void *dst, unsigned long count);
75 void insl(unsigned long port, void *dst, unsigned long count);
76 void outsb(unsigned long port, const void *src, unsigned long count);
77 void outsw(unsigned long port, const void *src, unsigned long count);
78 void outsl(unsigned long port, const void *src, unsigned long count);