Blame view

sound/soc/soc-jack.c 9.61 KB
8a2cd6180   Mark Brown   ASoC: Add jack re...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  /*
   * soc-jack.c  --  ALSA SoC jack handling
   *
   * Copyright 2008 Wolfson Microelectronics PLC.
   *
   * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
   *
   *  This program is free software; you can redistribute  it and/or modify it
   *  under  the terms of  the GNU General  Public License as published by the
   *  Free Software Foundation;  either version 2 of the  License, or (at your
   *  option) any later version.
   */
  
  #include <sound/jack.h>
  #include <sound/soc.h>
ec67624d3   Lopez Cruz, Misael   ASoC: Add GPIO su...
16
17
18
19
  #include <linux/gpio.h>
  #include <linux/interrupt.h>
  #include <linux/workqueue.h>
  #include <linux/delay.h>
d81a6d717   Paul Gortmaker   sound: Add export...
20
  #include <linux/export.h>
3028eb8c5   Mark Brown   ASoC: Add trace e...
21
  #include <trace/events/asoc.h>
8a2cd6180   Mark Brown   ASoC: Add jack re...
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  
  /**
   * snd_soc_jack_new - Create a new jack
   * @card:  ASoC card
   * @id:    an identifying string for this jack
   * @type:  a bitmask of enum snd_jack_type values that can be detected by
   *         this jack
   * @jack:  structure to use for the jack
   *
   * Creates a new jack object.
   *
   * Returns zero if successful, or a negative error code on failure.
   * On success jack will be initialised.
   */
