Lines Matching refs:PCI_IOBASE
526 #ifndef PCI_IOBASE
527 #define PCI_IOBASE ((void __iomem *)0) macro
547 val = __raw_readb(PCI_IOBASE + addr); in _inb()
560 val = __le16_to_cpu((__le16 __force)__raw_readw(PCI_IOBASE + addr)); in _inw()
573 val = __le32_to_cpu((__le32 __force)__raw_readl(PCI_IOBASE + addr)); in _inl()
584 __raw_writeb(value, PCI_IOBASE + addr); in _outb()
594 __raw_writew((u16 __force)cpu_to_le16(value), PCI_IOBASE + addr); in _outw()
604 __raw_writel((u32 __force)cpu_to_le32(value), PCI_IOBASE + addr); in _outl()
692 readsb(PCI_IOBASE + addr, buffer, count); in insb()
700 readsw(PCI_IOBASE + addr, buffer, count); in insw()
708 readsl(PCI_IOBASE + addr, buffer, count); in insl()
717 writesb(PCI_IOBASE + addr, buffer, count); in outsb()
726 writesw(PCI_IOBASE + addr, buffer, count); in outsw()
735 writesl(PCI_IOBASE + addr, buffer, count); in outsl()
1115 return (port > MMIO_UPPER_LIMIT) ? NULL : PCI_IOBASE + port; in ioport_map()