blob: f2b3d19dd7a952c668ac43cdefec21ce40fa4f22 [file] [log] [blame]
Mark Brown2955c302010-01-29 18:20:30 +00001/*
Grant Likelyc103de22011-06-04 18:38:28 -06002 * gpiolib support for Wolfson WM8994
Mark Brown2955c302010-01-29 18:20:30 +00003 *
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Mark Brown2955c302010-01-29 18:20:30 +000017#include <linux/module.h>
18#include <linux/gpio.h>
19#include <linux/mfd/core.h>
20#include <linux/platform_device.h>
21#include <linux/seq_file.h>
Mark Brown224a1f92012-06-03 13:40:19 +010022#include <linux/regmap.h>
Mark Brown2955c302010-01-29 18:20:30 +000023
24#include <linux/mfd/wm8994/core.h>
25#include <linux/mfd/wm8994/pdata.h>
26#include <linux/mfd/wm8994/gpio.h>
27#include <linux/mfd/wm8994/registers.h>
28
29struct wm8994_gpio {
30 struct wm8994 *wm8994;
31 struct gpio_chip gpio_chip;
32};
33
34static inline struct wm8994_gpio *to_wm8994_gpio(struct gpio_chip *chip)
35{
36 return container_of(chip, struct wm8994_gpio, gpio_chip);
37}
38
Mark Brown4b666722010-09-01 10:47:16 +010039static int wm8994_gpio_request(struct gpio_chip *chip, unsigned offset)
40{
41 struct wm8994_gpio *wm8994_gpio = to_wm8994_gpio(chip);
42 struct wm8994 *wm8994 = wm8994_gpio->wm8994;
43
44 switch (wm8994->type) {
45 case WM8958:
46 switch (offset) {
47 case 1:
48 case 2:
49 case 3:
50 case 4:
51 case 6:
52 return -EINVAL;
53 }
54 break;
55 default:
56 break;
57 }
58
59 return 0;
60}
61
Mark Brown2955c302010-01-29 18:20:30 +000062static int wm8994_gpio_direction_in(struct gpio_chip *chip, unsigned offset)
63{
64 struct wm8994_gpio *wm8994_gpio = to_wm8994_gpio(chip);
65 struct wm8994 *wm8994 = wm8994_gpio->wm8994;
66
67 return wm8994_set_bits(wm8994, WM8994_GPIO_1 + offset,
68 WM8994_GPN_DIR, WM8994_GPN_DIR);
69}
70
71static int wm8994_gpio_get(struct gpio_chip *chip, unsigned offset)
72{
73 struct wm8994_gpio *wm8994_gpio = to_wm8994_gpio(chip);
74 struct wm8994 *wm8994 = wm8994_gpio->wm8994;
75 int ret;
76
77 ret = wm8994_reg_read(wm8994, WM8994_GPIO_1 + offset);
78 if (ret < 0)
79 return ret;
80
81 if (ret & WM8994_GPN_LVL)
82 return 1;
83 else
84 return 0;
85}
86
87static int wm8994_gpio_direction_out(struct gpio_chip *chip,
88 unsigned offset, int value)
89{
90 struct wm8994_gpio *wm8994_gpio = to_wm8994_gpio(chip);
91 struct wm8994 *wm8994 = wm8994_gpio->wm8994;
92
93 return wm8994_set_bits(wm8994, WM8994_GPIO_1 + offset,
94 WM8994_GPN_DIR, 0);
95}
96
97static void wm8994_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
98{
99 struct wm8994_gpio *wm8994_gpio = to_wm8994_gpio(chip);
100 struct wm8994 *wm8994 = wm8994_gpio->wm8994;
101
102 if (value)
103 value = WM8994_GPN_LVL;
104
105 wm8994_set_bits(wm8994, WM8994_GPIO_1 + offset, WM8994_GPN_LVL, value);
106}
107
Mark Brownddf438c2010-04-02 14:51:59 +0100108static int wm8994_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
109{
110 struct wm8994_gpio *wm8994_gpio = to_wm8994_gpio(chip);
111 struct wm8994 *wm8994 = wm8994_gpio->wm8994;
112
Mark Brown224a1f92012-06-03 13:40:19 +0100113 return regmap_irq_get_virq(wm8994->irq_data, offset);
Mark Brownddf438c2010-04-02 14:51:59 +0100114}
115
116
Mark Brown2955c302010-01-29 18:20:30 +0000117#ifdef CONFIG_DEBUG_FS
Mark Brownd0ad5e82011-12-08 00:24:01 +0800118static const char *wm8994_gpio_fn(u16 fn)
119{
120 switch (fn) {
121 case WM8994_GP_FN_PIN_SPECIFIC:
122 return "pin-specific";
123 case WM8994_GP_FN_GPIO:
124 return "GPIO";
125 case WM8994_GP_FN_SDOUT:
126 return "SDOUT";
127 case WM8994_GP_FN_IRQ:
128 return "IRQ";
129 case WM8994_GP_FN_TEMPERATURE:
130 return "Temperature";
131 case WM8994_GP_FN_MICBIAS1_DET:
132 return "MICBIAS1 detect";
133 case WM8994_GP_FN_MICBIAS1_SHORT:
134 return "MICBIAS1 short";
135 case WM8994_GP_FN_MICBIAS2_DET:
136 return "MICBIAS2 detect";
137 case WM8994_GP_FN_MICBIAS2_SHORT:
138 return "MICBIAS2 short";
139 case WM8994_GP_FN_FLL1_LOCK:
140 return "FLL1 lock";
141 case WM8994_GP_FN_FLL2_LOCK:
142 return "FLL2 lock";
143 case WM8994_GP_FN_SRC1_LOCK:
144 return "SRC1 lock";
145 case WM8994_GP_FN_SRC2_LOCK:
146 return "SRC2 lock";
147 case WM8994_GP_FN_DRC1_ACT:
148 return "DRC1 activity";
149 case WM8994_GP_FN_DRC2_ACT:
150 return "DRC2 activity";
151 case WM8994_GP_FN_DRC3_ACT:
152 return "DRC3 activity";
153 case WM8994_GP_FN_WSEQ_STATUS:
154 return "Write sequencer";
155 case WM8994_GP_FN_FIFO_ERROR:
156 return "FIFO error";
157 case WM8994_GP_FN_OPCLK:
158 return "OPCLK";
159 case WM8994_GP_FN_THW:
160 return "Thermal warning";
161 case WM8994_GP_FN_DCS_DONE:
162 return "DC servo";
163 case WM8994_GP_FN_FLL1_OUT:
164 return "FLL1 output";
165 case WM8994_GP_FN_FLL2_OUT:
166 return "FLL1 output";
167 default:
168 return "Unknown";
169 }
170}
171
Mark Brown2955c302010-01-29 18:20:30 +0000172static void wm8994_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
173{
174 struct wm8994_gpio *wm8994_gpio = to_wm8994_gpio(chip);
175 struct wm8994 *wm8994 = wm8994_gpio->wm8994;
176 int i;
177
178 for (i = 0; i < chip->ngpio; i++) {
179 int gpio = i + chip->base;
180 int reg;
181 const char *label;
182
183 /* We report the GPIO even if it's not requested since
184 * we're also reporting things like alternate
185 * functions which apply even when the GPIO is not in
186 * use as a GPIO.
187 */
188 label = gpiochip_is_requested(chip, i);
189 if (!label)
190 label = "Unrequested";
191
192 seq_printf(s, " gpio-%-3d (%-20.20s) ", gpio, label);
193
194 reg = wm8994_reg_read(wm8994, WM8994_GPIO_1 + i);
195 if (reg < 0) {
196 dev_err(wm8994->dev,
197 "GPIO control %d read failed: %d\n",
198 gpio, reg);
199 seq_printf(s, "\n");
200 continue;
201 }
202
Mark Brownd0ad5e82011-12-08 00:24:01 +0800203 if (reg & WM8994_GPN_DIR)
204 seq_printf(s, "in ");
205 else
206 seq_printf(s, "out ");
207
208 if (reg & WM8994_GPN_PU)
209 seq_printf(s, "pull up ");
210
211 if (reg & WM8994_GPN_PD)
212 seq_printf(s, "pull down ");
213
214 if (reg & WM8994_GPN_POL)
215 seq_printf(s, "inverted ");
216 else
217 seq_printf(s, "noninverted ");
218
219 if (reg & WM8994_GPN_OP_CFG)
220 seq_printf(s, "open drain ");
221 else
222 seq_printf(s, "CMOS ");
223
224 seq_printf(s, "%s (%x)\n",
225 wm8994_gpio_fn(reg & WM8994_GPN_FN_MASK), reg);
Mark Brown2955c302010-01-29 18:20:30 +0000226 }
227}
228#else
229#define wm8994_gpio_dbg_show NULL
230#endif
231
232static struct gpio_chip template_chip = {
233 .label = "wm8994",
234 .owner = THIS_MODULE,
Mark Brown4b666722010-09-01 10:47:16 +0100235 .request = wm8994_gpio_request,
Mark Brown2955c302010-01-29 18:20:30 +0000236 .direction_input = wm8994_gpio_direction_in,
237 .get = wm8994_gpio_get,
238 .direction_output = wm8994_gpio_direction_out,
239 .set = wm8994_gpio_set,
Mark Browndeb26e92010-08-17 13:13:37 +0100240 .to_irq = wm8994_gpio_to_irq,
Mark Brown2955c302010-01-29 18:20:30 +0000241 .dbg_show = wm8994_gpio_dbg_show,
242 .can_sleep = 1,
243};
244
245static int __devinit wm8994_gpio_probe(struct platform_device *pdev)
246{
247 struct wm8994 *wm8994 = dev_get_drvdata(pdev->dev.parent);
248 struct wm8994_pdata *pdata = wm8994->dev->platform_data;
249 struct wm8994_gpio *wm8994_gpio;
250 int ret;
251
Mark Brownf8d203c2012-06-05 17:22:09 +0100252 wm8994_gpio = devm_kzalloc(&pdev->dev, sizeof(*wm8994_gpio),
253 GFP_KERNEL);
Mark Brown2955c302010-01-29 18:20:30 +0000254 if (wm8994_gpio == NULL)
255 return -ENOMEM;
256
257 wm8994_gpio->wm8994 = wm8994;
258 wm8994_gpio->gpio_chip = template_chip;
259 wm8994_gpio->gpio_chip.ngpio = WM8994_GPIO_MAX;
260 wm8994_gpio->gpio_chip.dev = &pdev->dev;
261 if (pdata && pdata->gpio_base)
262 wm8994_gpio->gpio_chip.base = pdata->gpio_base;
263 else
264 wm8994_gpio->gpio_chip.base = -1;
265
266 ret = gpiochip_add(&wm8994_gpio->gpio_chip);
267 if (ret < 0) {
268 dev_err(&pdev->dev, "Could not register gpiochip, %d\n",
269 ret);
270 goto err;
271 }
272
273 platform_set_drvdata(pdev, wm8994_gpio);
274
275 return ret;
276
277err:
Mark Brown2955c302010-01-29 18:20:30 +0000278 return ret;
279}
280
281static int __devexit wm8994_gpio_remove(struct platform_device *pdev)
282{
283 struct wm8994_gpio *wm8994_gpio = platform_get_drvdata(pdev);
Mark Brown2955c302010-01-29 18:20:30 +0000284
Mark Brownf8d203c2012-06-05 17:22:09 +0100285 return gpiochip_remove(&wm8994_gpio->gpio_chip);
Mark Brown2955c302010-01-29 18:20:30 +0000286}
287
288static struct platform_driver wm8994_gpio_driver = {
289 .driver.name = "wm8994-gpio",
290 .driver.owner = THIS_MODULE,
291 .probe = wm8994_gpio_probe,
292 .remove = __devexit_p(wm8994_gpio_remove),
293};
294
295static int __init wm8994_gpio_init(void)
296{
297 return platform_driver_register(&wm8994_gpio_driver);
298}
299subsys_initcall(wm8994_gpio_init);
300
301static void __exit wm8994_gpio_exit(void)
302{
303 platform_driver_unregister(&wm8994_gpio_driver);
304}
305module_exit(wm8994_gpio_exit);
306
307MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
308MODULE_DESCRIPTION("GPIO interface for WM8994");
309MODULE_LICENSE("GPL");
310MODULE_ALIAS("platform:wm8994-gpio");