]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/gpio/wm8994-gpio.c
gpiolib: Implement gpio_to_irq for WM8994 GPIO controller
[net-next-2.6.git] / drivers / gpio / wm8994-gpio.c
CommitLineData
2955c309
MB
1/*
2 * wm8994-gpio.c -- gpiolib support for Wolfson WM8994
3 *
4 * Copyright 2009 Wolfson Microelectronics PLC.
5 *
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 *
13 */
14
15#include <linux/kernel.h>
16#include <linux/module.h>
17#include <linux/gpio.h>
18#include <linux/mfd/core.h>
19#include <linux/platform_device.h>
20#include <linux/seq_file.h>
21
22#include <linux/mfd/wm8994/core.h>
23#include <linux/mfd/wm8994/pdata.h>
24#include <linux/mfd/wm8994/gpio.h>
25#include <linux/mfd/wm8994/registers.h>
26
27struct wm8994_gpio {
28 struct wm8994 *wm8994;
29 struct gpio_chip gpio_chip;
30};
31
32static inline struct wm8994_gpio *to_wm8994_gpio(struct gpio_chip *chip)
33{
34 return container_of(chip, struct wm8994_gpio, gpio_chip);
35}
36
37static int wm8994_gpio_direction_in(struct gpio_chip *chip, unsigned offset)
38{
39 struct wm8994_gpio *wm8994_gpio = to_wm8994_gpio(chip);
40 struct wm8994 *wm8994 = wm8994_gpio->wm8994;
41
42 return wm8994_set_bits(wm8994, WM8994_GPIO_1 + offset,
43 WM8994_GPN_DIR, WM8994_GPN_DIR);
44}
45
46static int wm8994_gpio_get(struct gpio_chip *chip, unsigned offset)
47{
48 struct wm8994_gpio *wm8994_gpio = to_wm8994_gpio(chip);
49 struct wm8994 *wm8994 = wm8994_gpio->wm8994;
50 int ret;
51
52 ret = wm8994_reg_read(wm8994, WM8994_GPIO_1 + offset);
53 if (ret < 0)
54 return ret;
55
56 if (ret & WM8994_GPN_LVL)
57 return 1;
58 else
59 return 0;
60}
61
62static int wm8994_gpio_direction_out(struct gpio_chip *chip,
63 unsigned offset, int value)
64{
65 struct wm8994_gpio *wm8994_gpio = to_wm8994_gpio(chip);
66 struct wm8994 *wm8994 = wm8994_gpio->wm8994;
67
68 return wm8994_set_bits(wm8994, WM8994_GPIO_1 + offset,
69 WM8994_GPN_DIR, 0);
70}
71
72static void wm8994_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
73{
74 struct wm8994_gpio *wm8994_gpio = to_wm8994_gpio(chip);
75 struct wm8994 *wm8994 = wm8994_gpio->wm8994;
76
77 if (value)
78 value = WM8994_GPN_LVL;
79
80 wm8994_set_bits(wm8994, WM8994_GPIO_1 + offset, WM8994_GPN_LVL, value);
81}
82
ddf438cf
MB
83static int wm8994_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
84{
85 struct wm8994_gpio *wm8994_gpio = to_wm8994_gpio(chip);
86 struct wm8994 *wm8994 = wm8994_gpio->wm8994;
87
88 if (!wm8994->irq_base)
89 return -EINVAL;
90
91 return wm8994->irq_base + offset;
92}
93
94
2955c309
MB
95#ifdef CONFIG_DEBUG_FS
96static void wm8994_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
97{
98 struct wm8994_gpio *wm8994_gpio = to_wm8994_gpio(chip);
99 struct wm8994 *wm8994 = wm8994_gpio->wm8994;
100 int i;
101
102 for (i = 0; i < chip->ngpio; i++) {
103 int gpio = i + chip->base;
104 int reg;
105 const char *label;
106
107 /* We report the GPIO even if it's not requested since
108 * we're also reporting things like alternate
109 * functions which apply even when the GPIO is not in
110 * use as a GPIO.
111 */
112 label = gpiochip_is_requested(chip, i);
113 if (!label)
114 label = "Unrequested";
115
116 seq_printf(s, " gpio-%-3d (%-20.20s) ", gpio, label);
117
118 reg = wm8994_reg_read(wm8994, WM8994_GPIO_1 + i);
119 if (reg < 0) {
120 dev_err(wm8994->dev,
121 "GPIO control %d read failed: %d\n",
122 gpio, reg);
123 seq_printf(s, "\n");
124 continue;
125 }
126
127 /* No decode yet; note that GPIO2 is special */
128 seq_printf(s, "(%x)\n", reg);
129 }
130}
131#else
132#define wm8994_gpio_dbg_show NULL
133#endif
134
135static struct gpio_chip template_chip = {
136 .label = "wm8994",
137 .owner = THIS_MODULE,
138 .direction_input = wm8994_gpio_direction_in,
139 .get = wm8994_gpio_get,
140 .direction_output = wm8994_gpio_direction_out,
141 .set = wm8994_gpio_set,
142 .dbg_show = wm8994_gpio_dbg_show,
143 .can_sleep = 1,
144};
145
146static int __devinit wm8994_gpio_probe(struct platform_device *pdev)
147{
148 struct wm8994 *wm8994 = dev_get_drvdata(pdev->dev.parent);
149 struct wm8994_pdata *pdata = wm8994->dev->platform_data;
150 struct wm8994_gpio *wm8994_gpio;
151 int ret;
152
153 wm8994_gpio = kzalloc(sizeof(*wm8994_gpio), GFP_KERNEL);
154 if (wm8994_gpio == NULL)
155 return -ENOMEM;
156
157 wm8994_gpio->wm8994 = wm8994;
158 wm8994_gpio->gpio_chip = template_chip;
159 wm8994_gpio->gpio_chip.ngpio = WM8994_GPIO_MAX;
160 wm8994_gpio->gpio_chip.dev = &pdev->dev;
161 if (pdata && pdata->gpio_base)
162 wm8994_gpio->gpio_chip.base = pdata->gpio_base;
163 else
164 wm8994_gpio->gpio_chip.base = -1;
165
166 ret = gpiochip_add(&wm8994_gpio->gpio_chip);
167 if (ret < 0) {
168 dev_err(&pdev->dev, "Could not register gpiochip, %d\n",
169 ret);
170 goto err;
171 }
172
173 platform_set_drvdata(pdev, wm8994_gpio);
174
175 return ret;
176
177err:
178 kfree(wm8994_gpio);
179 return ret;
180}
181
182static int __devexit wm8994_gpio_remove(struct platform_device *pdev)
183{
184 struct wm8994_gpio *wm8994_gpio = platform_get_drvdata(pdev);
185 int ret;
186
187 ret = gpiochip_remove(&wm8994_gpio->gpio_chip);
188 if (ret == 0)
189 kfree(wm8994_gpio);
190
191 return ret;
192}
193
194static struct platform_driver wm8994_gpio_driver = {
195 .driver.name = "wm8994-gpio",
196 .driver.owner = THIS_MODULE,
197 .probe = wm8994_gpio_probe,
198 .remove = __devexit_p(wm8994_gpio_remove),
199};
200
201static int __init wm8994_gpio_init(void)
202{
203 return platform_driver_register(&wm8994_gpio_driver);
204}
205subsys_initcall(wm8994_gpio_init);
206
207static void __exit wm8994_gpio_exit(void)
208{
209 platform_driver_unregister(&wm8994_gpio_driver);
210}
211module_exit(wm8994_gpio_exit);
212
213MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
214MODULE_DESCRIPTION("GPIO interface for WM8994");
215MODULE_LICENSE("GPL");
216MODULE_ALIAS("platform:wm8994-gpio");