]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - drivers/gpio/mxc_gpio.c
gpio: Replace ARM gpio.h with the common API in include/asm-generic
[karo-tx-uboot.git] / drivers / gpio / mxc_gpio.c
index 663141f1b4690f79286f9b1904ae619139a91936..df6bbbbc4befbaa15501aebb4eb7384e5ebb70ce 100644 (file)
@@ -2,6 +2,9 @@
  * Copyright (C) 2009
  * Guennadi Liakhovetski, DENX Software Engineering, <lg@denx.de>
  *
+ * Copyright (C) 2011
+ * Stefano Babic, DENX Software Engineering, <sbabic@denx.de>
+ *
  * See file CREDITS for list of people who contributed to this
  * project.
  *
  * MA 02111-1307 USA
  */
 #include <common.h>
-#ifdef CONFIG_MX31
-#include <asm/arch/mx31-regs.h>
-#endif
-#ifdef CONFIG_MX51
 #include <asm/arch/imx-regs.h>
-#endif
+#include <asm/gpio.h>
 #include <asm/io.h>
-#include <mxc_gpio.h>
+#include <errno.h>
+
+enum mxc_gpio_direction {
+       MXC_GPIO_DIRECTION_IN,
+       MXC_GPIO_DIRECTION_OUT,
+};
+
 
 /* GPIO port description */
 static unsigned long gpio_ports[] = {
        [0] = GPIO1_BASE_ADDR,
        [1] = GPIO2_BASE_ADDR,
        [2] = GPIO3_BASE_ADDR,
-#ifdef CONFIG_MX51
+#if defined(CONFIG_MX51) || defined(CONFIG_MX53) || defined(CONFIG_MX6Q)
        [3] = GPIO4_BASE_ADDR,
 #endif
+#if defined(CONFIG_MX53) || defined(CONFIG_MX6Q)
+       [4] = GPIO5_BASE_ADDR,
+       [5] = GPIO6_BASE_ADDR,
+       [6] = GPIO7_BASE_ADDR,
+#endif
 };
 
-int mxc_gpio_direction(unsigned int gpio, enum mxc_gpio_direction direction)
+static int mxc_gpio_direction(unsigned int gpio,
+       enum mxc_gpio_direction direction)
 {
        unsigned int port = gpio >> 5;
        struct gpio_regs *regs;
        u32 l;
 
        if (port >= ARRAY_SIZE(gpio_ports))
-               return 1;
+               return -1;
 
        gpio &= 0x1f;
 
@@ -67,14 +78,14 @@ int mxc_gpio_direction(unsigned int gpio, enum mxc_gpio_direction direction)
        return 0;
 }
 
-void mxc_gpio_set(unsigned int gpio, unsigned int value)
+int gpio_set_value(unsigned gpio, int value)
 {
        unsigned int port = gpio >> 5;
        struct gpio_regs *regs;
        u32 l;
 
        if (port >= ARRAY_SIZE(gpio_ports))
-               return;
+               return -1;
 
        gpio &= 0x1f;
 
@@ -86,13 +97,15 @@ void mxc_gpio_set(unsigned int gpio, unsigned int value)
        else
                l &= ~(1 << gpio);
        writel(l, &regs->gpio_dr);
+
+       return 0;
 }
 
-int mxc_gpio_get(unsigned int gpio)
+int gpio_get_value(unsigned gpio)
 {
        unsigned int port = gpio >> 5;
        struct gpio_regs *regs;
-       u32 l;
+       u32 val;
 
        if (port >= ARRAY_SIZE(gpio_ports))
                return -1;
@@ -101,7 +114,36 @@ int mxc_gpio_get(unsigned int gpio)
 
        regs = (struct gpio_regs *)gpio_ports[port];
 
-       l = (readl(&regs->gpio_dr) >> gpio) & 0x01;
+       val = (readl(&regs->gpio_dr) >> gpio) & 0x01;
+
+       return val;
+}
+
+int gpio_request(unsigned gpio, const char *label)
+{
+       unsigned int port = gpio >> 5;
+       if (port >= ARRAY_SIZE(gpio_ports))
+               return -1;
+       return 0;
+}
+
+int gpio_free(unsigned gpio)
+{
+       return 0;
+}
+
+int gpio_direction_input(unsigned gpio)
+{
+       return mxc_gpio_direction(gpio, MXC_GPIO_DIRECTION_IN);
+}
+
+int gpio_direction_output(unsigned gpio, int value)
+{
+       int ret = mxc_gpio_direction(gpio, MXC_GPIO_DIRECTION_OUT);
+
+       if (ret < 0)
+               return ret;
 
-       return l;
+       gpio_set_value(gpio, value);
+       return 0;
 }