Lines Matching refs:_IO_BASE
48 #define _IO_BASE 0 macro
52 #define _IO_BASE isa_io_base macro
56 #define _IO_BASE pci_io_base macro
467 : "r" (port + _IO_BASE) \
482 : : "r" (val), "r" (port + _IO_BASE) \
544 #define __do_outb(val, port) writeb(val,(PCI_IO_ADDR)_IO_BASE+port);
545 #define __do_outw(val, port) writew(val,(PCI_IO_ADDR)_IO_BASE+port);
546 #define __do_outl(val, port) writel(val,(PCI_IO_ADDR)_IO_BASE+port);
547 #define __do_inb(port) readb((PCI_IO_ADDR)_IO_BASE + port);
548 #define __do_inw(port) readw((PCI_IO_ADDR)_IO_BASE + port);
549 #define __do_inl(port) readl((PCI_IO_ADDR)_IO_BASE + port);
565 #define __do_insb(p, b, n) readsb((PCI_IO_ADDR)_IO_BASE+(p), (b), (n))
566 #define __do_insw(p, b, n) readsw((PCI_IO_ADDR)_IO_BASE+(p), (b), (n))
567 #define __do_insl(p, b, n) readsl((PCI_IO_ADDR)_IO_BASE+(p), (b), (n))
568 #define __do_outsb(p, b, n) writesb((PCI_IO_ADDR)_IO_BASE+(p),(b),(n))
569 #define __do_outsw(p, b, n) writesw((PCI_IO_ADDR)_IO_BASE+(p),(b),(n))
570 #define __do_outsl(p, b, n) writesl((PCI_IO_ADDR)_IO_BASE+(p),(b),(n))