blob: c92c537d6be8ec02cba61fa8b7cb573d7b8f4d66 [file] [log] [blame]
Richard Purdie2b97eab2006-10-06 18:32:18 +02001/*
2 * soc-dapm.c -- ALSA SoC Dynamic Audio Power Management
3 *
4 * Copyright 2005 Wolfson Microelectronics PLC.
Liam Girdwoodd3311242008-10-12 13:17:36 +01005 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Richard Purdie2b97eab2006-10-06 18:32:18 +02006 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
11 *
Richard Purdie2b97eab2006-10-06 18:32:18 +020012 * Features:
13 * o Changes power status of internal codec blocks depending on the
14 * dynamic configuration of codec internal audio paths and active
Mark Brown74b8f952009-06-06 11:26:15 +010015 * DACs/ADCs.
Richard Purdie2b97eab2006-10-06 18:32:18 +020016 * o Platform power domain - can support external components i.e. amps and
Liam Girdwood612a3fe2012-02-06 16:05:29 +000017 * mic/headphone insertion events.
Richard Purdie2b97eab2006-10-06 18:32:18 +020018 * o Automatic Mic Bias support
19 * o Jack insertion power event initiation - e.g. hp insertion will enable
20 * sinks, dacs, etc
Liam Girdwood612a3fe2012-02-06 16:05:29 +000021 * o Delayed power down of audio subsystem to reduce pops between a quick
Richard Purdie2b97eab2006-10-06 18:32:18 +020022 * device reopen.
23 *
Richard Purdie2b97eab2006-10-06 18:32:18 +020024 */
25
26#include <linux/module.h>
27#include <linux/moduleparam.h>
28#include <linux/init.h>
Mark Brown9d0624a2011-02-18 11:49:43 -080029#include <linux/async.h>
Richard Purdie2b97eab2006-10-06 18:32:18 +020030#include <linux/delay.h>
31#include <linux/pm.h>
32#include <linux/bitops.h>
33#include <linux/platform_device.h>
34#include <linux/jiffies.h>
Takashi Iwai20496ff2009-08-24 09:40:34 +020035#include <linux/debugfs.h>
Mark Brownf1aac482011-12-05 15:17:06 +000036#include <linux/pm_runtime.h>
Mark Brown62ea8742012-01-21 21:14:48 +000037#include <linux/regulator/consumer.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Richard Purdie2b97eab2006-10-06 18:32:18 +020039#include <sound/core.h>
40#include <sound/pcm.h>
41#include <sound/pcm_params.h>
Liam Girdwoodce6120c2010-11-05 15:53:46 +020042#include <sound/soc.h>
Richard Purdie2b97eab2006-10-06 18:32:18 +020043#include <sound/initval.h>
44
Mark Brown84e90932010-11-04 00:07:02 -040045#include <trace/events/asoc.h>
46
Mark Brownde02d072011-09-20 21:43:24 +010047#define DAPM_UPDATE_STAT(widget, val) widget->dapm->card->dapm_stats.val++;
48
Richard Purdie2b97eab2006-10-06 18:32:18 +020049/* dapm power sequences - make this per codec in the future */
50static int dapm_up_seq[] = {
Mark Brown38357ab2009-06-06 19:03:23 +010051 [snd_soc_dapm_pre] = 0,
52 [snd_soc_dapm_supply] = 1,
Mark Brown62ea8742012-01-21 21:14:48 +000053 [snd_soc_dapm_regulator_supply] = 1,
Mark Brown38357ab2009-06-06 19:03:23 +010054 [snd_soc_dapm_micbias] = 2,
Mark Brown888df392012-02-16 19:37:51 -080055 [snd_soc_dapm_dai] = 3,
Mark Brown010ff262009-08-17 17:39:22 +010056 [snd_soc_dapm_aif_in] = 3,
57 [snd_soc_dapm_aif_out] = 3,
58 [snd_soc_dapm_mic] = 4,
59 [snd_soc_dapm_mux] = 5,
Dimitris Papastamos24ff33a2010-12-16 15:53:39 +000060 [snd_soc_dapm_virt_mux] = 5,
Mark Brown010ff262009-08-17 17:39:22 +010061 [snd_soc_dapm_value_mux] = 5,
62 [snd_soc_dapm_dac] = 6,
63 [snd_soc_dapm_mixer] = 7,
64 [snd_soc_dapm_mixer_named_ctl] = 7,
65 [snd_soc_dapm_pga] = 8,
66 [snd_soc_dapm_adc] = 9,
Olaya, Margaritad88429a2010-12-10 21:11:44 -060067 [snd_soc_dapm_out_drv] = 10,
Mark Brown010ff262009-08-17 17:39:22 +010068 [snd_soc_dapm_hp] = 10,
69 [snd_soc_dapm_spk] = 10,
70 [snd_soc_dapm_post] = 11,
Richard Purdie2b97eab2006-10-06 18:32:18 +020071};
Ian Moltonca9c1aa2009-01-06 20:11:51 +000072
Richard Purdie2b97eab2006-10-06 18:32:18 +020073static int dapm_down_seq[] = {
Mark Brown38357ab2009-06-06 19:03:23 +010074 [snd_soc_dapm_pre] = 0,
75 [snd_soc_dapm_adc] = 1,
76 [snd_soc_dapm_hp] = 2,
Mark Brown1ca04062009-08-17 16:26:59 +010077 [snd_soc_dapm_spk] = 2,
Olaya, Margaritad88429a2010-12-10 21:11:44 -060078 [snd_soc_dapm_out_drv] = 2,
Mark Brown38357ab2009-06-06 19:03:23 +010079 [snd_soc_dapm_pga] = 4,
80 [snd_soc_dapm_mixer_named_ctl] = 5,
Mark Browne3d4dab2009-06-07 13:08:45 +010081 [snd_soc_dapm_mixer] = 5,
82 [snd_soc_dapm_dac] = 6,
83 [snd_soc_dapm_mic] = 7,
84 [snd_soc_dapm_micbias] = 8,
85 [snd_soc_dapm_mux] = 9,
Dimitris Papastamos24ff33a2010-12-16 15:53:39 +000086 [snd_soc_dapm_virt_mux] = 9,
Mark Browne3d4dab2009-06-07 13:08:45 +010087 [snd_soc_dapm_value_mux] = 9,
Mark Brown010ff262009-08-17 17:39:22 +010088 [snd_soc_dapm_aif_in] = 10,
89 [snd_soc_dapm_aif_out] = 10,
Mark Brown888df392012-02-16 19:37:51 -080090 [snd_soc_dapm_dai] = 10,
Mark Brown62ea8742012-01-21 21:14:48 +000091 [snd_soc_dapm_regulator_supply] = 11,
Mark Brown010ff262009-08-17 17:39:22 +010092 [snd_soc_dapm_supply] = 11,
93 [snd_soc_dapm_post] = 12,
Richard Purdie2b97eab2006-10-06 18:32:18 +020094};
95
Troy Kisky12ef1932008-10-13 17:42:14 -070096static void pop_wait(u32 pop_time)
Mark Brown15e4c722008-07-02 11:51:20 +010097{
98 if (pop_time)
99 schedule_timeout_uninterruptible(msecs_to_jiffies(pop_time));
100}
101
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +0200102static void pop_dbg(struct device *dev, u32 pop_time, const char *fmt, ...)
Mark Brown15e4c722008-07-02 11:51:20 +0100103{
104 va_list args;
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +0200105 char *buf;
106
107 if (!pop_time)
108 return;
109
110 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
111 if (buf == NULL)
112 return;
Mark Brown15e4c722008-07-02 11:51:20 +0100113
114 va_start(args, fmt);
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +0200115 vsnprintf(buf, PAGE_SIZE, fmt, args);
Takashi Iwai9d01df02010-12-22 14:08:40 +0100116 dev_info(dev, "%s", buf);
Mark Brown15e4c722008-07-02 11:51:20 +0100117 va_end(args);
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +0200118
119 kfree(buf);
Mark Brown15e4c722008-07-02 11:51:20 +0100120}
121
Mark Browndb432b42011-10-03 21:06:40 +0100122static bool dapm_dirty_widget(struct snd_soc_dapm_widget *w)
123{
124 return !list_empty(&w->dirty);
125}
126
Mark Brown25c77c52011-10-08 13:36:03 +0100127void dapm_mark_dirty(struct snd_soc_dapm_widget *w, const char *reason)
Mark Browndb432b42011-10-03 21:06:40 +0100128{
Mark Brown75c1f892011-10-04 22:28:08 +0100129 if (!dapm_dirty_widget(w)) {
130 dev_vdbg(w->dapm->dev, "Marking %s dirty due to %s\n",
131 w->name, reason);
Mark Browndb432b42011-10-03 21:06:40 +0100132 list_add_tail(&w->dirty, &w->dapm->card->dapm_dirty);
Mark Brown75c1f892011-10-04 22:28:08 +0100133 }
Mark Browndb432b42011-10-03 21:06:40 +0100134}
Mark Brown25c77c52011-10-08 13:36:03 +0100135EXPORT_SYMBOL_GPL(dapm_mark_dirty);
Mark Browndb432b42011-10-03 21:06:40 +0100136
Richard Purdie2b97eab2006-10-06 18:32:18 +0200137/* create a new dapm widget */
Takashi Iwai88cb4292007-02-05 14:56:20 +0100138static inline struct snd_soc_dapm_widget *dapm_cnew_widget(
Richard Purdie2b97eab2006-10-06 18:32:18 +0200139 const struct snd_soc_dapm_widget *_widget)
140{
Takashi Iwai88cb4292007-02-05 14:56:20 +0100141 return kmemdup(_widget, sizeof(*_widget), GFP_KERNEL);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200142}
143
Liam Girdwood48056082011-07-20 12:23:33 +0100144/* get snd_card from DAPM context */
145static inline struct snd_card *dapm_get_snd_card(
146 struct snd_soc_dapm_context *dapm)
147{
148 if (dapm->codec)
149 return dapm->codec->card->snd_card;
150 else if (dapm->platform)
151 return dapm->platform->card->snd_card;
152 else
153 BUG();
154
155 /* unreachable */
156 return NULL;
157}
158
159/* get soc_card from DAPM context */
160static inline struct snd_soc_card *dapm_get_soc_card(
161 struct snd_soc_dapm_context *dapm)
162{
163 if (dapm->codec)
164 return dapm->codec->card;
165 else if (dapm->platform)
166 return dapm->platform->card;
167 else
168 BUG();
169
170 /* unreachable */
171 return NULL;
172}
173
Liam Girdwood6c120e12012-02-15 15:15:34 +0000174static void dapm_reset(struct snd_soc_card *card)
175{
176 struct snd_soc_dapm_widget *w;
177
178 memset(&card->dapm_stats, 0, sizeof(card->dapm_stats));
179
180 list_for_each_entry(w, &card->widgets, list) {
181 w->power_checked = false;
182 w->inputs = -1;
183 w->outputs = -1;
184 }
185}
186
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100187static int soc_widget_read(struct snd_soc_dapm_widget *w, int reg)
188{
189 if (w->codec)
190 return snd_soc_read(w->codec, reg);
Liam Girdwoodb7950642011-07-04 22:10:52 +0100191 else if (w->platform)
192 return snd_soc_platform_read(w->platform, reg);
193
194 dev_err(w->dapm->dev, "no valid widget read method\n");
195 return -1;
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100196}
197
198static int soc_widget_write(struct snd_soc_dapm_widget *w, int reg, int val)
199{
200 if (w->codec)
201 return snd_soc_write(w->codec, reg, val);
Liam Girdwoodb7950642011-07-04 22:10:52 +0100202 else if (w->platform)
203 return snd_soc_platform_write(w->platform, reg, val);
204
205 dev_err(w->dapm->dev, "no valid widget write method\n");
206 return -1;
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100207}
208
Liam Girdwood49575fb52012-03-06 18:16:19 +0000209static inline void soc_widget_lock(struct snd_soc_dapm_widget *w)
210{
Mark Browne06ab3b2012-03-06 23:58:22 +0000211 if (w->codec && !w->codec->using_regmap)
Liam Girdwood49575fb52012-03-06 18:16:19 +0000212 mutex_lock(&w->codec->mutex);
213 else if (w->platform)
214 mutex_lock(&w->platform->mutex);
215}
216
217static inline void soc_widget_unlock(struct snd_soc_dapm_widget *w)
218{
Mark Browne06ab3b2012-03-06 23:58:22 +0000219 if (w->codec && !w->codec->using_regmap)
Liam Girdwood49575fb52012-03-06 18:16:19 +0000220 mutex_unlock(&w->codec->mutex);
221 else if (w->platform)
222 mutex_unlock(&w->platform->mutex);
223}
224
225static int soc_widget_update_bits_locked(struct snd_soc_dapm_widget *w,
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100226 unsigned short reg, unsigned int mask, unsigned int value)
227{
Mark Brown8a713da2011-12-03 12:33:55 +0000228 bool change;
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100229 unsigned int old, new;
230 int ret;
231
Mark Brown8a713da2011-12-03 12:33:55 +0000232 if (w->codec && w->codec->using_regmap) {
233 ret = regmap_update_bits_check(w->codec->control_data,
234 reg, mask, value, &change);
235 if (ret != 0)
236 return ret;
237 } else {
Liam Girdwood49575fb52012-03-06 18:16:19 +0000238 soc_widget_lock(w);
Mark Brown8a713da2011-12-03 12:33:55 +0000239 ret = soc_widget_read(w, reg);
Liam Girdwood49575fb52012-03-06 18:16:19 +0000240 if (ret < 0) {
241 soc_widget_unlock(w);
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100242 return ret;
Liam Girdwood49575fb52012-03-06 18:16:19 +0000243 }
Mark Brown8a713da2011-12-03 12:33:55 +0000244
245 old = ret;
246 new = (old & ~mask) | (value & mask);
247 change = old != new;
248 if (change) {
249 ret = soc_widget_write(w, reg, new);
Liam Girdwood49575fb52012-03-06 18:16:19 +0000250 if (ret < 0) {
251 soc_widget_unlock(w);
Mark Brown8a713da2011-12-03 12:33:55 +0000252 return ret;
Liam Girdwood49575fb52012-03-06 18:16:19 +0000253 }
Mark Brown8a713da2011-12-03 12:33:55 +0000254 }
Liam Girdwood49575fb52012-03-06 18:16:19 +0000255 soc_widget_unlock(w);
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100256 }
257
258 return change;
259}
260
Mark Brown452c5ea2009-05-17 21:41:23 +0100261/**
262 * snd_soc_dapm_set_bias_level - set the bias level for the system
Mark Browned5a4c42011-02-18 11:12:42 -0800263 * @dapm: DAPM context
Mark Brown452c5ea2009-05-17 21:41:23 +0100264 * @level: level to configure
265 *
266 * Configure the bias (power) levels for the SoC audio device.
267 *
268 * Returns 0 for success else error.
269 */
Mark Browned5a4c42011-02-18 11:12:42 -0800270static int snd_soc_dapm_set_bias_level(struct snd_soc_dapm_context *dapm,
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200271 enum snd_soc_bias_level level)
Mark Brown452c5ea2009-05-17 21:41:23 +0100272{
Mark Browned5a4c42011-02-18 11:12:42 -0800273 struct snd_soc_card *card = dapm->card;
Mark Brown452c5ea2009-05-17 21:41:23 +0100274 int ret = 0;
275
Mark Brown84e90932010-11-04 00:07:02 -0400276 trace_snd_soc_bias_level_start(card, level);
277
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000278 if (card && card->set_bias_level)
Mark Brownd4c60052011-06-06 19:13:23 +0100279 ret = card->set_bias_level(card, dapm, level);
Mark Brown171ec6b2011-06-06 18:15:19 +0100280 if (ret != 0)
281 goto out;
Mark Brown452c5ea2009-05-17 21:41:23 +0100282
Mark Browncc4c6702011-06-06 19:03:34 +0100283 if (dapm->codec) {
284 if (dapm->codec->driver->set_bias_level)
285 ret = dapm->codec->driver->set_bias_level(dapm->codec,
286 level);
287 else
288 dapm->bias_level = level;
289 }
Mark Brown171ec6b2011-06-06 18:15:19 +0100290 if (ret != 0)
291 goto out;
292
293 if (card && card->set_bias_level_post)
Mark Brownd4c60052011-06-06 19:13:23 +0100294 ret = card->set_bias_level_post(card, dapm, level);
Mark Brown171ec6b2011-06-06 18:15:19 +0100295out:
Mark Brown84e90932010-11-04 00:07:02 -0400296 trace_snd_soc_bias_level_done(card, level);
297
Mark Brown452c5ea2009-05-17 21:41:23 +0100298 return ret;
299}
300
Richard Purdie2b97eab2006-10-06 18:32:18 +0200301/* set up initial codec paths */
302static void dapm_set_path_status(struct snd_soc_dapm_widget *w,
303 struct snd_soc_dapm_path *p, int i)
304{
305 switch (w->id) {
306 case snd_soc_dapm_switch:
Ian Moltonca9c1aa2009-01-06 20:11:51 +0000307 case snd_soc_dapm_mixer:
308 case snd_soc_dapm_mixer_named_ctl: {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200309 int val;
Jon Smirl4eaa9812008-07-29 11:42:26 +0100310 struct soc_mixer_control *mc = (struct soc_mixer_control *)
Stephen Warren82cfecd2011-04-28 17:37:58 -0600311 w->kcontrol_news[i].private_value;
Jon Smirl815ecf82008-07-29 10:22:24 -0400312 unsigned int reg = mc->reg;
313 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +0100314 int max = mc->max;
Jon Smirl815ecf82008-07-29 10:22:24 -0400315 unsigned int mask = (1 << fls(max)) - 1;
316 unsigned int invert = mc->invert;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200317
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100318 val = soc_widget_read(w, reg);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200319 val = (val >> shift) & mask;
320
321 if ((invert && !val) || (!invert && val))
322 p->connect = 1;
323 else
324 p->connect = 0;
325 }
326 break;
327 case snd_soc_dapm_mux: {
Stephen Warren82cfecd2011-04-28 17:37:58 -0600328 struct soc_enum *e = (struct soc_enum *)
329 w->kcontrol_news[i].private_value;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200330 int val, item, bitmask;
331
Jon Smirlf8ba0b7b2008-07-29 11:42:27 +0100332 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Mark Brown88d96082011-06-06 16:16:34 +0100333 ;
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100334 val = soc_widget_read(w, e->reg);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200335 item = (val >> e->shift_l) & (bitmask - 1);
336
337 p->connect = 0;
Jon Smirlf8ba0b7b2008-07-29 11:42:27 +0100338 for (i = 0; i < e->max; i++) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200339 if (!(strcmp(p->name, e->texts[i])) && item == i)
340 p->connect = 1;
341 }
342 }
343 break;
Dimitris Papastamos24ff33a2010-12-16 15:53:39 +0000344 case snd_soc_dapm_virt_mux: {
Stephen Warren82cfecd2011-04-28 17:37:58 -0600345 struct soc_enum *e = (struct soc_enum *)
346 w->kcontrol_news[i].private_value;
Dimitris Papastamos24ff33a2010-12-16 15:53:39 +0000347
348 p->connect = 0;
349 /* since a virtual mux has no backing registers to
350 * decide which path to connect, it will try to match
351 * with the first enumeration. This is to ensure
352 * that the default mux choice (the first) will be
353 * correctly powered up during initialization.
354 */
355 if (!strcmp(p->name, e->texts[0]))
356 p->connect = 1;
357 }
358 break;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +0200359 case snd_soc_dapm_value_mux: {
Peter Ujfalusi74155552009-01-08 13:34:29 +0200360 struct soc_enum *e = (struct soc_enum *)
Stephen Warren82cfecd2011-04-28 17:37:58 -0600361 w->kcontrol_news[i].private_value;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +0200362 int val, item;
363
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100364 val = soc_widget_read(w, e->reg);
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +0200365 val = (val >> e->shift_l) & e->mask;
366 for (item = 0; item < e->max; item++) {
367 if (val == e->values[item])
368 break;
369 }
370
371 p->connect = 0;
372 for (i = 0; i < e->max; i++) {
373 if (!(strcmp(p->name, e->texts[i])) && item == i)
374 p->connect = 1;
375 }
376 }
377 break;
Mark Brown56563102011-10-03 22:41:09 +0100378 /* does not affect routing - always connected */
Richard Purdie2b97eab2006-10-06 18:32:18 +0200379 case snd_soc_dapm_pga:
Olaya, Margaritad88429a2010-12-10 21:11:44 -0600380 case snd_soc_dapm_out_drv:
Richard Purdie2b97eab2006-10-06 18:32:18 +0200381 case snd_soc_dapm_output:
382 case snd_soc_dapm_adc:
383 case snd_soc_dapm_input:
Mark Brown1ab97c82011-11-27 16:21:51 +0000384 case snd_soc_dapm_siggen:
Richard Purdie2b97eab2006-10-06 18:32:18 +0200385 case snd_soc_dapm_dac:
386 case snd_soc_dapm_micbias:
387 case snd_soc_dapm_vmid:
Mark Brown246d0a12009-04-22 18:24:55 +0100388 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +0000389 case snd_soc_dapm_regulator_supply:
Mark Brown010ff262009-08-17 17:39:22 +0100390 case snd_soc_dapm_aif_in:
391 case snd_soc_dapm_aif_out:
Mark Brown888df392012-02-16 19:37:51 -0800392 case snd_soc_dapm_dai:
Richard Purdie2b97eab2006-10-06 18:32:18 +0200393 case snd_soc_dapm_hp:
394 case snd_soc_dapm_mic:
395 case snd_soc_dapm_spk:
396 case snd_soc_dapm_line:
Mark Brown56563102011-10-03 22:41:09 +0100397 p->connect = 1;
398 break;
399 /* does affect routing - dynamically connected */
Richard Purdie2b97eab2006-10-06 18:32:18 +0200400 case snd_soc_dapm_pre:
401 case snd_soc_dapm_post:
402 p->connect = 0;
403 break;
404 }
405}
406
Mark Brown74b8f952009-06-06 11:26:15 +0100407/* connect mux widget to its interconnecting audio paths */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200408static int dapm_connect_mux(struct snd_soc_dapm_context *dapm,
Richard Purdie2b97eab2006-10-06 18:32:18 +0200409 struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest,
410 struct snd_soc_dapm_path *path, const char *control_name,
411 const struct snd_kcontrol_new *kcontrol)
412{
413 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
414 int i;
415
Jon Smirlf8ba0b7b2008-07-29 11:42:27 +0100416 for (i = 0; i < e->max; i++) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200417 if (!(strcmp(control_name, e->texts[i]))) {
Jarkko Nikula8ddab3f2010-12-14 12:18:30 +0200418 list_add(&path->list, &dapm->card->paths);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200419 list_add(&path->list_sink, &dest->sources);
420 list_add(&path->list_source, &src->sinks);
421 path->name = (char*)e->texts[i];
422 dapm_set_path_status(dest, path, 0);
423 return 0;
424 }
425 }
426
427 return -ENODEV;
428}
429
Mark Brown74b8f952009-06-06 11:26:15 +0100430/* connect mixer widget to its interconnecting audio paths */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200431static int dapm_connect_mixer(struct snd_soc_dapm_context *dapm,
Richard Purdie2b97eab2006-10-06 18:32:18 +0200432 struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest,
433 struct snd_soc_dapm_path *path, const char *control_name)
434{
435 int i;
436
437 /* search for mixer kcontrol */
438 for (i = 0; i < dest->num_kcontrols; i++) {
Stephen Warren82cfecd2011-04-28 17:37:58 -0600439 if (!strcmp(control_name, dest->kcontrol_news[i].name)) {
Jarkko Nikula8ddab3f2010-12-14 12:18:30 +0200440 list_add(&path->list, &dapm->card->paths);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200441 list_add(&path->list_sink, &dest->sources);
442 list_add(&path->list_source, &src->sinks);
Stephen Warren82cfecd2011-04-28 17:37:58 -0600443 path->name = dest->kcontrol_news[i].name;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200444 dapm_set_path_status(dest, path, i);
445 return 0;
446 }
447 }
448 return -ENODEV;
449}
450
Stephen Warrenaf468002011-04-28 17:38:01 -0600451static int dapm_is_shared_kcontrol(struct snd_soc_dapm_context *dapm,
Stephen Warren1007da02011-05-26 09:57:33 -0600452 struct snd_soc_dapm_widget *kcontrolw,
Stephen Warrenaf468002011-04-28 17:38:01 -0600453 const struct snd_kcontrol_new *kcontrol_new,
454 struct snd_kcontrol **kcontrol)
455{
456 struct snd_soc_dapm_widget *w;
457 int i;
458
459 *kcontrol = NULL;
460
461 list_for_each_entry(w, &dapm->card->widgets, list) {
Stephen Warren1007da02011-05-26 09:57:33 -0600462 if (w == kcontrolw || w->dapm != kcontrolw->dapm)
463 continue;
Stephen Warrenaf468002011-04-28 17:38:01 -0600464 for (i = 0; i < w->num_kcontrols; i++) {
465 if (&w->kcontrol_news[i] == kcontrol_new) {
466 if (w->kcontrols)
467 *kcontrol = w->kcontrols[i];
468 return 1;
469 }
470 }
471 }
472
473 return 0;
474}
475
Richard Purdie2b97eab2006-10-06 18:32:18 +0200476/* create new dapm mixer control */
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200477static int dapm_new_mixer(struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200478{
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200479 struct snd_soc_dapm_context *dapm = w->dapm;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200480 int i, ret = 0;
Mark Brown3e5ff4d2011-03-09 11:33:09 +0000481 size_t name_len, prefix_len;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200482 struct snd_soc_dapm_path *path;
Mark Brown12ea2c72011-03-02 18:17:32 +0000483 struct snd_card *card = dapm->card->snd_card;
Mark Brownefb7ac32011-03-08 17:23:24 +0000484 const char *prefix;
Stephen Warrenfafd2172011-04-28 17:38:00 -0600485 struct snd_soc_dapm_widget_list *wlist;
486 size_t wlistsize;
Mark Brownefb7ac32011-03-08 17:23:24 +0000487
488 if (dapm->codec)
489 prefix = dapm->codec->name_prefix;
490 else
491 prefix = NULL;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200492
Mark Brown3e5ff4d2011-03-09 11:33:09 +0000493 if (prefix)
494 prefix_len = strlen(prefix) + 1;
495 else
496 prefix_len = 0;
497
Richard Purdie2b97eab2006-10-06 18:32:18 +0200498 /* add kcontrol */
499 for (i = 0; i < w->num_kcontrols; i++) {
500
501 /* match name */
502 list_for_each_entry(path, &w->sources, list_sink) {
503
504 /* mixer/mux paths name must match control name */
Stephen Warren82cfecd2011-04-28 17:37:58 -0600505 if (path->name != (char *)w->kcontrol_news[i].name)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200506 continue;
507
Lars-Peter Clausen82cd8762011-08-15 20:15:21 +0200508 if (w->kcontrols[i]) {
509 path->kcontrol = w->kcontrols[i];
510 continue;
511 }
512
Stephen Warrenfafd2172011-04-28 17:38:00 -0600513 wlistsize = sizeof(struct snd_soc_dapm_widget_list) +
514 sizeof(struct snd_soc_dapm_widget *),
515 wlist = kzalloc(wlistsize, GFP_KERNEL);
516 if (wlist == NULL) {
517 dev_err(dapm->dev,
518 "asoc: can't allocate widget list for %s\n",
519 w->name);
520 return -ENOMEM;
521 }
522 wlist->num_widgets = 1;
523 wlist->widgets[0] = w;
524
Ian Moltonca9c1aa2009-01-06 20:11:51 +0000525 /* add dapm control with long name.
526 * for dapm_mixer this is the concatenation of the
527 * mixer and kcontrol name.
528 * for dapm_mixer_named_ctl this is simply the
529 * kcontrol name.
530 */
Stephen Warren82cfecd2011-04-28 17:37:58 -0600531 name_len = strlen(w->kcontrol_news[i].name) + 1;
Mark Brown07495f32009-03-05 17:06:23 +0000532 if (w->id != snd_soc_dapm_mixer_named_ctl)
Ian Moltonca9c1aa2009-01-06 20:11:51 +0000533 name_len += 1 + strlen(w->name);
534
Mark Brown219b93f2008-10-28 13:02:31 +0000535 path->long_name = kmalloc(name_len, GFP_KERNEL);
Ian Moltonca9c1aa2009-01-06 20:11:51 +0000536
Stephen Warrenfafd2172011-04-28 17:38:00 -0600537 if (path->long_name == NULL) {
538 kfree(wlist);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200539 return -ENOMEM;
Stephen Warrenfafd2172011-04-28 17:38:00 -0600540 }
Richard Purdie2b97eab2006-10-06 18:32:18 +0200541
Ian Moltonca9c1aa2009-01-06 20:11:51 +0000542 switch (w->id) {
Ian Moltonca9c1aa2009-01-06 20:11:51 +0000543 default:
Mark Brown3e5ff4d2011-03-09 11:33:09 +0000544 /* The control will get a prefix from
545 * the control creation process but
546 * we're also using the same prefix
547 * for widgets so cut the prefix off
548 * the front of the widget name.
549 */
Mark Brown888df392012-02-16 19:37:51 -0800550 snprintf((char *)path->long_name, name_len,
551 "%s %s", w->name + prefix_len,
Stephen Warren82cfecd2011-04-28 17:37:58 -0600552 w->kcontrol_news[i].name);
Mark Brown07495f32009-03-05 17:06:23 +0000553 break;
Ian Moltonca9c1aa2009-01-06 20:11:51 +0000554 case snd_soc_dapm_mixer_named_ctl:
Mark Brown888df392012-02-16 19:37:51 -0800555 snprintf((char *)path->long_name, name_len,
556 "%s", w->kcontrol_news[i].name);
Mark Brown07495f32009-03-05 17:06:23 +0000557 break;
Ian Moltonca9c1aa2009-01-06 20:11:51 +0000558 }
559
Mark Brown888df392012-02-16 19:37:51 -0800560 ((char *)path->long_name)[name_len - 1] = '\0';
Mark Brown219b93f2008-10-28 13:02:31 +0000561
Stephen Warrenfafd2172011-04-28 17:38:00 -0600562 path->kcontrol = snd_soc_cnew(&w->kcontrol_news[i],
563 wlist, path->long_name,
564 prefix);
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200565 ret = snd_ctl_add(card, path->kcontrol);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200566 if (ret < 0) {
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +0200567 dev_err(dapm->dev,
568 "asoc: failed to add dapm kcontrol %s: %d\n",
569 path->long_name, ret);
Stephen Warrenfafd2172011-04-28 17:38:00 -0600570 kfree(wlist);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200571 kfree(path->long_name);
572 path->long_name = NULL;
573 return ret;
574 }
Stephen Warrenfad59882011-04-28 17:37:59 -0600575 w->kcontrols[i] = path->kcontrol;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200576 }
577 }
578 return ret;
579}
580
581/* create new dapm mux control */
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200582static int dapm_new_mux(struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200583{
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200584 struct snd_soc_dapm_context *dapm = w->dapm;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200585 struct snd_soc_dapm_path *path = NULL;
586 struct snd_kcontrol *kcontrol;
Mark Brown12ea2c72011-03-02 18:17:32 +0000587 struct snd_card *card = dapm->card->snd_card;
Mark Brownefb7ac32011-03-08 17:23:24 +0000588 const char *prefix;
Mark Brown3e5ff4d2011-03-09 11:33:09 +0000589 size_t prefix_len;
Stephen Warrenaf468002011-04-28 17:38:01 -0600590 int ret;
Stephen Warrenfafd2172011-04-28 17:38:00 -0600591 struct snd_soc_dapm_widget_list *wlist;
Stephen Warrenaf468002011-04-28 17:38:01 -0600592 int shared, wlistentries;
Stephen Warrenfafd2172011-04-28 17:38:00 -0600593 size_t wlistsize;
Mark Brown888df392012-02-16 19:37:51 -0800594 const char *name;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200595
Stephen Warrenaf468002011-04-28 17:38:01 -0600596 if (w->num_kcontrols != 1) {
597 dev_err(dapm->dev,
598 "asoc: mux %s has incorrect number of controls\n",
599 w->name);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200600 return -EINVAL;
601 }
602
Stephen Warren1007da02011-05-26 09:57:33 -0600603 shared = dapm_is_shared_kcontrol(dapm, w, &w->kcontrol_news[0],
Stephen Warrenaf468002011-04-28 17:38:01 -0600604 &kcontrol);
605 if (kcontrol) {
606 wlist = kcontrol->private_data;
607 wlistentries = wlist->num_widgets + 1;
608 } else {
609 wlist = NULL;
610 wlistentries = 1;
611 }
Stephen Warrenfafd2172011-04-28 17:38:00 -0600612 wlistsize = sizeof(struct snd_soc_dapm_widget_list) +
Stephen Warrenaf468002011-04-28 17:38:01 -0600613 wlistentries * sizeof(struct snd_soc_dapm_widget *),
614 wlist = krealloc(wlist, wlistsize, GFP_KERNEL);
Stephen Warrenfafd2172011-04-28 17:38:00 -0600615 if (wlist == NULL) {
616 dev_err(dapm->dev,
617 "asoc: can't allocate widget list for %s\n", w->name);
618 return -ENOMEM;
619 }
Stephen Warrenaf468002011-04-28 17:38:01 -0600620 wlist->num_widgets = wlistentries;
621 wlist->widgets[wlistentries - 1] = w;
Stephen Warrenfafd2172011-04-28 17:38:00 -0600622
Stephen Warrenaf468002011-04-28 17:38:01 -0600623 if (!kcontrol) {
624 if (dapm->codec)
625 prefix = dapm->codec->name_prefix;
626 else
627 prefix = NULL;
Mark Brownefb7ac32011-03-08 17:23:24 +0000628
Stephen Warrenaf468002011-04-28 17:38:01 -0600629 if (shared) {
630 name = w->kcontrol_news[0].name;
631 prefix_len = 0;
632 } else {
633 name = w->name;
634 if (prefix)
635 prefix_len = strlen(prefix) + 1;
636 else
637 prefix_len = 0;
638 }
Mark Brown3e5ff4d2011-03-09 11:33:09 +0000639
Stephen Warrenaf468002011-04-28 17:38:01 -0600640 /*
641 * The control will get a prefix from the control creation
642 * process but we're also using the same prefix for widgets so
643 * cut the prefix off the front of the widget name.
644 */
645 kcontrol = snd_soc_cnew(&w->kcontrol_news[0], wlist,
646 name + prefix_len, prefix);
647 ret = snd_ctl_add(card, kcontrol);
648 if (ret < 0) {
Mark Brown53daf202011-09-05 10:51:05 -0700649 dev_err(dapm->dev, "failed to add kcontrol %s: %d\n",
650 w->name, ret);
Stephen Warrenaf468002011-04-28 17:38:01 -0600651 kfree(wlist);
652 return ret;
653 }
654 }
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200655
Stephen Warrenaf468002011-04-28 17:38:01 -0600656 kcontrol->private_data = wlist;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200657
Stephen Warrenfad59882011-04-28 17:37:59 -0600658 w->kcontrols[0] = kcontrol;
659
Richard Purdie2b97eab2006-10-06 18:32:18 +0200660 list_for_each_entry(path, &w->sources, list_sink)
661 path->kcontrol = kcontrol;
662
Stephen Warrenaf468002011-04-28 17:38:01 -0600663 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200664}
665
666/* create new dapm volume control */
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200667static int dapm_new_pga(struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200668{
Mark Browna6c65732010-03-03 17:45:21 +0000669 if (w->num_kcontrols)
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +0200670 dev_err(w->dapm->dev,
671 "asoc: PGA controls not supported: '%s'\n", w->name);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200672
Mark Browna6c65732010-03-03 17:45:21 +0000673 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200674}
675
676/* reset 'walked' bit for each dapm path */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200677static inline void dapm_clear_walk(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200678{
679 struct snd_soc_dapm_path *p;
680
Jarkko Nikula8ddab3f2010-12-14 12:18:30 +0200681 list_for_each_entry(p, &dapm->card->paths, list)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200682 p->walked = 0;
683}
684
Mark Brown99497882010-05-07 20:24:05 +0100685/* We implement power down on suspend by checking the power state of
686 * the ALSA card - when we are suspending the ALSA state for the card
687 * is set to D3.
688 */
689static int snd_soc_dapm_suspend_check(struct snd_soc_dapm_widget *widget)
690{
Mark Brown12ea2c72011-03-02 18:17:32 +0000691 int level = snd_power_get_state(widget->dapm->card->snd_card);
Mark Brown99497882010-05-07 20:24:05 +0100692
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000693 switch (level) {
Mark Brown99497882010-05-07 20:24:05 +0100694 case SNDRV_CTL_POWER_D3hot:
695 case SNDRV_CTL_POWER_D3cold:
Mark Brown1547aba2010-05-07 21:11:40 +0100696 if (widget->ignore_suspend)
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +0200697 dev_dbg(widget->dapm->dev, "%s ignoring suspend\n",
698 widget->name);
Mark Brown1547aba2010-05-07 21:11:40 +0100699 return widget->ignore_suspend;
Mark Brown99497882010-05-07 20:24:05 +0100700 default:
701 return 1;
702 }
703}
704
Richard Purdie2b97eab2006-10-06 18:32:18 +0200705/*
706 * Recursively check for a completed path to an active or physically connected
707 * output widget. Returns number of complete paths.
708 */
709static int is_connected_output_ep(struct snd_soc_dapm_widget *widget)
710{
711 struct snd_soc_dapm_path *path;
712 int con = 0;
713
Mark Brown024dc072011-10-09 11:52:05 +0100714 if (widget->outputs >= 0)
715 return widget->outputs;
716
Mark Brownde02d072011-09-20 21:43:24 +0100717 DAPM_UPDATE_STAT(widget, path_checks);
718
Mark Brown62ea8742012-01-21 21:14:48 +0000719 switch (widget->id) {
720 case snd_soc_dapm_supply:
721 case snd_soc_dapm_regulator_supply:
Mark Brown246d0a12009-04-22 18:24:55 +0100722 return 0;
Mark Brown62ea8742012-01-21 21:14:48 +0000723 default:
724 break;
725 }
Mark Brown246d0a12009-04-22 18:24:55 +0100726
Mark Brown010ff262009-08-17 17:39:22 +0100727 switch (widget->id) {
728 case snd_soc_dapm_adc:
729 case snd_soc_dapm_aif_out:
Mark Brown888df392012-02-16 19:37:51 -0800730 case snd_soc_dapm_dai:
Mark Brown024dc072011-10-09 11:52:05 +0100731 if (widget->active) {
732 widget->outputs = snd_soc_dapm_suspend_check(widget);
733 return widget->outputs;
734 }
Mark Brown010ff262009-08-17 17:39:22 +0100735 default:
736 break;
737 }
Richard Purdie2b97eab2006-10-06 18:32:18 +0200738
739 if (widget->connected) {
740 /* connected pin ? */
Mark Brown024dc072011-10-09 11:52:05 +0100741 if (widget->id == snd_soc_dapm_output && !widget->ext) {
742 widget->outputs = snd_soc_dapm_suspend_check(widget);
743 return widget->outputs;
744 }
Richard Purdie2b97eab2006-10-06 18:32:18 +0200745
746 /* connected jack or spk ? */
Mark Brown024dc072011-10-09 11:52:05 +0100747 if (widget->id == snd_soc_dapm_hp ||
748 widget->id == snd_soc_dapm_spk ||
749 (widget->id == snd_soc_dapm_line &&
750 !list_empty(&widget->sources))) {
751 widget->outputs = snd_soc_dapm_suspend_check(widget);
752 return widget->outputs;
753 }
Richard Purdie2b97eab2006-10-06 18:32:18 +0200754 }
755
756 list_for_each_entry(path, &widget->sinks, list_source) {
Mark Browne56235e2011-09-21 18:19:14 +0100757 DAPM_UPDATE_STAT(widget, neighbour_checks);
758
Mark Brownbf3a9e12011-06-13 16:42:29 +0100759 if (path->weak)
760 continue;
761
Richard Purdie2b97eab2006-10-06 18:32:18 +0200762 if (path->walked)
763 continue;
764
765 if (path->sink && path->connect) {
766 path->walked = 1;
767 con += is_connected_output_ep(path->sink);
768 }
769 }
770
Mark Brown024dc072011-10-09 11:52:05 +0100771 widget->outputs = con;
772
Richard Purdie2b97eab2006-10-06 18:32:18 +0200773 return con;
774}
775
776/*
777 * Recursively check for a completed path to an active or physically connected
778 * input widget. Returns number of complete paths.
779 */
780static int is_connected_input_ep(struct snd_soc_dapm_widget *widget)
781{
782 struct snd_soc_dapm_path *path;
783 int con = 0;
784
Mark Brown024dc072011-10-09 11:52:05 +0100785 if (widget->inputs >= 0)
786 return widget->inputs;
787
Mark Brownde02d072011-09-20 21:43:24 +0100788 DAPM_UPDATE_STAT(widget, path_checks);
789
Mark Brown62ea8742012-01-21 21:14:48 +0000790 switch (widget->id) {
791 case snd_soc_dapm_supply:
792 case snd_soc_dapm_regulator_supply:
Mark Brown246d0a12009-04-22 18:24:55 +0100793 return 0;
Mark Brown62ea8742012-01-21 21:14:48 +0000794 default:
795 break;
796 }
Mark Brown246d0a12009-04-22 18:24:55 +0100797
Richard Purdie2b97eab2006-10-06 18:32:18 +0200798 /* active stream ? */
Mark Brown010ff262009-08-17 17:39:22 +0100799 switch (widget->id) {
800 case snd_soc_dapm_dac:
801 case snd_soc_dapm_aif_in:
Mark Brown888df392012-02-16 19:37:51 -0800802 case snd_soc_dapm_dai:
Mark Brown024dc072011-10-09 11:52:05 +0100803 if (widget->active) {
804 widget->inputs = snd_soc_dapm_suspend_check(widget);
805 return widget->inputs;
806 }
Mark Brown010ff262009-08-17 17:39:22 +0100807 default:
808 break;
809 }
Richard Purdie2b97eab2006-10-06 18:32:18 +0200810
811 if (widget->connected) {
812 /* connected pin ? */
Mark Brown024dc072011-10-09 11:52:05 +0100813 if (widget->id == snd_soc_dapm_input && !widget->ext) {
814 widget->inputs = snd_soc_dapm_suspend_check(widget);
815 return widget->inputs;
816 }
Richard Purdie2b97eab2006-10-06 18:32:18 +0200817
818 /* connected VMID/Bias for lower pops */
Mark Brown024dc072011-10-09 11:52:05 +0100819 if (widget->id == snd_soc_dapm_vmid) {
820 widget->inputs = snd_soc_dapm_suspend_check(widget);
821 return widget->inputs;
822 }
Richard Purdie2b97eab2006-10-06 18:32:18 +0200823
824 /* connected jack ? */
Peter Ujfalusieaeae5d2009-09-30 09:27:24 +0300825 if (widget->id == snd_soc_dapm_mic ||
Mark Brown024dc072011-10-09 11:52:05 +0100826 (widget->id == snd_soc_dapm_line &&
827 !list_empty(&widget->sinks))) {
828 widget->inputs = snd_soc_dapm_suspend_check(widget);
829 return widget->inputs;
830 }
831
Mark Brown1ab97c82011-11-27 16:21:51 +0000832 /* signal generator */
833 if (widget->id == snd_soc_dapm_siggen) {
834 widget->inputs = snd_soc_dapm_suspend_check(widget);
835 return widget->inputs;
836 }
Richard Purdie2b97eab2006-10-06 18:32:18 +0200837 }
838
839 list_for_each_entry(path, &widget->sources, list_sink) {
Mark Browne56235e2011-09-21 18:19:14 +0100840 DAPM_UPDATE_STAT(widget, neighbour_checks);
841
Mark Brownbf3a9e12011-06-13 16:42:29 +0100842 if (path->weak)
843 continue;
844
Richard Purdie2b97eab2006-10-06 18:32:18 +0200845 if (path->walked)
846 continue;
847
848 if (path->source && path->connect) {
849 path->walked = 1;
850 con += is_connected_input_ep(path->source);
851 }
852 }
853
Mark Brown024dc072011-10-09 11:52:05 +0100854 widget->inputs = con;
855
Richard Purdie2b97eab2006-10-06 18:32:18 +0200856 return con;
857}
858
859/*
Jarkko Nikulae2be2cc2008-06-25 14:42:07 +0300860 * Handler for generic register modifier widget.
861 */
862int dapm_reg_event(struct snd_soc_dapm_widget *w,
863 struct snd_kcontrol *kcontrol, int event)
864{
865 unsigned int val;
866
867 if (SND_SOC_DAPM_EVENT_ON(event))
868 val = w->on_val;
869 else
870 val = w->off_val;
871
Liam Girdwood49575fb52012-03-06 18:16:19 +0000872 soc_widget_update_bits_locked(w, -(w->reg + 1),
Jarkko Nikulae2be2cc2008-06-25 14:42:07 +0300873 w->mask << w->shift, val << w->shift);
874
875 return 0;
876}
Mark Brown11589412008-07-29 11:42:23 +0100877EXPORT_SYMBOL_GPL(dapm_reg_event);
Jarkko Nikulae2be2cc2008-06-25 14:42:07 +0300878
Mark Brown62ea8742012-01-21 21:14:48 +0000879/*
880 * Handler for regulator supply widget.
881 */
882int dapm_regulator_event(struct snd_soc_dapm_widget *w,
883 struct snd_kcontrol *kcontrol, int event)
884{
885 if (SND_SOC_DAPM_EVENT_ON(event))
Liam Girdwooda3cc0562012-03-09 17:20:16 +0000886 return regulator_enable(w->regulator);
Mark Brown62ea8742012-01-21 21:14:48 +0000887 else
Liam Girdwooda3cc0562012-03-09 17:20:16 +0000888 return regulator_disable_deferred(w->regulator, w->shift);
Mark Brown62ea8742012-01-21 21:14:48 +0000889}
890EXPORT_SYMBOL_GPL(dapm_regulator_event);
891
Mark Brownd8050022011-09-28 18:28:23 +0100892static int dapm_widget_power_check(struct snd_soc_dapm_widget *w)
893{
Mark Brown9b8a83b2011-10-04 22:15:59 +0100894 if (w->power_checked)
895 return w->new_power;
896
Mark Brownd8050022011-09-28 18:28:23 +0100897 if (w->force)
Mark Brown9b8a83b2011-10-04 22:15:59 +0100898 w->new_power = 1;
Mark Brownd8050022011-09-28 18:28:23 +0100899 else
Mark Brown9b8a83b2011-10-04 22:15:59 +0100900 w->new_power = w->power_check(w);
901
902 w->power_checked = true;
903
904 return w->new_power;
Mark Brownd8050022011-09-28 18:28:23 +0100905}
906
Mark Browncd0f2d42009-04-20 16:56:59 +0100907/* Generic check to see if a widget should be powered.
908 */
909static int dapm_generic_check_power(struct snd_soc_dapm_widget *w)
910{
911 int in, out;
912
Mark Brownde02d072011-09-20 21:43:24 +0100913 DAPM_UPDATE_STAT(w, power_checks);
914
Mark Browncd0f2d42009-04-20 16:56:59 +0100915 in = is_connected_input_ep(w);
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200916 dapm_clear_walk(w->dapm);
Mark Browncd0f2d42009-04-20 16:56:59 +0100917 out = is_connected_output_ep(w);
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200918 dapm_clear_walk(w->dapm);
Mark Browncd0f2d42009-04-20 16:56:59 +0100919 return out != 0 && in != 0;
920}
921
Mark Brown888df392012-02-16 19:37:51 -0800922static int dapm_dai_check_power(struct snd_soc_dapm_widget *w)
923{
924 DAPM_UPDATE_STAT(w, power_checks);
925
926 return w->active;
927}
928
Mark Brown6ea31b92009-04-20 17:15:41 +0100929/* Check to see if an ADC has power */
930static int dapm_adc_check_power(struct snd_soc_dapm_widget *w)
931{
932 int in;
933
Mark Brownde02d072011-09-20 21:43:24 +0100934 DAPM_UPDATE_STAT(w, power_checks);
935
Mark Brown6ea31b92009-04-20 17:15:41 +0100936 if (w->active) {
937 in = is_connected_input_ep(w);
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200938 dapm_clear_walk(w->dapm);
Mark Brown6ea31b92009-04-20 17:15:41 +0100939 return in != 0;
940 } else {
941 return dapm_generic_check_power(w);
942 }
943}
944
945/* Check to see if a DAC has power */
946static int dapm_dac_check_power(struct snd_soc_dapm_widget *w)
947{
948 int out;
949
Mark Brownde02d072011-09-20 21:43:24 +0100950 DAPM_UPDATE_STAT(w, power_checks);
951
Mark Brown6ea31b92009-04-20 17:15:41 +0100952 if (w->active) {
953 out = is_connected_output_ep(w);
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200954 dapm_clear_walk(w->dapm);
Mark Brown6ea31b92009-04-20 17:15:41 +0100955 return out != 0;
956 } else {
957 return dapm_generic_check_power(w);
958 }
959}
960
Mark Brown246d0a12009-04-22 18:24:55 +0100961/* Check to see if a power supply is needed */
962static int dapm_supply_check_power(struct snd_soc_dapm_widget *w)
963{
964 struct snd_soc_dapm_path *path;
Mark Brown246d0a12009-04-22 18:24:55 +0100965
Mark Brownde02d072011-09-20 21:43:24 +0100966 DAPM_UPDATE_STAT(w, power_checks);
967
Mark Brown246d0a12009-04-22 18:24:55 +0100968 /* Check if one of our outputs is connected */
969 list_for_each_entry(path, &w->sinks, list_source) {
Mark Browna8fdac82011-09-28 18:20:26 +0100970 DAPM_UPDATE_STAT(w, neighbour_checks);
971
Mark Brownbf3a9e12011-06-13 16:42:29 +0100972 if (path->weak)
973 continue;
974
Mark Brown215edda2009-09-08 18:59:05 +0100975 if (path->connected &&
976 !path->connected(path->source, path->sink))
977 continue;
978
Mark Brown30173582011-02-11 11:42:19 +0000979 if (!path->sink)
980 continue;
981
Mark Brownf68d7e12011-10-04 22:57:50 +0100982 if (dapm_widget_power_check(path->sink))
983 return 1;
Mark Brown246d0a12009-04-22 18:24:55 +0100984 }
985
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200986 dapm_clear_walk(w->dapm);
Mark Brown246d0a12009-04-22 18:24:55 +0100987
Mark Brownf68d7e12011-10-04 22:57:50 +0100988 return 0;
Mark Brown246d0a12009-04-22 18:24:55 +0100989}
990
Mark Brown35c64bca2011-09-28 18:23:53 +0100991static int dapm_always_on_check_power(struct snd_soc_dapm_widget *w)
992{
993 return 1;
994}
995
Mark Brown38357ab2009-06-06 19:03:23 +0100996static int dapm_seq_compare(struct snd_soc_dapm_widget *a,
997 struct snd_soc_dapm_widget *b,
Mark Brown828a8422011-01-15 13:14:30 +0000998 bool power_up)
Mark Brown42aa3412009-03-01 19:21:10 +0000999{
Mark Brown828a8422011-01-15 13:14:30 +00001000 int *sort;
1001
1002 if (power_up)
1003 sort = dapm_up_seq;
1004 else
1005 sort = dapm_down_seq;
1006
Mark Brown38357ab2009-06-06 19:03:23 +01001007 if (sort[a->id] != sort[b->id])
1008 return sort[a->id] - sort[b->id];
Mark Brown20e48592011-01-15 13:40:50 +00001009 if (a->subseq != b->subseq) {
1010 if (power_up)
1011 return a->subseq - b->subseq;
1012 else
1013 return b->subseq - a->subseq;
1014 }
Mark Brownb22ead22009-06-07 12:51:26 +01001015 if (a->reg != b->reg)
1016 return a->reg - b->reg;
Mark Brown84dab562010-11-12 15:28:42 +00001017 if (a->dapm != b->dapm)
1018 return (unsigned long)a->dapm - (unsigned long)b->dapm;
Mark Brown42aa3412009-03-01 19:21:10 +00001019
Mark Brown38357ab2009-06-06 19:03:23 +01001020 return 0;
1021}
Mark Brown42aa3412009-03-01 19:21:10 +00001022
Mark Brown38357ab2009-06-06 19:03:23 +01001023/* Insert a widget in order into a DAPM power sequence. */
1024static void dapm_seq_insert(struct snd_soc_dapm_widget *new_widget,
1025 struct list_head *list,
Mark Brown828a8422011-01-15 13:14:30 +00001026 bool power_up)
Mark Brown38357ab2009-06-06 19:03:23 +01001027{
1028 struct snd_soc_dapm_widget *w;
1029
1030 list_for_each_entry(w, list, power_list)
Mark Brown828a8422011-01-15 13:14:30 +00001031 if (dapm_seq_compare(new_widget, w, power_up) < 0) {
Mark Brown38357ab2009-06-06 19:03:23 +01001032 list_add_tail(&new_widget->power_list, &w->power_list);
1033 return;
Mark Brown42aa3412009-03-01 19:21:10 +00001034 }
Mark Brown6ea31b92009-04-20 17:15:41 +01001035
Mark Brown38357ab2009-06-06 19:03:23 +01001036 list_add_tail(&new_widget->power_list, list);
1037}
Mark Brown42aa3412009-03-01 19:21:10 +00001038
Mark Brown68f89ad2010-11-03 23:51:49 -04001039static void dapm_seq_check_event(struct snd_soc_dapm_context *dapm,
1040 struct snd_soc_dapm_widget *w, int event)
1041{
1042 struct snd_soc_card *card = dapm->card;
1043 const char *ev_name;
1044 int power, ret;
1045
1046 switch (event) {
1047 case SND_SOC_DAPM_PRE_PMU:
1048 ev_name = "PRE_PMU";
1049 power = 1;
1050 break;
1051 case SND_SOC_DAPM_POST_PMU:
1052 ev_name = "POST_PMU";
1053 power = 1;
1054 break;
1055 case SND_SOC_DAPM_PRE_PMD:
1056 ev_name = "PRE_PMD";
1057 power = 0;
1058 break;
1059 case SND_SOC_DAPM_POST_PMD:
1060 ev_name = "POST_PMD";
1061 power = 0;
1062 break;
1063 default:
1064 BUG();
1065 return;
1066 }
1067
1068 if (w->power != power)
1069 return;
1070
1071 if (w->event && (w->event_flags & event)) {
1072 pop_dbg(dapm->dev, card->pop_time, "pop test : %s %s\n",
1073 w->name, ev_name);
Mark Brown84e90932010-11-04 00:07:02 -04001074 trace_snd_soc_dapm_widget_event_start(w, event);
Mark Brown68f89ad2010-11-03 23:51:49 -04001075 ret = w->event(w, NULL, event);
Mark Brown84e90932010-11-04 00:07:02 -04001076 trace_snd_soc_dapm_widget_event_done(w, event);
Mark Brown68f89ad2010-11-03 23:51:49 -04001077 if (ret < 0)
1078 pr_err("%s: %s event failed: %d\n",
1079 ev_name, w->name, ret);
1080 }
1081}
1082
Mark Brownb22ead22009-06-07 12:51:26 +01001083/* Apply the coalesced changes from a DAPM sequence */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001084static void dapm_seq_run_coalesced(struct snd_soc_dapm_context *dapm,
Mark Brownb22ead22009-06-07 12:51:26 +01001085 struct list_head *pending)
Mark Brown163cac02009-06-07 10:12:52 +01001086{
Jarkko Nikula3a45b862010-11-05 20:35:21 +02001087 struct snd_soc_card *card = dapm->card;
Mark Brown68f89ad2010-11-03 23:51:49 -04001088 struct snd_soc_dapm_widget *w;
1089 int reg, power;
Mark Brownb22ead22009-06-07 12:51:26 +01001090 unsigned int value = 0;
1091 unsigned int mask = 0;
1092 unsigned int cur_mask;
1093
1094 reg = list_first_entry(pending, struct snd_soc_dapm_widget,
1095 power_list)->reg;
1096
1097 list_for_each_entry(w, pending, power_list) {
1098 cur_mask = 1 << w->shift;
1099 BUG_ON(reg != w->reg);
1100
1101 if (w->invert)
1102 power = !w->power;
1103 else
1104 power = w->power;
1105
1106 mask |= cur_mask;
1107 if (power)
1108 value |= cur_mask;
1109
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +02001110 pop_dbg(dapm->dev, card->pop_time,
Mark Brownb22ead22009-06-07 12:51:26 +01001111 "pop test : Queue %s: reg=0x%x, 0x%x/0x%x\n",
1112 w->name, reg, value, mask);
Mark Brown81628102009-06-07 13:21:24 +01001113
Mark Brown68f89ad2010-11-03 23:51:49 -04001114 /* Check for events */
1115 dapm_seq_check_event(dapm, w, SND_SOC_DAPM_PRE_PMU);
1116 dapm_seq_check_event(dapm, w, SND_SOC_DAPM_PRE_PMD);
Mark Brownb22ead22009-06-07 12:51:26 +01001117 }
1118
Mark Brown81628102009-06-07 13:21:24 +01001119 if (reg >= 0) {
Mark Brown29376bc2011-06-19 13:49:28 +01001120 /* Any widget will do, they should all be updating the
1121 * same register.
1122 */
1123 w = list_first_entry(pending, struct snd_soc_dapm_widget,
1124 power_list);
1125
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +02001126 pop_dbg(dapm->dev, card->pop_time,
Mark Brown81628102009-06-07 13:21:24 +01001127 "pop test : Applying 0x%x/0x%x to %x in %dms\n",
Jarkko Nikula3a45b862010-11-05 20:35:21 +02001128 value, mask, reg, card->pop_time);
1129 pop_wait(card->pop_time);
Liam Girdwood49575fb52012-03-06 18:16:19 +00001130 soc_widget_update_bits_locked(w, reg, mask, value);
Mark Brown81628102009-06-07 13:21:24 +01001131 }
1132
1133 list_for_each_entry(w, pending, power_list) {
Mark Brown68f89ad2010-11-03 23:51:49 -04001134 dapm_seq_check_event(dapm, w, SND_SOC_DAPM_POST_PMU);
1135 dapm_seq_check_event(dapm, w, SND_SOC_DAPM_POST_PMD);
Mark Brown42aa3412009-03-01 19:21:10 +00001136 }
Mark Brown42aa3412009-03-01 19:21:10 +00001137}
1138
Mark Brownb22ead22009-06-07 12:51:26 +01001139/* Apply a DAPM power sequence.
1140 *
1141 * We walk over a pre-sorted list of widgets to apply power to. In
1142 * order to minimise the number of writes to the device required
1143 * multiple widgets will be updated in a single write where possible.
1144 * Currently anything that requires more than a single write is not
1145 * handled.
1146 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001147static void dapm_seq_run(struct snd_soc_dapm_context *dapm,
Mark Brown828a8422011-01-15 13:14:30 +00001148 struct list_head *list, int event, bool power_up)
Mark Brownb22ead22009-06-07 12:51:26 +01001149{
1150 struct snd_soc_dapm_widget *w, *n;
1151 LIST_HEAD(pending);
1152 int cur_sort = -1;
Mark Brown20e48592011-01-15 13:40:50 +00001153 int cur_subseq = -1;
Mark Brownb22ead22009-06-07 12:51:26 +01001154 int cur_reg = SND_SOC_NOPM;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001155 struct snd_soc_dapm_context *cur_dapm = NULL;
Mark Brown474b62d2011-01-18 16:14:44 +00001156 int ret, i;
Mark Brown828a8422011-01-15 13:14:30 +00001157 int *sort;
1158
1159 if (power_up)
1160 sort = dapm_up_seq;
1161 else
1162 sort = dapm_down_seq;
Mark Brown163cac02009-06-07 10:12:52 +01001163
Mark Brownb22ead22009-06-07 12:51:26 +01001164 list_for_each_entry_safe(w, n, list, power_list) {
1165 ret = 0;
1166
1167 /* Do we need to apply any queued changes? */
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001168 if (sort[w->id] != cur_sort || w->reg != cur_reg ||
Mark Brown20e48592011-01-15 13:40:50 +00001169 w->dapm != cur_dapm || w->subseq != cur_subseq) {
Mark Brownb22ead22009-06-07 12:51:26 +01001170 if (!list_empty(&pending))
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001171 dapm_seq_run_coalesced(cur_dapm, &pending);
Mark Brownb22ead22009-06-07 12:51:26 +01001172
Mark Brown474b62d2011-01-18 16:14:44 +00001173 if (cur_dapm && cur_dapm->seq_notifier) {
1174 for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++)
1175 if (sort[i] == cur_sort)
1176 cur_dapm->seq_notifier(cur_dapm,
Mark Brownf85a9e02011-01-26 21:41:28 +00001177 i,
1178 cur_subseq);
Mark Brown474b62d2011-01-18 16:14:44 +00001179 }
1180
Mark Brownb22ead22009-06-07 12:51:26 +01001181 INIT_LIST_HEAD(&pending);
1182 cur_sort = -1;
Mark Brownb0b3e6f2011-07-16 10:55:08 +09001183 cur_subseq = INT_MIN;
Mark Brownb22ead22009-06-07 12:51:26 +01001184 cur_reg = SND_SOC_NOPM;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001185 cur_dapm = NULL;
Mark Brownb22ead22009-06-07 12:51:26 +01001186 }
1187
Mark Brown163cac02009-06-07 10:12:52 +01001188 switch (w->id) {
1189 case snd_soc_dapm_pre:
1190 if (!w->event)
Mark Brownb22ead22009-06-07 12:51:26 +01001191 list_for_each_entry_safe_continue(w, n, list,
1192 power_list);
Mark Brown163cac02009-06-07 10:12:52 +01001193
Mark Brownb22ead22009-06-07 12:51:26 +01001194 if (event == SND_SOC_DAPM_STREAM_START)
Mark Brown163cac02009-06-07 10:12:52 +01001195 ret = w->event(w,
1196 NULL, SND_SOC_DAPM_PRE_PMU);
Mark Brownb22ead22009-06-07 12:51:26 +01001197 else if (event == SND_SOC_DAPM_STREAM_STOP)
Mark Brown163cac02009-06-07 10:12:52 +01001198 ret = w->event(w,
1199 NULL, SND_SOC_DAPM_PRE_PMD);
Mark Brown163cac02009-06-07 10:12:52 +01001200 break;
1201
1202 case snd_soc_dapm_post:
1203 if (!w->event)
Mark Brownb22ead22009-06-07 12:51:26 +01001204 list_for_each_entry_safe_continue(w, n, list,
1205 power_list);
Mark Brown163cac02009-06-07 10:12:52 +01001206
Mark Brownb22ead22009-06-07 12:51:26 +01001207 if (event == SND_SOC_DAPM_STREAM_START)
Mark Brown163cac02009-06-07 10:12:52 +01001208 ret = w->event(w,
1209 NULL, SND_SOC_DAPM_POST_PMU);
Mark Brownb22ead22009-06-07 12:51:26 +01001210 else if (event == SND_SOC_DAPM_STREAM_STOP)
Mark Brown163cac02009-06-07 10:12:52 +01001211 ret = w->event(w,
1212 NULL, SND_SOC_DAPM_POST_PMD);
Mark Brownb22ead22009-06-07 12:51:26 +01001213 break;
1214
Mark Brown163cac02009-06-07 10:12:52 +01001215 default:
Mark Brown81628102009-06-07 13:21:24 +01001216 /* Queue it up for application */
1217 cur_sort = sort[w->id];
Mark Brown20e48592011-01-15 13:40:50 +00001218 cur_subseq = w->subseq;
Mark Brown81628102009-06-07 13:21:24 +01001219 cur_reg = w->reg;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001220 cur_dapm = w->dapm;
Mark Brown81628102009-06-07 13:21:24 +01001221 list_move(&w->power_list, &pending);
1222 break;
Mark Brown163cac02009-06-07 10:12:52 +01001223 }
Mark Brownb22ead22009-06-07 12:51:26 +01001224
1225 if (ret < 0)
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02001226 dev_err(w->dapm->dev,
1227 "Failed to apply widget power: %d\n", ret);
Mark Brown163cac02009-06-07 10:12:52 +01001228 }
Mark Brownb22ead22009-06-07 12:51:26 +01001229
1230 if (!list_empty(&pending))
Mark Brown28e86802011-03-08 19:29:53 +00001231 dapm_seq_run_coalesced(cur_dapm, &pending);
Mark Brown474b62d2011-01-18 16:14:44 +00001232
1233 if (cur_dapm && cur_dapm->seq_notifier) {
1234 for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++)
1235 if (sort[i] == cur_sort)
1236 cur_dapm->seq_notifier(cur_dapm,
Mark Brownf85a9e02011-01-26 21:41:28 +00001237 i, cur_subseq);
Mark Brown474b62d2011-01-18 16:14:44 +00001238 }
Mark Brown163cac02009-06-07 10:12:52 +01001239}
1240
Mark Brown97404f22010-12-14 16:13:57 +00001241static void dapm_widget_update(struct snd_soc_dapm_context *dapm)
1242{
1243 struct snd_soc_dapm_update *update = dapm->update;
1244 struct snd_soc_dapm_widget *w;
1245 int ret;
1246
1247 if (!update)
1248 return;
1249
1250 w = update->widget;
1251
1252 if (w->event &&
1253 (w->event_flags & SND_SOC_DAPM_PRE_REG)) {
1254 ret = w->event(w, update->kcontrol, SND_SOC_DAPM_PRE_REG);
1255 if (ret != 0)
1256 pr_err("%s DAPM pre-event failed: %d\n",
1257 w->name, ret);
1258 }
1259
Liam Girdwood49575fb52012-03-06 18:16:19 +00001260 ret = soc_widget_update_bits_locked(w, update->reg, update->mask,
Mark Brown97404f22010-12-14 16:13:57 +00001261 update->val);
1262 if (ret < 0)
1263 pr_err("%s DAPM update failed: %d\n", w->name, ret);
1264
1265 if (w->event &&
1266 (w->event_flags & SND_SOC_DAPM_POST_REG)) {
1267 ret = w->event(w, update->kcontrol, SND_SOC_DAPM_POST_REG);
1268 if (ret != 0)
1269 pr_err("%s DAPM post-event failed: %d\n",
1270 w->name, ret);
1271 }
1272}
1273
Mark Brown9d0624a2011-02-18 11:49:43 -08001274/* Async callback run prior to DAPM sequences - brings to _PREPARE if
1275 * they're changing state.
1276 */
1277static void dapm_pre_sequence_async(void *data, async_cookie_t cookie)
1278{
1279 struct snd_soc_dapm_context *d = data;
1280 int ret;
Mark Brown97404f22010-12-14 16:13:57 +00001281
Mark Brown56fba412011-06-04 11:25:10 +01001282 /* If we're off and we're not supposed to be go into STANDBY */
1283 if (d->bias_level == SND_SOC_BIAS_OFF &&
1284 d->target_bias_level != SND_SOC_BIAS_OFF) {
Mark Brownf1aac482011-12-05 15:17:06 +00001285 if (d->dev)
1286 pm_runtime_get_sync(d->dev);
1287
Mark Brown9d0624a2011-02-18 11:49:43 -08001288 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY);
1289 if (ret != 0)
1290 dev_err(d->dev,
1291 "Failed to turn on bias: %d\n", ret);
1292 }
1293
Mark Brown56fba412011-06-04 11:25:10 +01001294 /* Prepare for a STADDBY->ON or ON->STANDBY transition */
1295 if (d->bias_level != d->target_bias_level) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001296 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_PREPARE);
1297 if (ret != 0)
1298 dev_err(d->dev,
1299 "Failed to prepare bias: %d\n", ret);
1300 }
1301}
1302
1303/* Async callback run prior to DAPM sequences - brings to their final
1304 * state.
1305 */
1306static void dapm_post_sequence_async(void *data, async_cookie_t cookie)
1307{
1308 struct snd_soc_dapm_context *d = data;
1309 int ret;
1310
1311 /* If we just powered the last thing off drop to standby bias */
Mark Brown56fba412011-06-04 11:25:10 +01001312 if (d->bias_level == SND_SOC_BIAS_PREPARE &&
1313 (d->target_bias_level == SND_SOC_BIAS_STANDBY ||
1314 d->target_bias_level == SND_SOC_BIAS_OFF)) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001315 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY);
1316 if (ret != 0)
1317 dev_err(d->dev, "Failed to apply standby bias: %d\n",
1318 ret);
1319 }
1320
1321 /* If we're in standby and can support bias off then do that */
Mark Brown56fba412011-06-04 11:25:10 +01001322 if (d->bias_level == SND_SOC_BIAS_STANDBY &&
1323 d->target_bias_level == SND_SOC_BIAS_OFF) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001324 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_OFF);
1325 if (ret != 0)
1326 dev_err(d->dev, "Failed to turn off bias: %d\n", ret);
Mark Brownf1aac482011-12-05 15:17:06 +00001327
1328 if (d->dev)
Mark Brownfb644e92012-01-25 19:53:58 +00001329 pm_runtime_put(d->dev);
Mark Brown9d0624a2011-02-18 11:49:43 -08001330 }
1331
1332 /* If we just powered up then move to active bias */
Mark Brown56fba412011-06-04 11:25:10 +01001333 if (d->bias_level == SND_SOC_BIAS_PREPARE &&
1334 d->target_bias_level == SND_SOC_BIAS_ON) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001335 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_ON);
1336 if (ret != 0)
1337 dev_err(d->dev, "Failed to apply active bias: %d\n",
1338 ret);
1339 }
1340}
Mark Brown97404f22010-12-14 16:13:57 +00001341
Mark Brownfe4fda52011-10-03 22:36:57 +01001342static void dapm_widget_set_peer_power(struct snd_soc_dapm_widget *peer,
1343 bool power, bool connect)
1344{
1345 /* If a connection is being made or broken then that update
1346 * will have marked the peer dirty, otherwise the widgets are
1347 * not connected and this update has no impact. */
1348 if (!connect)
1349 return;
1350
1351 /* If the peer is already in the state we're moving to then we
1352 * won't have an impact on it. */
1353 if (power != peer->power)
Mark Brown75c1f892011-10-04 22:28:08 +01001354 dapm_mark_dirty(peer, "peer state change");
Mark Brownfe4fda52011-10-03 22:36:57 +01001355}
1356
Mark Brown05623c42011-09-28 17:02:31 +01001357static void dapm_widget_set_power(struct snd_soc_dapm_widget *w, bool power,
1358 struct list_head *up_list,
1359 struct list_head *down_list)
1360{
Mark Browndb432b42011-10-03 21:06:40 +01001361 struct snd_soc_dapm_path *path;
1362
Mark Brown05623c42011-09-28 17:02:31 +01001363 if (w->power == power)
1364 return;
1365
1366 trace_snd_soc_dapm_widget_power(w, power);
1367
Mark Browndb432b42011-10-03 21:06:40 +01001368 /* If we changed our power state perhaps our neigbours changed
Mark Brownfe4fda52011-10-03 22:36:57 +01001369 * also.
Mark Browndb432b42011-10-03 21:06:40 +01001370 */
1371 list_for_each_entry(path, &w->sources, list_sink) {
1372 if (path->source) {
Mark Brownfe4fda52011-10-03 22:36:57 +01001373 dapm_widget_set_peer_power(path->source, power,
1374 path->connect);
Mark Browndb432b42011-10-03 21:06:40 +01001375 }
1376 }
Mark Brownf3bf3e42011-10-04 22:43:31 +01001377 switch (w->id) {
1378 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00001379 case snd_soc_dapm_regulator_supply:
Mark Brownf3bf3e42011-10-04 22:43:31 +01001380 /* Supplies can't affect their outputs, only their inputs */
1381 break;
1382 default:
1383 list_for_each_entry(path, &w->sinks, list_source) {
1384 if (path->sink) {
1385 dapm_widget_set_peer_power(path->sink, power,
1386 path->connect);
1387 }
Mark Browndb432b42011-10-03 21:06:40 +01001388 }
Mark Brownf3bf3e42011-10-04 22:43:31 +01001389 break;
Mark Browndb432b42011-10-03 21:06:40 +01001390 }
1391
Mark Brown05623c42011-09-28 17:02:31 +01001392 if (power)
1393 dapm_seq_insert(w, up_list, true);
1394 else
1395 dapm_seq_insert(w, down_list, false);
1396
1397 w->power = power;
1398}
1399
Mark Brown7c81beb2011-09-20 22:22:32 +01001400static void dapm_power_one_widget(struct snd_soc_dapm_widget *w,
1401 struct list_head *up_list,
1402 struct list_head *down_list)
1403{
Mark Brown7c81beb2011-09-20 22:22:32 +01001404 int power;
1405
1406 switch (w->id) {
1407 case snd_soc_dapm_pre:
1408 dapm_seq_insert(w, down_list, false);
1409 break;
1410 case snd_soc_dapm_post:
1411 dapm_seq_insert(w, up_list, true);
1412 break;
1413
1414 default:
Mark Brownd8050022011-09-28 18:28:23 +01001415 power = dapm_widget_power_check(w);
Mark Brown7c81beb2011-09-20 22:22:32 +01001416
Mark Brown05623c42011-09-28 17:02:31 +01001417 dapm_widget_set_power(w, power, up_list, down_list);
Mark Brown7c81beb2011-09-20 22:22:32 +01001418 break;
1419 }
1420}
1421
Mark Brown42aa3412009-03-01 19:21:10 +00001422/*
Richard Purdie2b97eab2006-10-06 18:32:18 +02001423 * Scan each dapm widget for complete audio path.
1424 * A complete path is a route that has valid endpoints i.e.:-
1425 *
1426 * o DAC to output pin.
1427 * o Input Pin to ADC.
1428 * o Input pin to Output pin (bypass, sidetone)
1429 * o DAC to ADC (loopback).
1430 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001431static int dapm_power_widgets(struct snd_soc_dapm_context *dapm, int event)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001432{
Mark Brown12ea2c72011-03-02 18:17:32 +00001433 struct snd_soc_card *card = dapm->card;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001434 struct snd_soc_dapm_widget *w;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001435 struct snd_soc_dapm_context *d;
Mark Brown291f3bb2009-06-07 13:57:17 +01001436 LIST_HEAD(up_list);
1437 LIST_HEAD(down_list);
Mark Brown9d0624a2011-02-18 11:49:43 -08001438 LIST_HEAD(async_domain);
Mark Brown56fba412011-06-04 11:25:10 +01001439 enum snd_soc_bias_level bias;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001440
Mark Brown84e90932010-11-04 00:07:02 -04001441 trace_snd_soc_dapm_start(card);
1442
Mark Brown56fba412011-06-04 11:25:10 +01001443 list_for_each_entry(d, &card->dapm_list, list) {
Mark Brown497098b2012-03-08 15:06:09 +00001444 if (d->idle_bias_off)
1445 d->target_bias_level = SND_SOC_BIAS_OFF;
1446 else
1447 d->target_bias_level = SND_SOC_BIAS_STANDBY;
Mark Brown56fba412011-06-04 11:25:10 +01001448 }
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001449
Liam Girdwood6c120e12012-02-15 15:15:34 +00001450 dapm_reset(card);
Mark Brown9b8a83b2011-10-04 22:15:59 +01001451
Mark Brown6d3ddc82009-05-16 17:47:29 +01001452 /* Check which widgets we need to power and store them in
Mark Browndb432b42011-10-03 21:06:40 +01001453 * lists indicating if they should be powered up or down. We
1454 * only check widgets that have been flagged as dirty but note
1455 * that new widgets may be added to the dirty list while we
1456 * iterate.
Mark Brown6d3ddc82009-05-16 17:47:29 +01001457 */
Mark Browndb432b42011-10-03 21:06:40 +01001458 list_for_each_entry(w, &card->dapm_dirty, dirty) {
Mark Brown7c81beb2011-09-20 22:22:32 +01001459 dapm_power_one_widget(w, &up_list, &down_list);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001460 }
1461
Mark Brownf9de6d72011-09-28 17:19:47 +01001462 list_for_each_entry(w, &card->widgets, list) {
Mark Browndb432b42011-10-03 21:06:40 +01001463 list_del_init(&w->dirty);
1464
Mark Brownf9de6d72011-09-28 17:19:47 +01001465 if (w->power) {
1466 d = w->dapm;
1467
1468 /* Supplies and micbiases only bring the
1469 * context up to STANDBY as unless something
1470 * else is active and passing audio they
Mark Brownafe62362012-01-25 19:55:22 +00001471 * generally don't require full power. Signal
1472 * generators are virtual pins and have no
1473 * power impact themselves.
Mark Brownf9de6d72011-09-28 17:19:47 +01001474 */
1475 switch (w->id) {
Mark Brownafe62362012-01-25 19:55:22 +00001476 case snd_soc_dapm_siggen:
1477 break;
Mark Brownf9de6d72011-09-28 17:19:47 +01001478 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00001479 case snd_soc_dapm_regulator_supply:
Mark Brownf9de6d72011-09-28 17:19:47 +01001480 case snd_soc_dapm_micbias:
1481 if (d->target_bias_level < SND_SOC_BIAS_STANDBY)
1482 d->target_bias_level = SND_SOC_BIAS_STANDBY;
1483 break;
1484 default:
1485 d->target_bias_level = SND_SOC_BIAS_ON;
1486 break;
1487 }
1488 }
1489
1490 }
1491
Mark Brown85a843c2011-09-21 21:29:47 +01001492 /* Force all contexts in the card to the same bias state if
1493 * they're not ground referenced.
1494 */
Mark Brown56fba412011-06-04 11:25:10 +01001495 bias = SND_SOC_BIAS_OFF;
Mark Brown52ba67b2011-04-04 21:05:11 +09001496 list_for_each_entry(d, &card->dapm_list, list)
Mark Brown56fba412011-06-04 11:25:10 +01001497 if (d->target_bias_level > bias)
1498 bias = d->target_bias_level;
Mark Brown52ba67b2011-04-04 21:05:11 +09001499 list_for_each_entry(d, &card->dapm_list, list)
Mark Brown85a843c2011-09-21 21:29:47 +01001500 if (!d->idle_bias_off)
1501 d->target_bias_level = bias;
Mark Brown52ba67b2011-04-04 21:05:11 +09001502
Mark Brownde02d072011-09-20 21:43:24 +01001503 trace_snd_soc_dapm_walk_done(card);
Mark Brown52ba67b2011-04-04 21:05:11 +09001504
Mark Brown9d0624a2011-02-18 11:49:43 -08001505 /* Run all the bias changes in parallel */
1506 list_for_each_entry(d, &dapm->card->dapm_list, list)
1507 async_schedule_domain(dapm_pre_sequence_async, d,
1508 &async_domain);
1509 async_synchronize_full_domain(&async_domain);
Mark Brown452c5ea2009-05-17 21:41:23 +01001510
Mark Brown6d3ddc82009-05-16 17:47:29 +01001511 /* Power down widgets first; try to avoid amplifying pops. */
Mark Brown828a8422011-01-15 13:14:30 +00001512 dapm_seq_run(dapm, &down_list, event, false);
Mark Brown6d3ddc82009-05-16 17:47:29 +01001513
Mark Brown97404f22010-12-14 16:13:57 +00001514 dapm_widget_update(dapm);
1515
Mark Brown6d3ddc82009-05-16 17:47:29 +01001516 /* Now power up. */
Mark Brown828a8422011-01-15 13:14:30 +00001517 dapm_seq_run(dapm, &up_list, event, true);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001518
Mark Brown9d0624a2011-02-18 11:49:43 -08001519 /* Run all the bias changes in parallel */
1520 list_for_each_entry(d, &dapm->card->dapm_list, list)
1521 async_schedule_domain(dapm_post_sequence_async, d,
1522 &async_domain);
1523 async_synchronize_full_domain(&async_domain);
Mark Brown452c5ea2009-05-17 21:41:23 +01001524
Liam Girdwood8078d872012-02-15 15:15:35 +00001525 /* do we need to notify any clients that DAPM event is complete */
1526 list_for_each_entry(d, &card->dapm_list, list) {
1527 if (d->stream_event)
1528 d->stream_event(d, event);
1529 }
1530
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +02001531 pop_dbg(dapm->dev, card->pop_time,
1532 "DAPM sequencing finished, waiting %dms\n", card->pop_time);
Jarkko Nikula3a45b862010-11-05 20:35:21 +02001533 pop_wait(card->pop_time);
Mark Browncb507e72009-07-08 18:54:57 +01001534
Mark Brown84e90932010-11-04 00:07:02 -04001535 trace_snd_soc_dapm_done(card);
1536
Mark Brown42aa3412009-03-01 19:21:10 +00001537 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001538}
1539
Mark Brown79fb9382009-08-21 16:38:13 +01001540#ifdef CONFIG_DEBUG_FS
Mark Brown79fb9382009-08-21 16:38:13 +01001541static ssize_t dapm_widget_power_read_file(struct file *file,
1542 char __user *user_buf,
1543 size_t count, loff_t *ppos)
1544{
1545 struct snd_soc_dapm_widget *w = file->private_data;
1546 char *buf;
1547 int in, out;
1548 ssize_t ret;
1549 struct snd_soc_dapm_path *p = NULL;
1550
1551 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1552 if (!buf)
1553 return -ENOMEM;
1554
1555 in = is_connected_input_ep(w);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001556 dapm_clear_walk(w->dapm);
Mark Brown79fb9382009-08-21 16:38:13 +01001557 out = is_connected_output_ep(w);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001558 dapm_clear_walk(w->dapm);
Mark Brown79fb9382009-08-21 16:38:13 +01001559
Mark Brownf13ebad2012-03-03 18:01:01 +00001560 ret = snprintf(buf, PAGE_SIZE, "%s: %s%s in %d out %d",
1561 w->name, w->power ? "On" : "Off",
1562 w->force ? " (forced)" : "", in, out);
Mark Brown79fb9382009-08-21 16:38:13 +01001563
Mark Brownd033c362009-12-04 15:25:56 +00001564 if (w->reg >= 0)
1565 ret += snprintf(buf + ret, PAGE_SIZE - ret,
1566 " - R%d(0x%x) bit %d",
1567 w->reg, w->reg, w->shift);
1568
1569 ret += snprintf(buf + ret, PAGE_SIZE - ret, "\n");
1570
Mark Brown3eef08b2009-09-14 16:49:00 +01001571 if (w->sname)
1572 ret += snprintf(buf + ret, PAGE_SIZE - ret, " stream %s %s\n",
1573 w->sname,
1574 w->active ? "active" : "inactive");
Mark Brown79fb9382009-08-21 16:38:13 +01001575
1576 list_for_each_entry(p, &w->sources, list_sink) {
Mark Brown215edda2009-09-08 18:59:05 +01001577 if (p->connected && !p->connected(w, p->sink))
1578 continue;
1579
Mark Brown79fb9382009-08-21 16:38:13 +01001580 if (p->connect)
1581 ret += snprintf(buf + ret, PAGE_SIZE - ret,
Dimitris Papastamos67f5ed62011-02-24 17:09:32 +00001582 " in \"%s\" \"%s\"\n",
Mark Brown79fb9382009-08-21 16:38:13 +01001583 p->name ? p->name : "static",
1584 p->source->name);
1585 }
1586 list_for_each_entry(p, &w->sinks, list_source) {
Mark Brown215edda2009-09-08 18:59:05 +01001587 if (p->connected && !p->connected(w, p->sink))
1588 continue;
1589
Mark Brown79fb9382009-08-21 16:38:13 +01001590 if (p->connect)
1591 ret += snprintf(buf + ret, PAGE_SIZE - ret,
Dimitris Papastamos67f5ed62011-02-24 17:09:32 +00001592 " out \"%s\" \"%s\"\n",
Mark Brown79fb9382009-08-21 16:38:13 +01001593 p->name ? p->name : "static",
1594 p->sink->name);
1595 }
1596
1597 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
1598
1599 kfree(buf);
1600 return ret;
1601}
1602
1603static const struct file_operations dapm_widget_power_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -07001604 .open = simple_open,
Mark Brown79fb9382009-08-21 16:38:13 +01001605 .read = dapm_widget_power_read_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001606 .llseek = default_llseek,
Mark Brown79fb9382009-08-21 16:38:13 +01001607};
1608
Mark Brownef49e4f2011-04-04 20:48:13 +09001609static ssize_t dapm_bias_read_file(struct file *file, char __user *user_buf,
1610 size_t count, loff_t *ppos)
1611{
1612 struct snd_soc_dapm_context *dapm = file->private_data;
1613 char *level;
1614
1615 switch (dapm->bias_level) {
1616 case SND_SOC_BIAS_ON:
1617 level = "On\n";
1618 break;
1619 case SND_SOC_BIAS_PREPARE:
1620 level = "Prepare\n";
1621 break;
1622 case SND_SOC_BIAS_STANDBY:
1623 level = "Standby\n";
1624 break;
1625 case SND_SOC_BIAS_OFF:
1626 level = "Off\n";
1627 break;
1628 default:
1629 BUG();
1630 level = "Unknown\n";
1631 break;
1632 }
1633
1634 return simple_read_from_buffer(user_buf, count, ppos, level,
1635 strlen(level));
1636}
1637
1638static const struct file_operations dapm_bias_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -07001639 .open = simple_open,
Mark Brownef49e4f2011-04-04 20:48:13 +09001640 .read = dapm_bias_read_file,
1641 .llseek = default_llseek,
1642};
1643
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02001644void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
1645 struct dentry *parent)
Mark Brown79fb9382009-08-21 16:38:13 +01001646{
Mark Brown79fb9382009-08-21 16:38:13 +01001647 struct dentry *d;
1648
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02001649 dapm->debugfs_dapm = debugfs_create_dir("dapm", parent);
1650
1651 if (!dapm->debugfs_dapm) {
Liam Girdwoodf1e90af2012-03-06 18:13:25 +00001652 dev_warn(dapm->dev,
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02001653 "Failed to create DAPM debugfs directory\n");
Mark Brown79fb9382009-08-21 16:38:13 +01001654 return;
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02001655 }
Mark Brown79fb9382009-08-21 16:38:13 +01001656
Mark Brownef49e4f2011-04-04 20:48:13 +09001657 d = debugfs_create_file("bias_level", 0444,
1658 dapm->debugfs_dapm, dapm,
1659 &dapm_bias_fops);
1660 if (!d)
1661 dev_warn(dapm->dev,
1662 "ASoC: Failed to create bias level debugfs file\n");
Mark Brown79fb9382009-08-21 16:38:13 +01001663}
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001664
1665static void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
1666{
1667 struct snd_soc_dapm_context *dapm = w->dapm;
1668 struct dentry *d;
1669
1670 if (!dapm->debugfs_dapm || !w->name)
1671 return;
1672
1673 d = debugfs_create_file(w->name, 0444,
1674 dapm->debugfs_dapm, w,
1675 &dapm_widget_power_fops);
1676 if (!d)
1677 dev_warn(w->dapm->dev,
1678 "ASoC: Failed to create %s debugfs file\n",
1679 w->name);
1680}
1681
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02001682static void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
1683{
1684 debugfs_remove_recursive(dapm->debugfs_dapm);
1685}
1686
Mark Brown79fb9382009-08-21 16:38:13 +01001687#else
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02001688void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
1689 struct dentry *parent)
Mark Brown79fb9382009-08-21 16:38:13 +01001690{
1691}
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001692
1693static inline void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
1694{
1695}
1696
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02001697static inline void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
1698{
1699}
1700
Mark Brown79fb9382009-08-21 16:38:13 +01001701#endif
1702
Richard Purdie2b97eab2006-10-06 18:32:18 +02001703/* test and update the power status of a mux widget */
Liam Girdwood4edbb3452012-03-07 10:38:27 +00001704static int soc_dapm_mux_update_power(struct snd_soc_dapm_widget *widget,
Liam Girdwood40f02cd2012-02-06 16:05:14 +00001705 struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001706{
1707 struct snd_soc_dapm_path *path;
1708 int found = 0;
1709
Peter Ujfalusieff317d2009-01-15 14:40:47 +02001710 if (widget->id != snd_soc_dapm_mux &&
Dimitris Papastamos24ff33a2010-12-16 15:53:39 +00001711 widget->id != snd_soc_dapm_virt_mux &&
Peter Ujfalusieff317d2009-01-15 14:40:47 +02001712 widget->id != snd_soc_dapm_value_mux)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001713 return -ENODEV;
1714
Richard Purdie2b97eab2006-10-06 18:32:18 +02001715 /* find dapm widget path assoc with kcontrol */
Jarkko Nikula8ddab3f2010-12-14 12:18:30 +02001716 list_for_each_entry(path, &widget->dapm->card->paths, list) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02001717 if (path->kcontrol != kcontrol)
1718 continue;
1719
Richard Zhaocb01e2b2008-10-07 08:05:20 +08001720 if (!path->name || !e->texts[mux])
Richard Purdie2b97eab2006-10-06 18:32:18 +02001721 continue;
1722
1723 found = 1;
1724 /* we now need to match the string in the enum to the path */
Mark Browndb432b42011-10-03 21:06:40 +01001725 if (!(strcmp(path->name, e->texts[mux]))) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02001726 path->connect = 1; /* new connection */
Mark Brown75c1f892011-10-04 22:28:08 +01001727 dapm_mark_dirty(path->source, "mux connection");
Mark Browndb432b42011-10-03 21:06:40 +01001728 } else {
1729 if (path->connect)
Mark Brown75c1f892011-10-04 22:28:08 +01001730 dapm_mark_dirty(path->source,
1731 "mux disconnection");
Richard Purdie2b97eab2006-10-06 18:32:18 +02001732 path->connect = 0; /* old connection must be powered down */
Mark Browndb432b42011-10-03 21:06:40 +01001733 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02001734 }
1735
Mark Browndb432b42011-10-03 21:06:40 +01001736 if (found) {
Mark Brown75c1f892011-10-04 22:28:08 +01001737 dapm_mark_dirty(widget, "mux change");
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001738 dapm_power_widgets(widget->dapm, SND_SOC_DAPM_STREAM_NOP);
Mark Browndb432b42011-10-03 21:06:40 +01001739 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02001740
1741 return 0;
1742}
Liam Girdwood4edbb3452012-03-07 10:38:27 +00001743
1744int snd_soc_dapm_mux_update_power(struct snd_soc_dapm_widget *widget,
1745 struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e)
1746{
1747 struct snd_soc_card *card = widget->dapm->card;
1748 int ret;
1749
Liam Girdwood3cd04342012-03-09 12:02:08 +00001750 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Liam Girdwood4edbb3452012-03-07 10:38:27 +00001751 ret = soc_dapm_mux_update_power(widget, kcontrol, mux, e);
1752 mutex_unlock(&card->dapm_mutex);
1753 return ret;
1754}
Liam Girdwood40f02cd2012-02-06 16:05:14 +00001755EXPORT_SYMBOL_GPL(snd_soc_dapm_mux_update_power);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001756
Milan plzik1b075e32008-01-10 14:39:46 +01001757/* test and update the power status of a mixer or switch widget */
Liam Girdwood4edbb3452012-03-07 10:38:27 +00001758static int soc_dapm_mixer_update_power(struct snd_soc_dapm_widget *widget,
Mark Brown283375c2009-12-07 18:09:03 +00001759 struct snd_kcontrol *kcontrol, int connect)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001760{
1761 struct snd_soc_dapm_path *path;
1762 int found = 0;
1763
Milan plzik1b075e32008-01-10 14:39:46 +01001764 if (widget->id != snd_soc_dapm_mixer &&
Ian Moltonca9c1aa2009-01-06 20:11:51 +00001765 widget->id != snd_soc_dapm_mixer_named_ctl &&
Milan plzik1b075e32008-01-10 14:39:46 +01001766 widget->id != snd_soc_dapm_switch)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001767 return -ENODEV;
1768
Richard Purdie2b97eab2006-10-06 18:32:18 +02001769 /* find dapm widget path assoc with kcontrol */
Jarkko Nikula8ddab3f2010-12-14 12:18:30 +02001770 list_for_each_entry(path, &widget->dapm->card->paths, list) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02001771 if (path->kcontrol != kcontrol)
1772 continue;
1773
1774 /* found, now check type */
1775 found = 1;
Mark Brown283375c2009-12-07 18:09:03 +00001776 path->connect = connect;
Mark Brown75c1f892011-10-04 22:28:08 +01001777 dapm_mark_dirty(path->source, "mixer connection");
Richard Purdie2b97eab2006-10-06 18:32:18 +02001778 }
1779
Mark Browndb432b42011-10-03 21:06:40 +01001780 if (found) {
Mark Brown75c1f892011-10-04 22:28:08 +01001781 dapm_mark_dirty(widget, "mixer update");
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001782 dapm_power_widgets(widget->dapm, SND_SOC_DAPM_STREAM_NOP);
Mark Browndb432b42011-10-03 21:06:40 +01001783 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02001784
1785 return 0;
1786}
Liam Girdwood4edbb3452012-03-07 10:38:27 +00001787
1788int snd_soc_dapm_mixer_update_power(struct snd_soc_dapm_widget *widget,
1789 struct snd_kcontrol *kcontrol, int connect)
1790{
1791 struct snd_soc_card *card = widget->dapm->card;
1792 int ret;
1793
Liam Girdwood3cd04342012-03-09 12:02:08 +00001794 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Liam Girdwood4edbb3452012-03-07 10:38:27 +00001795 ret = soc_dapm_mixer_update_power(widget, kcontrol, connect);
1796 mutex_unlock(&card->dapm_mutex);
1797 return ret;
1798}
Liam Girdwood40f02cd2012-02-06 16:05:14 +00001799EXPORT_SYMBOL_GPL(snd_soc_dapm_mixer_update_power);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001800
1801/* show dapm widget status in sys fs */
1802static ssize_t dapm_widget_show(struct device *dev,
1803 struct device_attribute *attr, char *buf)
1804{
Mark Brown36ae1a92012-01-06 17:12:45 -08001805 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001806 struct snd_soc_codec *codec =rtd->codec;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001807 struct snd_soc_dapm_widget *w;
1808 int count = 0;
1809 char *state = "not set";
1810
Jarkko Nikula97c866d2010-12-14 12:18:31 +02001811 list_for_each_entry(w, &codec->card->widgets, list) {
1812 if (w->dapm != &codec->dapm)
1813 continue;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001814
1815 /* only display widgets that burnm power */
1816 switch (w->id) {
1817 case snd_soc_dapm_hp:
1818 case snd_soc_dapm_mic:
1819 case snd_soc_dapm_spk:
1820 case snd_soc_dapm_line:
1821 case snd_soc_dapm_micbias:
1822 case snd_soc_dapm_dac:
1823 case snd_soc_dapm_adc:
1824 case snd_soc_dapm_pga:
Olaya, Margaritad88429a2010-12-10 21:11:44 -06001825 case snd_soc_dapm_out_drv:
Richard Purdie2b97eab2006-10-06 18:32:18 +02001826 case snd_soc_dapm_mixer:
Ian Moltonca9c1aa2009-01-06 20:11:51 +00001827 case snd_soc_dapm_mixer_named_ctl:
Mark Brown246d0a12009-04-22 18:24:55 +01001828 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00001829 case snd_soc_dapm_regulator_supply:
Richard Purdie2b97eab2006-10-06 18:32:18 +02001830 if (w->name)
1831 count += sprintf(buf + count, "%s: %s\n",
1832 w->name, w->power ? "On":"Off");
1833 break;
1834 default:
1835 break;
1836 }
1837 }
1838
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001839 switch (codec->dapm.bias_level) {
Mark Brown0be98982008-05-19 12:31:28 +02001840 case SND_SOC_BIAS_ON:
1841 state = "On";
Richard Purdie2b97eab2006-10-06 18:32:18 +02001842 break;
Mark Brown0be98982008-05-19 12:31:28 +02001843 case SND_SOC_BIAS_PREPARE:
1844 state = "Prepare";
Richard Purdie2b97eab2006-10-06 18:32:18 +02001845 break;
Mark Brown0be98982008-05-19 12:31:28 +02001846 case SND_SOC_BIAS_STANDBY:
1847 state = "Standby";
Richard Purdie2b97eab2006-10-06 18:32:18 +02001848 break;
Mark Brown0be98982008-05-19 12:31:28 +02001849 case SND_SOC_BIAS_OFF:
1850 state = "Off";
Richard Purdie2b97eab2006-10-06 18:32:18 +02001851 break;
1852 }
1853 count += sprintf(buf + count, "PM State: %s\n", state);
1854
1855 return count;
1856}
1857
1858static DEVICE_ATTR(dapm_widget, 0444, dapm_widget_show, NULL);
1859
1860int snd_soc_dapm_sys_add(struct device *dev)
1861{
Troy Kisky12ef1932008-10-13 17:42:14 -07001862 return device_create_file(dev, &dev_attr_dapm_widget);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001863}
1864
1865static void snd_soc_dapm_sys_remove(struct device *dev)
1866{
Mark Brownaef90842009-05-16 17:53:16 +01001867 device_remove_file(dev, &dev_attr_dapm_widget);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001868}
1869
1870/* free all dapm widgets and resources */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001871static void dapm_free_widgets(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001872{
1873 struct snd_soc_dapm_widget *w, *next_w;
1874 struct snd_soc_dapm_path *p, *next_p;
1875
Jarkko Nikula97c866d2010-12-14 12:18:31 +02001876 list_for_each_entry_safe(w, next_w, &dapm->card->widgets, list) {
1877 if (w->dapm != dapm)
1878 continue;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001879 list_del(&w->list);
Jarkko Nikula8ddab3f2010-12-14 12:18:30 +02001880 /*
1881 * remove source and sink paths associated to this widget.
1882 * While removing the path, remove reference to it from both
1883 * source and sink widgets so that path is removed only once.
1884 */
1885 list_for_each_entry_safe(p, next_p, &w->sources, list_sink) {
1886 list_del(&p->list_sink);
1887 list_del(&p->list_source);
1888 list_del(&p->list);
1889 kfree(p->long_name);
1890 kfree(p);
1891 }
1892 list_for_each_entry_safe(p, next_p, &w->sinks, list_source) {
1893 list_del(&p->list_sink);
1894 list_del(&p->list_source);
1895 list_del(&p->list);
1896 kfree(p->long_name);
1897 kfree(p);
1898 }
Stephen Warrenfad59882011-04-28 17:37:59 -06001899 kfree(w->kcontrols);
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001900 kfree(w->name);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001901 kfree(w);
1902 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02001903}
1904
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02001905static struct snd_soc_dapm_widget *dapm_find_widget(
1906 struct snd_soc_dapm_context *dapm, const char *pin,
1907 bool search_other_contexts)
1908{
1909 struct snd_soc_dapm_widget *w;
1910 struct snd_soc_dapm_widget *fallback = NULL;
1911
1912 list_for_each_entry(w, &dapm->card->widgets, list) {
1913 if (!strcmp(w->name, pin)) {
1914 if (w->dapm == dapm)
1915 return w;
1916 else
1917 fallback = w;
1918 }
1919 }
1920
1921 if (search_other_contexts)
1922 return fallback;
1923
1924 return NULL;
1925}
1926
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001927static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context *dapm,
Mark Brown16499232009-01-07 18:25:13 +00001928 const char *pin, int status)
Liam Girdwooda5302182008-07-07 13:35:17 +01001929{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02001930 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
Liam Girdwooda5302182008-07-07 13:35:17 +01001931
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02001932 if (!w) {
1933 dev_err(dapm->dev, "dapm: unknown pin %s\n", pin);
1934 return -EINVAL;
Liam Girdwooda5302182008-07-07 13:35:17 +01001935 }
1936
Mark Brown1a8b2d92012-02-16 11:50:07 -08001937 if (w->connected != status)
1938 dapm_mark_dirty(w, "pin configuration");
1939
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02001940 w->connected = status;
1941 if (status == 0)
1942 w->force = 0;
Mark Brown0d867332011-04-06 11:38:14 +09001943
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02001944 return 0;
Liam Girdwooda5302182008-07-07 13:35:17 +01001945}
1946
Richard Purdie2b97eab2006-10-06 18:32:18 +02001947/**
Liam Girdwooda5302182008-07-07 13:35:17 +01001948 * snd_soc_dapm_sync - scan and power dapm paths
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001949 * @dapm: DAPM context
Richard Purdie2b97eab2006-10-06 18:32:18 +02001950 *
1951 * Walks all dapm audio paths and powers widgets according to their
1952 * stream or path usage.
1953 *
1954 * Returns 0 for success.
1955 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001956int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001957{
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00001958 int ret;
1959
Mark Brown4f4c0072011-10-07 14:29:19 +01001960 /*
1961 * Suppress early reports (eg, jacks syncing their state) to avoid
1962 * silly DAPM runs during card startup.
1963 */
1964 if (!dapm->card || !dapm->card->instantiated)
1965 return 0;
1966
Liam Girdwood3cd04342012-03-09 12:02:08 +00001967 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00001968 ret = dapm_power_widgets(dapm, SND_SOC_DAPM_STREAM_NOP);
1969 mutex_unlock(&dapm->card->dapm_mutex);
1970 return ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001971}
Liam Girdwooda5302182008-07-07 13:35:17 +01001972EXPORT_SYMBOL_GPL(snd_soc_dapm_sync);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001973
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001974static int snd_soc_dapm_add_route(struct snd_soc_dapm_context *dapm,
Mark Brown215edda2009-09-08 18:59:05 +01001975 const struct snd_soc_dapm_route *route)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001976{
1977 struct snd_soc_dapm_path *path;
1978 struct snd_soc_dapm_widget *wsource = NULL, *wsink = NULL, *w;
Jarkko Nikula97c866d2010-12-14 12:18:31 +02001979 struct snd_soc_dapm_widget *wtsource = NULL, *wtsink = NULL;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001980 const char *sink;
Mark Brown215edda2009-09-08 18:59:05 +01001981 const char *control = route->control;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001982 const char *source;
1983 char prefixed_sink[80];
1984 char prefixed_source[80];
Richard Purdie2b97eab2006-10-06 18:32:18 +02001985 int ret = 0;
1986
Mark Brown88e8b9a2011-03-02 18:18:24 +00001987 if (dapm->codec && dapm->codec->name_prefix) {
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001988 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
1989 dapm->codec->name_prefix, route->sink);
1990 sink = prefixed_sink;
1991 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
1992 dapm->codec->name_prefix, route->source);
1993 source = prefixed_source;
1994 } else {
1995 sink = route->sink;
1996 source = route->source;
1997 }
1998
Jarkko Nikula97c866d2010-12-14 12:18:31 +02001999 /*
2000 * find src and dest widgets over all widgets but favor a widget from
2001 * current DAPM context
2002 */
2003 list_for_each_entry(w, &dapm->card->widgets, list) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002004 if (!wsink && !(strcmp(w->name, sink))) {
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002005 wtsink = w;
2006 if (w->dapm == dapm)
2007 wsink = w;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002008 continue;
2009 }
2010 if (!wsource && !(strcmp(w->name, source))) {
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002011 wtsource = w;
2012 if (w->dapm == dapm)
2013 wsource = w;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002014 }
2015 }
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002016 /* use widget from another DAPM context if not found from this */
2017 if (!wsink)
2018 wsink = wtsink;
2019 if (!wsource)
2020 wsource = wtsource;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002021
2022 if (wsource == NULL || wsink == NULL)
2023 return -ENODEV;
2024
2025 path = kzalloc(sizeof(struct snd_soc_dapm_path), GFP_KERNEL);
2026 if (!path)
2027 return -ENOMEM;
2028
2029 path->source = wsource;
2030 path->sink = wsink;
Mark Brown215edda2009-09-08 18:59:05 +01002031 path->connected = route->connected;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002032 INIT_LIST_HEAD(&path->list);
2033 INIT_LIST_HEAD(&path->list_source);
2034 INIT_LIST_HEAD(&path->list_sink);
2035
2036 /* check for external widgets */
2037 if (wsink->id == snd_soc_dapm_input) {
2038 if (wsource->id == snd_soc_dapm_micbias ||
2039 wsource->id == snd_soc_dapm_mic ||
Rongrong Cao087d53a2009-07-10 20:13:30 +01002040 wsource->id == snd_soc_dapm_line ||
2041 wsource->id == snd_soc_dapm_output)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002042 wsink->ext = 1;
2043 }
2044 if (wsource->id == snd_soc_dapm_output) {
2045 if (wsink->id == snd_soc_dapm_spk ||
2046 wsink->id == snd_soc_dapm_hp ||
Seth Forshee1e392212007-04-16 15:36:42 +02002047 wsink->id == snd_soc_dapm_line ||
2048 wsink->id == snd_soc_dapm_input)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002049 wsource->ext = 1;
2050 }
2051
2052 /* connect static paths */
2053 if (control == NULL) {
Jarkko Nikula8ddab3f2010-12-14 12:18:30 +02002054 list_add(&path->list, &dapm->card->paths);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002055 list_add(&path->list_sink, &wsink->sources);
2056 list_add(&path->list_source, &wsource->sinks);
2057 path->connect = 1;
2058 return 0;
2059 }
2060
2061 /* connect dynamic paths */
Lu Guanqundc2bea62011-04-20 16:00:36 +08002062 switch (wsink->id) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002063 case snd_soc_dapm_adc:
2064 case snd_soc_dapm_dac:
2065 case snd_soc_dapm_pga:
Olaya, Margaritad88429a2010-12-10 21:11:44 -06002066 case snd_soc_dapm_out_drv:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002067 case snd_soc_dapm_input:
2068 case snd_soc_dapm_output:
Mark Brown1ab97c82011-11-27 16:21:51 +00002069 case snd_soc_dapm_siggen:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002070 case snd_soc_dapm_micbias:
2071 case snd_soc_dapm_vmid:
2072 case snd_soc_dapm_pre:
2073 case snd_soc_dapm_post:
Mark Brown246d0a12009-04-22 18:24:55 +01002074 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00002075 case snd_soc_dapm_regulator_supply:
Mark Brown010ff262009-08-17 17:39:22 +01002076 case snd_soc_dapm_aif_in:
2077 case snd_soc_dapm_aif_out:
Mark Brown888df392012-02-16 19:37:51 -08002078 case snd_soc_dapm_dai:
Jarkko Nikula8ddab3f2010-12-14 12:18:30 +02002079 list_add(&path->list, &dapm->card->paths);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002080 list_add(&path->list_sink, &wsink->sources);
2081 list_add(&path->list_source, &wsource->sinks);
2082 path->connect = 1;
2083 return 0;
2084 case snd_soc_dapm_mux:
Dimitris Papastamos24ff33a2010-12-16 15:53:39 +00002085 case snd_soc_dapm_virt_mux:
Peter Ujfalusi74155552009-01-08 13:34:29 +02002086 case snd_soc_dapm_value_mux:
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002087 ret = dapm_connect_mux(dapm, wsource, wsink, path, control,
Stephen Warren82cfecd2011-04-28 17:37:58 -06002088 &wsink->kcontrol_news[0]);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002089 if (ret != 0)
2090 goto err;
2091 break;
2092 case snd_soc_dapm_switch:
2093 case snd_soc_dapm_mixer:
Ian Moltonca9c1aa2009-01-06 20:11:51 +00002094 case snd_soc_dapm_mixer_named_ctl:
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002095 ret = dapm_connect_mixer(dapm, wsource, wsink, path, control);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002096 if (ret != 0)
2097 goto err;
2098 break;
2099 case snd_soc_dapm_hp:
2100 case snd_soc_dapm_mic:
2101 case snd_soc_dapm_line:
2102 case snd_soc_dapm_spk:
Jarkko Nikula8ddab3f2010-12-14 12:18:30 +02002103 list_add(&path->list, &dapm->card->paths);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002104 list_add(&path->list_sink, &wsink->sources);
2105 list_add(&path->list_source, &wsource->sinks);
2106 path->connect = 0;
2107 return 0;
2108 }
2109 return 0;
2110
2111err:
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02002112 dev_warn(dapm->dev, "asoc: no dapm match for %s --> %s --> %s\n",
2113 source, control, sink);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002114 kfree(path);
2115 return ret;
2116}
Mark Brown105f1c22008-05-13 14:52:19 +02002117
2118/**
Mark Brown105f1c22008-05-13 14:52:19 +02002119 * snd_soc_dapm_add_routes - Add routes between DAPM widgets
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002120 * @dapm: DAPM context
Mark Brown105f1c22008-05-13 14:52:19 +02002121 * @route: audio routes
2122 * @num: number of routes
2123 *
2124 * Connects 2 dapm widgets together via a named audio path. The sink is
2125 * the widget receiving the audio signal, whilst the source is the sender
2126 * of the audio signal.
2127 *
2128 * Returns 0 for success else error. On error all resources can be freed
2129 * with a call to snd_soc_card_free().
2130 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002131int snd_soc_dapm_add_routes(struct snd_soc_dapm_context *dapm,
Mark Brown105f1c22008-05-13 14:52:19 +02002132 const struct snd_soc_dapm_route *route, int num)
2133{
Dan Carpenter60884c22012-04-13 22:25:43 +03002134 int i, ret = 0;
Mark Brown105f1c22008-05-13 14:52:19 +02002135
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002136 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brown105f1c22008-05-13 14:52:19 +02002137 for (i = 0; i < num; i++) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002138 ret = snd_soc_dapm_add_route(dapm, route);
Mark Brown105f1c22008-05-13 14:52:19 +02002139 if (ret < 0) {
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02002140 dev_err(dapm->dev, "Failed to add route %s->%s\n",
2141 route->source, route->sink);
Dan Carpenter60884c22012-04-13 22:25:43 +03002142 break;
Mark Brown105f1c22008-05-13 14:52:19 +02002143 }
2144 route++;
2145 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002146 mutex_unlock(&dapm->card->dapm_mutex);
Mark Brown105f1c22008-05-13 14:52:19 +02002147
Dan Carpenter60884c22012-04-13 22:25:43 +03002148 return ret;
Mark Brown105f1c22008-05-13 14:52:19 +02002149}
2150EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes);
2151
Mark Brownbf3a9e12011-06-13 16:42:29 +01002152static int snd_soc_dapm_weak_route(struct snd_soc_dapm_context *dapm,
2153 const struct snd_soc_dapm_route *route)
2154{
2155 struct snd_soc_dapm_widget *source = dapm_find_widget(dapm,
2156 route->source,
2157 true);
2158 struct snd_soc_dapm_widget *sink = dapm_find_widget(dapm,
2159 route->sink,
2160 true);
2161 struct snd_soc_dapm_path *path;
2162 int count = 0;
2163
2164 if (!source) {
2165 dev_err(dapm->dev, "Unable to find source %s for weak route\n",
2166 route->source);
2167 return -ENODEV;
2168 }
2169
2170 if (!sink) {
2171 dev_err(dapm->dev, "Unable to find sink %s for weak route\n",
2172 route->sink);
2173 return -ENODEV;
2174 }
2175
2176 if (route->control || route->connected)
2177 dev_warn(dapm->dev, "Ignoring control for weak route %s->%s\n",
2178 route->source, route->sink);
2179
2180 list_for_each_entry(path, &source->sinks, list_source) {
2181 if (path->sink == sink) {
2182 path->weak = 1;
2183 count++;
2184 }
2185 }
2186
2187 if (count == 0)
2188 dev_err(dapm->dev, "No path found for weak route %s->%s\n",
2189 route->source, route->sink);
2190 if (count > 1)
2191 dev_warn(dapm->dev, "%d paths found for weak route %s->%s\n",
2192 count, route->source, route->sink);
2193
2194 return 0;
2195}
2196
2197/**
2198 * snd_soc_dapm_weak_routes - Mark routes between DAPM widgets as weak
2199 * @dapm: DAPM context
2200 * @route: audio routes
2201 * @num: number of routes
2202 *
2203 * Mark existing routes matching those specified in the passed array
2204 * as being weak, meaning that they are ignored for the purpose of
2205 * power decisions. The main intended use case is for sidetone paths
2206 * which couple audio between other independent paths if they are both
2207 * active in order to make the combination work better at the user
2208 * level but which aren't intended to be "used".
2209 *
2210 * Note that CODEC drivers should not use this as sidetone type paths
2211 * can frequently also be used as bypass paths.
2212 */
2213int snd_soc_dapm_weak_routes(struct snd_soc_dapm_context *dapm,
2214 const struct snd_soc_dapm_route *route, int num)
2215{
2216 int i, err;
2217 int ret = 0;
2218
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002219 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brownbf3a9e12011-06-13 16:42:29 +01002220 for (i = 0; i < num; i++) {
2221 err = snd_soc_dapm_weak_route(dapm, route);
2222 if (err)
2223 ret = err;
2224 route++;
2225 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002226 mutex_unlock(&dapm->card->dapm_mutex);
Mark Brownbf3a9e12011-06-13 16:42:29 +01002227
2228 return ret;
2229}
2230EXPORT_SYMBOL_GPL(snd_soc_dapm_weak_routes);
2231
Mark Brown105f1c22008-05-13 14:52:19 +02002232/**
Richard Purdie2b97eab2006-10-06 18:32:18 +02002233 * snd_soc_dapm_new_widgets - add new dapm widgets
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002234 * @dapm: DAPM context
Richard Purdie2b97eab2006-10-06 18:32:18 +02002235 *
2236 * Checks the codec for any new dapm widgets and creates them if found.
2237 *
2238 * Returns 0 for success.
2239 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002240int snd_soc_dapm_new_widgets(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002241{
2242 struct snd_soc_dapm_widget *w;
Mark Brownb66a70d2011-02-09 18:04:11 +00002243 unsigned int val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002244
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002245 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2246
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002247 list_for_each_entry(w, &dapm->card->widgets, list)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002248 {
2249 if (w->new)
2250 continue;
2251
Stephen Warrenfad59882011-04-28 17:37:59 -06002252 if (w->num_kcontrols) {
2253 w->kcontrols = kzalloc(w->num_kcontrols *
2254 sizeof(struct snd_kcontrol *),
2255 GFP_KERNEL);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002256 if (!w->kcontrols) {
2257 mutex_unlock(&dapm->card->dapm_mutex);
Stephen Warrenfad59882011-04-28 17:37:59 -06002258 return -ENOMEM;
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002259 }
Stephen Warrenfad59882011-04-28 17:37:59 -06002260 }
2261
Richard Purdie2b97eab2006-10-06 18:32:18 +02002262 switch(w->id) {
2263 case snd_soc_dapm_switch:
2264 case snd_soc_dapm_mixer:
Ian Moltonca9c1aa2009-01-06 20:11:51 +00002265 case snd_soc_dapm_mixer_named_ctl:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02002266 dapm_new_mixer(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002267 break;
2268 case snd_soc_dapm_mux:
Dimitris Papastamos24ff33a2010-12-16 15:53:39 +00002269 case snd_soc_dapm_virt_mux:
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002270 case snd_soc_dapm_value_mux:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02002271 dapm_new_mux(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002272 break;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002273 case snd_soc_dapm_pga:
Olaya, Margaritad88429a2010-12-10 21:11:44 -06002274 case snd_soc_dapm_out_drv:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02002275 dapm_new_pga(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002276 break;
Mark Brown7ca3a182011-10-08 14:04:50 +01002277 default:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002278 break;
2279 }
Mark Brownb66a70d2011-02-09 18:04:11 +00002280
2281 /* Read the initial power state from the device */
2282 if (w->reg >= 0) {
Liam Girdwood0445bdf2011-06-13 19:37:36 +01002283 val = soc_widget_read(w, w->reg);
Mark Brownb66a70d2011-02-09 18:04:11 +00002284 val &= 1 << w->shift;
2285 if (w->invert)
2286 val = !val;
2287
2288 if (val)
2289 w->power = 1;
2290 }
2291
Richard Purdie2b97eab2006-10-06 18:32:18 +02002292 w->new = 1;
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002293
Mark Brown7508b122011-10-05 12:09:12 +01002294 dapm_mark_dirty(w, "new widget");
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002295 dapm_debugfs_add_widget(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002296 }
2297
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002298 dapm_power_widgets(dapm, SND_SOC_DAPM_STREAM_NOP);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002299 mutex_unlock(&dapm->card->dapm_mutex);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002300 return 0;
2301}
2302EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets);
2303
2304/**
2305 * snd_soc_dapm_get_volsw - dapm mixer get callback
2306 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002307 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02002308 *
2309 * Callback to get the value of a dapm mixer control.
2310 *
2311 * Returns 0 for success.
2312 */
2313int snd_soc_dapm_get_volsw(struct snd_kcontrol *kcontrol,
2314 struct snd_ctl_elem_value *ucontrol)
2315{
Stephen Warrenfafd2172011-04-28 17:38:00 -06002316 struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2317 struct snd_soc_dapm_widget *widget = wlist->widgets[0];
Jon Smirl4eaa9812008-07-29 11:42:26 +01002318 struct soc_mixer_control *mc =
2319 (struct soc_mixer_control *)kcontrol->private_value;
Jon Smirl815ecf82008-07-29 10:22:24 -04002320 unsigned int reg = mc->reg;
2321 unsigned int shift = mc->shift;
2322 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002323 int max = mc->max;
Jon Smirl815ecf82008-07-29 10:22:24 -04002324 unsigned int invert = mc->invert;
2325 unsigned int mask = (1 << fls(max)) - 1;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002326
Richard Purdie2b97eab2006-10-06 18:32:18 +02002327 ucontrol->value.integer.value[0] =
2328 (snd_soc_read(widget->codec, reg) >> shift) & mask;
2329 if (shift != rshift)
2330 ucontrol->value.integer.value[1] =
2331 (snd_soc_read(widget->codec, reg) >> rshift) & mask;
2332 if (invert) {
2333 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002334 max - ucontrol->value.integer.value[0];
Richard Purdie2b97eab2006-10-06 18:32:18 +02002335 if (shift != rshift)
2336 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002337 max - ucontrol->value.integer.value[1];
Richard Purdie2b97eab2006-10-06 18:32:18 +02002338 }
2339
2340 return 0;
2341}
2342EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw);
2343
2344/**
2345 * snd_soc_dapm_put_volsw - dapm mixer set callback
2346 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002347 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02002348 *
2349 * Callback to set the value of a dapm mixer control.
2350 *
2351 * Returns 0 for success.
2352 */
2353int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
2354 struct snd_ctl_elem_value *ucontrol)
2355{
Stephen Warrenfafd2172011-04-28 17:38:00 -06002356 struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2357 struct snd_soc_dapm_widget *widget = wlist->widgets[0];
2358 struct snd_soc_codec *codec = widget->codec;
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002359 struct snd_soc_card *card = codec->card;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002360 struct soc_mixer_control *mc =
2361 (struct soc_mixer_control *)kcontrol->private_value;
Jon Smirl815ecf82008-07-29 10:22:24 -04002362 unsigned int reg = mc->reg;
2363 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002364 int max = mc->max;
Jon Smirl815ecf82008-07-29 10:22:24 -04002365 unsigned int mask = (1 << fls(max)) - 1;
2366 unsigned int invert = mc->invert;
Stephen Warrene9cf7042011-01-27 14:54:05 -07002367 unsigned int val;
Mark Brown97404f22010-12-14 16:13:57 +00002368 int connect, change;
2369 struct snd_soc_dapm_update update;
Stephen Warrenfafd2172011-04-28 17:38:00 -06002370 int wi;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002371
2372 val = (ucontrol->value.integer.value[0] & mask);
2373
2374 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002375 val = max - val;
Stephen Warrene9cf7042011-01-27 14:54:05 -07002376 mask = mask << shift;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002377 val = val << shift;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002378
Stephen Warrenfafd2172011-04-28 17:38:00 -06002379 if (val)
2380 /* new connection */
2381 connect = invert ? 0 : 1;
2382 else
2383 /* old connection must be powered down */
2384 connect = invert ? 1 : 0;
2385
Liam Girdwood3cd04342012-03-09 12:02:08 +00002386 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002387
Stephen Warrene9cf7042011-01-27 14:54:05 -07002388 change = snd_soc_test_bits(widget->codec, reg, mask, val);
Mark Brown97404f22010-12-14 16:13:57 +00002389 if (change) {
Stephen Warrenfafd2172011-04-28 17:38:00 -06002390 for (wi = 0; wi < wlist->num_widgets; wi++) {
2391 widget = wlist->widgets[wi];
Mark Brown283375c2009-12-07 18:09:03 +00002392
Stephen Warrenfafd2172011-04-28 17:38:00 -06002393 widget->value = val;
Mark Brown97404f22010-12-14 16:13:57 +00002394
Stephen Warrenfafd2172011-04-28 17:38:00 -06002395 update.kcontrol = kcontrol;
2396 update.widget = widget;
2397 update.reg = reg;
2398 update.mask = mask;
2399 update.val = val;
2400 widget->dapm->update = &update;
Mark Brown97404f22010-12-14 16:13:57 +00002401
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002402 soc_dapm_mixer_update_power(widget, kcontrol, connect);
Stephen Warrenfafd2172011-04-28 17:38:00 -06002403
2404 widget->dapm->update = NULL;
2405 }
Mark Brown283375c2009-12-07 18:09:03 +00002406 }
2407
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002408 mutex_unlock(&card->dapm_mutex);
Mark Brown97404f22010-12-14 16:13:57 +00002409 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002410}
2411EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw);
2412
2413/**
2414 * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
2415 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002416 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02002417 *
2418 * Callback to get the value of a dapm enumerated double mixer control.
2419 *
2420 * Returns 0 for success.
2421 */
2422int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol,
2423 struct snd_ctl_elem_value *ucontrol)
2424{
Stephen Warrenfafd2172011-04-28 17:38:00 -06002425 struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2426 struct snd_soc_dapm_widget *widget = wlist->widgets[0];
Richard Purdie2b97eab2006-10-06 18:32:18 +02002427 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002428 unsigned int val, bitmask;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002429
Jon Smirlf8ba0b7b2008-07-29 11:42:27 +01002430 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002431 ;
2432 val = snd_soc_read(widget->codec, e->reg);
2433 ucontrol->value.enumerated.item[0] = (val >> e->shift_l) & (bitmask - 1);
2434 if (e->shift_l != e->shift_r)
2435 ucontrol->value.enumerated.item[1] =
2436 (val >> e->shift_r) & (bitmask - 1);
2437
2438 return 0;
2439}
2440EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double);
2441
2442/**
2443 * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
2444 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002445 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02002446 *
2447 * Callback to set the value of a dapm enumerated double mixer control.
2448 *
2449 * Returns 0 for success.
2450 */
2451int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
2452 struct snd_ctl_elem_value *ucontrol)
2453{
Stephen Warrenfafd2172011-04-28 17:38:00 -06002454 struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2455 struct snd_soc_dapm_widget *widget = wlist->widgets[0];
2456 struct snd_soc_codec *codec = widget->codec;
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002457 struct snd_soc_card *card = codec->card;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002458 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Mark Brown3a655772009-10-05 17:23:30 +01002459 unsigned int val, mux, change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002460 unsigned int mask, bitmask;
Mark Brown97404f22010-12-14 16:13:57 +00002461 struct snd_soc_dapm_update update;
Stephen Warrenfafd2172011-04-28 17:38:00 -06002462 int wi;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002463
Jon Smirlf8ba0b7b2008-07-29 11:42:27 +01002464 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002465 ;
Jon Smirlf8ba0b7b2008-07-29 11:42:27 +01002466 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002467 return -EINVAL;
2468 mux = ucontrol->value.enumerated.item[0];
2469 val = mux << e->shift_l;
2470 mask = (bitmask - 1) << e->shift_l;
2471 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b7b2008-07-29 11:42:27 +01002472 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002473 return -EINVAL;
2474 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
2475 mask |= (bitmask - 1) << e->shift_r;
2476 }
2477
Liam Girdwood3cd04342012-03-09 12:02:08 +00002478 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Stephen Warrenfafd2172011-04-28 17:38:00 -06002479
Mark Brown3a655772009-10-05 17:23:30 +01002480 change = snd_soc_test_bits(widget->codec, e->reg, mask, val);
Stephen Warrenfafd2172011-04-28 17:38:00 -06002481 if (change) {
2482 for (wi = 0; wi < wlist->num_widgets; wi++) {
2483 widget = wlist->widgets[wi];
Mark Brown97404f22010-12-14 16:13:57 +00002484
Stephen Warrenfafd2172011-04-28 17:38:00 -06002485 widget->value = val;
Mark Brown97404f22010-12-14 16:13:57 +00002486
Stephen Warrenfafd2172011-04-28 17:38:00 -06002487 update.kcontrol = kcontrol;
2488 update.widget = widget;
2489 update.reg = e->reg;
2490 update.mask = mask;
2491 update.val = val;
2492 widget->dapm->update = &update;
Mark Brown1642e3d2009-10-05 16:24:26 +01002493
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002494 soc_dapm_mux_update_power(widget, kcontrol, mux, e);
Mark Brown1642e3d2009-10-05 16:24:26 +01002495
Stephen Warrenfafd2172011-04-28 17:38:00 -06002496 widget->dapm->update = NULL;
2497 }
2498 }
2499
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002500 mutex_unlock(&card->dapm_mutex);
Mark Brown97404f22010-12-14 16:13:57 +00002501 return change;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002502}
2503EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double);
2504
2505/**
Mark Brownd2b247a2009-10-06 15:21:04 +01002506 * snd_soc_dapm_get_enum_virt - Get virtual DAPM mux
2507 * @kcontrol: mixer control
2508 * @ucontrol: control element information
2509 *
2510 * Returns 0 for success.
2511 */
2512int snd_soc_dapm_get_enum_virt(struct snd_kcontrol *kcontrol,
2513 struct snd_ctl_elem_value *ucontrol)
2514{
Stephen Warrenfafd2172011-04-28 17:38:00 -06002515 struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2516 struct snd_soc_dapm_widget *widget = wlist->widgets[0];
Mark Brownd2b247a2009-10-06 15:21:04 +01002517
2518 ucontrol->value.enumerated.item[0] = widget->value;
2519
2520 return 0;
2521}
2522EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_virt);
2523
2524/**
2525 * snd_soc_dapm_put_enum_virt - Set virtual DAPM mux
2526 * @kcontrol: mixer control
2527 * @ucontrol: control element information
2528 *
2529 * Returns 0 for success.
2530 */
2531int snd_soc_dapm_put_enum_virt(struct snd_kcontrol *kcontrol,
2532 struct snd_ctl_elem_value *ucontrol)
2533{
Stephen Warrenfafd2172011-04-28 17:38:00 -06002534 struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2535 struct snd_soc_dapm_widget *widget = wlist->widgets[0];
2536 struct snd_soc_codec *codec = widget->codec;
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002537 struct snd_soc_card *card = codec->card;
Mark Brownd2b247a2009-10-06 15:21:04 +01002538 struct soc_enum *e =
2539 (struct soc_enum *)kcontrol->private_value;
2540 int change;
2541 int ret = 0;
Stephen Warrenfafd2172011-04-28 17:38:00 -06002542 int wi;
Mark Brownd2b247a2009-10-06 15:21:04 +01002543
2544 if (ucontrol->value.enumerated.item[0] >= e->max)
2545 return -EINVAL;
2546
Liam Girdwood3cd04342012-03-09 12:02:08 +00002547 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Mark Brownd2b247a2009-10-06 15:21:04 +01002548
2549 change = widget->value != ucontrol->value.enumerated.item[0];
Stephen Warrenfafd2172011-04-28 17:38:00 -06002550 if (change) {
2551 for (wi = 0; wi < wlist->num_widgets; wi++) {
2552 widget = wlist->widgets[wi];
Mark Brownd2b247a2009-10-06 15:21:04 +01002553
Stephen Warrenfafd2172011-04-28 17:38:00 -06002554 widget->value = ucontrol->value.enumerated.item[0];
2555
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002556 soc_dapm_mux_update_power(widget, kcontrol, widget->value, e);
Stephen Warrenfafd2172011-04-28 17:38:00 -06002557 }
2558 }
2559
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002560 mutex_unlock(&card->dapm_mutex);
Mark Brownd2b247a2009-10-06 15:21:04 +01002561 return ret;
2562}
2563EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_virt);
2564
2565/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002566 * snd_soc_dapm_get_value_enum_double - dapm semi enumerated double mixer get
2567 * callback
2568 * @kcontrol: mixer control
2569 * @ucontrol: control element information
2570 *
2571 * Callback to get the value of a dapm semi enumerated double mixer control.
2572 *
2573 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2574 * used for handling bitfield coded enumeration for example.
2575 *
2576 * Returns 0 for success.
2577 */
2578int snd_soc_dapm_get_value_enum_double(struct snd_kcontrol *kcontrol,
2579 struct snd_ctl_elem_value *ucontrol)
2580{
Stephen Warrenfafd2172011-04-28 17:38:00 -06002581 struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2582 struct snd_soc_dapm_widget *widget = wlist->widgets[0];
Peter Ujfalusi74155552009-01-08 13:34:29 +02002583 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002584 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002585
2586 reg_val = snd_soc_read(widget->codec, e->reg);
2587 val = (reg_val >> e->shift_l) & e->mask;
2588 for (mux = 0; mux < e->max; mux++) {
2589 if (val == e->values[mux])
2590 break;
2591 }
2592 ucontrol->value.enumerated.item[0] = mux;
2593 if (e->shift_l != e->shift_r) {
2594 val = (reg_val >> e->shift_r) & e->mask;
2595 for (mux = 0; mux < e->max; mux++) {
2596 if (val == e->values[mux])
2597 break;
2598 }
2599 ucontrol->value.enumerated.item[1] = mux;
2600 }
2601
2602 return 0;
2603}
2604EXPORT_SYMBOL_GPL(snd_soc_dapm_get_value_enum_double);
2605
2606/**
2607 * snd_soc_dapm_put_value_enum_double - dapm semi enumerated double mixer set
2608 * callback
2609 * @kcontrol: mixer control
2610 * @ucontrol: control element information
2611 *
2612 * Callback to set the value of a dapm semi enumerated double mixer control.
2613 *
2614 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2615 * used for handling bitfield coded enumeration for example.
2616 *
2617 * Returns 0 for success.
2618 */
2619int snd_soc_dapm_put_value_enum_double(struct snd_kcontrol *kcontrol,
2620 struct snd_ctl_elem_value *ucontrol)
2621{
Stephen Warrenfafd2172011-04-28 17:38:00 -06002622 struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2623 struct snd_soc_dapm_widget *widget = wlist->widgets[0];
2624 struct snd_soc_codec *codec = widget->codec;
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002625 struct snd_soc_card *card = codec->card;
Peter Ujfalusi74155552009-01-08 13:34:29 +02002626 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Mark Brown3a655772009-10-05 17:23:30 +01002627 unsigned int val, mux, change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002628 unsigned int mask;
Mark Brown97404f22010-12-14 16:13:57 +00002629 struct snd_soc_dapm_update update;
Stephen Warrenfafd2172011-04-28 17:38:00 -06002630 int wi;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002631
2632 if (ucontrol->value.enumerated.item[0] > e->max - 1)
2633 return -EINVAL;
2634 mux = ucontrol->value.enumerated.item[0];
2635 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2636 mask = e->mask << e->shift_l;
2637 if (e->shift_l != e->shift_r) {
2638 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2639 return -EINVAL;
2640 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2641 mask |= e->mask << e->shift_r;
2642 }
2643
Liam Girdwood3cd04342012-03-09 12:02:08 +00002644 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Stephen Warrenfafd2172011-04-28 17:38:00 -06002645
Mark Brown3a655772009-10-05 17:23:30 +01002646 change = snd_soc_test_bits(widget->codec, e->reg, mask, val);
Stephen Warrenfafd2172011-04-28 17:38:00 -06002647 if (change) {
2648 for (wi = 0; wi < wlist->num_widgets; wi++) {
2649 widget = wlist->widgets[wi];
Mark Brown97404f22010-12-14 16:13:57 +00002650
Stephen Warrenfafd2172011-04-28 17:38:00 -06002651 widget->value = val;
Mark Brown97404f22010-12-14 16:13:57 +00002652
Stephen Warrenfafd2172011-04-28 17:38:00 -06002653 update.kcontrol = kcontrol;
2654 update.widget = widget;
2655 update.reg = e->reg;
2656 update.mask = mask;
2657 update.val = val;
2658 widget->dapm->update = &update;
Mark Brown1642e3d2009-10-05 16:24:26 +01002659
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002660 soc_dapm_mux_update_power(widget, kcontrol, mux, e);
Mark Brown1642e3d2009-10-05 16:24:26 +01002661
Stephen Warrenfafd2172011-04-28 17:38:00 -06002662 widget->dapm->update = NULL;
2663 }
2664 }
2665
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002666 mutex_unlock(&card->dapm_mutex);
Mark Brown97404f22010-12-14 16:13:57 +00002667 return change;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002668}
2669EXPORT_SYMBOL_GPL(snd_soc_dapm_put_value_enum_double);
2670
2671/**
Mark Brown8b37dbd2009-02-28 21:14:20 +00002672 * snd_soc_dapm_info_pin_switch - Info for a pin switch
2673 *
2674 * @kcontrol: mixer control
2675 * @uinfo: control element information
2676 *
2677 * Callback to provide information about a pin switch control.
2678 */
2679int snd_soc_dapm_info_pin_switch(struct snd_kcontrol *kcontrol,
2680 struct snd_ctl_elem_info *uinfo)
2681{
2682 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2683 uinfo->count = 1;
2684 uinfo->value.integer.min = 0;
2685 uinfo->value.integer.max = 1;
2686
2687 return 0;
2688}
2689EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch);
2690
2691/**
2692 * snd_soc_dapm_get_pin_switch - Get information for a pin switch
2693 *
2694 * @kcontrol: mixer control
2695 * @ucontrol: Value
2696 */
2697int snd_soc_dapm_get_pin_switch(struct snd_kcontrol *kcontrol,
2698 struct snd_ctl_elem_value *ucontrol)
2699{
Mark Brown48a8c392012-02-14 17:11:15 -08002700 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
Mark Brown8b37dbd2009-02-28 21:14:20 +00002701 const char *pin = (const char *)kcontrol->private_value;
2702
Liam Girdwood3cd04342012-03-09 12:02:08 +00002703 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Mark Brown8b37dbd2009-02-28 21:14:20 +00002704
2705 ucontrol->value.integer.value[0] =
Mark Brown48a8c392012-02-14 17:11:15 -08002706 snd_soc_dapm_get_pin_status(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00002707
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002708 mutex_unlock(&card->dapm_mutex);
Mark Brown8b37dbd2009-02-28 21:14:20 +00002709
2710 return 0;
2711}
2712EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch);
2713
2714/**
2715 * snd_soc_dapm_put_pin_switch - Set information for a pin switch
2716 *
2717 * @kcontrol: mixer control
2718 * @ucontrol: Value
2719 */
2720int snd_soc_dapm_put_pin_switch(struct snd_kcontrol *kcontrol,
2721 struct snd_ctl_elem_value *ucontrol)
2722{
Mark Brown48a8c392012-02-14 17:11:15 -08002723 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
Mark Brown8b37dbd2009-02-28 21:14:20 +00002724 const char *pin = (const char *)kcontrol->private_value;
2725
Liam Girdwood3cd04342012-03-09 12:02:08 +00002726 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Mark Brown8b37dbd2009-02-28 21:14:20 +00002727
2728 if (ucontrol->value.integer.value[0])
Mark Brown48a8c392012-02-14 17:11:15 -08002729 snd_soc_dapm_enable_pin(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00002730 else
Mark Brown48a8c392012-02-14 17:11:15 -08002731 snd_soc_dapm_disable_pin(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00002732
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002733 mutex_unlock(&card->dapm_mutex);
2734
Mark Brown48a8c392012-02-14 17:11:15 -08002735 snd_soc_dapm_sync(&card->dapm);
Mark Brown8b37dbd2009-02-28 21:14:20 +00002736 return 0;
2737}
2738EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch);
2739
Mark Brown5ba06fc2012-02-16 11:07:13 -08002740static struct snd_soc_dapm_widget *
2741snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
2742 const struct snd_soc_dapm_widget *widget)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002743{
2744 struct snd_soc_dapm_widget *w;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002745 size_t name_len;
Mark Brown62ea8742012-01-21 21:14:48 +00002746 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002747
2748 if ((w = dapm_cnew_widget(widget)) == NULL)
Mark Brown5ba06fc2012-02-16 11:07:13 -08002749 return NULL;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002750
Mark Brown62ea8742012-01-21 21:14:48 +00002751 switch (w->id) {
2752 case snd_soc_dapm_regulator_supply:
Liam Girdwooda3cc0562012-03-09 17:20:16 +00002753 w->regulator = devm_regulator_get(dapm->dev, w->name);
2754 if (IS_ERR(w->regulator)) {
2755 ret = PTR_ERR(w->regulator);
Mark Brown62ea8742012-01-21 21:14:48 +00002756 dev_err(dapm->dev, "Failed to request %s: %d\n",
2757 w->name, ret);
Mark Brown5ba06fc2012-02-16 11:07:13 -08002758 return NULL;
Mark Brown62ea8742012-01-21 21:14:48 +00002759 }
2760 break;
2761 default:
2762 break;
2763 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02002764
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002765 name_len = strlen(widget->name) + 1;
Mark Brown88e8b9a2011-03-02 18:18:24 +00002766 if (dapm->codec && dapm->codec->name_prefix)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002767 name_len += 1 + strlen(dapm->codec->name_prefix);
2768 w->name = kmalloc(name_len, GFP_KERNEL);
2769 if (w->name == NULL) {
2770 kfree(w);
Mark Brown5ba06fc2012-02-16 11:07:13 -08002771 return NULL;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002772 }
Mark Brown88e8b9a2011-03-02 18:18:24 +00002773 if (dapm->codec && dapm->codec->name_prefix)
Mark Brown888df392012-02-16 19:37:51 -08002774 snprintf((char *)w->name, name_len, "%s %s",
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002775 dapm->codec->name_prefix, widget->name);
2776 else
Mark Brown888df392012-02-16 19:37:51 -08002777 snprintf((char *)w->name, name_len, "%s", widget->name);
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002778
Mark Brown7ca3a182011-10-08 14:04:50 +01002779 switch (w->id) {
2780 case snd_soc_dapm_switch:
2781 case snd_soc_dapm_mixer:
2782 case snd_soc_dapm_mixer_named_ctl:
2783 w->power_check = dapm_generic_check_power;
2784 break;
2785 case snd_soc_dapm_mux:
2786 case snd_soc_dapm_virt_mux:
2787 case snd_soc_dapm_value_mux:
2788 w->power_check = dapm_generic_check_power;
2789 break;
2790 case snd_soc_dapm_adc:
2791 case snd_soc_dapm_aif_out:
2792 w->power_check = dapm_adc_check_power;
2793 break;
2794 case snd_soc_dapm_dac:
2795 case snd_soc_dapm_aif_in:
2796 w->power_check = dapm_dac_check_power;
2797 break;
2798 case snd_soc_dapm_pga:
2799 case snd_soc_dapm_out_drv:
2800 case snd_soc_dapm_input:
2801 case snd_soc_dapm_output:
2802 case snd_soc_dapm_micbias:
2803 case snd_soc_dapm_spk:
2804 case snd_soc_dapm_hp:
2805 case snd_soc_dapm_mic:
2806 case snd_soc_dapm_line:
2807 w->power_check = dapm_generic_check_power;
2808 break;
2809 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00002810 case snd_soc_dapm_regulator_supply:
Mark Brown7ca3a182011-10-08 14:04:50 +01002811 w->power_check = dapm_supply_check_power;
2812 break;
Mark Brown888df392012-02-16 19:37:51 -08002813 case snd_soc_dapm_dai:
2814 w->power_check = dapm_dai_check_power;
2815 break;
Mark Brown7ca3a182011-10-08 14:04:50 +01002816 default:
2817 w->power_check = dapm_always_on_check_power;
2818 break;
2819 }
2820
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002821 dapm->n_widgets++;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002822 w->dapm = dapm;
2823 w->codec = dapm->codec;
Liam Girdwoodb7950642011-07-04 22:10:52 +01002824 w->platform = dapm->platform;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002825 INIT_LIST_HEAD(&w->sources);
2826 INIT_LIST_HEAD(&w->sinks);
2827 INIT_LIST_HEAD(&w->list);
Mark Browndb432b42011-10-03 21:06:40 +01002828 INIT_LIST_HEAD(&w->dirty);
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002829 list_add(&w->list, &dapm->card->widgets);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002830
2831 /* machine layer set ups unconnected pins and insertions */
2832 w->connected = 1;
Mark Brown5ba06fc2012-02-16 11:07:13 -08002833 return w;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002834}
Richard Purdie2b97eab2006-10-06 18:32:18 +02002835
2836/**
Mark Brown4ba13272008-05-13 14:51:19 +02002837 * snd_soc_dapm_new_controls - create new dapm controls
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002838 * @dapm: DAPM context
Mark Brown4ba13272008-05-13 14:51:19 +02002839 * @widget: widget array
2840 * @num: number of widgets
2841 *
2842 * Creates new DAPM controls based upon the templates.
2843 *
2844 * Returns 0 for success else error.
2845 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002846int snd_soc_dapm_new_controls(struct snd_soc_dapm_context *dapm,
Mark Brown4ba13272008-05-13 14:51:19 +02002847 const struct snd_soc_dapm_widget *widget,
2848 int num)
2849{
Mark Brown5ba06fc2012-02-16 11:07:13 -08002850 struct snd_soc_dapm_widget *w;
2851 int i;
Dan Carpenter60884c22012-04-13 22:25:43 +03002852 int ret = 0;
Mark Brown4ba13272008-05-13 14:51:19 +02002853
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002854 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brown4ba13272008-05-13 14:51:19 +02002855 for (i = 0; i < num; i++) {
Mark Brown5ba06fc2012-02-16 11:07:13 -08002856 w = snd_soc_dapm_new_control(dapm, widget);
2857 if (!w) {
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02002858 dev_err(dapm->dev,
Mark Brown5ba06fc2012-02-16 11:07:13 -08002859 "ASoC: Failed to create DAPM control %s\n",
2860 widget->name);
Dan Carpenter60884c22012-04-13 22:25:43 +03002861 ret = -ENOMEM;
2862 break;
Mark Brownb8b33cb2008-12-18 11:19:30 +00002863 }
Mark Brown4ba13272008-05-13 14:51:19 +02002864 widget++;
2865 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002866 mutex_unlock(&dapm->card->dapm_mutex);
Dan Carpenter60884c22012-04-13 22:25:43 +03002867 return ret;
Mark Brown4ba13272008-05-13 14:51:19 +02002868}
2869EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls);
2870
Mark Brown888df392012-02-16 19:37:51 -08002871int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm,
2872 struct snd_soc_dai *dai)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002873{
Mark Brown888df392012-02-16 19:37:51 -08002874 struct snd_soc_dapm_widget template;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002875 struct snd_soc_dapm_widget *w;
2876
Mark Brown888df392012-02-16 19:37:51 -08002877 WARN_ON(dapm->dev != dai->dev);
2878
2879 memset(&template, 0, sizeof(template));
2880 template.reg = SND_SOC_NOPM;
2881
2882 if (dai->driver->playback.stream_name) {
2883 template.id = snd_soc_dapm_dai;
2884 template.name = dai->driver->playback.stream_name;
2885 template.sname = dai->driver->playback.stream_name;
2886
2887 dev_dbg(dai->dev, "adding %s widget\n",
2888 template.name);
2889
2890 w = snd_soc_dapm_new_control(dapm, &template);
2891 if (!w) {
2892 dev_err(dapm->dev, "Failed to create %s widget\n",
2893 dai->driver->playback.stream_name);
2894 }
2895
2896 w->priv = dai;
2897 dai->playback_widget = w;
2898 }
2899
2900 if (dai->driver->capture.stream_name) {
2901 template.id = snd_soc_dapm_dai;
2902 template.name = dai->driver->capture.stream_name;
2903 template.sname = dai->driver->capture.stream_name;
2904
2905 dev_dbg(dai->dev, "adding %s widget\n",
2906 template.name);
2907
2908 w = snd_soc_dapm_new_control(dapm, &template);
2909 if (!w) {
2910 dev_err(dapm->dev, "Failed to create %s widget\n",
2911 dai->driver->capture.stream_name);
2912 }
2913
2914 w->priv = dai;
2915 dai->capture_widget = w;
2916 }
2917
2918 return 0;
2919}
2920
2921int snd_soc_dapm_link_dai_widgets(struct snd_soc_card *card)
2922{
2923 struct snd_soc_dapm_widget *dai_w, *w;
2924 struct snd_soc_dai *dai;
2925 struct snd_soc_dapm_route r;
2926
2927 memset(&r, 0, sizeof(r));
2928
2929 /* For each DAI widget... */
2930 list_for_each_entry(dai_w, &card->widgets, list) {
2931 if (dai_w->id != snd_soc_dapm_dai)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002932 continue;
Mark Brown888df392012-02-16 19:37:51 -08002933
2934 dai = dai_w->priv;
2935
2936 /* ...find all widgets with the same stream and link them */
2937 list_for_each_entry(w, &card->widgets, list) {
2938 if (w->dapm != dai_w->dapm)
2939 continue;
2940
2941 if (w->id == snd_soc_dapm_dai)
2942 continue;
2943
2944 if (!w->sname)
2945 continue;
2946
2947 if (dai->driver->playback.stream_name &&
2948 strstr(w->sname,
2949 dai->driver->playback.stream_name)) {
2950 r.source = dai->playback_widget->name;
2951 r.sink = w->name;
2952 dev_dbg(dai->dev, "%s -> %s\n",
2953 r.source, r.sink);
2954
2955 snd_soc_dapm_add_route(w->dapm, &r);
2956 }
2957
2958 if (dai->driver->capture.stream_name &&
2959 strstr(w->sname,
2960 dai->driver->capture.stream_name)) {
2961 r.source = w->name;
2962 r.sink = dai->capture_widget->name;
2963 dev_dbg(dai->dev, "%s -> %s\n",
2964 r.source, r.sink);
2965
2966 snd_soc_dapm_add_route(w->dapm, &r);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002967 }
2968 }
2969 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02002970
Mark Brown888df392012-02-16 19:37:51 -08002971 return 0;
2972}
Liam Girdwood64a648c222011-07-25 11:15:15 +01002973
Liam Girdwoodd9b09512012-03-07 16:32:59 +00002974static void soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
2975 int event)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002976{
Mark Brown7bd3a6f2012-02-16 15:03:27 -08002977
Liam Girdwoodd9b09512012-03-07 16:32:59 +00002978 struct snd_soc_dapm_widget *w_cpu, *w_codec;
2979 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2980 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Mark Brown7bd3a6f2012-02-16 15:03:27 -08002981
Liam Girdwoodd9b09512012-03-07 16:32:59 +00002982 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
2983 w_cpu = cpu_dai->playback_widget;
2984 w_codec = codec_dai->playback_widget;
2985 } else {
2986 w_cpu = cpu_dai->capture_widget;
2987 w_codec = codec_dai->capture_widget;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002988 }
2989
Liam Girdwoodd9b09512012-03-07 16:32:59 +00002990 if (w_cpu) {
2991
2992 dapm_mark_dirty(w_cpu, "stream event");
2993
2994 switch (event) {
2995 case SND_SOC_DAPM_STREAM_START:
2996 w_cpu->active = 1;
2997 break;
2998 case SND_SOC_DAPM_STREAM_STOP:
2999 w_cpu->active = 0;
3000 break;
3001 case SND_SOC_DAPM_STREAM_SUSPEND:
3002 case SND_SOC_DAPM_STREAM_RESUME:
3003 case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
3004 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
3005 break;
3006 }
3007 }
3008
3009 if (w_codec) {
3010
3011 dapm_mark_dirty(w_codec, "stream event");
3012
3013 switch (event) {
3014 case SND_SOC_DAPM_STREAM_START:
3015 w_codec->active = 1;
3016 break;
3017 case SND_SOC_DAPM_STREAM_STOP:
3018 w_codec->active = 0;
3019 break;
3020 case SND_SOC_DAPM_STREAM_SUSPEND:
3021 case SND_SOC_DAPM_STREAM_RESUME:
3022 case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
3023 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
3024 break;
3025 }
3026 }
3027
3028 dapm_power_widgets(&rtd->card->dapm, event);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003029}
3030
3031/**
3032 * snd_soc_dapm_stream_event - send a stream event to the dapm core
3033 * @rtd: PCM runtime data
3034 * @stream: stream name
3035 * @event: stream event
3036 *
3037 * Sends a stream event to the dapm core. The core then makes any
3038 * necessary widget power changes.
3039 *
3040 * Returns 0 for success else error.
3041 */
Liam Girdwoodd9b09512012-03-07 16:32:59 +00003042void snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
3043 int event)
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003044{
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003045 struct snd_soc_card *card = rtd->card;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003046
Liam Girdwood3cd04342012-03-09 12:02:08 +00003047 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Liam Girdwoodd9b09512012-03-07 16:32:59 +00003048 soc_dapm_stream_event(rtd, stream, event);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003049 mutex_unlock(&card->dapm_mutex);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003050}
Richard Purdie2b97eab2006-10-06 18:32:18 +02003051
3052/**
Liam Girdwooda5302182008-07-07 13:35:17 +01003053 * snd_soc_dapm_enable_pin - enable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003054 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01003055 * @pin: pin name
Richard Purdie2b97eab2006-10-06 18:32:18 +02003056 *
Mark Brown74b8f952009-06-06 11:26:15 +01003057 * Enables input/output pin and its parents or children widgets iff there is
Liam Girdwooda5302182008-07-07 13:35:17 +01003058 * a valid audio route and active audio stream.
3059 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3060 * do any widget power switching.
Richard Purdie2b97eab2006-10-06 18:32:18 +02003061 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003062int snd_soc_dapm_enable_pin(struct snd_soc_dapm_context *dapm, const char *pin)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003063{
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003064 return snd_soc_dapm_set_pin(dapm, pin, 1);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003065}
Liam Girdwooda5302182008-07-07 13:35:17 +01003066EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003067
3068/**
Mark Brownda341832010-03-15 19:23:37 +00003069 * snd_soc_dapm_force_enable_pin - force a pin to be enabled
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003070 * @dapm: DAPM context
Mark Brownda341832010-03-15 19:23:37 +00003071 * @pin: pin name
3072 *
3073 * Enables input/output pin regardless of any other state. This is
3074 * intended for use with microphone bias supplies used in microphone
3075 * jack detection.
3076 *
3077 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3078 * do any widget power switching.
3079 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003080int snd_soc_dapm_force_enable_pin(struct snd_soc_dapm_context *dapm,
3081 const char *pin)
Mark Brownda341832010-03-15 19:23:37 +00003082{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02003083 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
Mark Brownda341832010-03-15 19:23:37 +00003084
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02003085 if (!w) {
3086 dev_err(dapm->dev, "dapm: unknown pin %s\n", pin);
3087 return -EINVAL;
Mark Brownda341832010-03-15 19:23:37 +00003088 }
3089
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02003090 dev_dbg(w->dapm->dev, "dapm: force enable pin %s\n", pin);
3091 w->connected = 1;
3092 w->force = 1;
Mark Brown75c1f892011-10-04 22:28:08 +01003093 dapm_mark_dirty(w, "force enable");
Mark Brown0d867332011-04-06 11:38:14 +09003094
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02003095 return 0;
Mark Brownda341832010-03-15 19:23:37 +00003096}
3097EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin);
3098
3099/**
Liam Girdwooda5302182008-07-07 13:35:17 +01003100 * snd_soc_dapm_disable_pin - disable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003101 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01003102 * @pin: pin name
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02003103 *
Mark Brown74b8f952009-06-06 11:26:15 +01003104 * Disables input/output pin and its parents or children widgets.
Liam Girdwooda5302182008-07-07 13:35:17 +01003105 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3106 * do any widget power switching.
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02003107 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003108int snd_soc_dapm_disable_pin(struct snd_soc_dapm_context *dapm,
3109 const char *pin)
Liam Girdwooda5302182008-07-07 13:35:17 +01003110{
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003111 return snd_soc_dapm_set_pin(dapm, pin, 0);
Liam Girdwooda5302182008-07-07 13:35:17 +01003112}
3113EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin);
3114
3115/**
Mark Brown5817b522008-09-24 11:23:11 +01003116 * snd_soc_dapm_nc_pin - permanently disable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003117 * @dapm: DAPM context
Mark Brown5817b522008-09-24 11:23:11 +01003118 * @pin: pin name
3119 *
3120 * Marks the specified pin as being not connected, disabling it along
3121 * any parent or child widgets. At present this is identical to
3122 * snd_soc_dapm_disable_pin() but in future it will be extended to do
3123 * additional things such as disabling controls which only affect
3124 * paths through the pin.
3125 *
3126 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3127 * do any widget power switching.
3128 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003129int snd_soc_dapm_nc_pin(struct snd_soc_dapm_context *dapm, const char *pin)
Mark Brown5817b522008-09-24 11:23:11 +01003130{
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003131 return snd_soc_dapm_set_pin(dapm, pin, 0);
Mark Brown5817b522008-09-24 11:23:11 +01003132}
3133EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin);
3134
3135/**
Liam Girdwooda5302182008-07-07 13:35:17 +01003136 * snd_soc_dapm_get_pin_status - get audio pin status
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003137 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01003138 * @pin: audio signal pin endpoint (or start point)
3139 *
3140 * Get audio pin status - connected or disconnected.
3141 *
3142 * Returns 1 for connected otherwise 0.
3143 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003144int snd_soc_dapm_get_pin_status(struct snd_soc_dapm_context *dapm,
3145 const char *pin)
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02003146{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02003147 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02003148
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02003149 if (w)
3150 return w->connected;
Stephen Warrena68b38a2011-04-19 15:25:11 -06003151
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02003152 return 0;
3153}
Liam Girdwooda5302182008-07-07 13:35:17 +01003154EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status);
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02003155
3156/**
Mark Brown1547aba2010-05-07 21:11:40 +01003157 * snd_soc_dapm_ignore_suspend - ignore suspend status for DAPM endpoint
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003158 * @dapm: DAPM context
Mark Brown1547aba2010-05-07 21:11:40 +01003159 * @pin: audio signal pin endpoint (or start point)
3160 *
3161 * Mark the given endpoint or pin as ignoring suspend. When the
3162 * system is disabled a path between two endpoints flagged as ignoring
3163 * suspend will not be disabled. The path must already be enabled via
3164 * normal means at suspend time, it will not be turned on if it was not
3165 * already enabled.
3166 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003167int snd_soc_dapm_ignore_suspend(struct snd_soc_dapm_context *dapm,
3168 const char *pin)
Mark Brown1547aba2010-05-07 21:11:40 +01003169{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02003170 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, false);
Mark Brown1547aba2010-05-07 21:11:40 +01003171
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02003172 if (!w) {
3173 dev_err(dapm->dev, "dapm: unknown pin %s\n", pin);
3174 return -EINVAL;
Mark Brown1547aba2010-05-07 21:11:40 +01003175 }
3176
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02003177 w->ignore_suspend = 1;
3178
3179 return 0;
Mark Brown1547aba2010-05-07 21:11:40 +01003180}
3181EXPORT_SYMBOL_GPL(snd_soc_dapm_ignore_suspend);
3182
Stephen Warren16332812011-11-23 12:42:04 -07003183static bool snd_soc_dapm_widget_in_card_paths(struct snd_soc_card *card,
3184 struct snd_soc_dapm_widget *w)
3185{
3186 struct snd_soc_dapm_path *p;
3187
3188 list_for_each_entry(p, &card->paths, list) {
3189 if ((p->source == w) || (p->sink == w)) {
3190 dev_dbg(card->dev,
3191 "... Path %s(id:%d dapm:%p) - %s(id:%d dapm:%p)\n",
3192 p->source->name, p->source->id, p->source->dapm,
3193 p->sink->name, p->sink->id, p->sink->dapm);
3194
3195 /* Connected to something other than the codec */
3196 if (p->source->dapm != p->sink->dapm)
3197 return true;
3198 /*
3199 * Loopback connection from codec external pin to
3200 * codec external pin
3201 */
3202 if (p->sink->id == snd_soc_dapm_input) {
3203 switch (p->source->id) {
3204 case snd_soc_dapm_output:
3205 case snd_soc_dapm_micbias:
3206 return true;
3207 default:
3208 break;
3209 }
3210 }
3211 }
3212 }
3213
3214 return false;
3215}
3216
3217/**
3218 * snd_soc_dapm_auto_nc_codec_pins - call snd_soc_dapm_nc_pin for unused pins
3219 * @codec: The codec whose pins should be processed
3220 *
3221 * Automatically call snd_soc_dapm_nc_pin() for any external pins in the codec
3222 * which are unused. Pins are used if they are connected externally to the
3223 * codec, whether that be to some other device, or a loop-back connection to
3224 * the codec itself.
3225 */
3226void snd_soc_dapm_auto_nc_codec_pins(struct snd_soc_codec *codec)
3227{
3228 struct snd_soc_card *card = codec->card;
3229 struct snd_soc_dapm_context *dapm = &codec->dapm;
3230 struct snd_soc_dapm_widget *w;
3231
Mark Browna094b802011-11-27 19:42:20 +00003232 dev_dbg(codec->dev, "Auto NC: DAPMs: card:%p codec:%p\n",
Stephen Warren16332812011-11-23 12:42:04 -07003233 &card->dapm, &codec->dapm);
3234
3235 list_for_each_entry(w, &card->widgets, list) {
3236 if (w->dapm != dapm)
3237 continue;
3238 switch (w->id) {
3239 case snd_soc_dapm_input:
3240 case snd_soc_dapm_output:
3241 case snd_soc_dapm_micbias:
Mark Browna094b802011-11-27 19:42:20 +00003242 dev_dbg(codec->dev, "Auto NC: Checking widget %s\n",
Stephen Warren16332812011-11-23 12:42:04 -07003243 w->name);
3244 if (!snd_soc_dapm_widget_in_card_paths(card, w)) {
Mark Browna094b802011-11-27 19:42:20 +00003245 dev_dbg(codec->dev,
Stephen Warren16332812011-11-23 12:42:04 -07003246 "... Not in map; disabling\n");
3247 snd_soc_dapm_nc_pin(dapm, w->name);
3248 }
3249 break;
3250 default:
3251 break;
3252 }
3253 }
3254}
3255
Mark Brown1547aba2010-05-07 21:11:40 +01003256/**
Richard Purdie2b97eab2006-10-06 18:32:18 +02003257 * snd_soc_dapm_free - free dapm resources
Peter Ujfalusi728a5222011-08-26 16:33:52 +03003258 * @dapm: DAPM context
Richard Purdie2b97eab2006-10-06 18:32:18 +02003259 *
3260 * Free all dapm widgets and resources.
3261 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003262void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003263{
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003264 snd_soc_dapm_sys_remove(dapm->dev);
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02003265 dapm_debugfs_cleanup(dapm);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003266 dapm_free_widgets(dapm);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02003267 list_del(&dapm->list);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003268}
3269EXPORT_SYMBOL_GPL(snd_soc_dapm_free);
3270
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003271static void soc_dapm_shutdown_codec(struct snd_soc_dapm_context *dapm)
Mark Brown51737472009-06-22 13:16:51 +01003272{
Mark Brown51737472009-06-22 13:16:51 +01003273 struct snd_soc_dapm_widget *w;
3274 LIST_HEAD(down_list);
3275 int powerdown = 0;
3276
Jarkko Nikula97c866d2010-12-14 12:18:31 +02003277 list_for_each_entry(w, &dapm->card->widgets, list) {
3278 if (w->dapm != dapm)
3279 continue;
Mark Brown51737472009-06-22 13:16:51 +01003280 if (w->power) {
Mark Brown828a8422011-01-15 13:14:30 +00003281 dapm_seq_insert(w, &down_list, false);
Mark Brownc2caa4d2009-06-26 15:36:56 +01003282 w->power = 0;
Mark Brown51737472009-06-22 13:16:51 +01003283 powerdown = 1;
3284 }
3285 }
3286
3287 /* If there were no widgets to power down we're already in
3288 * standby.
3289 */
3290 if (powerdown) {
Mark Brown7679e422012-02-22 15:52:56 +00003291 if (dapm->bias_level == SND_SOC_BIAS_ON)
3292 snd_soc_dapm_set_bias_level(dapm,
3293 SND_SOC_BIAS_PREPARE);
Mark Brown828a8422011-01-15 13:14:30 +00003294 dapm_seq_run(dapm, &down_list, 0, false);
Mark Brown7679e422012-02-22 15:52:56 +00003295 if (dapm->bias_level == SND_SOC_BIAS_PREPARE)
3296 snd_soc_dapm_set_bias_level(dapm,
3297 SND_SOC_BIAS_STANDBY);
Mark Brown51737472009-06-22 13:16:51 +01003298 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003299}
Mark Brown51737472009-06-22 13:16:51 +01003300
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003301/*
3302 * snd_soc_dapm_shutdown - callback for system shutdown
3303 */
3304void snd_soc_dapm_shutdown(struct snd_soc_card *card)
3305{
3306 struct snd_soc_codec *codec;
3307
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003308 list_for_each_entry(codec, &card->codec_dev_list, list) {
3309 soc_dapm_shutdown_codec(&codec->dapm);
Mark Brown7679e422012-02-22 15:52:56 +00003310 if (codec->dapm.bias_level == SND_SOC_BIAS_STANDBY)
3311 snd_soc_dapm_set_bias_level(&codec->dapm,
3312 SND_SOC_BIAS_OFF);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003313 }
Mark Brown51737472009-06-22 13:16:51 +01003314}
3315
Richard Purdie2b97eab2006-10-06 18:32:18 +02003316/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01003317MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Richard Purdie2b97eab2006-10-06 18:32:18 +02003318MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
3319MODULE_LICENSE("GPL");