PCI_IOBASE        193 arch/riscv/include/asm/io.h #define inb(c)		({ u8  __v; __io_pbr(); __v = readb_cpu((void*)(PCI_IOBASE + (c))); __io_par(__v); __v; })
PCI_IOBASE        194 arch/riscv/include/asm/io.h #define inw(c)		({ u16 __v; __io_pbr(); __v = readw_cpu((void*)(PCI_IOBASE + (c))); __io_par(__v); __v; })
PCI_IOBASE        195 arch/riscv/include/asm/io.h #define inl(c)		({ u32 __v; __io_pbr(); __v = readl_cpu((void*)(PCI_IOBASE + (c))); __io_par(__v); __v; })
PCI_IOBASE        197 arch/riscv/include/asm/io.h #define outb(v,c)	({ __io_pbw(); writeb_cpu((v),(void*)(PCI_IOBASE + (c))); __io_paw(); })
PCI_IOBASE        198 arch/riscv/include/asm/io.h #define outw(v,c)	({ __io_pbw(); writew_cpu((v),(void*)(PCI_IOBASE + (c))); __io_paw(); })
PCI_IOBASE        199 arch/riscv/include/asm/io.h #define outl(v,c)	({ __io_pbw(); writel_cpu((v),(void*)(PCI_IOBASE + (c))); __io_paw(); })
PCI_IOBASE         44 arch/unicore32/include/asm/io.h #define PIO_OFFSET		(unsigned int)(PCI_IOBASE)
PCI_IOBASE        741 drivers/acpi/pci_root.c #ifdef PCI_IOBASE
PCI_IOBASE       3879 drivers/pci/pci.c #ifdef PCI_IOBASE
PCI_IOBASE       3906 drivers/pci/pci.c #ifdef PCI_IOBASE
PCI_IOBASE       3918 drivers/pci/pci.c #ifdef PCI_IOBASE
PCI_IOBASE       3940 drivers/pci/pci.c #if defined(PCI_IOBASE) && defined(CONFIG_MMU)
PCI_IOBASE       3941 drivers/pci/pci.c 	unsigned long vaddr = (unsigned long)PCI_IOBASE + res->start;
PCI_IOBASE       3972 drivers/pci/pci.c #if defined(PCI_IOBASE) && defined(CONFIG_MMU)
PCI_IOBASE       3973 drivers/pci/pci.c 	unsigned long vaddr = (unsigned long)PCI_IOBASE + res->start;
PCI_IOBASE        443 include/asm-generic/io.h #ifndef PCI_IOBASE
PCI_IOBASE        466 include/asm-generic/io.h 	val = __raw_readb(PCI_IOBASE + addr);
PCI_IOBASE        479 include/asm-generic/io.h 	val = __le16_to_cpu(__raw_readw(PCI_IOBASE + addr));
PCI_IOBASE        492 include/asm-generic/io.h 	val = __le32_to_cpu(__raw_readl(PCI_IOBASE + addr));
PCI_IOBASE        503 include/asm-generic/io.h 	__raw_writeb(value, PCI_IOBASE + addr);
PCI_IOBASE        513 include/asm-generic/io.h 	__raw_writew(cpu_to_le16(value), PCI_IOBASE + addr);
PCI_IOBASE        523 include/asm-generic/io.h 	__raw_writel(cpu_to_le32(value), PCI_IOBASE + addr);
PCI_IOBASE        585 include/asm-generic/io.h 	readsb(PCI_IOBASE + addr, buffer, count);
PCI_IOBASE        593 include/asm-generic/io.h 	readsw(PCI_IOBASE + addr, buffer, count);
PCI_IOBASE        601 include/asm-generic/io.h 	readsl(PCI_IOBASE + addr, buffer, count);
PCI_IOBASE        610 include/asm-generic/io.h 	writesb(PCI_IOBASE + addr, buffer, count);
PCI_IOBASE        619 include/asm-generic/io.h 	writesw(PCI_IOBASE + addr, buffer, count);
PCI_IOBASE        628 include/asm-generic/io.h 	writesl(PCI_IOBASE + addr, buffer, count);
PCI_IOBASE       1014 include/asm-generic/io.h 	return (port > MMIO_UPPER_LIMIT) ? NULL : PCI_IOBASE + port;
PCI_IOBASE        229 lib/logic_pio.c #if defined(CONFIG_INDIRECT_PIO) && defined(PCI_IOBASE)
PCI_IOBASE        236 lib/logic_pio.c 		ret = read##bw(PCI_IOBASE + addr);			\
PCI_IOBASE        252 lib/logic_pio.c 		write##bw(value, PCI_IOBASE + addr);			\
PCI_IOBASE        268 lib/logic_pio.c 		reads##bw(PCI_IOBASE + addr, buffer, count);		\
PCI_IOBASE        285 lib/logic_pio.c 		writes##bw(PCI_IOBASE + addr, buffer, count);		\