f0fba2ad1   Liam Girdwood   ASoC: multi-compo...
36
  int snd_soc_jack_new(struct snd_soc_codec *codec, const char *id, int type,
8a2cd6180   Mark Brown   ASoC: Add jack re...
37
38
  		     struct snd_soc_jack *jack)
  {
f0fba2ad1   Liam Girdwood   ASoC: multi-compo...
39
  	jack->codec = codec;
8a2cd6180   Mark Brown   ASoC: Add jack re...
40
  	INIT_LIST_HEAD(&jack->pins);
fa9879ede   Vinod Koul   ASoC: add support...
41
  	INIT_LIST_HEAD(&jack->jack_zones);
d5021ec9f   Mark Brown   ASoC: Add a notif...
42
  	BLOCKING_INIT_NOTIFIER_HEAD(&jack->notifier);
8a2cd6180   Mark Brown   ASoC: Add jack re...
43

f0fba2ad1   Liam Girdwood   ASoC: multi-compo...
44
  	return snd_jack_new(codec->card->snd_card, id, type, &jack->jack);
8a2cd6180   Mark Brown   ASoC: Add jack re...
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
  }
  EXPORT_SYMBOL_GPL(snd_soc_jack_new);
  
  /**
   * snd_soc_jack_report - Report the current status for a jack
   *
   * @jack:   the jack
   * @status: a bitmask of enum snd_jack_type values that are currently detected.
   * @mask:   a bitmask of enum snd_jack_type values that being reported.
   *
   * If configured using snd_soc_jack_add_pins() then the associated
   * DAPM pins will be enabled or disabled as appropriate and DAPM
   * synchronised.
   *
   * Note: This function uses mutexes and should be called from a
   * context which can sleep (such as a workqueue).
   */
  void snd_soc_jack_report(struct snd_soc_jack *jack, int status, int mask)
  {
4f066173f   Julia Lawall   ASoC: Move derefe...
64
  	struct snd_soc_codec *codec;
ce6120cca   Liam Girdwood   ASoC: Decouple DA...
65
  	struct snd_soc_dapm_context *dapm;
8a2cd6180   Mark Brown   ASoC: Add jack re...
66
67
68
  	struct snd_soc_jack_pin *pin;
  	int enable;
  	int oldstatus;
3028eb8c5   Mark Brown   ASoC: Add trace e...
69
  	trace_snd_soc_jack_report(jack, mask, status);
3a278a0c6   Mark Brown   ASoC: Allow repor...
70
  	if (!jack)
8a2cd6180   Mark Brown   ASoC: Add jack re...
71
  		return;
3a278a0c6   Mark Brown   ASoC: Allow repor...
72

f0fba2ad1   Liam Girdwood   ASoC: multi-compo...
73
  	codec = jack->codec;
ce6120cca   Liam Girdwood   ASoC: Decouple DA...
74
  	dapm =  &codec->dapm;
8a2cd6180   Mark Brown   ASoC: Add jack re...
75
76
77
78
79
80
  
  	mutex_lock(&codec->mutex);
  
  	oldstatus = jack->status;
  
  	jack->status &= ~mask;
178b699c2   Janusz Krzysztofik   ASoC: Jack handli...
81
  	jack->status |= status & mask;
8a2cd6180   Mark Brown   ASoC: Add jack re...
82

178b699c2   Janusz Krzysztofik   ASoC: Jack handli...
83
84
85
  	/* The DAPM sync is expensive enough to be worth skipping.
  	 * However, empty mask means pin synchronization is desired. */
  	if (mask && (jack->status == oldstatus))
8a2cd6180   Mark Brown   ASoC: Add jack re...
86
  		goto out;
3028eb8c5   Mark Brown   ASoC: Add trace e...
87
  	trace_snd_soc_jack_notify(jack, status);
8a2cd6180   Mark Brown   ASoC: Add jack re...
88
  	list_for_each_entry(pin, &jack->pins, list) {
178b699c2   Janusz Krzysztofik   ASoC: Jack handli...
89
  		enable = pin->mask & jack->status;
8a2cd6180   Mark Brown   ASoC: Add jack re...
90
91
92
93
94
  
  		if (pin->invert)
  			enable = !enable;
  
  		if (enable)
ce6120cca   Liam Girdwood   ASoC: Decouple DA...
95
  			snd_soc_dapm_enable_pin(dapm, pin->pin);
8a2cd6180   Mark Brown   ASoC: Add jack re...
96
  		else
ce6120cca   Liam Girdwood   ASoC: Decouple DA...
97
  			snd_soc_dapm_disable_pin(dapm, pin->pin);
8a2cd6180   Mark Brown   ASoC: Add jack re...
98
  	}
d5021ec9f   Mark Brown   ASoC: Add a notif...
99
  	/* Report before the DAPM sync to help users updating micbias status */
1d2c27f94   Mark Brown   ASoC: Pass the ja...
100
  	blocking_notifier_call_chain(&jack->notifier, status, jack);
d5021ec9f   Mark Brown   ASoC: Add a notif...
101

ce6120cca   Liam Girdwood   ASoC: Decouple DA...
102
  	snd_soc_dapm_sync(dapm);
8a2cd6180   Mark Brown   ASoC: Add jack re...
103

747da0f80   Mark Brown   ASoC: Fix reporti...
104
  	snd_jack_report(jack->jack, jack->status);
8a2cd6180   Mark Brown   ASoC: Add jack re...
105
106
107
108
109
110
111
  
  out:
  	mutex_unlock(&codec->mutex);
  }
  EXPORT_SYMBOL_GPL(snd_soc_jack_report);
  
  /**
fa9879ede   Vinod Koul   ASoC: add support...
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
   * snd_soc_jack_add_zones - Associate voltage zones with jack
   *
   * @jack:  ASoC jack
   * @count: Number of zones
   * @zone:  Array of zones
   *
   * After this function has been called the zones specified in the
   * array will be associated with the jack.
   */
  int snd_soc_jack_add_zones(struct snd_soc_jack *jack, int count,
  			  struct snd_soc_jack_zone *zones)
  {
  	int i;
  
  	for (i = 0; i < count; i++) {
  		INIT_LIST_HEAD(&zones[i].list);
  		list_add(&(zones[i].list), &jack->jack_zones);
  	}
  	return 0;
  }
  EXPORT_SYMBOL_GPL(snd_soc_jack_add_zones);
  
  /**
   * snd_soc_jack_get_type - Based on the mic bias value, this function returns
   * the type of jack from the zones delcared in the jack type
   *
   * @micbias_voltage:  mic bias voltage at adc channel when jack is plugged in
   *
   * Based on the mic bias value passed, this function helps identify
   * the type of jack from the already delcared jack zones
   */
  int snd_soc_jack_get_type(struct snd_soc_jack *jack, int micbias_voltage)
  {
  	struct snd_soc_jack_zone *zone;
  
  	list_for_each_entry(zone, &jack->jack_zones, list) {
  		if (micbias_voltage >= zone->min_mv &&
  			micbias_voltage < zone->max_mv)
  				return zone->jack_type;
  	}
  	return 0;
  }
  EXPORT_SYMBOL_GPL(snd_soc_jack_get_type);
  
  /**
8a2cd6180   Mark Brown   ASoC: Add jack re...
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
   * snd_soc_jack_add_pins - Associate DAPM pins with an ASoC jack
   *
   * @jack:  ASoC jack
   * @count: Number of pins
   * @pins:  Array of pins
   *
   * After this function has been called the DAPM pins specified in the
   * pins array will have their status updated to reflect the current
   * state of the jack whenever the jack status is updated.
   */
  int snd_soc_jack_add_pins(struct snd_soc_jack *jack, int count,
  			  struct snd_soc_jack_pin *pins)
  {
  	int i;
  
  	for (i = 0; i < count; i++) {
  		if (!pins[i].pin) {
  			printk(KERN_ERR "No name for pin %d
  ", i);
  			return -EINVAL;
  		}
  		if (!pins[i].mask) {
  			printk(KERN_ERR "No mask for pin %d (%s)
  ", i,
  			       pins[i].pin);
  			return -EINVAL;
  		}
  
  		INIT_LIST_HEAD(&pins[i].list);
  		list_add(&(pins[i].list), &jack->pins);
  	}
143d62a45   Mark Brown   ASoC: Ensure DAPM...
188
  	snd_soc_dapm_new_widgets(&jack->codec->card->dapm);
8a2cd6180   Mark Brown   ASoC: Add jack re...
189
190
191
192
193
194
195
196
197
  	/* Update to reflect the last reported status; canned jack
  	 * implementations are likely to set their state before the
  	 * card has an opportunity to associate pins.
  	 */
  	snd_soc_jack_report(jack, 0, 0);
  
  	return 0;
  }
  EXPORT_SYMBOL_GPL(snd_soc_jack_add_pins);
ec67624d3   Lopez Cruz, Misael   ASoC: Add GPIO su...
198

d5021ec9f   Mark Brown   ASoC: Add a notif...
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
  /**
   * snd_soc_jack_notifier_register - Register a notifier for jack status
   *
   * @jack:  ASoC jack
   * @nb:    Notifier block to register
   *
   * Register for notification of the current status of the jack.  Note
   * that it is not possible to report additional jack events in the
   * callback from the notifier, this is intended to support
   * applications such as enabling electrical detection only when a
   * mechanical detection event has occurred.
   */
  void snd_soc_jack_notifier_register(struct snd_soc_jack *jack,
  				    struct notifier_block *nb)
  {
  	blocking_notifier_chain_register(&jack->notifier, nb);
  }
  EXPORT_SYMBOL_GPL(snd_soc_jack_notifier_register);
  
  /**
   * snd_soc_jack_notifier_unregister - Unregister a notifier for jack status
   *
   * @jack:  ASoC jack
   * @nb:    Notifier block to unregister
   *
   * Stop notifying for status changes.
   */
  void snd_soc_jack_notifier_unregister(struct snd_soc_jack *jack,
  				      struct notifier_block *nb)
  {
  	blocking_notifier_chain_unregister(&jack->notifier, nb);
  }
  EXPORT_SYMBOL_GPL(snd_soc_jack_notifier_unregister);
ec67624d3   Lopez Cruz, Misael   ASoC: Add GPIO su...
232
233
  #ifdef CONFIG_GPIOLIB
  /* gpio detect */
26bd7b496   Mark Brown   ASoC: Staticise w...
234
  static void snd_soc_jack_gpio_detect(struct snd_soc_jack_gpio *gpio)
ec67624d3   Lopez Cruz, Misael   ASoC: Add GPIO su...
235
236
237
238
  {
  	struct snd_soc_jack *jack = gpio->jack;
  	int enable;
  	int report;
535787b6a   Jarkko Nikula   ASoC: Allow use s...
239
  	enable = gpio_get_value_cansleep(gpio->gpio);
ec67624d3   Lopez Cruz, Misael   ASoC: Add GPIO su...
240
241
242
243
244
245
246
  	if (gpio->invert)
  		enable = !enable;
  
  	if (enable)
  		report = gpio->report;
  	else
  		report = 0;
c871a0531   Joonyoung Shim   ASoC: Add jack_st...
247
248
  	if (gpio->jack_status_check)
  		report = gpio->jack_status_check();
ec67624d3   Lopez Cruz, Misael   ASoC: Add GPIO su...
249
250
251
252
253
254
255
  	snd_soc_jack_report(jack, report, gpio->report);
  }
  
  /* irq handler for gpio pin */
  static irqreturn_t gpio_handler(int irq, void *data)
  {
  	struct snd_soc_jack_gpio *gpio = data;
f9a67059d   Mark Brown   ASoC: Prevent sys...
256
  	struct device *dev = gpio->jack->codec->card->dev;
3028eb8c5   Mark Brown   ASoC: Add trace e...
257
  	trace_snd_soc_jack_irq(gpio->name);
f9a67059d   Mark Brown   ASoC: Prevent sys...
258
259
  	if (device_may_wakeup(dev))
  		pm_wakeup_event(dev, gpio->debounce_time + 50);
ec67624d3   Lopez Cruz, Misael   ASoC: Add GPIO su...
260

4c14d78e8   Mark Brown   ASoC: Use delayed...
261
262
  	schedule_delayed_work(&gpio->work,
  			      msecs_to_jiffies(gpio->debounce_time));
ec67624d3   Lopez Cruz, Misael   ASoC: Add GPIO su...
263
264
265
266
267
268
269
270
  
  	return IRQ_HANDLED;
  }
  
  /* gpio work */
  static void gpio_work(struct work_struct *work)
  {
  	struct snd_soc_jack_gpio *gpio;
4c14d78e8   Mark Brown   ASoC: Use delayed...
271
  	gpio = container_of(work, struct snd_soc_jack_gpio, work.work);
ec67624d3   Lopez Cruz, Misael   ASoC: Add GPIO su...
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
  	snd_soc_jack_gpio_detect(gpio);
  }
  
  /**
   * snd_soc_jack_add_gpios - Associate GPIO pins with an ASoC jack
   *
   * @jack:  ASoC jack
   * @count: number of pins
   * @gpios: array of gpio pins
   *
   * This function will request gpio, set data direction and request irq
   * for each gpio in the array.
   */
  int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count,
  			struct snd_soc_jack_gpio *gpios)
  {
  	int i, ret;
  
  	for (i = 0; i < count; i++) {
  		if (!gpio_is_valid(gpios[i].gpio)) {
  			printk(KERN_ERR "Invalid gpio %d
  ",
  				gpios[i].gpio);
  			ret = -EINVAL;
  			goto undo;
  		}
  		if (!gpios[i].name) {
  			printk(KERN_ERR "No name for gpio %d
  ",
  				gpios[i].gpio);
  			ret = -EINVAL;
  			goto undo;
  		}
  
  		ret = gpio_request(gpios[i].gpio, gpios[i].name);
  		if (ret)
  			goto undo;
  
  		ret = gpio_direction_input(gpios[i].gpio);
  		if (ret)
  			goto err;
4c14d78e8   Mark Brown   ASoC: Use delayed...
313
  		INIT_DELAYED_WORK(&gpios[i].work, gpio_work);
b8e22c1fe   Lars-Peter Clausen   ASoC: jack: Fix r...
314
  		gpios[i].jack = jack;
3f58fd84b   Mark Brown   ASoC: Convert soc...
315
316
317
318
  		ret = request_any_context_irq(gpio_to_irq(gpios[i].gpio),
  					      gpio_handler,
  					      IRQF_TRIGGER_RISING |
  					      IRQF_TRIGGER_FALLING,
363618f01   Stephen Warren   ASoC: Name jack G...
319
  					      gpios[i].name,
3f58fd84b   Mark Brown   ASoC: Convert soc...
320
  					      &gpios[i]);
d2b4c7bd7   Axel Lin   ASoC: soc-jack: F...
321
  		if (ret < 0)
ec67624d3   Lopez Cruz, Misael   ASoC: Add GPIO su...
322
  			goto err;
7887ab3a2   Mark Brown   ASoC: Allow GPIO ...
323
  		if (gpios[i].wake) {
458f7f8f8   Thomas Gleixner   sound: Fixup the ...
324
  			ret = irq_set_irq_wake(gpio_to_irq(gpios[i].gpio), 1);
7887ab3a2   Mark Brown   ASoC: Allow GPIO ...
325
326
327
328
329
330
  			if (ret != 0)
  				printk(KERN_ERR
  				  "Failed to mark GPIO %d as wake source: %d
  ",
  					gpios[i].gpio, ret);
  		}
178b699c2   Janusz Krzysztofik   ASoC: Jack handli...
331
332
  		/* Expose GPIO value over sysfs for diagnostic purposes */
  		gpio_export(gpios[i].gpio, false);
178b699c2   Janusz Krzysztofik   ASoC: Jack handli...
333

178b699c2   Janusz Krzysztofik   ASoC: Jack handli...
334
335
  		/* Update initial jack status */
  		snd_soc_jack_gpio_detect(&gpios[i]);
ec67624d3   Lopez Cruz, Misael   ASoC: Add GPIO su...
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
  	}
  
  	return 0;
  
  err:
  	gpio_free(gpios[i].gpio);
  undo:
  	snd_soc_jack_free_gpios(jack, i, gpios);
  
  	return ret;
  }
  EXPORT_SYMBOL_GPL(snd_soc_jack_add_gpios);
  
  /**
   * snd_soc_jack_free_gpios - Release GPIO pins' resources of an ASoC jack
   *
   * @jack:  ASoC jack
   * @count: number of pins
   * @gpios: array of gpio pins
   *
   * Release gpio and irq resources for gpio pins associated with an ASoC jack.
   */
  void snd_soc_jack_free_gpios(struct snd_soc_jack *jack, int count,
  			struct snd_soc_jack_gpio *gpios)
  {
  	int i;
  
  	for (i = 0; i < count; i++) {
178b699c2   Janusz Krzysztofik   ASoC: Jack handli...
364
  		gpio_unexport(gpios[i].gpio);
ec67624d3   Lopez Cruz, Misael   ASoC: Add GPIO su...
365
  		free_irq(gpio_to_irq(gpios[i].gpio), &gpios[i]);
4c14d78e8   Mark Brown   ASoC: Use delayed...
366
  		cancel_delayed_work_sync(&gpios[i].work);
ec67624d3   Lopez Cruz, Misael   ASoC: Add GPIO su...
367
368
369
370
371
372
  		gpio_free(gpios[i].gpio);
  		gpios[i].jack = NULL;
  	}
  }
  EXPORT_SYMBOL_GPL(snd_soc_jack_free_gpios);
  #endif	/* CONFIG_GPIOLIB */