Lines Matching refs:port
53 io_offset (unsigned long int port) in io_offset() argument
55 return ((port >> 2) << 12) | (port & 0xfff); in io_offset()
134 _inb (unsigned long int port) in _inb() argument
136 volatile unsigned char *addr = (void *) io.base + io_offset (port); in _inb()
145 _inw (unsigned long int port) in _inw() argument
147 volatile unsigned short *addr = (void *) io.base + io_offset (port); in _inw()
156 _inl (unsigned long int port) in _inl() argument
158 volatile unsigned int *addr = (void *) io.base + io_offset (port); in _inl()
167 _outb (unsigned char val, unsigned long int port) in _outb() argument
169 volatile unsigned char *addr = (void *) io.base + io_offset (port); in _outb()
176 _outw (unsigned short val, unsigned long int port) in _outw() argument
178 volatile unsigned short *addr = (void *) io.base + io_offset (port); in _outw()
185 _outl (unsigned int val, unsigned long int port) in _outl() argument
187 volatile unsigned int *addr = (void *) io.base + io_offset (port); in _outl()