]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
Orion: only map peripheral register space once
authorLennert Buytenhek <buytenh@wantstofly.org>
Thu, 27 Mar 2008 18:51:41 +0000 (14:51 -0400)
committerNicolas Pitre <nico@marvell.com>
Thu, 27 Mar 2008 18:51:41 +0000 (14:51 -0400)
Save some TLB entries by making ioremap() return pointers into the
boot-time Orion peripheral iotable mapping whenever someone tries
to ioremap any part of the Orion peripheral register space.

Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Reviewed-by: Nicolas Pitre <nico@marvell.com>
Reviewed-by: Tzachi Perelstein <tzachi@marvell.com>
Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Nicolas Pitre <nico@marvell.com>
include/asm-arm/arch-orion/io.h

index 42abd297ae5fbdd450931386bf3a80d45c6744b7..486dc04d764380285d7190d98d181ec707090770 100644 (file)
 #define IO_SPACE_LIMIT         0xffffffff
 #define IO_SPACE_REMAP         ORION_PCI_SYS_IO_BASE
 
+static inline void __iomem *
+__arch_ioremap(unsigned long paddr, size_t size, unsigned int mtype)
+{
+       void __iomem *retval;
+
+       if (mtype == MT_DEVICE && size && paddr >= ORION_REGS_PHYS_BASE &&
+           paddr + size <= ORION_REGS_PHYS_BASE + ORION_REGS_SIZE) {
+               retval = (void __iomem *)ORION_REGS_VIRT_BASE +
+                               (paddr - ORION_REGS_PHYS_BASE);
+       } else {
+               retval = __arm_ioremap(paddr, size, mtype);
+       }
+
+       return retval;
+}
+
+static inline void
+__arch_iounmap(void __iomem *addr)
+{
+       if (addr < (void __iomem *)ORION_REGS_VIRT_BASE ||
+           addr >= (void __iomem *)(ORION_REGS_VIRT_BASE + ORION_REGS_SIZE))
+               __iounmap(addr);
+}
+
 static inline void __iomem *__io(unsigned long addr)
 {
        return (void __iomem *)addr;
 }
 
+#define __arch_ioremap(p, s, m)        __arch_ioremap(p, s, m)
+#define __arch_iounmap(a)      __arch_iounmap(a)
 #define __io(a)                        __io(a)
 #define __mem_pci(a)           (a)