* [RFC v2] GPIO: i.MX: Rewrite driver for using generic GPIO code
@ 2013-06-09 10:42 Alexander Shiyan
0 siblings, 0 replies; only message in thread
From: Alexander Shiyan @ 2013-06-09 10:42 UTC (permalink / raw)
To: barebox
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
arch/arm/Kconfig | 1 -
drivers/gpio/Kconfig | 1 +
drivers/gpio/gpio-imx.c | 130 ++++++++++++------------------------------------
3 files changed, 33 insertions(+), 99 deletions(-)
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index cfb82b0..06ba6c4 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -72,7 +72,6 @@ config ARCH_HIGHBANK
config ARCH_IMX
bool "Freescale iMX-based"
- select GENERIC_GPIO
select GPIOLIB
select COMMON_CLK
select CLKDEV_LOOKUP
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
index e976db4..051af14 100644
--- a/drivers/gpio/Kconfig
+++ b/drivers/gpio/Kconfig
@@ -29,6 +29,7 @@ config GPIO_GENERIC_PLATFORM
config GPIO_IMX
def_bool ARCH_IMX
+ select GPIO_GENERIC
config GPIO_PL061
bool "PrimeCell PL061 GPIO support"
diff --git a/drivers/gpio/gpio-imx.c b/drivers/gpio/gpio-imx.c
index 1bf4100..53acb18 100644
--- a/drivers/gpio/gpio-imx.c
+++ b/drivers/gpio/gpio-imx.c
@@ -1,6 +1,4 @@
/*
- * arch/arm/mach-imx/gpio.c
- *
* author: Sascha Hauer
* Created: april 20th, 2004
* Copyright: Synertronixx GmbH
@@ -20,17 +18,11 @@
*
*/
-#include <common.h>
-#include <errno.h>
-#include <io.h>
-#include <gpio.h>
#include <init.h>
+#include <common.h>
+#include <malloc.h>
-struct imx_gpio_chip {
- void __iomem *base;
- struct gpio_chip chip;
- struct imx_gpio_regs *regs;
-};
+#include <linux/basic_mmio_gpio.h>
struct imx_gpio_regs {
unsigned int dr;
@@ -50,104 +42,47 @@ static struct imx_gpio_regs regs_imx31 = {
.psr = 0x08,
};
-static void imx_gpio_set_value(struct gpio_chip *chip, unsigned gpio, int value)
-{
- struct imx_gpio_chip *imxgpio = container_of(chip, struct imx_gpio_chip, chip);
- void __iomem *base = imxgpio->base;
- u32 val;
-
- if (!base)
- return;
-
- val = readl(base + imxgpio->regs->dr);
-
- if (value)
- val |= 1 << gpio;
- else
- val &= ~(1 << gpio);
-
- writel(val, base + imxgpio->regs->dr);
-}
-
-static int imx_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
-{
- struct imx_gpio_chip *imxgpio = container_of(chip, struct imx_gpio_chip, chip);
- void __iomem *base = imxgpio->base;
- u32 val;
-
- if (!base)
- return -EINVAL;
-
- val = readl(base + imxgpio->regs->gdir);
- val &= ~(1 << gpio);
- writel(val, base + imxgpio->regs->gdir);
-
- return 0;
-}
-
-
-static int imx_gpio_direction_output(struct gpio_chip *chip, unsigned gpio, int value)
-{
- struct imx_gpio_chip *imxgpio = container_of(chip, struct imx_gpio_chip, chip);
- void __iomem *base = imxgpio->base;
- u32 val;
-
- gpio_set_value(gpio + chip->base, value);
-
- val = readl(base + imxgpio->regs->gdir);
- val |= 1 << gpio;
- writel(val, base + imxgpio->regs->gdir);
-
- return 0;
-}
-
-static int imx_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
-{
- struct imx_gpio_chip *imxgpio = container_of(chip, struct imx_gpio_chip, chip);
- void __iomem *base = imxgpio->base;
- u32 val;
-
- val = readl(base + imxgpio->regs->psr);
-
- return val & (1 << gpio) ? 1 : 0;
-}
-
-static struct gpio_ops imx_gpio_ops = {
- .direction_input = imx_gpio_direction_input,
- .direction_output = imx_gpio_direction_output,
- .get = imx_gpio_get_value,
- .set = imx_gpio_set_value,
-};
-
static int imx_gpio_probe(struct device_d *dev)
{
- struct imx_gpio_chip *imxgpio;
struct imx_gpio_regs *regs;
+ struct bgpio_chip *bgc;
+ void __iomem *base;
int ret;
ret = dev_get_drvdata(dev, (unsigned long *)®s);
if (ret)
return ret;
- imxgpio = xzalloc(sizeof(*imxgpio));
- imxgpio->base = dev_request_mem_region(dev, 0);
- imxgpio->chip.ops = &imx_gpio_ops;
+ bgc = xzalloc(sizeof(*bgc));
+ if (!bgc)
+ return -ENOMEM;
+
+ base = dev_request_mem_region(dev, 0);
+ if (!base) {
+ ret = -EINVAL;
+ goto out_err;
+ }
+
+ ret = bgpio_init(bgc, dev, 4, base + regs->psr, base + regs->dr, NULL,
+ base + regs->gdir, NULL, 0);
+ if (ret)
+ goto out_err;
+
if (dev->id < 0) {
- imxgpio->chip.base = of_alias_get_id(dev->device_node, "gpio");
- if (imxgpio->chip.base < 0)
- return imxgpio->chip.base;
- imxgpio->chip.base *= 32;
- } else {
- imxgpio->chip.base = dev->id * 32;
+ dev->id = of_alias_get_id(dev->device_node, "gpio");
+ if (dev->id < 0) {
+ ret = dev->id;
+ goto out_err;
+ }
}
- imxgpio->chip.ngpio = 32;
- imxgpio->chip.dev = dev;
- imxgpio->regs = regs;
- gpiochip_add(&imxgpio->chip);
+ bgc->gc.base = dev->id * 32;
+
+ return gpiochip_add(&bgc->gc);
- dev_dbg(dev, "probed gpiochip%d with base %d\n", dev->id, imxgpio->chip.base);
+out_err:
+ free(bgc);
- return 0;
+ return ret;
}
static __maybe_unused struct of_device_id imx_gpio_dt_ids[] = {
@@ -201,7 +136,6 @@ static struct driver_d imx_gpio_driver = {
static int imx_gpio_add(void)
{
- platform_driver_register(&imx_gpio_driver);
- return 0;
+ return platform_driver_register(&imx_gpio_driver);
}
coredevice_initcall(imx_gpio_add);
--
1.8.1.5
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2013-06-09 10:43 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-09 10:42 [RFC v2] GPIO: i.MX: Rewrite driver for using generic GPIO code Alexander Shiyan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox