[AR7] cache GPIO addresses to be more efficent
authormatteo <matteo@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 12 Jan 2008 16:41:28 +0000 (16:41 +0000)
committermatteo <matteo@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 12 Jan 2008 16:41:28 +0000 (16:41 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10179 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/ar7/files/include/asm-mips/ar7/gpio.h

index 2e19fca..7d665ff 100644 (file)
@@ -28,19 +28,28 @@ extern void gpio_free(unsigned gpio);
 /* Common GPIO layer */
 static inline int gpio_get_value(unsigned gpio)
 {
-       void __iomem *gpio_in =
-               (void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + AR7_GPIO_INPUT);
+       static unsigned addr;
 
-       return readl(gpio_in) & (1 << gpio);
+       if (!addr) {
+               void __iomem *gpio_in = (void __iomem *)
+                               KSEG1ADDR(AR7_REGS_GPIO + AR7_GPIO_INPUT);
+               addr = readl(gpio_in);
+       }
+
+       return addr & (1 << gpio);
 }
 
 static inline void gpio_set_value(unsigned gpio, int value)
 {
+       static unsigned addr;
+       unsigned tmp;
+
        void __iomem *gpio_out =
                (void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + AR7_GPIO_OUTPUT);
-       unsigned tmp;
+       if (!addr)
+               addr = readl(gpio_out);
 
-       tmp = readl(gpio_out) & ~(1 << gpio);
+       tmp = addr & ~(1 << gpio);
        if (value)
                tmp |= 1 << gpio;
        writel(tmp, gpio_out);