···3333#define IO_SIZE 0x0B000000 // How much?3434#define IO_START INTEGRATOR_HDR_BASE // PA of IO35353636-/*3737- * Similar to above, but for PCI addresses (memory, IO, Config and the3838- * V3 chip itself). WARNING: this has to mirror definitions in platform.h3939- */4040-#define PCI_MEMORY_VADDR 0xe80000004141-#define PCI_CONFIG_VADDR 0xec0000004242-#define PCI_V3_VADDR 0xed0000004343-#define PCI_IO_VADDR 0xee0000004444-4536#define PCIO_BASE PCI_IO_VADDR4637#define PCIMEM_BASE PCI_MEMORY_VADDR4738
+8-2
include/asm-arm/arch-integrator/io.h
···2020#ifndef __ASM_ARM_ARCH_IO_H2121#define __ASM_ARM_ARCH_IO_H22222323-#include <asm/hardware.h>2424-2523#define IO_SPACE_LIMIT 0xffff2424+2525+/*2626+ * WARNING: this has to mirror definitions in platform.h2727+ */2828+#define PCI_MEMORY_VADDR 0xe80000002929+#define PCI_CONFIG_VADDR 0xec0000003030+#define PCI_V3_VADDR 0xed0000003131+#define PCI_IO_VADDR 0xee00000026322733#define __io(a) ((void __iomem *)(PCI_IO_VADDR + (a)))2834#define __mem_pci(a) (a)