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