Symbol: PCI_IOBASE
arch/arm/mach-s3c/map-base.h
40
#define S3C24XX_VA_ISA_BYTE PCI_IOBASE
arch/arm/mm/ioremap.c
486
unsigned long vaddr = (unsigned long)PCI_IOBASE + res->start;
arch/loongarch/kernel/setup.c
495
vaddr = (unsigned long)(PCI_IOBASE + range->io_start);
arch/mips/include/asm/io.h
553
#ifndef PCI_IOBASE
arch/mips/loongson64/init.c
132
set_io_port_base((unsigned long)PCI_IOBASE);
arch/mips/loongson64/init.c
182
vaddr = (unsigned long)PCI_IOBASE + range->io_start;
arch/riscv/include/asm/io.h
108
#define insb(addr, buffer, count) __insb(PCI_IOBASE + (addr), buffer, count)
arch/riscv/include/asm/io.h
109
#define insw(addr, buffer, count) __insw(PCI_IOBASE + (addr), buffer, count)
arch/riscv/include/asm/io.h
110
#define insl(addr, buffer, count) __insl(PCI_IOBASE + (addr), buffer, count)
arch/riscv/include/asm/io.h
122
#define outsb(addr, buffer, count) __outsb(PCI_IOBASE + (addr), buffer, count)
arch/riscv/include/asm/io.h
123
#define outsw(addr, buffer, count) __outsw(PCI_IOBASE + (addr), buffer, count)
arch/riscv/include/asm/io.h
124
#define outsl(addr, buffer, count) __outsl(PCI_IOBASE + (addr), buffer, count)
arch/riscv/include/asm/io.h
131
#define insq(addr, buffer, count) __insq(PCI_IOBASE + (addr), buffer, count)
arch/riscv/include/asm/io.h
137
#define outsq(addr, buffer, count) __outsq(PCI_IOBASE + (addr), buffer, count)
drivers/acpi/pci_root.c
859
#ifdef PCI_IOBASE
drivers/pci/iomap.c
180
uintptr_t start = (uintptr_t) PCI_IOBASE;
drivers/pci/pci.c
3973
#ifdef PCI_IOBASE
drivers/pci/pci.c
4002
#ifdef PCI_IOBASE
drivers/pci/pci.c
4013
#ifdef PCI_IOBASE
drivers/pci/pci.c
4036
#if defined(PCI_IOBASE)
drivers/pci/pci.c
4037
unsigned long vaddr = (unsigned long)PCI_IOBASE + res->start;
drivers/pci/pci.c
4069
#if defined(PCI_IOBASE)
drivers/pci/pci.c
4070
unsigned long vaddr = (unsigned long)PCI_IOBASE + res->start;
drivers/pcmcia/soc_common.c
784
iounmap(PCI_IOBASE + skt->res_io_io.start);
drivers/pcmcia/soc_common.c
874
iounmap(PCI_IOBASE + skt->res_io_io.start);
include/asm-generic/io.h
1209
return (port > MMIO_UPPER_LIMIT) ? NULL : PCI_IOBASE + port;
include/asm-generic/io.h
561
#ifndef PCI_IOBASE
include/asm-generic/io.h
583
val = __raw_readb(PCI_IOBASE + addr);
include/asm-generic/io.h
601
val = __le16_to_cpu((__le16 __force)__raw_readw(PCI_IOBASE + addr));
include/asm-generic/io.h
619
val = __le32_to_cpu((__le32 __force)__raw_readl(PCI_IOBASE + addr));
include/asm-generic/io.h
635
__raw_writeb(value, PCI_IOBASE + addr);
include/asm-generic/io.h
650
__raw_writew((u16 __force)cpu_to_le16(value), PCI_IOBASE + addr);
include/asm-generic/io.h
665
__raw_writel((u32 __force)cpu_to_le32(value), PCI_IOBASE + addr);
include/asm-generic/io.h
758
readsb(PCI_IOBASE + addr, buffer, count);
include/asm-generic/io.h
771
readsw(PCI_IOBASE + addr, buffer, count);
include/asm-generic/io.h
784
readsl(PCI_IOBASE + addr, buffer, count);
include/asm-generic/io.h
798
writesb(PCI_IOBASE + addr, buffer, count);
include/asm-generic/io.h
812
writesw(PCI_IOBASE + addr, buffer, count);
include/asm-generic/io.h
826
writesl(PCI_IOBASE + addr, buffer, count);
lib/logic_pio.c
231
#if defined(CONFIG_INDIRECT_PIO) && defined(PCI_IOBASE)
lib/logic_pio.c
270
reads##bwl(PCI_IOBASE + addr, buffer, count); \
lib/logic_pio.c
287
writes##bwl(PCI_IOBASE + addr, buffer, count); \