aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio
diff options
context:
space:
mode:
authorMarek Vasut <marek.vasut@gmail.com>2009-09-22 19:46:35 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2009-09-23 10:39:48 -0400
commit4cf8e53b3b55fa2f9b2a6b9c3e557b649adf7c6a (patch)
tree3a3ca1ba8ced694568f7c0ee31c19f7fcc6e38a9 /drivers/gpio
parent1e5db00687c1ebd93a902caf1d3694209013cb3e (diff)
mfd/gpio: add a GPIO interface to the UCB1400 MFD chip driver via gpiolib
Cc: Eric Miao <eric.y.miao@gmail.com> Cc: Russell King <rmk@arm.linux.org.uk> Cc: David Brownell <david-b@pacbell.net> Cc: Samuel Ortiz <sameo@openedhand.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/gpio')
-rw-r--r--drivers/gpio/Kconfig12
-rw-r--r--drivers/gpio/Makefile1
-rw-r--r--drivers/gpio/ucb1400_gpio.c125
3 files changed, 138 insertions, 0 deletions
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
index 223e7c92fd54..ccca08e0b595 100644
--- a/drivers/gpio/Kconfig
+++ b/drivers/gpio/Kconfig
@@ -202,4 +202,16 @@ config GPIO_MC33880
202 SPI driver for Freescale MC33880 high-side/low-side switch. 202 SPI driver for Freescale MC33880 high-side/low-side switch.
203 This provides GPIO interface supporting inputs and outputs. 203 This provides GPIO interface supporting inputs and outputs.
204 204
205comment "AC97 GPIO expanders:"
206
207config GPIO_UCB1400
208 bool "Philips UCB1400 GPIO"
209 depends on UCB1400_CORE
210 help
211 This enables support for the Philips UCB1400 GPIO pins.
212 The UCB1400 is an AC97 audio codec.
213
214 To compile this driver as a module, choose M here: the
215 module will be called ucb1400_gpio.
216
205endif 217endif
diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile
index f35de16c7c49..c1ac034698c5 100644
--- a/drivers/gpio/Makefile
+++ b/drivers/gpio/Makefile
@@ -12,6 +12,7 @@ obj-$(CONFIG_GPIO_PCA953X) += pca953x.o
12obj-$(CONFIG_GPIO_PCF857X) += pcf857x.o 12obj-$(CONFIG_GPIO_PCF857X) += pcf857x.o
13obj-$(CONFIG_GPIO_PL061) += pl061.o 13obj-$(CONFIG_GPIO_PL061) += pl061.o
14obj-$(CONFIG_GPIO_TWL4030) += twl4030-gpio.o 14obj-$(CONFIG_GPIO_TWL4030) += twl4030-gpio.o
15obj-$(CONFIG_GPIO_UCB1400) += ucb1400_gpio.o
15obj-$(CONFIG_GPIO_XILINX) += xilinx_gpio.o 16obj-$(CONFIG_GPIO_XILINX) += xilinx_gpio.o
16obj-$(CONFIG_GPIO_BT8XX) += bt8xxgpio.o 17obj-$(CONFIG_GPIO_BT8XX) += bt8xxgpio.o
17obj-$(CONFIG_GPIO_VR41XX) += vr41xx_giu.o 18obj-$(CONFIG_GPIO_VR41XX) += vr41xx_giu.o
diff --git a/drivers/gpio/ucb1400_gpio.c b/drivers/gpio/ucb1400_gpio.c
new file mode 100644
index 000000000000..50e6bd1392ce
--- /dev/null
+++ b/drivers/gpio/ucb1400_gpio.c
@@ -0,0 +1,125 @@
1/*
2 * Philips UCB1400 GPIO driver
3 *
4 * Author: Marek Vasut <marek.vasut@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 */
11
12#include <linux/module.h>
13#include <linux/ucb1400.h>
14
15struct ucb1400_gpio_data *ucbdata;
16
17static int ucb1400_gpio_dir_in(struct gpio_chip *gc, unsigned off)
18{
19 struct ucb1400_gpio *gpio;
20 gpio = container_of(gc, struct ucb1400_gpio, gc);
21 ucb1400_gpio_set_direction(gpio->ac97, off, 0);
22 return 0;
23}
24
25static int ucb1400_gpio_dir_out(struct gpio_chip *gc, unsigned off, int val)
26{
27 struct ucb1400_gpio *gpio;
28 gpio = container_of(gc, struct ucb1400_gpio, gc);
29 ucb1400_gpio_set_direction(gpio->ac97, off, 1);
30 ucb1400_gpio_set_value(gpio->ac97, off, val);
31 return 0;
32}
33
34static int ucb1400_gpio_get(struct gpio_chip *gc, unsigned off)
35{
36 struct ucb1400_gpio *gpio;
37 gpio = container_of(gc, struct ucb1400_gpio, gc);
38 return ucb1400_gpio_get_value(gpio->ac97, off);
39}
40
41static void ucb1400_gpio_set(struct gpio_chip *gc, unsigned off, int val)
42{
43 struct ucb1400_gpio *gpio;
44 gpio = container_of(gc, struct ucb1400_gpio, gc);
45 ucb1400_gpio_set_value(gpio->ac97, off, val);
46}
47
48static int ucb1400_gpio_probe(struct platform_device *dev)
49{
50 struct ucb1400_gpio *ucb = dev->dev.platform_data;
51 int err = 0;
52
53 if (!(ucbdata && ucbdata->gpio_offset)) {
54 err = -EINVAL;
55 goto err;
56 }
57
58 platform_set_drvdata(dev, ucb);
59
60 ucb->gc.label = "ucb1400_gpio";
61 ucb->gc.base = ucbdata->gpio_offset;
62 ucb->gc.ngpio = 10;
63 ucb->gc.owner = THIS_MODULE;
64
65 ucb->gc.direction_input = ucb1400_gpio_dir_in;
66 ucb->gc.direction_output = ucb1400_gpio_dir_out;
67 ucb->gc.get = ucb1400_gpio_get;
68 ucb->gc.set = ucb1400_gpio_set;
69 ucb->gc.can_sleep = 1;
70
71 err = gpiochip_add(&ucb->gc);
72 if (err)
73 goto err;
74
75 if (ucbdata && ucbdata->gpio_setup)
76 err = ucbdata->gpio_setup(&dev->dev, ucb->gc.ngpio);
77
78err:
79 return err;
80
81}
82
83static int ucb1400_gpio_remove(struct platform_device *dev)
84{
85 int err = 0;
86 struct ucb1400_gpio *ucb = platform_get_drvdata(dev);
87
88 if (ucbdata && ucbdata->gpio_teardown) {
89 err = ucbdata->gpio_teardown(&dev->dev, ucb->gc.ngpio);
90 if (err)
91 return err;
92 }
93
94 err = gpiochip_remove(&ucb->gc);
95 return err;
96}
97
98static struct platform_driver ucb1400_gpio_driver = {
99 .probe = ucb1400_gpio_probe,
100 .remove = ucb1400_gpio_remove,
101 .driver = {
102 .name = "ucb1400_gpio"
103 },
104};
105
106static int __init ucb1400_gpio_init(void)
107{
108 return platform_driver_register(&ucb1400_gpio_driver);
109}
110
111static void __exit ucb1400_gpio_exit(void)
112{
113 platform_driver_unregister(&ucb1400_gpio_driver);
114}
115
116void __init ucb1400_gpio_set_data(struct ucb1400_gpio_data *data)
117{
118 ucbdata = data;
119}
120
121module_init(ucb1400_gpio_init);
122module_exit(ucb1400_gpio_exit);
123
124MODULE_DESCRIPTION("Philips UCB1400 GPIO driver");
125MODULE_LICENSE("GPL");