Lines Matching refs:_IO_BASE
53 #define _IO_BASE 0 macro
57 #define _IO_BASE isa_io_base macro
61 #define _IO_BASE pci_io_base macro
429 : "r" (port + _IO_BASE) \
447 : : "r" (val), "r" (port + _IO_BASE) \
509 #define __do_outb(val, port) writeb(val,(PCI_IO_ADDR)_IO_BASE+port);
510 #define __do_outw(val, port) writew(val,(PCI_IO_ADDR)_IO_BASE+port);
511 #define __do_outl(val, port) writel(val,(PCI_IO_ADDR)_IO_BASE+port);
512 #define __do_inb(port) readb((PCI_IO_ADDR)_IO_BASE + port);
513 #define __do_inw(port) readw((PCI_IO_ADDR)_IO_BASE + port);
514 #define __do_inl(port) readl((PCI_IO_ADDR)_IO_BASE + port);
530 #define __do_insb(p, b, n) readsb((PCI_IO_ADDR)_IO_BASE+(p), (b), (n))
531 #define __do_insw(p, b, n) readsw((PCI_IO_ADDR)_IO_BASE+(p), (b), (n))
532 #define __do_insl(p, b, n) readsl((PCI_IO_ADDR)_IO_BASE+(p), (b), (n))
533 #define __do_outsb(p, b, n) writesb((PCI_IO_ADDR)_IO_BASE+(p),(b),(n))
534 #define __do_outsw(p, b, n) writesw((PCI_IO_ADDR)_IO_BASE+(p),(b),(n))
535 #define __do_outsl(p, b, n) writesl((PCI_IO_ADDR)_IO_BASE+(p),(b),(n))