Lines Matching refs:_IO_BASE
50 #define _IO_BASE 0 macro
54 #define _IO_BASE isa_io_base macro
58 #define _IO_BASE pci_io_base macro
477 : "r" (port + _IO_BASE) \
492 : : "r" (val), "r" (port + _IO_BASE) \
554 #define __do_outb(val, port) writeb(val,(PCI_IO_ADDR)_IO_BASE+port);
555 #define __do_outw(val, port) writew(val,(PCI_IO_ADDR)_IO_BASE+port);
556 #define __do_outl(val, port) writel(val,(PCI_IO_ADDR)_IO_BASE+port);
557 #define __do_inb(port) readb((PCI_IO_ADDR)_IO_BASE + port);
558 #define __do_inw(port) readw((PCI_IO_ADDR)_IO_BASE + port);
559 #define __do_inl(port) readl((PCI_IO_ADDR)_IO_BASE + port);
575 #define __do_insb(p, b, n) readsb((PCI_IO_ADDR)_IO_BASE+(p), (b), (n))
576 #define __do_insw(p, b, n) readsw((PCI_IO_ADDR)_IO_BASE+(p), (b), (n))
577 #define __do_insl(p, b, n) readsl((PCI_IO_ADDR)_IO_BASE+(p), (b), (n))
578 #define __do_outsb(p, b, n) writesb((PCI_IO_ADDR)_IO_BASE+(p),(b),(n))
579 #define __do_outsw(p, b, n) writesw((PCI_IO_ADDR)_IO_BASE+(p),(b),(n))
580 #define __do_outsl(p, b, n) writesl((PCI_IO_ADDR)_IO_BASE+(p),(b),(n))