Lines Matching refs:PCI_IOBASE
443 #ifndef PCI_IOBASE
444 #define PCI_IOBASE ((void __iomem *)0) macro
466 val = __raw_readb(PCI_IOBASE + addr); in inb()
479 val = __le16_to_cpu(__raw_readw(PCI_IOBASE + addr)); in inw()
492 val = __le32_to_cpu(__raw_readl(PCI_IOBASE + addr)); in inl()
503 __raw_writeb(value, PCI_IOBASE + addr); in outb()
513 __raw_writew(cpu_to_le16(value), PCI_IOBASE + addr); in outw()
523 __raw_writel(cpu_to_le32(value), PCI_IOBASE + addr); in outl()
585 readsb(PCI_IOBASE + addr, buffer, count); in insb()
593 readsw(PCI_IOBASE + addr, buffer, count); in insw()
601 readsl(PCI_IOBASE + addr, buffer, count); in insl()
610 writesb(PCI_IOBASE + addr, buffer, count); in outsb()
619 writesw(PCI_IOBASE + addr, buffer, count); in outsw()
628 writesl(PCI_IOBASE + addr, buffer, count); in outsl()
1014 return (port > MMIO_UPPER_LIMIT) ? NULL : PCI_IOBASE + port; in ioport_map()