Lines Matching refs:PCI_IOBASE
450 #ifndef PCI_IOBASE
451 #define PCI_IOBASE ((void __iomem *)0) macro
473 val = __raw_readb(PCI_IOBASE + addr); in inb()
486 val = __le16_to_cpu(__raw_readw(PCI_IOBASE + addr)); in inw()
499 val = __le32_to_cpu(__raw_readl(PCI_IOBASE + addr)); in inl()
510 __raw_writeb(value, PCI_IOBASE + addr); in outb()
520 __raw_writew(cpu_to_le16(value), PCI_IOBASE + addr); in outw()
530 __raw_writel(cpu_to_le32(value), PCI_IOBASE + addr); in outl()
592 readsb(PCI_IOBASE + addr, buffer, count); in insb()
600 readsw(PCI_IOBASE + addr, buffer, count); in insw()
608 readsl(PCI_IOBASE + addr, buffer, count); in insl()
617 writesb(PCI_IOBASE + addr, buffer, count); in outsb()
626 writesw(PCI_IOBASE + addr, buffer, count); in outsw()
635 writesl(PCI_IOBASE + addr, buffer, count); in outsl()
1030 return (port > MMIO_UPPER_LIMIT) ? NULL : PCI_IOBASE + port; in ioport_map()