blob: b2b16044ae80327554d3cab9c045f37e122ea85d [file] [log] [blame]
Mark Brown8a2cd612009-01-07 17:31:10 +00001/*
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>
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -060016#include <linux/gpio.h>
Jarkko Nikula50dfb692014-05-26 14:34:36 +030017#include <linux/gpio/consumer.h>
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -060018#include <linux/interrupt.h>
19#include <linux/workqueue.h>
20#include <linux/delay.h>
Paul Gortmakerd81a6d72011-09-22 09:34:58 -040021#include <linux/export.h>
Dmitry Torokhov73548dd2017-03-21 16:50:43 -070022#include <linux/suspend.h>
Mark Brown3028eb82010-12-05 12:22:46 +000023#include <trace/events/asoc.h>
Mark Brown8a2cd612009-01-07 17:31:10 +000024
Takashi Iwaibd29ae92017-08-22 13:59:44 +020025struct jack_gpio_tbl {
26 int count;
27 struct snd_soc_jack *jack;
28 struct snd_soc_jack_gpio *gpios;
29};
30
Mark Brown8a2cd612009-01-07 17:31:10 +000031/**
Kuninori Morimoto44c07362017-08-24 00:58:07 +000032 * snd_soc_component_set_jack - configure component jack.
33 * @component: COMPONENTs
34 * @jack: structure to use for the jack
35 * @data: can be used if codec driver need extra data for configuring jack
36 *
37 * Configures and enables jack detection function.
38 */
39int snd_soc_component_set_jack(struct snd_soc_component *component,
40 struct snd_soc_jack *jack, void *data)
41{
Kuninori Morimoto44c07362017-08-24 00:58:07 +000042 if (component->driver->set_jack)
43 return component->driver->set_jack(component, jack, data);
44
45 return -ENOTSUPP;
46}
47EXPORT_SYMBOL_GPL(snd_soc_component_set_jack);
48
49/**
Lars-Peter Clausen97093992015-03-04 10:33:17 +010050 * snd_soc_card_jack_new - Create a new jack
51 * @card: ASoC card
Mark Brown8a2cd612009-01-07 17:31:10 +000052 * @id: an identifying string for this jack
53 * @type: a bitmask of enum snd_jack_type values that can be detected by
54 * this jack
55 * @jack: structure to use for the jack
Lars-Peter Clausen97093992015-03-04 10:33:17 +010056 * @pins: Array of jack pins to be added to the jack or NULL
57 * @num_pins: Number of elements in the @pins array
Mark Brown8a2cd612009-01-07 17:31:10 +000058 *
59 * Creates a new jack object.
60 *
61 * Returns zero if successful, or a negative error code on failure.
62 * On success jack will be initialised.
63 */
Lars-Peter Clausen97093992015-03-04 10:33:17 +010064int snd_soc_card_jack_new(struct snd_soc_card *card, const char *id, int type,
65 struct snd_soc_jack *jack, struct snd_soc_jack_pin *pins,
66 unsigned int num_pins)
Mark Brown8a2cd612009-01-07 17:31:10 +000067{
Lars-Peter Clausen97093992015-03-04 10:33:17 +010068 int ret;
69
Mark Brown2667b4b2012-03-12 14:07:49 +000070 mutex_init(&jack->mutex);
Lars-Peter Clausen97093992015-03-04 10:33:17 +010071 jack->card = card;
Mark Brown8a2cd612009-01-07 17:31:10 +000072 INIT_LIST_HEAD(&jack->pins);
Vinod Koulfa9879e2011-02-09 14:44:17 +053073 INIT_LIST_HEAD(&jack->jack_zones);
Mark Brownd5021ec2010-03-22 12:06:30 +000074 BLOCKING_INIT_NOTIFIER_HEAD(&jack->notifier);
Mark Brown8a2cd612009-01-07 17:31:10 +000075
Jie Yang4e3f0dc2015-04-27 21:20:58 +080076 ret = snd_jack_new(card->snd_card, id, type, &jack->jack, false, false);
Lars-Peter Clausen97093992015-03-04 10:33:17 +010077 if (ret)
78 return ret;
79
80 if (num_pins)
81 return snd_soc_jack_add_pins(jack, num_pins, pins);
82
83 return 0;
Mark Brown8a2cd612009-01-07 17:31:10 +000084}
Lars-Peter Clausen97093992015-03-04 10:33:17 +010085EXPORT_SYMBOL_GPL(snd_soc_card_jack_new);
Mark Brown8a2cd612009-01-07 17:31:10 +000086
87/**
88 * snd_soc_jack_report - Report the current status for a jack
89 *
90 * @jack: the jack
91 * @status: a bitmask of enum snd_jack_type values that are currently detected.
92 * @mask: a bitmask of enum snd_jack_type values that being reported.
93 *
94 * If configured using snd_soc_jack_add_pins() then the associated
95 * DAPM pins will be enabled or disabled as appropriate and DAPM
96 * synchronised.
97 *
98 * Note: This function uses mutexes and should be called from a
99 * context which can sleep (such as a workqueue).
100 */
101void snd_soc_jack_report(struct snd_soc_jack *jack, int status, int mask)
102{
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200103 struct snd_soc_dapm_context *dapm;
Mark Brown8a2cd612009-01-07 17:31:10 +0000104 struct snd_soc_jack_pin *pin;
Vinod Koul30a765d2013-10-21 19:07:34 +0530105 unsigned int sync = 0;
Mark Brown8a2cd612009-01-07 17:31:10 +0000106 int enable;
Mark Brown8a2cd612009-01-07 17:31:10 +0000107
Mark Brown3028eb82010-12-05 12:22:46 +0000108 trace_snd_soc_jack_report(jack, mask, status);
109
Mark Brown3a278a02010-03-29 20:31:14 +0100110 if (!jack)
Mark Brown8a2cd612009-01-07 17:31:10 +0000111 return;
Mark Brown3a278a02010-03-29 20:31:14 +0100112
Lars-Peter Clausen97093992015-03-04 10:33:17 +0100113 dapm = &jack->card->dapm;
Mark Brown8a2cd612009-01-07 17:31:10 +0000114
Mark Brown2667b4b2012-03-12 14:07:49 +0000115 mutex_lock(&jack->mutex);
Mark Brown8a2cd612009-01-07 17:31:10 +0000116
Mark Brown8a2cd612009-01-07 17:31:10 +0000117 jack->status &= ~mask;
Janusz Krzysztofik178b6992009-07-24 02:48:57 +0200118 jack->status |= status & mask;
Mark Brown8a2cd612009-01-07 17:31:10 +0000119
Mark Brown3028eb82010-12-05 12:22:46 +0000120 trace_snd_soc_jack_notify(jack, status);
121
Mark Brown8a2cd612009-01-07 17:31:10 +0000122 list_for_each_entry(pin, &jack->pins, list) {
Janusz Krzysztofik178b6992009-07-24 02:48:57 +0200123 enable = pin->mask & jack->status;
Mark Brown8a2cd612009-01-07 17:31:10 +0000124
125 if (pin->invert)
126 enable = !enable;
127
128 if (enable)
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200129 snd_soc_dapm_enable_pin(dapm, pin->pin);
Mark Brown8a2cd612009-01-07 17:31:10 +0000130 else
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200131 snd_soc_dapm_disable_pin(dapm, pin->pin);
Vinod Koul30a765d2013-10-21 19:07:34 +0530132
133 /* we need to sync for this case only */
134 sync = 1;
Mark Brown8a2cd612009-01-07 17:31:10 +0000135 }
136
Mark Brownd5021ec2010-03-22 12:06:30 +0000137 /* Report before the DAPM sync to help users updating micbias status */
Mark Brown12022a72012-08-13 16:28:36 +0100138 blocking_notifier_call_chain(&jack->notifier, jack->status, jack);
Mark Brownd5021ec2010-03-22 12:06:30 +0000139
Vinod Koul30a765d2013-10-21 19:07:34 +0530140 if (sync)
141 snd_soc_dapm_sync(dapm);
Mark Brown8a2cd612009-01-07 17:31:10 +0000142
Mark Brown747da0f2011-09-04 08:18:18 -0700143 snd_jack_report(jack->jack, jack->status);
Mark Brown8a2cd612009-01-07 17:31:10 +0000144
Mark Brown2667b4b2012-03-12 14:07:49 +0000145 mutex_unlock(&jack->mutex);
Mark Brown8a2cd612009-01-07 17:31:10 +0000146}
147EXPORT_SYMBOL_GPL(snd_soc_jack_report);
148
149/**
Vinod Koulfa9879e2011-02-09 14:44:17 +0530150 * snd_soc_jack_add_zones - Associate voltage zones with jack
151 *
152 * @jack: ASoC jack
153 * @count: Number of zones
Masanari Iidabb29a932014-11-12 00:52:23 +0900154 * @zones: Array of zones
Vinod Koulfa9879e2011-02-09 14:44:17 +0530155 *
156 * After this function has been called the zones specified in the
157 * array will be associated with the jack.
158 */
159int snd_soc_jack_add_zones(struct snd_soc_jack *jack, int count,
160 struct snd_soc_jack_zone *zones)
161{
162 int i;
163
164 for (i = 0; i < count; i++) {
165 INIT_LIST_HEAD(&zones[i].list);
166 list_add(&(zones[i].list), &jack->jack_zones);
167 }
168 return 0;
169}
170EXPORT_SYMBOL_GPL(snd_soc_jack_add_zones);
171
172/**
173 * snd_soc_jack_get_type - Based on the mic bias value, this function returns
Peter Meerwalda92b0782012-10-02 14:08:19 +0200174 * the type of jack from the zones declared in the jack type
Vinod Koulfa9879e2011-02-09 14:44:17 +0530175 *
Peter Meerwalda92b0782012-10-02 14:08:19 +0200176 * @jack: ASoC jack
Vinod Koulfa9879e2011-02-09 14:44:17 +0530177 * @micbias_voltage: mic bias voltage at adc channel when jack is plugged in
178 *
179 * Based on the mic bias value passed, this function helps identify
Peter Meerwalda92b0782012-10-02 14:08:19 +0200180 * the type of jack from the already declared jack zones
Vinod Koulfa9879e2011-02-09 14:44:17 +0530181 */
182int snd_soc_jack_get_type(struct snd_soc_jack *jack, int micbias_voltage)
183{
184 struct snd_soc_jack_zone *zone;
185
186 list_for_each_entry(zone, &jack->jack_zones, list) {
187 if (micbias_voltage >= zone->min_mv &&
188 micbias_voltage < zone->max_mv)
189 return zone->jack_type;
190 }
191 return 0;
192}
193EXPORT_SYMBOL_GPL(snd_soc_jack_get_type);
194
195/**
Mark Brown8a2cd612009-01-07 17:31:10 +0000196 * snd_soc_jack_add_pins - Associate DAPM pins with an ASoC jack
197 *
198 * @jack: ASoC jack
199 * @count: Number of pins
200 * @pins: Array of pins
201 *
202 * After this function has been called the DAPM pins specified in the
203 * pins array will have their status updated to reflect the current
204 * state of the jack whenever the jack status is updated.
205 */
206int snd_soc_jack_add_pins(struct snd_soc_jack *jack, int count,
207 struct snd_soc_jack_pin *pins)
208{
209 int i;
210
211 for (i = 0; i < count; i++) {
212 if (!pins[i].pin) {
Lars-Peter Clausen97093992015-03-04 10:33:17 +0100213 dev_err(jack->card->dev, "ASoC: No name for pin %d\n",
Liam Girdwood008d55e2012-11-19 14:39:14 +0000214 i);
Mark Brown8a2cd612009-01-07 17:31:10 +0000215 return -EINVAL;
216 }
217 if (!pins[i].mask) {
Lars-Peter Clausen97093992015-03-04 10:33:17 +0100218 dev_err(jack->card->dev, "ASoC: No mask for pin %d"
Liam Girdwood008d55e2012-11-19 14:39:14 +0000219 " (%s)\n", i, pins[i].pin);
Mark Brown8a2cd612009-01-07 17:31:10 +0000220 return -EINVAL;
221 }
222
223 INIT_LIST_HEAD(&pins[i].list);
224 list_add(&(pins[i].list), &jack->pins);
Jie Yangf63e8582015-04-27 21:21:00 +0800225 snd_jack_add_new_kctl(jack->jack, pins[i].pin, pins[i].mask);
Mark Brown8a2cd612009-01-07 17:31:10 +0000226 }
227
228 /* Update to reflect the last reported status; canned jack
229 * implementations are likely to set their state before the
230 * card has an opportunity to associate pins.
231 */
232 snd_soc_jack_report(jack, 0, 0);
233
234 return 0;
235}
236EXPORT_SYMBOL_GPL(snd_soc_jack_add_pins);
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -0600237
Mark Brownd5021ec2010-03-22 12:06:30 +0000238/**
239 * snd_soc_jack_notifier_register - Register a notifier for jack status
240 *
241 * @jack: ASoC jack
242 * @nb: Notifier block to register
243 *
244 * Register for notification of the current status of the jack. Note
245 * that it is not possible to report additional jack events in the
246 * callback from the notifier, this is intended to support
247 * applications such as enabling electrical detection only when a
248 * mechanical detection event has occurred.
249 */
250void snd_soc_jack_notifier_register(struct snd_soc_jack *jack,
251 struct notifier_block *nb)
252{
253 blocking_notifier_chain_register(&jack->notifier, nb);
254}
255EXPORT_SYMBOL_GPL(snd_soc_jack_notifier_register);
256
257/**
258 * snd_soc_jack_notifier_unregister - Unregister a notifier for jack status
259 *
260 * @jack: ASoC jack
261 * @nb: Notifier block to unregister
262 *
263 * Stop notifying for status changes.
264 */
265void snd_soc_jack_notifier_unregister(struct snd_soc_jack *jack,
266 struct notifier_block *nb)
267{
268 blocking_notifier_chain_unregister(&jack->notifier, nb);
269}
270EXPORT_SYMBOL_GPL(snd_soc_jack_notifier_unregister);
271
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -0600272#ifdef CONFIG_GPIOLIB
273/* gpio detect */
Mark Brown26bd7b42009-03-06 11:32:17 +0000274static void snd_soc_jack_gpio_detect(struct snd_soc_jack_gpio *gpio)
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -0600275{
276 struct snd_soc_jack *jack = gpio->jack;
277 int enable;
278 int report;
279
Jarkko Nikula50dfb692014-05-26 14:34:36 +0300280 enable = gpiod_get_value_cansleep(gpio->desc);
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -0600281 if (gpio->invert)
282 enable = !enable;
283
284 if (enable)
285 report = gpio->report;
286 else
287 report = 0;
288
Joonyoung Shimc871a052009-11-12 17:14:04 +0900289 if (gpio->jack_status_check)
xiangxiaocb29d7b2014-02-23 14:40:44 +0800290 report = gpio->jack_status_check(gpio->data);
Joonyoung Shimc871a052009-11-12 17:14:04 +0900291
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -0600292 snd_soc_jack_report(jack, report, gpio->report);
293}
294
295/* irq handler for gpio pin */
296static irqreturn_t gpio_handler(int irq, void *data)
297{
298 struct snd_soc_jack_gpio *gpio = data;
Lars-Peter Clausen97093992015-03-04 10:33:17 +0100299 struct device *dev = gpio->jack->card->dev;
Mark Brownf9a67052010-11-14 19:25:09 +0000300
Mark Brown3028eb82010-12-05 12:22:46 +0000301 trace_snd_soc_jack_irq(gpio->name);
302
Mark Brownf9a67052010-11-14 19:25:09 +0000303 if (device_may_wakeup(dev))
304 pm_wakeup_event(dev, gpio->debounce_time + 50);
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -0600305
Mark Browne6058aa2013-07-18 22:47:10 +0100306 queue_delayed_work(system_power_efficient_wq, &gpio->work,
Mark Brown4c14d782010-10-06 15:54:28 -0700307 msecs_to_jiffies(gpio->debounce_time));
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -0600308
309 return IRQ_HANDLED;
310}
311
312/* gpio work */
313static void gpio_work(struct work_struct *work)
314{
315 struct snd_soc_jack_gpio *gpio;
316
Mark Brown4c14d782010-10-06 15:54:28 -0700317 gpio = container_of(work, struct snd_soc_jack_gpio, work.work);
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -0600318 snd_soc_jack_gpio_detect(gpio);
319}
320
Dmitry Torokhov73548dd2017-03-21 16:50:43 -0700321static int snd_soc_jack_pm_notifier(struct notifier_block *nb,
322 unsigned long action, void *data)
323{
324 struct snd_soc_jack_gpio *gpio =
325 container_of(nb, struct snd_soc_jack_gpio, pm_notifier);
326
327 switch (action) {
328 case PM_POST_SUSPEND:
329 case PM_POST_HIBERNATION:
330 case PM_POST_RESTORE:
331 /*
332 * Use workqueue so we do not have to care about running
333 * concurrently with work triggered by the interrupt handler.
334 */
335 queue_delayed_work(system_power_efficient_wq, &gpio->work, 0);
336 break;
337 }
338
339 return NOTIFY_DONE;
340}
341
Takashi Iwaibd29ae92017-08-22 13:59:44 +0200342static void jack_free_gpios(struct snd_soc_jack *jack, int count,
343 struct snd_soc_jack_gpio *gpios)
344{
345 int i;
346
347 for (i = 0; i < count; i++) {
348 gpiod_unexport(gpios[i].desc);
349 unregister_pm_notifier(&gpios[i].pm_notifier);
350 free_irq(gpiod_to_irq(gpios[i].desc), &gpios[i]);
351 cancel_delayed_work_sync(&gpios[i].work);
352 gpiod_put(gpios[i].desc);
353 gpios[i].jack = NULL;
354 }
355}
356
357static void jack_devres_free_gpios(struct device *dev, void *res)
358{
359 struct jack_gpio_tbl *tbl = res;
360
361 jack_free_gpios(tbl->jack, tbl->count, tbl->gpios);
362}
363
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -0600364/**
365 * snd_soc_jack_add_gpios - Associate GPIO pins with an ASoC jack
366 *
367 * @jack: ASoC jack
368 * @count: number of pins
369 * @gpios: array of gpio pins
370 *
371 * This function will request gpio, set data direction and request irq
372 * for each gpio in the array.
373 */
374int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count,
375 struct snd_soc_jack_gpio *gpios)
376{
377 int i, ret;
Takashi Iwaibd29ae92017-08-22 13:59:44 +0200378 struct jack_gpio_tbl *tbl;
379
380 tbl = devres_alloc(jack_devres_free_gpios, sizeof(*tbl), GFP_KERNEL);
381 if (!tbl)
382 return -ENOMEM;
383 tbl->jack = jack;
384 tbl->count = count;
385 tbl->gpios = gpios;
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -0600386
387 for (i = 0; i < count; i++) {
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -0600388 if (!gpios[i].name) {
Lars-Peter Clausen97093992015-03-04 10:33:17 +0100389 dev_err(jack->card->dev,
Jarkko Nikulaf025d3b2014-05-26 14:34:37 +0300390 "ASoC: No name for gpio at index %d\n", i);
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -0600391 ret = -EINVAL;
392 goto undo;
393 }
394
Dylan Reide616d2e2015-05-22 15:09:20 -0700395 if (gpios[i].desc) {
396 /* Already have a GPIO descriptor. */
397 goto got_gpio;
398 } else if (gpios[i].gpiod_dev) {
399 /* Get a GPIO descriptor */
Jarkko Nikulaf025d3b2014-05-26 14:34:37 +0300400 gpios[i].desc = gpiod_get_index(gpios[i].gpiod_dev,
401 gpios[i].name,
Alexandre Courbot00d647b2014-10-23 17:15:18 +0900402 gpios[i].idx, GPIOD_IN);
Jarkko Nikulaf025d3b2014-05-26 14:34:37 +0300403 if (IS_ERR(gpios[i].desc)) {
404 ret = PTR_ERR(gpios[i].desc);
405 dev_err(gpios[i].gpiod_dev,
406 "ASoC: Cannot get gpio at index %d: %d",
407 i, ret);
408 goto undo;
409 }
410 } else {
411 /* legacy GPIO number */
412 if (!gpio_is_valid(gpios[i].gpio)) {
Lars-Peter Clausen97093992015-03-04 10:33:17 +0100413 dev_err(jack->card->dev,
Jarkko Nikulaf025d3b2014-05-26 14:34:37 +0300414 "ASoC: Invalid gpio %d\n",
415 gpios[i].gpio);
416 ret = -EINVAL;
417 goto undo;
418 }
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -0600419
Alexandre Courbot00d647b2014-10-23 17:15:18 +0900420 ret = gpio_request_one(gpios[i].gpio, GPIOF_IN,
421 gpios[i].name);
Jarkko Nikulaf025d3b2014-05-26 14:34:37 +0300422 if (ret)
423 goto undo;
424
425 gpios[i].desc = gpio_to_desc(gpios[i].gpio);
426 }
Dylan Reide616d2e2015-05-22 15:09:20 -0700427got_gpio:
Mark Brown4c14d782010-10-06 15:54:28 -0700428 INIT_DELAYED_WORK(&gpios[i].work, gpio_work);
Lars-Peter Clausenb8e22c12009-07-31 21:15:25 +0200429 gpios[i].jack = jack;
430
Jarkko Nikula50dfb692014-05-26 14:34:36 +0300431 ret = request_any_context_irq(gpiod_to_irq(gpios[i].desc),
Mark Brown3f58fd82010-11-03 09:35:31 -0400432 gpio_handler,
433 IRQF_TRIGGER_RISING |
434 IRQF_TRIGGER_FALLING,
Stephen Warren363618f2011-04-01 14:50:43 -0600435 gpios[i].name,
Mark Brown3f58fd82010-11-03 09:35:31 -0400436 &gpios[i]);
Axel Lind2b4c7b2011-08-13 19:15:01 +0800437 if (ret < 0)
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -0600438 goto err;
439
Mark Brown7887ab32011-02-17 16:35:55 -0800440 if (gpios[i].wake) {
Jarkko Nikula50dfb692014-05-26 14:34:36 +0300441 ret = irq_set_irq_wake(gpiod_to_irq(gpios[i].desc), 1);
Mark Brown7887ab32011-02-17 16:35:55 -0800442 if (ret != 0)
Lars-Peter Clausen97093992015-03-04 10:33:17 +0100443 dev_err(jack->card->dev,
Jarkko Nikulaf025d3b2014-05-26 14:34:37 +0300444 "ASoC: Failed to mark GPIO at index %d as wake source: %d\n",
445 i, ret);
Mark Brown7887ab32011-02-17 16:35:55 -0800446 }
447
Dmitry Torokhov73548dd2017-03-21 16:50:43 -0700448 /*
449 * Register PM notifier so we do not miss state transitions
450 * happening while system is asleep.
451 */
452 gpios[i].pm_notifier.notifier_call = snd_soc_jack_pm_notifier;
453 register_pm_notifier(&gpios[i].pm_notifier);
454
Janusz Krzysztofik178b6992009-07-24 02:48:57 +0200455 /* Expose GPIO value over sysfs for diagnostic purposes */
Jarkko Nikula50dfb692014-05-26 14:34:36 +0300456 gpiod_export(gpios[i].desc, false);
Janusz Krzysztofik178b6992009-07-24 02:48:57 +0200457
Janusz Krzysztofik178b6992009-07-24 02:48:57 +0200458 /* Update initial jack status */
xiangxiaof1adf5b2014-02-23 14:44:52 +0800459 schedule_delayed_work(&gpios[i].work,
460 msecs_to_jiffies(gpios[i].debounce_time));
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -0600461 }
462
Takashi Iwaibd29ae92017-08-22 13:59:44 +0200463 devres_add(jack->card->dev, tbl);
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -0600464 return 0;
465
466err:
467 gpio_free(gpios[i].gpio);
468undo:
Takashi Iwaibd29ae92017-08-22 13:59:44 +0200469 jack_free_gpios(jack, i, gpios);
470 devres_free(tbl);
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -0600471
472 return ret;
473}
474EXPORT_SYMBOL_GPL(snd_soc_jack_add_gpios);
475
476/**
Jarkko Nikulaf025d3b2014-05-26 14:34:37 +0300477 * snd_soc_jack_add_gpiods - Associate GPIO descriptor pins with an ASoC jack
478 *
479 * @gpiod_dev: GPIO consumer device
480 * @jack: ASoC jack
481 * @count: number of pins
482 * @gpios: array of gpio pins
483 *
484 * This function will request gpio, set data direction and request irq
485 * for each gpio in the array.
486 */
487int snd_soc_jack_add_gpiods(struct device *gpiod_dev,
488 struct snd_soc_jack *jack,
489 int count, struct snd_soc_jack_gpio *gpios)
490{
491 int i;
492
493 for (i = 0; i < count; i++)
494 gpios[i].gpiod_dev = gpiod_dev;
495
496 return snd_soc_jack_add_gpios(jack, count, gpios);
497}
498EXPORT_SYMBOL_GPL(snd_soc_jack_add_gpiods);
499
500/**
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -0600501 * snd_soc_jack_free_gpios - Release GPIO pins' resources of an ASoC jack
502 *
503 * @jack: ASoC jack
504 * @count: number of pins
505 * @gpios: array of gpio pins
506 *
507 * Release gpio and irq resources for gpio pins associated with an ASoC jack.
508 */
509void snd_soc_jack_free_gpios(struct snd_soc_jack *jack, int count,
510 struct snd_soc_jack_gpio *gpios)
511{
Takashi Iwaibd29ae92017-08-22 13:59:44 +0200512 jack_free_gpios(jack, count, gpios);
513 devres_destroy(jack->card->dev, jack_devres_free_gpios, NULL, NULL);
Lopez Cruz, Misaelec676242009-03-03 15:25:04 -0600514}
515EXPORT_SYMBOL_GPL(snd_soc_jack_free_gpios);
516#endif /* CONFIG_GPIOLIB */