Lines Matching refs:_IO_BASE
49 #define _IO_BASE 0 macro
53 #define _IO_BASE isa_io_base macro
57 #define _IO_BASE pci_io_base macro
444 : "r" (port + _IO_BASE) \
459 : : "r" (val), "r" (port + _IO_BASE) \
521 #define __do_outb(val, port) writeb(val,(PCI_IO_ADDR)_IO_BASE+port);
522 #define __do_outw(val, port) writew(val,(PCI_IO_ADDR)_IO_BASE+port);
523 #define __do_outl(val, port) writel(val,(PCI_IO_ADDR)_IO_BASE+port);
524 #define __do_inb(port) readb((PCI_IO_ADDR)_IO_BASE + port);
525 #define __do_inw(port) readw((PCI_IO_ADDR)_IO_BASE + port);
526 #define __do_inl(port) readl((PCI_IO_ADDR)_IO_BASE + port);
542 #define __do_insb(p, b, n) readsb((PCI_IO_ADDR)_IO_BASE+(p), (b), (n))
543 #define __do_insw(p, b, n) readsw((PCI_IO_ADDR)_IO_BASE+(p), (b), (n))
544 #define __do_insl(p, b, n) readsl((PCI_IO_ADDR)_IO_BASE+(p), (b), (n))
545 #define __do_outsb(p, b, n) writesb((PCI_IO_ADDR)_IO_BASE+(p),(b),(n))
546 #define __do_outsw(p, b, n) writesw((PCI_IO_ADDR)_IO_BASE+(p),(b),(n))
547 #define __do_outsl(p, b, n) writesl((PCI_IO_ADDR)_IO_BASE+(p),(b),(n))