PCI_IOBASE
#define S3C24XX_VA_ISA_BYTE PCI_IOBASE
unsigned long vaddr = (unsigned long)PCI_IOBASE + res->start;
vaddr = (unsigned long)(PCI_IOBASE + range->io_start);
#ifndef PCI_IOBASE
set_io_port_base((unsigned long)PCI_IOBASE);
vaddr = (unsigned long)PCI_IOBASE + range->io_start;
#define insb(addr, buffer, count) __insb(PCI_IOBASE + (addr), buffer, count)
#define insw(addr, buffer, count) __insw(PCI_IOBASE + (addr), buffer, count)
#define insl(addr, buffer, count) __insl(PCI_IOBASE + (addr), buffer, count)
#define outsb(addr, buffer, count) __outsb(PCI_IOBASE + (addr), buffer, count)
#define outsw(addr, buffer, count) __outsw(PCI_IOBASE + (addr), buffer, count)
#define outsl(addr, buffer, count) __outsl(PCI_IOBASE + (addr), buffer, count)
#define insq(addr, buffer, count) __insq(PCI_IOBASE + (addr), buffer, count)
#define outsq(addr, buffer, count) __outsq(PCI_IOBASE + (addr), buffer, count)
#ifdef PCI_IOBASE
uintptr_t start = (uintptr_t) PCI_IOBASE;
#ifdef PCI_IOBASE
#ifdef PCI_IOBASE
#ifdef PCI_IOBASE
#if defined(PCI_IOBASE)
unsigned long vaddr = (unsigned long)PCI_IOBASE + res->start;
#if defined(PCI_IOBASE)
unsigned long vaddr = (unsigned long)PCI_IOBASE + res->start;
iounmap(PCI_IOBASE + skt->res_io_io.start);
iounmap(PCI_IOBASE + skt->res_io_io.start);
return (port > MMIO_UPPER_LIMIT) ? NULL : PCI_IOBASE + port;
#ifndef PCI_IOBASE
val = __raw_readb(PCI_IOBASE + addr);
val = __le16_to_cpu((__le16 __force)__raw_readw(PCI_IOBASE + addr));
val = __le32_to_cpu((__le32 __force)__raw_readl(PCI_IOBASE + addr));
__raw_writeb(value, PCI_IOBASE + addr);
__raw_writew((u16 __force)cpu_to_le16(value), PCI_IOBASE + addr);
__raw_writel((u32 __force)cpu_to_le32(value), PCI_IOBASE + addr);
readsb(PCI_IOBASE + addr, buffer, count);
readsw(PCI_IOBASE + addr, buffer, count);
readsl(PCI_IOBASE + addr, buffer, count);
writesb(PCI_IOBASE + addr, buffer, count);
writesw(PCI_IOBASE + addr, buffer, count);
writesl(PCI_IOBASE + addr, buffer, count);
#if defined(CONFIG_INDIRECT_PIO) && defined(PCI_IOBASE)
reads##bwl(PCI_IOBASE + addr, buffer, count); \
writes##bwl(PCI_IOBASE + addr, buffer, count); \