Kuninori Morimoto | 8ab0215 | 2018-07-02 06:23:16 +0000 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | // |
| 3 | // soc-jack.c -- ALSA SoC jack handling |
| 4 | // |
| 5 | // Copyright 2008 Wolfson Microelectronics PLC. |
| 6 | // |
| 7 | // Author: Mark Brown <broonie@opensource.wolfsonmicro.com> |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 8 | |
| 9 | #include <sound/jack.h> |
| 10 | #include <sound/soc.h> |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 11 | #include <linux/gpio.h> |
Jarkko Nikula | 50dfb69 | 2014-05-26 14:34:36 +0300 | [diff] [blame] | 12 | #include <linux/gpio/consumer.h> |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 13 | #include <linux/interrupt.h> |
| 14 | #include <linux/workqueue.h> |
| 15 | #include <linux/delay.h> |
Paul Gortmaker | d81a6d7 | 2011-09-22 09:34:58 -0400 | [diff] [blame] | 16 | #include <linux/export.h> |
Dmitry Torokhov | 73548dd | 2017-03-21 16:50:43 -0700 | [diff] [blame] | 17 | #include <linux/suspend.h> |
Mark Brown | 3028eb8 | 2010-12-05 12:22:46 +0000 | [diff] [blame] | 18 | #include <trace/events/asoc.h> |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 19 | |
Takashi Iwai | bd29ae9 | 2017-08-22 13:59:44 +0200 | [diff] [blame] | 20 | struct jack_gpio_tbl { |
| 21 | int count; |
| 22 | struct snd_soc_jack *jack; |
| 23 | struct snd_soc_jack_gpio *gpios; |
| 24 | }; |
| 25 | |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 26 | /** |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 27 | * snd_soc_jack_report - Report the current status for a jack |
| 28 | * |
| 29 | * @jack: the jack |
| 30 | * @status: a bitmask of enum snd_jack_type values that are currently detected. |
| 31 | * @mask: a bitmask of enum snd_jack_type values that being reported. |
| 32 | * |
| 33 | * If configured using snd_soc_jack_add_pins() then the associated |
| 34 | * DAPM pins will be enabled or disabled as appropriate and DAPM |
| 35 | * synchronised. |
| 36 | * |
| 37 | * Note: This function uses mutexes and should be called from a |
| 38 | * context which can sleep (such as a workqueue). |
| 39 | */ |
| 40 | void snd_soc_jack_report(struct snd_soc_jack *jack, int status, int mask) |
| 41 | { |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 42 | struct snd_soc_dapm_context *dapm; |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 43 | struct snd_soc_jack_pin *pin; |
Vinod Koul | 30a765d | 2013-10-21 19:07:34 +0530 | [diff] [blame] | 44 | unsigned int sync = 0; |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 45 | int enable; |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 46 | |
Mark Brown | 3a278a0 | 2010-03-29 20:31:14 +0100 | [diff] [blame] | 47 | if (!jack) |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 48 | return; |
Pawel Harlozinski | 8f157d4 | 2019-11-12 14:02:36 +0100 | [diff] [blame] | 49 | trace_snd_soc_jack_report(jack, mask, status); |
Mark Brown | 3a278a0 | 2010-03-29 20:31:14 +0100 | [diff] [blame] | 50 | |
Lars-Peter Clausen | 9709399 | 2015-03-04 10:33:17 +0100 | [diff] [blame] | 51 | dapm = &jack->card->dapm; |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 52 | |
Mark Brown | 2667b4b | 2012-03-12 14:07:49 +0000 | [diff] [blame] | 53 | mutex_lock(&jack->mutex); |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 54 | |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 55 | jack->status &= ~mask; |
Janusz Krzysztofik | 178b699 | 2009-07-24 02:48:57 +0200 | [diff] [blame] | 56 | jack->status |= status & mask; |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 57 | |
Mark Brown | 3028eb8 | 2010-12-05 12:22:46 +0000 | [diff] [blame] | 58 | trace_snd_soc_jack_notify(jack, status); |
| 59 | |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 60 | list_for_each_entry(pin, &jack->pins, list) { |
Janusz Krzysztofik | 178b699 | 2009-07-24 02:48:57 +0200 | [diff] [blame] | 61 | enable = pin->mask & jack->status; |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 62 | |
| 63 | if (pin->invert) |
| 64 | enable = !enable; |
| 65 | |
| 66 | if (enable) |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 67 | snd_soc_dapm_enable_pin(dapm, pin->pin); |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 68 | else |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 69 | snd_soc_dapm_disable_pin(dapm, pin->pin); |
Vinod Koul | 30a765d | 2013-10-21 19:07:34 +0530 | [diff] [blame] | 70 | |
| 71 | /* we need to sync for this case only */ |
| 72 | sync = 1; |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 73 | } |
| 74 | |
Mark Brown | d5021ec | 2010-03-22 12:06:30 +0000 | [diff] [blame] | 75 | /* Report before the DAPM sync to help users updating micbias status */ |
Mark Brown | 12022a7 | 2012-08-13 16:28:36 +0100 | [diff] [blame] | 76 | blocking_notifier_call_chain(&jack->notifier, jack->status, jack); |
Mark Brown | d5021ec | 2010-03-22 12:06:30 +0000 | [diff] [blame] | 77 | |
Vinod Koul | 30a765d | 2013-10-21 19:07:34 +0530 | [diff] [blame] | 78 | if (sync) |
| 79 | snd_soc_dapm_sync(dapm); |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 80 | |
Mark Brown | 747da0f | 2011-09-04 08:18:18 -0700 | [diff] [blame] | 81 | snd_jack_report(jack->jack, jack->status); |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 82 | |
Mark Brown | 2667b4b | 2012-03-12 14:07:49 +0000 | [diff] [blame] | 83 | mutex_unlock(&jack->mutex); |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 84 | } |
| 85 | EXPORT_SYMBOL_GPL(snd_soc_jack_report); |
| 86 | |
| 87 | /** |
Vinod Koul | fa9879e | 2011-02-09 14:44:17 +0530 | [diff] [blame] | 88 | * snd_soc_jack_add_zones - Associate voltage zones with jack |
| 89 | * |
| 90 | * @jack: ASoC jack |
| 91 | * @count: Number of zones |
Masanari Iida | bb29a93 | 2014-11-12 00:52:23 +0900 | [diff] [blame] | 92 | * @zones: Array of zones |
Vinod Koul | fa9879e | 2011-02-09 14:44:17 +0530 | [diff] [blame] | 93 | * |
| 94 | * After this function has been called the zones specified in the |
| 95 | * array will be associated with the jack. |
| 96 | */ |
| 97 | int snd_soc_jack_add_zones(struct snd_soc_jack *jack, int count, |
| 98 | struct snd_soc_jack_zone *zones) |
| 99 | { |
| 100 | int i; |
| 101 | |
| 102 | for (i = 0; i < count; i++) { |
| 103 | INIT_LIST_HEAD(&zones[i].list); |
| 104 | list_add(&(zones[i].list), &jack->jack_zones); |
| 105 | } |
| 106 | return 0; |
| 107 | } |
| 108 | EXPORT_SYMBOL_GPL(snd_soc_jack_add_zones); |
| 109 | |
| 110 | /** |
| 111 | * snd_soc_jack_get_type - Based on the mic bias value, this function returns |
Peter Meerwald | a92b078 | 2012-10-02 14:08:19 +0200 | [diff] [blame] | 112 | * the type of jack from the zones declared in the jack type |
Vinod Koul | fa9879e | 2011-02-09 14:44:17 +0530 | [diff] [blame] | 113 | * |
Peter Meerwald | a92b078 | 2012-10-02 14:08:19 +0200 | [diff] [blame] | 114 | * @jack: ASoC jack |
Vinod Koul | fa9879e | 2011-02-09 14:44:17 +0530 | [diff] [blame] | 115 | * @micbias_voltage: mic bias voltage at adc channel when jack is plugged in |
| 116 | * |
| 117 | * Based on the mic bias value passed, this function helps identify |
Peter Meerwald | a92b078 | 2012-10-02 14:08:19 +0200 | [diff] [blame] | 118 | * the type of jack from the already declared jack zones |
Vinod Koul | fa9879e | 2011-02-09 14:44:17 +0530 | [diff] [blame] | 119 | */ |
| 120 | int snd_soc_jack_get_type(struct snd_soc_jack *jack, int micbias_voltage) |
| 121 | { |
| 122 | struct snd_soc_jack_zone *zone; |
| 123 | |
| 124 | list_for_each_entry(zone, &jack->jack_zones, list) { |
| 125 | if (micbias_voltage >= zone->min_mv && |
| 126 | micbias_voltage < zone->max_mv) |
| 127 | return zone->jack_type; |
| 128 | } |
| 129 | return 0; |
| 130 | } |
| 131 | EXPORT_SYMBOL_GPL(snd_soc_jack_get_type); |
| 132 | |
| 133 | /** |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 134 | * snd_soc_jack_add_pins - Associate DAPM pins with an ASoC jack |
| 135 | * |
| 136 | * @jack: ASoC jack |
| 137 | * @count: Number of pins |
| 138 | * @pins: Array of pins |
| 139 | * |
| 140 | * After this function has been called the DAPM pins specified in the |
| 141 | * pins array will have their status updated to reflect the current |
| 142 | * state of the jack whenever the jack status is updated. |
| 143 | */ |
| 144 | int snd_soc_jack_add_pins(struct snd_soc_jack *jack, int count, |
| 145 | struct snd_soc_jack_pin *pins) |
| 146 | { |
| 147 | int i; |
| 148 | |
| 149 | for (i = 0; i < count; i++) { |
| 150 | if (!pins[i].pin) { |
Lars-Peter Clausen | 9709399 | 2015-03-04 10:33:17 +0100 | [diff] [blame] | 151 | dev_err(jack->card->dev, "ASoC: No name for pin %d\n", |
Liam Girdwood | 008d55e | 2012-11-19 14:39:14 +0000 | [diff] [blame] | 152 | i); |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 153 | return -EINVAL; |
| 154 | } |
| 155 | if (!pins[i].mask) { |
Lars-Peter Clausen | 9709399 | 2015-03-04 10:33:17 +0100 | [diff] [blame] | 156 | dev_err(jack->card->dev, "ASoC: No mask for pin %d" |
Liam Girdwood | 008d55e | 2012-11-19 14:39:14 +0000 | [diff] [blame] | 157 | " (%s)\n", i, pins[i].pin); |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 158 | return -EINVAL; |
| 159 | } |
| 160 | |
| 161 | INIT_LIST_HEAD(&pins[i].list); |
| 162 | list_add(&(pins[i].list), &jack->pins); |
Jie Yang | f63e858 | 2015-04-27 21:21:00 +0800 | [diff] [blame] | 163 | snd_jack_add_new_kctl(jack->jack, pins[i].pin, pins[i].mask); |
Mark Brown | 8a2cd61 | 2009-01-07 17:31:10 +0000 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | /* Update to reflect the last reported status; canned jack |
| 167 | * implementations are likely to set their state before the |
| 168 | * card has an opportunity to associate pins. |
| 169 | */ |
| 170 | snd_soc_jack_report(jack, 0, 0); |
| 171 | |
| 172 | return 0; |
| 173 | } |
| 174 | EXPORT_SYMBOL_GPL(snd_soc_jack_add_pins); |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 175 | |
Mark Brown | d5021ec | 2010-03-22 12:06:30 +0000 | [diff] [blame] | 176 | /** |
| 177 | * snd_soc_jack_notifier_register - Register a notifier for jack status |
| 178 | * |
| 179 | * @jack: ASoC jack |
| 180 | * @nb: Notifier block to register |
| 181 | * |
| 182 | * Register for notification of the current status of the jack. Note |
| 183 | * that it is not possible to report additional jack events in the |
| 184 | * callback from the notifier, this is intended to support |
| 185 | * applications such as enabling electrical detection only when a |
| 186 | * mechanical detection event has occurred. |
| 187 | */ |
| 188 | void snd_soc_jack_notifier_register(struct snd_soc_jack *jack, |
| 189 | struct notifier_block *nb) |
| 190 | { |
| 191 | blocking_notifier_chain_register(&jack->notifier, nb); |
| 192 | } |
| 193 | EXPORT_SYMBOL_GPL(snd_soc_jack_notifier_register); |
| 194 | |
| 195 | /** |
| 196 | * snd_soc_jack_notifier_unregister - Unregister a notifier for jack status |
| 197 | * |
| 198 | * @jack: ASoC jack |
| 199 | * @nb: Notifier block to unregister |
| 200 | * |
| 201 | * Stop notifying for status changes. |
| 202 | */ |
| 203 | void snd_soc_jack_notifier_unregister(struct snd_soc_jack *jack, |
| 204 | struct notifier_block *nb) |
| 205 | { |
| 206 | blocking_notifier_chain_unregister(&jack->notifier, nb); |
| 207 | } |
| 208 | EXPORT_SYMBOL_GPL(snd_soc_jack_notifier_unregister); |
| 209 | |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 210 | #ifdef CONFIG_GPIOLIB |
| 211 | /* gpio detect */ |
Mark Brown | 26bd7b4 | 2009-03-06 11:32:17 +0000 | [diff] [blame] | 212 | static void snd_soc_jack_gpio_detect(struct snd_soc_jack_gpio *gpio) |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 213 | { |
| 214 | struct snd_soc_jack *jack = gpio->jack; |
| 215 | int enable; |
| 216 | int report; |
| 217 | |
Jarkko Nikula | 50dfb69 | 2014-05-26 14:34:36 +0300 | [diff] [blame] | 218 | enable = gpiod_get_value_cansleep(gpio->desc); |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 219 | if (gpio->invert) |
| 220 | enable = !enable; |
| 221 | |
| 222 | if (enable) |
| 223 | report = gpio->report; |
| 224 | else |
| 225 | report = 0; |
| 226 | |
Joonyoung Shim | c871a05 | 2009-11-12 17:14:04 +0900 | [diff] [blame] | 227 | if (gpio->jack_status_check) |
xiangxiao | cb29d7b | 2014-02-23 14:40:44 +0800 | [diff] [blame] | 228 | report = gpio->jack_status_check(gpio->data); |
Joonyoung Shim | c871a05 | 2009-11-12 17:14:04 +0900 | [diff] [blame] | 229 | |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 230 | snd_soc_jack_report(jack, report, gpio->report); |
| 231 | } |
| 232 | |
| 233 | /* irq handler for gpio pin */ |
| 234 | static irqreturn_t gpio_handler(int irq, void *data) |
| 235 | { |
| 236 | struct snd_soc_jack_gpio *gpio = data; |
Lars-Peter Clausen | 9709399 | 2015-03-04 10:33:17 +0100 | [diff] [blame] | 237 | struct device *dev = gpio->jack->card->dev; |
Mark Brown | f9a6705 | 2010-11-14 19:25:09 +0000 | [diff] [blame] | 238 | |
Mark Brown | 3028eb8 | 2010-12-05 12:22:46 +0000 | [diff] [blame] | 239 | trace_snd_soc_jack_irq(gpio->name); |
| 240 | |
Mark Brown | f9a6705 | 2010-11-14 19:25:09 +0000 | [diff] [blame] | 241 | if (device_may_wakeup(dev)) |
| 242 | pm_wakeup_event(dev, gpio->debounce_time + 50); |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 243 | |
Mark Brown | e6058aa | 2013-07-18 22:47:10 +0100 | [diff] [blame] | 244 | queue_delayed_work(system_power_efficient_wq, &gpio->work, |
Mark Brown | 4c14d78 | 2010-10-06 15:54:28 -0700 | [diff] [blame] | 245 | msecs_to_jiffies(gpio->debounce_time)); |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 246 | |
| 247 | return IRQ_HANDLED; |
| 248 | } |
| 249 | |
| 250 | /* gpio work */ |
| 251 | static void gpio_work(struct work_struct *work) |
| 252 | { |
| 253 | struct snd_soc_jack_gpio *gpio; |
| 254 | |
Mark Brown | 4c14d78 | 2010-10-06 15:54:28 -0700 | [diff] [blame] | 255 | gpio = container_of(work, struct snd_soc_jack_gpio, work.work); |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 256 | snd_soc_jack_gpio_detect(gpio); |
| 257 | } |
| 258 | |
Dmitry Torokhov | 73548dd | 2017-03-21 16:50:43 -0700 | [diff] [blame] | 259 | static int snd_soc_jack_pm_notifier(struct notifier_block *nb, |
| 260 | unsigned long action, void *data) |
| 261 | { |
| 262 | struct snd_soc_jack_gpio *gpio = |
| 263 | container_of(nb, struct snd_soc_jack_gpio, pm_notifier); |
| 264 | |
| 265 | switch (action) { |
| 266 | case PM_POST_SUSPEND: |
| 267 | case PM_POST_HIBERNATION: |
| 268 | case PM_POST_RESTORE: |
| 269 | /* |
| 270 | * Use workqueue so we do not have to care about running |
| 271 | * concurrently with work triggered by the interrupt handler. |
| 272 | */ |
| 273 | queue_delayed_work(system_power_efficient_wq, &gpio->work, 0); |
| 274 | break; |
| 275 | } |
| 276 | |
| 277 | return NOTIFY_DONE; |
| 278 | } |
| 279 | |
Takashi Iwai | bd29ae9 | 2017-08-22 13:59:44 +0200 | [diff] [blame] | 280 | static void jack_free_gpios(struct snd_soc_jack *jack, int count, |
| 281 | struct snd_soc_jack_gpio *gpios) |
| 282 | { |
| 283 | int i; |
| 284 | |
| 285 | for (i = 0; i < count; i++) { |
| 286 | gpiod_unexport(gpios[i].desc); |
| 287 | unregister_pm_notifier(&gpios[i].pm_notifier); |
| 288 | free_irq(gpiod_to_irq(gpios[i].desc), &gpios[i]); |
| 289 | cancel_delayed_work_sync(&gpios[i].work); |
| 290 | gpiod_put(gpios[i].desc); |
| 291 | gpios[i].jack = NULL; |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | static void jack_devres_free_gpios(struct device *dev, void *res) |
| 296 | { |
| 297 | struct jack_gpio_tbl *tbl = res; |
| 298 | |
| 299 | jack_free_gpios(tbl->jack, tbl->count, tbl->gpios); |
| 300 | } |
| 301 | |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 302 | /** |
| 303 | * snd_soc_jack_add_gpios - Associate GPIO pins with an ASoC jack |
| 304 | * |
| 305 | * @jack: ASoC jack |
| 306 | * @count: number of pins |
| 307 | * @gpios: array of gpio pins |
| 308 | * |
| 309 | * This function will request gpio, set data direction and request irq |
| 310 | * for each gpio in the array. |
| 311 | */ |
| 312 | int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count, |
| 313 | struct snd_soc_jack_gpio *gpios) |
| 314 | { |
| 315 | int i, ret; |
Takashi Iwai | bd29ae9 | 2017-08-22 13:59:44 +0200 | [diff] [blame] | 316 | struct jack_gpio_tbl *tbl; |
| 317 | |
| 318 | tbl = devres_alloc(jack_devres_free_gpios, sizeof(*tbl), GFP_KERNEL); |
| 319 | if (!tbl) |
| 320 | return -ENOMEM; |
| 321 | tbl->jack = jack; |
| 322 | tbl->count = count; |
| 323 | tbl->gpios = gpios; |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 324 | |
| 325 | for (i = 0; i < count; i++) { |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 326 | if (!gpios[i].name) { |
Lars-Peter Clausen | 9709399 | 2015-03-04 10:33:17 +0100 | [diff] [blame] | 327 | dev_err(jack->card->dev, |
Jarkko Nikula | f025d3b | 2014-05-26 14:34:37 +0300 | [diff] [blame] | 328 | "ASoC: No name for gpio at index %d\n", i); |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 329 | ret = -EINVAL; |
| 330 | goto undo; |
| 331 | } |
| 332 | |
Dylan Reid | e616d2e | 2015-05-22 15:09:20 -0700 | [diff] [blame] | 333 | if (gpios[i].desc) { |
| 334 | /* Already have a GPIO descriptor. */ |
| 335 | goto got_gpio; |
| 336 | } else if (gpios[i].gpiod_dev) { |
| 337 | /* Get a GPIO descriptor */ |
Jarkko Nikula | f025d3b | 2014-05-26 14:34:37 +0300 | [diff] [blame] | 338 | gpios[i].desc = gpiod_get_index(gpios[i].gpiod_dev, |
| 339 | gpios[i].name, |
Alexandre Courbot | 00d647b | 2014-10-23 17:15:18 +0900 | [diff] [blame] | 340 | gpios[i].idx, GPIOD_IN); |
Jarkko Nikula | f025d3b | 2014-05-26 14:34:37 +0300 | [diff] [blame] | 341 | if (IS_ERR(gpios[i].desc)) { |
| 342 | ret = PTR_ERR(gpios[i].desc); |
| 343 | dev_err(gpios[i].gpiod_dev, |
| 344 | "ASoC: Cannot get gpio at index %d: %d", |
| 345 | i, ret); |
| 346 | goto undo; |
| 347 | } |
| 348 | } else { |
| 349 | /* legacy GPIO number */ |
| 350 | if (!gpio_is_valid(gpios[i].gpio)) { |
Lars-Peter Clausen | 9709399 | 2015-03-04 10:33:17 +0100 | [diff] [blame] | 351 | dev_err(jack->card->dev, |
Jarkko Nikula | f025d3b | 2014-05-26 14:34:37 +0300 | [diff] [blame] | 352 | "ASoC: Invalid gpio %d\n", |
| 353 | gpios[i].gpio); |
| 354 | ret = -EINVAL; |
| 355 | goto undo; |
| 356 | } |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 357 | |
Alexandre Courbot | 00d647b | 2014-10-23 17:15:18 +0900 | [diff] [blame] | 358 | ret = gpio_request_one(gpios[i].gpio, GPIOF_IN, |
| 359 | gpios[i].name); |
Jarkko Nikula | f025d3b | 2014-05-26 14:34:37 +0300 | [diff] [blame] | 360 | if (ret) |
| 361 | goto undo; |
| 362 | |
| 363 | gpios[i].desc = gpio_to_desc(gpios[i].gpio); |
| 364 | } |
Dylan Reid | e616d2e | 2015-05-22 15:09:20 -0700 | [diff] [blame] | 365 | got_gpio: |
Mark Brown | 4c14d78 | 2010-10-06 15:54:28 -0700 | [diff] [blame] | 366 | INIT_DELAYED_WORK(&gpios[i].work, gpio_work); |
Lars-Peter Clausen | b8e22c1 | 2009-07-31 21:15:25 +0200 | [diff] [blame] | 367 | gpios[i].jack = jack; |
| 368 | |
Jarkko Nikula | 50dfb69 | 2014-05-26 14:34:36 +0300 | [diff] [blame] | 369 | ret = request_any_context_irq(gpiod_to_irq(gpios[i].desc), |
Mark Brown | 3f58fd8 | 2010-11-03 09:35:31 -0400 | [diff] [blame] | 370 | gpio_handler, |
| 371 | IRQF_TRIGGER_RISING | |
| 372 | IRQF_TRIGGER_FALLING, |
Stephen Warren | 363618f | 2011-04-01 14:50:43 -0600 | [diff] [blame] | 373 | gpios[i].name, |
Mark Brown | 3f58fd8 | 2010-11-03 09:35:31 -0400 | [diff] [blame] | 374 | &gpios[i]); |
Axel Lin | d2b4c7b | 2011-08-13 19:15:01 +0800 | [diff] [blame] | 375 | if (ret < 0) |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 376 | goto err; |
| 377 | |
Mark Brown | 7887ab3 | 2011-02-17 16:35:55 -0800 | [diff] [blame] | 378 | if (gpios[i].wake) { |
Jarkko Nikula | 50dfb69 | 2014-05-26 14:34:36 +0300 | [diff] [blame] | 379 | ret = irq_set_irq_wake(gpiod_to_irq(gpios[i].desc), 1); |
Mark Brown | 7887ab3 | 2011-02-17 16:35:55 -0800 | [diff] [blame] | 380 | if (ret != 0) |
Lars-Peter Clausen | 9709399 | 2015-03-04 10:33:17 +0100 | [diff] [blame] | 381 | dev_err(jack->card->dev, |
Jarkko Nikula | f025d3b | 2014-05-26 14:34:37 +0300 | [diff] [blame] | 382 | "ASoC: Failed to mark GPIO at index %d as wake source: %d\n", |
| 383 | i, ret); |
Mark Brown | 7887ab3 | 2011-02-17 16:35:55 -0800 | [diff] [blame] | 384 | } |
| 385 | |
Dmitry Torokhov | 73548dd | 2017-03-21 16:50:43 -0700 | [diff] [blame] | 386 | /* |
| 387 | * Register PM notifier so we do not miss state transitions |
| 388 | * happening while system is asleep. |
| 389 | */ |
| 390 | gpios[i].pm_notifier.notifier_call = snd_soc_jack_pm_notifier; |
| 391 | register_pm_notifier(&gpios[i].pm_notifier); |
| 392 | |
Janusz Krzysztofik | 178b699 | 2009-07-24 02:48:57 +0200 | [diff] [blame] | 393 | /* Expose GPIO value over sysfs for diagnostic purposes */ |
Jarkko Nikula | 50dfb69 | 2014-05-26 14:34:36 +0300 | [diff] [blame] | 394 | gpiod_export(gpios[i].desc, false); |
Janusz Krzysztofik | 178b699 | 2009-07-24 02:48:57 +0200 | [diff] [blame] | 395 | |
Janusz Krzysztofik | 178b699 | 2009-07-24 02:48:57 +0200 | [diff] [blame] | 396 | /* Update initial jack status */ |
xiangxiao | f1adf5b | 2014-02-23 14:44:52 +0800 | [diff] [blame] | 397 | schedule_delayed_work(&gpios[i].work, |
| 398 | msecs_to_jiffies(gpios[i].debounce_time)); |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 399 | } |
| 400 | |
Takashi Iwai | bd29ae9 | 2017-08-22 13:59:44 +0200 | [diff] [blame] | 401 | devres_add(jack->card->dev, tbl); |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 402 | return 0; |
| 403 | |
| 404 | err: |
| 405 | gpio_free(gpios[i].gpio); |
| 406 | undo: |
Takashi Iwai | bd29ae9 | 2017-08-22 13:59:44 +0200 | [diff] [blame] | 407 | jack_free_gpios(jack, i, gpios); |
| 408 | devres_free(tbl); |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 409 | |
| 410 | return ret; |
| 411 | } |
| 412 | EXPORT_SYMBOL_GPL(snd_soc_jack_add_gpios); |
| 413 | |
| 414 | /** |
Jarkko Nikula | f025d3b | 2014-05-26 14:34:37 +0300 | [diff] [blame] | 415 | * snd_soc_jack_add_gpiods - Associate GPIO descriptor pins with an ASoC jack |
| 416 | * |
| 417 | * @gpiod_dev: GPIO consumer device |
| 418 | * @jack: ASoC jack |
| 419 | * @count: number of pins |
| 420 | * @gpios: array of gpio pins |
| 421 | * |
| 422 | * This function will request gpio, set data direction and request irq |
| 423 | * for each gpio in the array. |
| 424 | */ |
| 425 | int snd_soc_jack_add_gpiods(struct device *gpiod_dev, |
| 426 | struct snd_soc_jack *jack, |
| 427 | int count, struct snd_soc_jack_gpio *gpios) |
| 428 | { |
| 429 | int i; |
| 430 | |
| 431 | for (i = 0; i < count; i++) |
| 432 | gpios[i].gpiod_dev = gpiod_dev; |
| 433 | |
| 434 | return snd_soc_jack_add_gpios(jack, count, gpios); |
| 435 | } |
| 436 | EXPORT_SYMBOL_GPL(snd_soc_jack_add_gpiods); |
| 437 | |
| 438 | /** |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 439 | * snd_soc_jack_free_gpios - Release GPIO pins' resources of an ASoC jack |
| 440 | * |
| 441 | * @jack: ASoC jack |
| 442 | * @count: number of pins |
| 443 | * @gpios: array of gpio pins |
| 444 | * |
| 445 | * Release gpio and irq resources for gpio pins associated with an ASoC jack. |
| 446 | */ |
| 447 | void snd_soc_jack_free_gpios(struct snd_soc_jack *jack, int count, |
| 448 | struct snd_soc_jack_gpio *gpios) |
| 449 | { |
Takashi Iwai | bd29ae9 | 2017-08-22 13:59:44 +0200 | [diff] [blame] | 450 | jack_free_gpios(jack, count, gpios); |
| 451 | devres_destroy(jack->card->dev, jack_devres_free_gpios, NULL, NULL); |
Lopez Cruz, Misael | ec67624 | 2009-03-03 15:25:04 -0600 | [diff] [blame] | 452 | } |
| 453 | EXPORT_SYMBOL_GPL(snd_soc_jack_free_gpios); |
| 454 | #endif /* CONFIG_GPIOLIB */ |