Linux 3.18-rc1
[deliverable/linux.git] / sound / soc / soc-jack.c
CommitLineData
8a2cd618
MB
1/*
2 * soc-jack.c -- ALSA SoC jack handling
3 *
4 * Copyright 2008 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#include <sound/jack.h>
15#include <sound/soc.h>
ec67624d 16#include <linux/gpio.h>
50dfb69d 17#include <linux/gpio/consumer.h>
ec67624d
LCM
18#include <linux/interrupt.h>
19#include <linux/workqueue.h>
20#include <linux/delay.h>
d81a6d71 21#include <linux/export.h>
3028eb8c 22#include <trace/events/asoc.h>
8a2cd618
MB
23
24/**
25 * snd_soc_jack_new - Create a new jack
a92b078e 26 * @codec: ASoC codec
8a2cd618
MB
27 * @id: an identifying string for this jack
28 * @type: a bitmask of enum snd_jack_type values that can be detected by
29 * this jack
30 * @jack: structure to use for the jack
31 *
32 * Creates a new jack object.
33 *
34 * Returns zero if successful, or a negative error code on failure.
35 * On success jack will be initialised.
36 */
f0fba2ad 37int snd_soc_jack_new(struct snd_soc_codec *codec, const char *id, int type,
8a2cd618
MB
38 struct snd_soc_jack *jack)
39{
2667b4b8 40 mutex_init(&jack->mutex);
f0fba2ad 41 jack->codec = codec;
8a2cd618 42 INIT_LIST_HEAD(&jack->pins);
fa9879ed 43 INIT_LIST_HEAD(&jack->jack_zones);
d5021ec9 44 BLOCKING_INIT_NOTIFIER_HEAD(&jack->notifier);
8a2cd618 45
00200107 46 return snd_jack_new(codec->component.card->snd_card, id, type, &jack->jack);
8a2cd618
MB
47}
48EXPORT_SYMBOL_GPL(snd_soc_jack_new);
49
50/**
51 * snd_soc_jack_report - Report the current status for a jack
52 *
53 * @jack: the jack
54 * @status: a bitmask of enum snd_jack_type values that are currently detected.
55 * @mask: a bitmask of enum snd_jack_type values that being reported.
56 *
57 * If configured using snd_soc_jack_add_pins() then the associated
58 * DAPM pins will be enabled or disabled as appropriate and DAPM
59 * synchronised.
60 *
61 * Note: This function uses mutexes and should be called from a
62 * context which can sleep (such as a workqueue).
63 */
64void snd_soc_jack_report(struct snd_soc_jack *jack, int status, int mask)
65{
4f066173 66 struct snd_soc_codec *codec;
ce6120cc 67 struct snd_soc_dapm_context *dapm;
8a2cd618 68 struct snd_soc_jack_pin *pin;
30a765d6 69 unsigned int sync = 0;
8a2cd618 70 int enable;
8a2cd618 71
3028eb8c
MB
72 trace_snd_soc_jack_report(jack, mask, status);
73
3a278a0c 74 if (!jack)
8a2cd618 75 return;
3a278a0c 76
f0fba2ad 77 codec = jack->codec;
ce6120cc 78 dapm = &codec->dapm;
8a2cd618 79
2667b4b8 80 mutex_lock(&jack->mutex);
8a2cd618 81
8a2cd618 82 jack->status &= ~mask;
178b699c 83 jack->status |= status & mask;
8a2cd618 84
3028eb8c
MB
85 trace_snd_soc_jack_notify(jack, status);
86
8a2cd618 87 list_for_each_entry(pin, &jack->pins, list) {
178b699c 88 enable = pin->mask & jack->status;
8a2cd618
MB
89
90 if (pin->invert)
91 enable = !enable;
92
93 if (enable)
ce6120cc 94 snd_soc_dapm_enable_pin(dapm, pin->pin);
8a2cd618 95 else
ce6120cc 96 snd_soc_dapm_disable_pin(dapm, pin->pin);
30a765d6
VK
97
98 /* we need to sync for this case only */
99 sync = 1;
8a2cd618
MB
100 }
101
d5021ec9 102 /* Report before the DAPM sync to help users updating micbias status */
12022a78 103 blocking_notifier_call_chain(&jack->notifier, jack->status, jack);
d5021ec9 104
30a765d6
VK
105 if (sync)
106 snd_soc_dapm_sync(dapm);
8a2cd618 107
747da0f8 108 snd_jack_report(jack->jack, jack->status);
8a2cd618 109
2667b4b8 110 mutex_unlock(&jack->mutex);
8a2cd618
MB
111}
112EXPORT_SYMBOL_GPL(snd_soc_jack_report);
113
fa9879ed
VK
114/**
115 * snd_soc_jack_add_zones - Associate voltage zones with jack
116 *
117 * @jack: ASoC jack
118 * @count: Number of zones
119 * @zone: Array of zones
120 *
121 * After this function has been called the zones specified in the
122 * array will be associated with the jack.
123 */
124int snd_soc_jack_add_zones(struct snd_soc_jack *jack, int count,
125 struct snd_soc_jack_zone *zones)
126{
127 int i;
128
129 for (i = 0; i < count; i++) {
130 INIT_LIST_HEAD(&zones[i].list);
131 list_add(&(zones[i].list), &jack->jack_zones);
132 }
133 return 0;
134}
135EXPORT_SYMBOL_GPL(snd_soc_jack_add_zones);
136
137/**
138 * snd_soc_jack_get_type - Based on the mic bias value, this function returns
a92b078e 139 * the type of jack from the zones declared in the jack type
fa9879ed 140 *
a92b078e 141 * @jack: ASoC jack
fa9879ed
VK
142 * @micbias_voltage: mic bias voltage at adc channel when jack is plugged in
143 *
144 * Based on the mic bias value passed, this function helps identify
a92b078e 145 * the type of jack from the already declared jack zones
fa9879ed
VK
146 */
147int snd_soc_jack_get_type(struct snd_soc_jack *jack, int micbias_voltage)
148{
149 struct snd_soc_jack_zone *zone;
150
151 list_for_each_entry(zone, &jack->jack_zones, list) {
152 if (micbias_voltage >= zone->min_mv &&
153 micbias_voltage < zone->max_mv)
154 return zone->jack_type;
155 }
156 return 0;
157}
158EXPORT_SYMBOL_GPL(snd_soc_jack_get_type);
159
8a2cd618
MB
160/**
161 * snd_soc_jack_add_pins - Associate DAPM pins with an ASoC jack
162 *
163 * @jack: ASoC jack
164 * @count: Number of pins
165 * @pins: Array of pins
166 *
167 * After this function has been called the DAPM pins specified in the
168 * pins array will have their status updated to reflect the current
169 * state of the jack whenever the jack status is updated.
170 */
171int snd_soc_jack_add_pins(struct snd_soc_jack *jack, int count,
172 struct snd_soc_jack_pin *pins)
173{
174 int i;
175
176 for (i = 0; i < count; i++) {
177 if (!pins[i].pin) {
008d55e2
LG
178 dev_err(jack->codec->dev, "ASoC: No name for pin %d\n",
179 i);
8a2cd618
MB
180 return -EINVAL;
181 }
182 if (!pins[i].mask) {
008d55e2
LG
183 dev_err(jack->codec->dev, "ASoC: No mask for pin %d"
184 " (%s)\n", i, pins[i].pin);
8a2cd618
MB
185 return -EINVAL;
186 }
187
188 INIT_LIST_HEAD(&pins[i].list);
189 list_add(&(pins[i].list), &jack->pins);
190 }
191
192 /* Update to reflect the last reported status; canned jack
193 * implementations are likely to set their state before the
194 * card has an opportunity to associate pins.
195 */
196 snd_soc_jack_report(jack, 0, 0);
197
198 return 0;
199}
200EXPORT_SYMBOL_GPL(snd_soc_jack_add_pins);
ec67624d 201
d5021ec9
MB
202/**
203 * snd_soc_jack_notifier_register - Register a notifier for jack status
204 *
205 * @jack: ASoC jack
206 * @nb: Notifier block to register
207 *
208 * Register for notification of the current status of the jack. Note
209 * that it is not possible to report additional jack events in the
210 * callback from the notifier, this is intended to support
211 * applications such as enabling electrical detection only when a
212 * mechanical detection event has occurred.
213 */
214void snd_soc_jack_notifier_register(struct snd_soc_jack *jack,
215 struct notifier_block *nb)
216{
217 blocking_notifier_chain_register(&jack->notifier, nb);
218}
219EXPORT_SYMBOL_GPL(snd_soc_jack_notifier_register);
220
221/**
222 * snd_soc_jack_notifier_unregister - Unregister a notifier for jack status
223 *
224 * @jack: ASoC jack
225 * @nb: Notifier block to unregister
226 *
227 * Stop notifying for status changes.
228 */
229void snd_soc_jack_notifier_unregister(struct snd_soc_jack *jack,
230 struct notifier_block *nb)
231{
232 blocking_notifier_chain_unregister(&jack->notifier, nb);
233}
234EXPORT_SYMBOL_GPL(snd_soc_jack_notifier_unregister);
235
ec67624d
LCM
236#ifdef CONFIG_GPIOLIB
237/* gpio detect */
26bd7b49 238static void snd_soc_jack_gpio_detect(struct snd_soc_jack_gpio *gpio)
ec67624d
LCM
239{
240 struct snd_soc_jack *jack = gpio->jack;
241 int enable;
242 int report;
243
50dfb69d 244 enable = gpiod_get_value_cansleep(gpio->desc);
ec67624d
LCM
245 if (gpio->invert)
246 enable = !enable;
247
248 if (enable)
249 report = gpio->report;
250 else
251 report = 0;
252
c871a053 253 if (gpio->jack_status_check)
cb29d7b9 254 report = gpio->jack_status_check(gpio->data);
c871a053 255
ec67624d
LCM
256 snd_soc_jack_report(jack, report, gpio->report);
257}
258
259/* irq handler for gpio pin */
260static irqreturn_t gpio_handler(int irq, void *data)
261{
262 struct snd_soc_jack_gpio *gpio = data;
00200107 263 struct device *dev = gpio->jack->codec->component.card->dev;
f9a67059 264
3028eb8c
MB
265 trace_snd_soc_jack_irq(gpio->name);
266
f9a67059
MB
267 if (device_may_wakeup(dev))
268 pm_wakeup_event(dev, gpio->debounce_time + 50);
ec67624d 269
e6058aaa 270 queue_delayed_work(system_power_efficient_wq, &gpio->work,
4c14d78e 271 msecs_to_jiffies(gpio->debounce_time));
ec67624d
LCM
272
273 return IRQ_HANDLED;
274}
275
276/* gpio work */
277static void gpio_work(struct work_struct *work)
278{
279 struct snd_soc_jack_gpio *gpio;
280
4c14d78e 281 gpio = container_of(work, struct snd_soc_jack_gpio, work.work);
ec67624d
LCM
282 snd_soc_jack_gpio_detect(gpio);
283}
284
285/**
286 * snd_soc_jack_add_gpios - Associate GPIO pins with an ASoC jack
287 *
288 * @jack: ASoC jack
289 * @count: number of pins
290 * @gpios: array of gpio pins
291 *
292 * This function will request gpio, set data direction and request irq
293 * for each gpio in the array.
294 */
295int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count,
296 struct snd_soc_jack_gpio *gpios)
297{
298 int i, ret;
299
300 for (i = 0; i < count; i++) {
ec67624d 301 if (!gpios[i].name) {
f025d3b9
JN
302 dev_err(jack->codec->dev,
303 "ASoC: No name for gpio at index %d\n", i);
ec67624d
LCM
304 ret = -EINVAL;
305 goto undo;
306 }
307
f025d3b9
JN
308 if (gpios[i].gpiod_dev) {
309 /* GPIO descriptor */
310 gpios[i].desc = gpiod_get_index(gpios[i].gpiod_dev,
311 gpios[i].name,
312 gpios[i].idx);
313 if (IS_ERR(gpios[i].desc)) {
314 ret = PTR_ERR(gpios[i].desc);
315 dev_err(gpios[i].gpiod_dev,
316 "ASoC: Cannot get gpio at index %d: %d",
317 i, ret);
318 goto undo;
319 }
320 } else {
321 /* legacy GPIO number */
322 if (!gpio_is_valid(gpios[i].gpio)) {
323 dev_err(jack->codec->dev,
324 "ASoC: Invalid gpio %d\n",
325 gpios[i].gpio);
326 ret = -EINVAL;
327 goto undo;
328 }
329
330 ret = gpio_request(gpios[i].gpio, gpios[i].name);
331 if (ret)
332 goto undo;
333
334 gpios[i].desc = gpio_to_desc(gpios[i].gpio);
335 }
50dfb69d
JN
336
337 ret = gpiod_direction_input(gpios[i].desc);
ec67624d
LCM
338 if (ret)
339 goto err;
340
4c14d78e 341 INIT_DELAYED_WORK(&gpios[i].work, gpio_work);
b8e22c1f
LPC
342 gpios[i].jack = jack;
343
50dfb69d 344 ret = request_any_context_irq(gpiod_to_irq(gpios[i].desc),
3f58fd84
MB
345 gpio_handler,
346 IRQF_TRIGGER_RISING |
347 IRQF_TRIGGER_FALLING,
363618f0 348 gpios[i].name,
3f58fd84 349 &gpios[i]);
d2b4c7bd 350 if (ret < 0)
ec67624d
LCM
351 goto err;
352
7887ab3a 353 if (gpios[i].wake) {
50dfb69d 354 ret = irq_set_irq_wake(gpiod_to_irq(gpios[i].desc), 1);
7887ab3a 355 if (ret != 0)
f025d3b9
JN
356 dev_err(jack->codec->dev,
357 "ASoC: Failed to mark GPIO at index %d as wake source: %d\n",
358 i, ret);
7887ab3a
MB
359 }
360
178b699c 361 /* Expose GPIO value over sysfs for diagnostic purposes */
50dfb69d 362 gpiod_export(gpios[i].desc, false);
178b699c 363
178b699c 364 /* Update initial jack status */
f1adf5be 365 schedule_delayed_work(&gpios[i].work,
366 msecs_to_jiffies(gpios[i].debounce_time));
ec67624d
LCM
367 }
368
369 return 0;
370
371err:
372 gpio_free(gpios[i].gpio);
373undo:
374 snd_soc_jack_free_gpios(jack, i, gpios);
375
376 return ret;
377}
378EXPORT_SYMBOL_GPL(snd_soc_jack_add_gpios);
379
f025d3b9
JN
380/**
381 * snd_soc_jack_add_gpiods - Associate GPIO descriptor pins with an ASoC jack
382 *
383 * @gpiod_dev: GPIO consumer device
384 * @jack: ASoC jack
385 * @count: number of pins
386 * @gpios: array of gpio pins
387 *
388 * This function will request gpio, set data direction and request irq
389 * for each gpio in the array.
390 */
391int snd_soc_jack_add_gpiods(struct device *gpiod_dev,
392 struct snd_soc_jack *jack,
393 int count, struct snd_soc_jack_gpio *gpios)
394{
395 int i;
396
397 for (i = 0; i < count; i++)
398 gpios[i].gpiod_dev = gpiod_dev;
399
400 return snd_soc_jack_add_gpios(jack, count, gpios);
401}
402EXPORT_SYMBOL_GPL(snd_soc_jack_add_gpiods);
403
ec67624d
LCM
404/**
405 * snd_soc_jack_free_gpios - Release GPIO pins' resources of an ASoC jack
406 *
407 * @jack: ASoC jack
408 * @count: number of pins
409 * @gpios: array of gpio pins
410 *
411 * Release gpio and irq resources for gpio pins associated with an ASoC jack.
412 */
413void snd_soc_jack_free_gpios(struct snd_soc_jack *jack, int count,
414 struct snd_soc_jack_gpio *gpios)
415{
416 int i;
417
418 for (i = 0; i < count; i++) {
50dfb69d
JN
419 gpiod_unexport(gpios[i].desc);
420 free_irq(gpiod_to_irq(gpios[i].desc), &gpios[i]);
4c14d78e 421 cancel_delayed_work_sync(&gpios[i].work);
50dfb69d 422 gpiod_put(gpios[i].desc);
ec67624d
LCM
423 gpios[i].jack = NULL;
424 }
425}
426EXPORT_SYMBOL_GPL(snd_soc_jack_free_gpios);
427#endif /* CONFIG_GPIOLIB */
This page took 0.224921 seconds and 5 git commands to generate.