blob: 69e9452386e6d8306f6a7dc62c361143a90aa7a8 [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 Brown15e4c72f2008-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 Brown15e4c72f2008-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 Brown15e4c72f2008-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 Brown15e4c72f2008-07-02 11:51:20 +0100117 va_end(args);
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +0200118
119 kfree(buf);
Mark Brown15e4c72f2008-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 Smirl815ecf8d2008-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 Smirl815ecf8d2008-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 Smirlf8ba0b72008-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 Smirlf8ba0b72008-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 Smirlf8ba0b72008-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 Brown9949788b2010-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 Brown9949788b2010-05-07 20:24:05 +0100692
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000693 switch (level) {
Mark Brown9949788b2010-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 Brown9949788b2010-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 Browne56235e02011-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 Browne56235e02011-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 Brownd805002b2011-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 Brownd805002b2011-09-28 18:28:23 +0100897 if (w->force)
Mark Brown9b8a83b2011-10-04 22:15:59 +0100898 w->new_power = 1;
Mark Brownd805002b2011-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 Brownd805002b2011-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 Brown35c64bc2011-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 Brownd805002b2011-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 Brown497098be2012-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
1541static int dapm_widget_power_open_file(struct inode *inode, struct file *file)
1542{
1543 file->private_data = inode->i_private;
1544 return 0;
1545}
1546
1547static ssize_t dapm_widget_power_read_file(struct file *file,
1548 char __user *user_buf,
1549 size_t count, loff_t *ppos)
1550{
1551 struct snd_soc_dapm_widget *w = file->private_data;
1552 char *buf;
1553 int in, out;
1554 ssize_t ret;
1555 struct snd_soc_dapm_path *p = NULL;
1556
1557 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1558 if (!buf)
1559 return -ENOMEM;
1560
1561 in = is_connected_input_ep(w);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001562 dapm_clear_walk(w->dapm);
Mark Brown79fb9382009-08-21 16:38:13 +01001563 out = is_connected_output_ep(w);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001564 dapm_clear_walk(w->dapm);
Mark Brown79fb9382009-08-21 16:38:13 +01001565
Mark Brownf13ebad2012-03-03 18:01:01 +00001566 ret = snprintf(buf, PAGE_SIZE, "%s: %s%s in %d out %d",
1567 w->name, w->power ? "On" : "Off",
1568 w->force ? " (forced)" : "", in, out);
Mark Brown79fb9382009-08-21 16:38:13 +01001569
Mark Brownd033c362009-12-04 15:25:56 +00001570 if (w->reg >= 0)
1571 ret += snprintf(buf + ret, PAGE_SIZE - ret,
1572 " - R%d(0x%x) bit %d",
1573 w->reg, w->reg, w->shift);
1574
1575 ret += snprintf(buf + ret, PAGE_SIZE - ret, "\n");
1576
Mark Brown3eef08b2009-09-14 16:49:00 +01001577 if (w->sname)
1578 ret += snprintf(buf + ret, PAGE_SIZE - ret, " stream %s %s\n",
1579 w->sname,
1580 w->active ? "active" : "inactive");
Mark Brown79fb9382009-08-21 16:38:13 +01001581
1582 list_for_each_entry(p, &w->sources, list_sink) {
Mark Brown215edda2009-09-08 18:59:05 +01001583 if (p->connected && !p->connected(w, p->sink))
1584 continue;
1585
Mark Brown79fb9382009-08-21 16:38:13 +01001586 if (p->connect)
1587 ret += snprintf(buf + ret, PAGE_SIZE - ret,
Dimitris Papastamos67f5ed62011-02-24 17:09:32 +00001588 " in \"%s\" \"%s\"\n",
Mark Brown79fb9382009-08-21 16:38:13 +01001589 p->name ? p->name : "static",
1590 p->source->name);
1591 }
1592 list_for_each_entry(p, &w->sinks, list_source) {
Mark Brown215edda2009-09-08 18:59:05 +01001593 if (p->connected && !p->connected(w, p->sink))
1594 continue;
1595
Mark Brown79fb9382009-08-21 16:38:13 +01001596 if (p->connect)
1597 ret += snprintf(buf + ret, PAGE_SIZE - ret,
Dimitris Papastamos67f5ed62011-02-24 17:09:32 +00001598 " out \"%s\" \"%s\"\n",
Mark Brown79fb9382009-08-21 16:38:13 +01001599 p->name ? p->name : "static",
1600 p->sink->name);
1601 }
1602
1603 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
1604
1605 kfree(buf);
1606 return ret;
1607}
1608
1609static const struct file_operations dapm_widget_power_fops = {
1610 .open = dapm_widget_power_open_file,
1611 .read = dapm_widget_power_read_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001612 .llseek = default_llseek,
Mark Brown79fb9382009-08-21 16:38:13 +01001613};
1614
Mark Brownef49e4f2011-04-04 20:48:13 +09001615static int dapm_bias_open_file(struct inode *inode, struct file *file)
1616{
1617 file->private_data = inode->i_private;
1618 return 0;
1619}
1620
1621static ssize_t dapm_bias_read_file(struct file *file, char __user *user_buf,
1622 size_t count, loff_t *ppos)
1623{
1624 struct snd_soc_dapm_context *dapm = file->private_data;
1625 char *level;
1626
1627 switch (dapm->bias_level) {
1628 case SND_SOC_BIAS_ON:
1629 level = "On\n";
1630 break;
1631 case SND_SOC_BIAS_PREPARE:
1632 level = "Prepare\n";
1633 break;
1634 case SND_SOC_BIAS_STANDBY:
1635 level = "Standby\n";
1636 break;
1637 case SND_SOC_BIAS_OFF:
1638 level = "Off\n";
1639 break;
1640 default:
1641 BUG();
1642 level = "Unknown\n";
1643 break;
1644 }
1645
1646 return simple_read_from_buffer(user_buf, count, ppos, level,
1647 strlen(level));
1648}
1649
1650static const struct file_operations dapm_bias_fops = {
1651 .open = dapm_bias_open_file,
1652 .read = dapm_bias_read_file,
1653 .llseek = default_llseek,
1654};
1655
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02001656void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
1657 struct dentry *parent)
Mark Brown79fb9382009-08-21 16:38:13 +01001658{
Mark Brown79fb9382009-08-21 16:38:13 +01001659 struct dentry *d;
1660
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02001661 dapm->debugfs_dapm = debugfs_create_dir("dapm", parent);
1662
1663 if (!dapm->debugfs_dapm) {
Liam Girdwoodf1e90af2012-03-06 18:13:25 +00001664 dev_warn(dapm->dev,
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02001665 "Failed to create DAPM debugfs directory\n");
Mark Brown79fb9382009-08-21 16:38:13 +01001666 return;
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02001667 }
Mark Brown79fb9382009-08-21 16:38:13 +01001668
Mark Brownef49e4f2011-04-04 20:48:13 +09001669 d = debugfs_create_file("bias_level", 0444,
1670 dapm->debugfs_dapm, dapm,
1671 &dapm_bias_fops);
1672 if (!d)
1673 dev_warn(dapm->dev,
1674 "ASoC: Failed to create bias level debugfs file\n");
Mark Brown79fb9382009-08-21 16:38:13 +01001675}
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001676
1677static void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
1678{
1679 struct snd_soc_dapm_context *dapm = w->dapm;
1680 struct dentry *d;
1681
1682 if (!dapm->debugfs_dapm || !w->name)
1683 return;
1684
1685 d = debugfs_create_file(w->name, 0444,
1686 dapm->debugfs_dapm, w,
1687 &dapm_widget_power_fops);
1688 if (!d)
1689 dev_warn(w->dapm->dev,
1690 "ASoC: Failed to create %s debugfs file\n",
1691 w->name);
1692}
1693
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02001694static void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
1695{
1696 debugfs_remove_recursive(dapm->debugfs_dapm);
1697}
1698
Mark Brown79fb9382009-08-21 16:38:13 +01001699#else
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02001700void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
1701 struct dentry *parent)
Mark Brown79fb9382009-08-21 16:38:13 +01001702{
1703}
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001704
1705static inline void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
1706{
1707}
1708
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02001709static inline void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
1710{
1711}
1712
Mark Brown79fb9382009-08-21 16:38:13 +01001713#endif
1714
Richard Purdie2b97eab2006-10-06 18:32:18 +02001715/* test and update the power status of a mux widget */
Liam Girdwood4edbb3452012-03-07 10:38:27 +00001716static int soc_dapm_mux_update_power(struct snd_soc_dapm_widget *widget,
Liam Girdwood40f02cd2012-02-06 16:05:14 +00001717 struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001718{
1719 struct snd_soc_dapm_path *path;
1720 int found = 0;
1721
Peter Ujfalusieff317d2009-01-15 14:40:47 +02001722 if (widget->id != snd_soc_dapm_mux &&
Dimitris Papastamos24ff33a2010-12-16 15:53:39 +00001723 widget->id != snd_soc_dapm_virt_mux &&
Peter Ujfalusieff317d2009-01-15 14:40:47 +02001724 widget->id != snd_soc_dapm_value_mux)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001725 return -ENODEV;
1726
Richard Purdie2b97eab2006-10-06 18:32:18 +02001727 /* find dapm widget path assoc with kcontrol */
Jarkko Nikula8ddab3f2010-12-14 12:18:30 +02001728 list_for_each_entry(path, &widget->dapm->card->paths, list) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02001729 if (path->kcontrol != kcontrol)
1730 continue;
1731
Richard Zhaocb01e2b2008-10-07 08:05:20 +08001732 if (!path->name || !e->texts[mux])
Richard Purdie2b97eab2006-10-06 18:32:18 +02001733 continue;
1734
1735 found = 1;
1736 /* we now need to match the string in the enum to the path */
Mark Browndb432b42011-10-03 21:06:40 +01001737 if (!(strcmp(path->name, e->texts[mux]))) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02001738 path->connect = 1; /* new connection */
Mark Brown75c1f892011-10-04 22:28:08 +01001739 dapm_mark_dirty(path->source, "mux connection");
Mark Browndb432b42011-10-03 21:06:40 +01001740 } else {
1741 if (path->connect)
Mark Brown75c1f892011-10-04 22:28:08 +01001742 dapm_mark_dirty(path->source,
1743 "mux disconnection");
Richard Purdie2b97eab2006-10-06 18:32:18 +02001744 path->connect = 0; /* old connection must be powered down */
Mark Browndb432b42011-10-03 21:06:40 +01001745 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02001746 }
1747
Mark Browndb432b42011-10-03 21:06:40 +01001748 if (found) {
Mark Brown75c1f892011-10-04 22:28:08 +01001749 dapm_mark_dirty(widget, "mux change");
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001750 dapm_power_widgets(widget->dapm, SND_SOC_DAPM_STREAM_NOP);
Mark Browndb432b42011-10-03 21:06:40 +01001751 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02001752
1753 return 0;
1754}
Liam Girdwood4edbb3452012-03-07 10:38:27 +00001755
1756int snd_soc_dapm_mux_update_power(struct snd_soc_dapm_widget *widget,
1757 struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e)
1758{
1759 struct snd_soc_card *card = widget->dapm->card;
1760 int ret;
1761
Liam Girdwood3cd04342012-03-09 12:02:08 +00001762 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Liam Girdwood4edbb3452012-03-07 10:38:27 +00001763 ret = soc_dapm_mux_update_power(widget, kcontrol, mux, e);
1764 mutex_unlock(&card->dapm_mutex);
1765 return ret;
1766}
Liam Girdwood40f02cd2012-02-06 16:05:14 +00001767EXPORT_SYMBOL_GPL(snd_soc_dapm_mux_update_power);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001768
Milan plzik1b075e32008-01-10 14:39:46 +01001769/* test and update the power status of a mixer or switch widget */
Liam Girdwood4edbb3452012-03-07 10:38:27 +00001770static int soc_dapm_mixer_update_power(struct snd_soc_dapm_widget *widget,
Mark Brown283375c2009-12-07 18:09:03 +00001771 struct snd_kcontrol *kcontrol, int connect)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001772{
1773 struct snd_soc_dapm_path *path;
1774 int found = 0;
1775
Milan plzik1b075e32008-01-10 14:39:46 +01001776 if (widget->id != snd_soc_dapm_mixer &&
Ian Moltonca9c1aa2009-01-06 20:11:51 +00001777 widget->id != snd_soc_dapm_mixer_named_ctl &&
Milan plzik1b075e32008-01-10 14:39:46 +01001778 widget->id != snd_soc_dapm_switch)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001779 return -ENODEV;
1780
Richard Purdie2b97eab2006-10-06 18:32:18 +02001781 /* find dapm widget path assoc with kcontrol */
Jarkko Nikula8ddab3f2010-12-14 12:18:30 +02001782 list_for_each_entry(path, &widget->dapm->card->paths, list) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02001783 if (path->kcontrol != kcontrol)
1784 continue;
1785
1786 /* found, now check type */
1787 found = 1;
Mark Brown283375c2009-12-07 18:09:03 +00001788 path->connect = connect;
Mark Brown75c1f892011-10-04 22:28:08 +01001789 dapm_mark_dirty(path->source, "mixer connection");
Richard Purdie2b97eab2006-10-06 18:32:18 +02001790 }
1791
Mark Browndb432b42011-10-03 21:06:40 +01001792 if (found) {
Mark Brown75c1f892011-10-04 22:28:08 +01001793 dapm_mark_dirty(widget, "mixer update");
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001794 dapm_power_widgets(widget->dapm, SND_SOC_DAPM_STREAM_NOP);
Mark Browndb432b42011-10-03 21:06:40 +01001795 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02001796
1797 return 0;
1798}
Liam Girdwood4edbb3452012-03-07 10:38:27 +00001799
1800int snd_soc_dapm_mixer_update_power(struct snd_soc_dapm_widget *widget,
1801 struct snd_kcontrol *kcontrol, int connect)
1802{
1803 struct snd_soc_card *card = widget->dapm->card;
1804 int ret;
1805
Liam Girdwood3cd04342012-03-09 12:02:08 +00001806 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Liam Girdwood4edbb3452012-03-07 10:38:27 +00001807 ret = soc_dapm_mixer_update_power(widget, kcontrol, connect);
1808 mutex_unlock(&card->dapm_mutex);
1809 return ret;
1810}
Liam Girdwood40f02cd2012-02-06 16:05:14 +00001811EXPORT_SYMBOL_GPL(snd_soc_dapm_mixer_update_power);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001812
1813/* show dapm widget status in sys fs */
1814static ssize_t dapm_widget_show(struct device *dev,
1815 struct device_attribute *attr, char *buf)
1816{
Mark Brown36ae1a92012-01-06 17:12:45 -08001817 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001818 struct snd_soc_codec *codec =rtd->codec;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001819 struct snd_soc_dapm_widget *w;
1820 int count = 0;
1821 char *state = "not set";
1822
Jarkko Nikula97c866d2010-12-14 12:18:31 +02001823 list_for_each_entry(w, &codec->card->widgets, list) {
1824 if (w->dapm != &codec->dapm)
1825 continue;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001826
1827 /* only display widgets that burnm power */
1828 switch (w->id) {
1829 case snd_soc_dapm_hp:
1830 case snd_soc_dapm_mic:
1831 case snd_soc_dapm_spk:
1832 case snd_soc_dapm_line:
1833 case snd_soc_dapm_micbias:
1834 case snd_soc_dapm_dac:
1835 case snd_soc_dapm_adc:
1836 case snd_soc_dapm_pga:
Olaya, Margaritad88429a2010-12-10 21:11:44 -06001837 case snd_soc_dapm_out_drv:
Richard Purdie2b97eab2006-10-06 18:32:18 +02001838 case snd_soc_dapm_mixer:
Ian Moltonca9c1aa2009-01-06 20:11:51 +00001839 case snd_soc_dapm_mixer_named_ctl:
Mark Brown246d0a12009-04-22 18:24:55 +01001840 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00001841 case snd_soc_dapm_regulator_supply:
Richard Purdie2b97eab2006-10-06 18:32:18 +02001842 if (w->name)
1843 count += sprintf(buf + count, "%s: %s\n",
1844 w->name, w->power ? "On":"Off");
1845 break;
1846 default:
1847 break;
1848 }
1849 }
1850
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001851 switch (codec->dapm.bias_level) {
Mark Brown0be98982008-05-19 12:31:28 +02001852 case SND_SOC_BIAS_ON:
1853 state = "On";
Richard Purdie2b97eab2006-10-06 18:32:18 +02001854 break;
Mark Brown0be98982008-05-19 12:31:28 +02001855 case SND_SOC_BIAS_PREPARE:
1856 state = "Prepare";
Richard Purdie2b97eab2006-10-06 18:32:18 +02001857 break;
Mark Brown0be98982008-05-19 12:31:28 +02001858 case SND_SOC_BIAS_STANDBY:
1859 state = "Standby";
Richard Purdie2b97eab2006-10-06 18:32:18 +02001860 break;
Mark Brown0be98982008-05-19 12:31:28 +02001861 case SND_SOC_BIAS_OFF:
1862 state = "Off";
Richard Purdie2b97eab2006-10-06 18:32:18 +02001863 break;
1864 }
1865 count += sprintf(buf + count, "PM State: %s\n", state);
1866
1867 return count;
1868}
1869
1870static DEVICE_ATTR(dapm_widget, 0444, dapm_widget_show, NULL);
1871
1872int snd_soc_dapm_sys_add(struct device *dev)
1873{
Troy Kisky12ef1932008-10-13 17:42:14 -07001874 return device_create_file(dev, &dev_attr_dapm_widget);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001875}
1876
1877static void snd_soc_dapm_sys_remove(struct device *dev)
1878{
Mark Brownaef90842009-05-16 17:53:16 +01001879 device_remove_file(dev, &dev_attr_dapm_widget);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001880}
1881
1882/* free all dapm widgets and resources */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001883static void dapm_free_widgets(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001884{
1885 struct snd_soc_dapm_widget *w, *next_w;
1886 struct snd_soc_dapm_path *p, *next_p;
1887
Jarkko Nikula97c866d2010-12-14 12:18:31 +02001888 list_for_each_entry_safe(w, next_w, &dapm->card->widgets, list) {
1889 if (w->dapm != dapm)
1890 continue;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001891 list_del(&w->list);
Jarkko Nikula8ddab3f2010-12-14 12:18:30 +02001892 /*
1893 * remove source and sink paths associated to this widget.
1894 * While removing the path, remove reference to it from both
1895 * source and sink widgets so that path is removed only once.
1896 */
1897 list_for_each_entry_safe(p, next_p, &w->sources, list_sink) {
1898 list_del(&p->list_sink);
1899 list_del(&p->list_source);
1900 list_del(&p->list);
1901 kfree(p->long_name);
1902 kfree(p);
1903 }
1904 list_for_each_entry_safe(p, next_p, &w->sinks, list_source) {
1905 list_del(&p->list_sink);
1906 list_del(&p->list_source);
1907 list_del(&p->list);
1908 kfree(p->long_name);
1909 kfree(p);
1910 }
Stephen Warrenfad59882011-04-28 17:37:59 -06001911 kfree(w->kcontrols);
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001912 kfree(w->name);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001913 kfree(w);
1914 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02001915}
1916
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02001917static struct snd_soc_dapm_widget *dapm_find_widget(
1918 struct snd_soc_dapm_context *dapm, const char *pin,
1919 bool search_other_contexts)
1920{
1921 struct snd_soc_dapm_widget *w;
1922 struct snd_soc_dapm_widget *fallback = NULL;
1923
1924 list_for_each_entry(w, &dapm->card->widgets, list) {
1925 if (!strcmp(w->name, pin)) {
1926 if (w->dapm == dapm)
1927 return w;
1928 else
1929 fallback = w;
1930 }
1931 }
1932
1933 if (search_other_contexts)
1934 return fallback;
1935
1936 return NULL;
1937}
1938
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001939static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context *dapm,
Mark Brown16499232009-01-07 18:25:13 +00001940 const char *pin, int status)
Liam Girdwooda5302182008-07-07 13:35:17 +01001941{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02001942 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
Liam Girdwooda5302182008-07-07 13:35:17 +01001943
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02001944 if (!w) {
1945 dev_err(dapm->dev, "dapm: unknown pin %s\n", pin);
1946 return -EINVAL;
Liam Girdwooda5302182008-07-07 13:35:17 +01001947 }
1948
Mark Brown1a8b2d92012-02-16 11:50:07 -08001949 if (w->connected != status)
1950 dapm_mark_dirty(w, "pin configuration");
1951
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02001952 w->connected = status;
1953 if (status == 0)
1954 w->force = 0;
Mark Brown0d867332011-04-06 11:38:14 +09001955
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02001956 return 0;
Liam Girdwooda5302182008-07-07 13:35:17 +01001957}
1958
Richard Purdie2b97eab2006-10-06 18:32:18 +02001959/**
Liam Girdwooda5302182008-07-07 13:35:17 +01001960 * snd_soc_dapm_sync - scan and power dapm paths
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001961 * @dapm: DAPM context
Richard Purdie2b97eab2006-10-06 18:32:18 +02001962 *
1963 * Walks all dapm audio paths and powers widgets according to their
1964 * stream or path usage.
1965 *
1966 * Returns 0 for success.
1967 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001968int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001969{
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00001970 int ret;
1971
Mark Brown4f4c0072011-10-07 14:29:19 +01001972 /*
1973 * Suppress early reports (eg, jacks syncing their state) to avoid
1974 * silly DAPM runs during card startup.
1975 */
1976 if (!dapm->card || !dapm->card->instantiated)
1977 return 0;
1978
Liam Girdwood3cd04342012-03-09 12:02:08 +00001979 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00001980 ret = dapm_power_widgets(dapm, SND_SOC_DAPM_STREAM_NOP);
1981 mutex_unlock(&dapm->card->dapm_mutex);
1982 return ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001983}
Liam Girdwooda5302182008-07-07 13:35:17 +01001984EXPORT_SYMBOL_GPL(snd_soc_dapm_sync);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001985
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001986static int snd_soc_dapm_add_route(struct snd_soc_dapm_context *dapm,
Mark Brown215edda2009-09-08 18:59:05 +01001987 const struct snd_soc_dapm_route *route)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001988{
1989 struct snd_soc_dapm_path *path;
1990 struct snd_soc_dapm_widget *wsource = NULL, *wsink = NULL, *w;
Jarkko Nikula97c866d2010-12-14 12:18:31 +02001991 struct snd_soc_dapm_widget *wtsource = NULL, *wtsink = NULL;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001992 const char *sink;
Mark Brown215edda2009-09-08 18:59:05 +01001993 const char *control = route->control;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001994 const char *source;
1995 char prefixed_sink[80];
1996 char prefixed_source[80];
Richard Purdie2b97eab2006-10-06 18:32:18 +02001997 int ret = 0;
1998
Mark Brown88e8b9a2011-03-02 18:18:24 +00001999 if (dapm->codec && dapm->codec->name_prefix) {
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002000 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
2001 dapm->codec->name_prefix, route->sink);
2002 sink = prefixed_sink;
2003 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
2004 dapm->codec->name_prefix, route->source);
2005 source = prefixed_source;
2006 } else {
2007 sink = route->sink;
2008 source = route->source;
2009 }
2010
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002011 /*
2012 * find src and dest widgets over all widgets but favor a widget from
2013 * current DAPM context
2014 */
2015 list_for_each_entry(w, &dapm->card->widgets, list) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002016 if (!wsink && !(strcmp(w->name, sink))) {
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002017 wtsink = w;
2018 if (w->dapm == dapm)
2019 wsink = w;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002020 continue;
2021 }
2022 if (!wsource && !(strcmp(w->name, source))) {
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002023 wtsource = w;
2024 if (w->dapm == dapm)
2025 wsource = w;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002026 }
2027 }
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002028 /* use widget from another DAPM context if not found from this */
2029 if (!wsink)
2030 wsink = wtsink;
2031 if (!wsource)
2032 wsource = wtsource;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002033
2034 if (wsource == NULL || wsink == NULL)
2035 return -ENODEV;
2036
2037 path = kzalloc(sizeof(struct snd_soc_dapm_path), GFP_KERNEL);
2038 if (!path)
2039 return -ENOMEM;
2040
2041 path->source = wsource;
2042 path->sink = wsink;
Mark Brown215edda2009-09-08 18:59:05 +01002043 path->connected = route->connected;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002044 INIT_LIST_HEAD(&path->list);
2045 INIT_LIST_HEAD(&path->list_source);
2046 INIT_LIST_HEAD(&path->list_sink);
2047
2048 /* check for external widgets */
2049 if (wsink->id == snd_soc_dapm_input) {
2050 if (wsource->id == snd_soc_dapm_micbias ||
2051 wsource->id == snd_soc_dapm_mic ||
Rongrong Cao087d53a2009-07-10 20:13:30 +01002052 wsource->id == snd_soc_dapm_line ||
2053 wsource->id == snd_soc_dapm_output)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002054 wsink->ext = 1;
2055 }
2056 if (wsource->id == snd_soc_dapm_output) {
2057 if (wsink->id == snd_soc_dapm_spk ||
2058 wsink->id == snd_soc_dapm_hp ||
Seth Forshee1e392212007-04-16 15:36:42 +02002059 wsink->id == snd_soc_dapm_line ||
2060 wsink->id == snd_soc_dapm_input)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002061 wsource->ext = 1;
2062 }
2063
2064 /* connect static paths */
2065 if (control == NULL) {
Jarkko Nikula8ddab3f2010-12-14 12:18:30 +02002066 list_add(&path->list, &dapm->card->paths);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002067 list_add(&path->list_sink, &wsink->sources);
2068 list_add(&path->list_source, &wsource->sinks);
2069 path->connect = 1;
2070 return 0;
2071 }
2072
2073 /* connect dynamic paths */
Lu Guanqundc2bea62011-04-20 16:00:36 +08002074 switch (wsink->id) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002075 case snd_soc_dapm_adc:
2076 case snd_soc_dapm_dac:
2077 case snd_soc_dapm_pga:
Olaya, Margaritad88429a2010-12-10 21:11:44 -06002078 case snd_soc_dapm_out_drv:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002079 case snd_soc_dapm_input:
2080 case snd_soc_dapm_output:
Mark Brown1ab97c82011-11-27 16:21:51 +00002081 case snd_soc_dapm_siggen:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002082 case snd_soc_dapm_micbias:
2083 case snd_soc_dapm_vmid:
2084 case snd_soc_dapm_pre:
2085 case snd_soc_dapm_post:
Mark Brown246d0a12009-04-22 18:24:55 +01002086 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00002087 case snd_soc_dapm_regulator_supply:
Mark Brown010ff262009-08-17 17:39:22 +01002088 case snd_soc_dapm_aif_in:
2089 case snd_soc_dapm_aif_out:
Mark Brown888df392012-02-16 19:37:51 -08002090 case snd_soc_dapm_dai:
Jarkko Nikula8ddab3f2010-12-14 12:18:30 +02002091 list_add(&path->list, &dapm->card->paths);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002092 list_add(&path->list_sink, &wsink->sources);
2093 list_add(&path->list_source, &wsource->sinks);
2094 path->connect = 1;
2095 return 0;
2096 case snd_soc_dapm_mux:
Dimitris Papastamos24ff33a2010-12-16 15:53:39 +00002097 case snd_soc_dapm_virt_mux:
Peter Ujfalusi74155552009-01-08 13:34:29 +02002098 case snd_soc_dapm_value_mux:
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002099 ret = dapm_connect_mux(dapm, wsource, wsink, path, control,
Stephen Warren82cfecd2011-04-28 17:37:58 -06002100 &wsink->kcontrol_news[0]);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002101 if (ret != 0)
2102 goto err;
2103 break;
2104 case snd_soc_dapm_switch:
2105 case snd_soc_dapm_mixer:
Ian Moltonca9c1aa2009-01-06 20:11:51 +00002106 case snd_soc_dapm_mixer_named_ctl:
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002107 ret = dapm_connect_mixer(dapm, wsource, wsink, path, control);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002108 if (ret != 0)
2109 goto err;
2110 break;
2111 case snd_soc_dapm_hp:
2112 case snd_soc_dapm_mic:
2113 case snd_soc_dapm_line:
2114 case snd_soc_dapm_spk:
Jarkko Nikula8ddab3f2010-12-14 12:18:30 +02002115 list_add(&path->list, &dapm->card->paths);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002116 list_add(&path->list_sink, &wsink->sources);
2117 list_add(&path->list_source, &wsource->sinks);
2118 path->connect = 0;
2119 return 0;
2120 }
2121 return 0;
2122
2123err:
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02002124 dev_warn(dapm->dev, "asoc: no dapm match for %s --> %s --> %s\n",
2125 source, control, sink);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002126 kfree(path);
2127 return ret;
2128}
Mark Brown105f1c22008-05-13 14:52:19 +02002129
2130/**
Mark Brown105f1c22008-05-13 14:52:19 +02002131 * snd_soc_dapm_add_routes - Add routes between DAPM widgets
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002132 * @dapm: DAPM context
Mark Brown105f1c22008-05-13 14:52:19 +02002133 * @route: audio routes
2134 * @num: number of routes
2135 *
2136 * Connects 2 dapm widgets together via a named audio path. The sink is
2137 * the widget receiving the audio signal, whilst the source is the sender
2138 * of the audio signal.
2139 *
2140 * Returns 0 for success else error. On error all resources can be freed
2141 * with a call to snd_soc_card_free().
2142 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002143int snd_soc_dapm_add_routes(struct snd_soc_dapm_context *dapm,
Mark Brown105f1c22008-05-13 14:52:19 +02002144 const struct snd_soc_dapm_route *route, int num)
2145{
2146 int i, ret;
2147
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002148 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brown105f1c22008-05-13 14:52:19 +02002149 for (i = 0; i < num; i++) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002150 ret = snd_soc_dapm_add_route(dapm, route);
Mark Brown105f1c22008-05-13 14:52:19 +02002151 if (ret < 0) {
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02002152 dev_err(dapm->dev, "Failed to add route %s->%s\n",
2153 route->source, route->sink);
Mark Brown105f1c22008-05-13 14:52:19 +02002154 return ret;
2155 }
2156 route++;
2157 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002158 mutex_unlock(&dapm->card->dapm_mutex);
Mark Brown105f1c22008-05-13 14:52:19 +02002159
2160 return 0;
2161}
2162EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes);
2163
Mark Brownbf3a9e12011-06-13 16:42:29 +01002164static int snd_soc_dapm_weak_route(struct snd_soc_dapm_context *dapm,
2165 const struct snd_soc_dapm_route *route)
2166{
2167 struct snd_soc_dapm_widget *source = dapm_find_widget(dapm,
2168 route->source,
2169 true);
2170 struct snd_soc_dapm_widget *sink = dapm_find_widget(dapm,
2171 route->sink,
2172 true);
2173 struct snd_soc_dapm_path *path;
2174 int count = 0;
2175
2176 if (!source) {
2177 dev_err(dapm->dev, "Unable to find source %s for weak route\n",
2178 route->source);
2179 return -ENODEV;
2180 }
2181
2182 if (!sink) {
2183 dev_err(dapm->dev, "Unable to find sink %s for weak route\n",
2184 route->sink);
2185 return -ENODEV;
2186 }
2187
2188 if (route->control || route->connected)
2189 dev_warn(dapm->dev, "Ignoring control for weak route %s->%s\n",
2190 route->source, route->sink);
2191
2192 list_for_each_entry(path, &source->sinks, list_source) {
2193 if (path->sink == sink) {
2194 path->weak = 1;
2195 count++;
2196 }
2197 }
2198
2199 if (count == 0)
2200 dev_err(dapm->dev, "No path found for weak route %s->%s\n",
2201 route->source, route->sink);
2202 if (count > 1)
2203 dev_warn(dapm->dev, "%d paths found for weak route %s->%s\n",
2204 count, route->source, route->sink);
2205
2206 return 0;
2207}
2208
2209/**
2210 * snd_soc_dapm_weak_routes - Mark routes between DAPM widgets as weak
2211 * @dapm: DAPM context
2212 * @route: audio routes
2213 * @num: number of routes
2214 *
2215 * Mark existing routes matching those specified in the passed array
2216 * as being weak, meaning that they are ignored for the purpose of
2217 * power decisions. The main intended use case is for sidetone paths
2218 * which couple audio between other independent paths if they are both
2219 * active in order to make the combination work better at the user
2220 * level but which aren't intended to be "used".
2221 *
2222 * Note that CODEC drivers should not use this as sidetone type paths
2223 * can frequently also be used as bypass paths.
2224 */
2225int snd_soc_dapm_weak_routes(struct snd_soc_dapm_context *dapm,
2226 const struct snd_soc_dapm_route *route, int num)
2227{
2228 int i, err;
2229 int ret = 0;
2230
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002231 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brownbf3a9e12011-06-13 16:42:29 +01002232 for (i = 0; i < num; i++) {
2233 err = snd_soc_dapm_weak_route(dapm, route);
2234 if (err)
2235 ret = err;
2236 route++;
2237 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002238 mutex_unlock(&dapm->card->dapm_mutex);
Mark Brownbf3a9e12011-06-13 16:42:29 +01002239
2240 return ret;
2241}
2242EXPORT_SYMBOL_GPL(snd_soc_dapm_weak_routes);
2243
Mark Brown105f1c22008-05-13 14:52:19 +02002244/**
Richard Purdie2b97eab2006-10-06 18:32:18 +02002245 * snd_soc_dapm_new_widgets - add new dapm widgets
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002246 * @dapm: DAPM context
Richard Purdie2b97eab2006-10-06 18:32:18 +02002247 *
2248 * Checks the codec for any new dapm widgets and creates them if found.
2249 *
2250 * Returns 0 for success.
2251 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002252int snd_soc_dapm_new_widgets(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002253{
2254 struct snd_soc_dapm_widget *w;
Mark Brownb66a70d2011-02-09 18:04:11 +00002255 unsigned int val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002256
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002257 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2258
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002259 list_for_each_entry(w, &dapm->card->widgets, list)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002260 {
2261 if (w->new)
2262 continue;
2263
Stephen Warrenfad59882011-04-28 17:37:59 -06002264 if (w->num_kcontrols) {
2265 w->kcontrols = kzalloc(w->num_kcontrols *
2266 sizeof(struct snd_kcontrol *),
2267 GFP_KERNEL);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002268 if (!w->kcontrols) {
2269 mutex_unlock(&dapm->card->dapm_mutex);
Stephen Warrenfad59882011-04-28 17:37:59 -06002270 return -ENOMEM;
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002271 }
Stephen Warrenfad59882011-04-28 17:37:59 -06002272 }
2273
Richard Purdie2b97eab2006-10-06 18:32:18 +02002274 switch(w->id) {
2275 case snd_soc_dapm_switch:
2276 case snd_soc_dapm_mixer:
Ian Moltonca9c1aa2009-01-06 20:11:51 +00002277 case snd_soc_dapm_mixer_named_ctl:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02002278 dapm_new_mixer(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002279 break;
2280 case snd_soc_dapm_mux:
Dimitris Papastamos24ff33a2010-12-16 15:53:39 +00002281 case snd_soc_dapm_virt_mux:
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002282 case snd_soc_dapm_value_mux:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02002283 dapm_new_mux(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002284 break;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002285 case snd_soc_dapm_pga:
Olaya, Margaritad88429a2010-12-10 21:11:44 -06002286 case snd_soc_dapm_out_drv:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02002287 dapm_new_pga(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002288 break;
Mark Brown7ca3a182011-10-08 14:04:50 +01002289 default:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002290 break;
2291 }
Mark Brownb66a70d2011-02-09 18:04:11 +00002292
2293 /* Read the initial power state from the device */
2294 if (w->reg >= 0) {
Liam Girdwood0445bdf2011-06-13 19:37:36 +01002295 val = soc_widget_read(w, w->reg);
Mark Brownb66a70d2011-02-09 18:04:11 +00002296 val &= 1 << w->shift;
2297 if (w->invert)
2298 val = !val;
2299
2300 if (val)
2301 w->power = 1;
2302 }
2303
Richard Purdie2b97eab2006-10-06 18:32:18 +02002304 w->new = 1;
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002305
Mark Brown7508b122011-10-05 12:09:12 +01002306 dapm_mark_dirty(w, "new widget");
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002307 dapm_debugfs_add_widget(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002308 }
2309
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002310 dapm_power_widgets(dapm, SND_SOC_DAPM_STREAM_NOP);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002311 mutex_unlock(&dapm->card->dapm_mutex);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002312 return 0;
2313}
2314EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets);
2315
2316/**
2317 * snd_soc_dapm_get_volsw - dapm mixer get callback
2318 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002319 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02002320 *
2321 * Callback to get the value of a dapm mixer control.
2322 *
2323 * Returns 0 for success.
2324 */
2325int snd_soc_dapm_get_volsw(struct snd_kcontrol *kcontrol,
2326 struct snd_ctl_elem_value *ucontrol)
2327{
Stephen Warrenfafd2172011-04-28 17:38:00 -06002328 struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2329 struct snd_soc_dapm_widget *widget = wlist->widgets[0];
Jon Smirl4eaa9812008-07-29 11:42:26 +01002330 struct soc_mixer_control *mc =
2331 (struct soc_mixer_control *)kcontrol->private_value;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002332 unsigned int reg = mc->reg;
2333 unsigned int shift = mc->shift;
2334 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002335 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002336 unsigned int invert = mc->invert;
2337 unsigned int mask = (1 << fls(max)) - 1;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002338
Richard Purdie2b97eab2006-10-06 18:32:18 +02002339 ucontrol->value.integer.value[0] =
2340 (snd_soc_read(widget->codec, reg) >> shift) & mask;
2341 if (shift != rshift)
2342 ucontrol->value.integer.value[1] =
2343 (snd_soc_read(widget->codec, reg) >> rshift) & mask;
2344 if (invert) {
2345 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002346 max - ucontrol->value.integer.value[0];
Richard Purdie2b97eab2006-10-06 18:32:18 +02002347 if (shift != rshift)
2348 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002349 max - ucontrol->value.integer.value[1];
Richard Purdie2b97eab2006-10-06 18:32:18 +02002350 }
2351
2352 return 0;
2353}
2354EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw);
2355
2356/**
2357 * snd_soc_dapm_put_volsw - dapm mixer set callback
2358 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002359 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02002360 *
2361 * Callback to set the value of a dapm mixer control.
2362 *
2363 * Returns 0 for success.
2364 */
2365int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
2366 struct snd_ctl_elem_value *ucontrol)
2367{
Stephen Warrenfafd2172011-04-28 17:38:00 -06002368 struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2369 struct snd_soc_dapm_widget *widget = wlist->widgets[0];
2370 struct snd_soc_codec *codec = widget->codec;
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002371 struct snd_soc_card *card = codec->card;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002372 struct soc_mixer_control *mc =
2373 (struct soc_mixer_control *)kcontrol->private_value;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002374 unsigned int reg = mc->reg;
2375 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002376 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002377 unsigned int mask = (1 << fls(max)) - 1;
2378 unsigned int invert = mc->invert;
Stephen Warrene9cf7042011-01-27 14:54:05 -07002379 unsigned int val;
Mark Brown97404f22010-12-14 16:13:57 +00002380 int connect, change;
2381 struct snd_soc_dapm_update update;
Stephen Warrenfafd2172011-04-28 17:38:00 -06002382 int wi;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002383
2384 val = (ucontrol->value.integer.value[0] & mask);
2385
2386 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002387 val = max - val;
Stephen Warrene9cf7042011-01-27 14:54:05 -07002388 mask = mask << shift;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002389 val = val << shift;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002390
Stephen Warrenfafd2172011-04-28 17:38:00 -06002391 if (val)
2392 /* new connection */
2393 connect = invert ? 0 : 1;
2394 else
2395 /* old connection must be powered down */
2396 connect = invert ? 1 : 0;
2397
Liam Girdwood3cd04342012-03-09 12:02:08 +00002398 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002399
Stephen Warrene9cf7042011-01-27 14:54:05 -07002400 change = snd_soc_test_bits(widget->codec, reg, mask, val);
Mark Brown97404f22010-12-14 16:13:57 +00002401 if (change) {
Stephen Warrenfafd2172011-04-28 17:38:00 -06002402 for (wi = 0; wi < wlist->num_widgets; wi++) {
2403 widget = wlist->widgets[wi];
Mark Brown283375c2009-12-07 18:09:03 +00002404
Stephen Warrenfafd2172011-04-28 17:38:00 -06002405 widget->value = val;
Mark Brown97404f22010-12-14 16:13:57 +00002406
Stephen Warrenfafd2172011-04-28 17:38:00 -06002407 update.kcontrol = kcontrol;
2408 update.widget = widget;
2409 update.reg = reg;
2410 update.mask = mask;
2411 update.val = val;
2412 widget->dapm->update = &update;
Mark Brown97404f22010-12-14 16:13:57 +00002413
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002414 soc_dapm_mixer_update_power(widget, kcontrol, connect);
Stephen Warrenfafd2172011-04-28 17:38:00 -06002415
2416 widget->dapm->update = NULL;
2417 }
Mark Brown283375c2009-12-07 18:09:03 +00002418 }
2419
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002420 mutex_unlock(&card->dapm_mutex);
Mark Brown97404f22010-12-14 16:13:57 +00002421 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002422}
2423EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw);
2424
2425/**
2426 * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
2427 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002428 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02002429 *
2430 * Callback to get the value of a dapm enumerated double mixer control.
2431 *
2432 * Returns 0 for success.
2433 */
2434int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol,
2435 struct snd_ctl_elem_value *ucontrol)
2436{
Stephen Warrenfafd2172011-04-28 17:38:00 -06002437 struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2438 struct snd_soc_dapm_widget *widget = wlist->widgets[0];
Richard Purdie2b97eab2006-10-06 18:32:18 +02002439 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002440 unsigned int val, bitmask;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002441
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002442 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002443 ;
2444 val = snd_soc_read(widget->codec, e->reg);
2445 ucontrol->value.enumerated.item[0] = (val >> e->shift_l) & (bitmask - 1);
2446 if (e->shift_l != e->shift_r)
2447 ucontrol->value.enumerated.item[1] =
2448 (val >> e->shift_r) & (bitmask - 1);
2449
2450 return 0;
2451}
2452EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double);
2453
2454/**
2455 * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
2456 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002457 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02002458 *
2459 * Callback to set the value of a dapm enumerated double mixer control.
2460 *
2461 * Returns 0 for success.
2462 */
2463int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
2464 struct snd_ctl_elem_value *ucontrol)
2465{
Stephen Warrenfafd2172011-04-28 17:38:00 -06002466 struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2467 struct snd_soc_dapm_widget *widget = wlist->widgets[0];
2468 struct snd_soc_codec *codec = widget->codec;
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002469 struct snd_soc_card *card = codec->card;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002470 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Mark Brown3a655772009-10-05 17:23:30 +01002471 unsigned int val, mux, change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002472 unsigned int mask, bitmask;
Mark Brown97404f22010-12-14 16:13:57 +00002473 struct snd_soc_dapm_update update;
Stephen Warrenfafd2172011-04-28 17:38:00 -06002474 int wi;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002475
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002476 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002477 ;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002478 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002479 return -EINVAL;
2480 mux = ucontrol->value.enumerated.item[0];
2481 val = mux << e->shift_l;
2482 mask = (bitmask - 1) << e->shift_l;
2483 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002484 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002485 return -EINVAL;
2486 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
2487 mask |= (bitmask - 1) << e->shift_r;
2488 }
2489
Liam Girdwood3cd04342012-03-09 12:02:08 +00002490 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Stephen Warrenfafd2172011-04-28 17:38:00 -06002491
Mark Brown3a655772009-10-05 17:23:30 +01002492 change = snd_soc_test_bits(widget->codec, e->reg, mask, val);
Stephen Warrenfafd2172011-04-28 17:38:00 -06002493 if (change) {
2494 for (wi = 0; wi < wlist->num_widgets; wi++) {
2495 widget = wlist->widgets[wi];
Mark Brown97404f22010-12-14 16:13:57 +00002496
Stephen Warrenfafd2172011-04-28 17:38:00 -06002497 widget->value = val;
Mark Brown97404f22010-12-14 16:13:57 +00002498
Stephen Warrenfafd2172011-04-28 17:38:00 -06002499 update.kcontrol = kcontrol;
2500 update.widget = widget;
2501 update.reg = e->reg;
2502 update.mask = mask;
2503 update.val = val;
2504 widget->dapm->update = &update;
Mark Brown1642e3d2009-10-05 16:24:26 +01002505
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002506 soc_dapm_mux_update_power(widget, kcontrol, mux, e);
Mark Brown1642e3d2009-10-05 16:24:26 +01002507
Stephen Warrenfafd2172011-04-28 17:38:00 -06002508 widget->dapm->update = NULL;
2509 }
2510 }
2511
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002512 mutex_unlock(&card->dapm_mutex);
Mark Brown97404f22010-12-14 16:13:57 +00002513 return change;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002514}
2515EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double);
2516
2517/**
Mark Brownd2b247a2009-10-06 15:21:04 +01002518 * snd_soc_dapm_get_enum_virt - Get virtual DAPM mux
2519 * @kcontrol: mixer control
2520 * @ucontrol: control element information
2521 *
2522 * Returns 0 for success.
2523 */
2524int snd_soc_dapm_get_enum_virt(struct snd_kcontrol *kcontrol,
2525 struct snd_ctl_elem_value *ucontrol)
2526{
Stephen Warrenfafd2172011-04-28 17:38:00 -06002527 struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2528 struct snd_soc_dapm_widget *widget = wlist->widgets[0];
Mark Brownd2b247a2009-10-06 15:21:04 +01002529
2530 ucontrol->value.enumerated.item[0] = widget->value;
2531
2532 return 0;
2533}
2534EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_virt);
2535
2536/**
2537 * snd_soc_dapm_put_enum_virt - Set virtual DAPM mux
2538 * @kcontrol: mixer control
2539 * @ucontrol: control element information
2540 *
2541 * Returns 0 for success.
2542 */
2543int snd_soc_dapm_put_enum_virt(struct snd_kcontrol *kcontrol,
2544 struct snd_ctl_elem_value *ucontrol)
2545{
Stephen Warrenfafd2172011-04-28 17:38:00 -06002546 struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2547 struct snd_soc_dapm_widget *widget = wlist->widgets[0];
2548 struct snd_soc_codec *codec = widget->codec;
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002549 struct snd_soc_card *card = codec->card;
Mark Brownd2b247a2009-10-06 15:21:04 +01002550 struct soc_enum *e =
2551 (struct soc_enum *)kcontrol->private_value;
2552 int change;
2553 int ret = 0;
Stephen Warrenfafd2172011-04-28 17:38:00 -06002554 int wi;
Mark Brownd2b247a2009-10-06 15:21:04 +01002555
2556 if (ucontrol->value.enumerated.item[0] >= e->max)
2557 return -EINVAL;
2558
Liam Girdwood3cd04342012-03-09 12:02:08 +00002559 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Mark Brownd2b247a2009-10-06 15:21:04 +01002560
2561 change = widget->value != ucontrol->value.enumerated.item[0];
Stephen Warrenfafd2172011-04-28 17:38:00 -06002562 if (change) {
2563 for (wi = 0; wi < wlist->num_widgets; wi++) {
2564 widget = wlist->widgets[wi];
Mark Brownd2b247a2009-10-06 15:21:04 +01002565
Stephen Warrenfafd2172011-04-28 17:38:00 -06002566 widget->value = ucontrol->value.enumerated.item[0];
2567
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002568 soc_dapm_mux_update_power(widget, kcontrol, widget->value, e);
Stephen Warrenfafd2172011-04-28 17:38:00 -06002569 }
2570 }
2571
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002572 mutex_unlock(&card->dapm_mutex);
Mark Brownd2b247a2009-10-06 15:21:04 +01002573 return ret;
2574}
2575EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_virt);
2576
2577/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002578 * snd_soc_dapm_get_value_enum_double - dapm semi enumerated double mixer get
2579 * callback
2580 * @kcontrol: mixer control
2581 * @ucontrol: control element information
2582 *
2583 * Callback to get the value of a dapm semi enumerated double mixer control.
2584 *
2585 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2586 * used for handling bitfield coded enumeration for example.
2587 *
2588 * Returns 0 for success.
2589 */
2590int snd_soc_dapm_get_value_enum_double(struct snd_kcontrol *kcontrol,
2591 struct snd_ctl_elem_value *ucontrol)
2592{
Stephen Warrenfafd2172011-04-28 17:38:00 -06002593 struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2594 struct snd_soc_dapm_widget *widget = wlist->widgets[0];
Peter Ujfalusi74155552009-01-08 13:34:29 +02002595 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002596 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002597
2598 reg_val = snd_soc_read(widget->codec, e->reg);
2599 val = (reg_val >> e->shift_l) & e->mask;
2600 for (mux = 0; mux < e->max; mux++) {
2601 if (val == e->values[mux])
2602 break;
2603 }
2604 ucontrol->value.enumerated.item[0] = mux;
2605 if (e->shift_l != e->shift_r) {
2606 val = (reg_val >> e->shift_r) & e->mask;
2607 for (mux = 0; mux < e->max; mux++) {
2608 if (val == e->values[mux])
2609 break;
2610 }
2611 ucontrol->value.enumerated.item[1] = mux;
2612 }
2613
2614 return 0;
2615}
2616EXPORT_SYMBOL_GPL(snd_soc_dapm_get_value_enum_double);
2617
2618/**
2619 * snd_soc_dapm_put_value_enum_double - dapm semi enumerated double mixer set
2620 * callback
2621 * @kcontrol: mixer control
2622 * @ucontrol: control element information
2623 *
2624 * Callback to set the value of a dapm semi enumerated double mixer control.
2625 *
2626 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2627 * used for handling bitfield coded enumeration for example.
2628 *
2629 * Returns 0 for success.
2630 */
2631int snd_soc_dapm_put_value_enum_double(struct snd_kcontrol *kcontrol,
2632 struct snd_ctl_elem_value *ucontrol)
2633{
Stephen Warrenfafd2172011-04-28 17:38:00 -06002634 struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol);
2635 struct snd_soc_dapm_widget *widget = wlist->widgets[0];
2636 struct snd_soc_codec *codec = widget->codec;
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002637 struct snd_soc_card *card = codec->card;
Peter Ujfalusi74155552009-01-08 13:34:29 +02002638 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Mark Brown3a655772009-10-05 17:23:30 +01002639 unsigned int val, mux, change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002640 unsigned int mask;
Mark Brown97404f22010-12-14 16:13:57 +00002641 struct snd_soc_dapm_update update;
Stephen Warrenfafd2172011-04-28 17:38:00 -06002642 int wi;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002643
2644 if (ucontrol->value.enumerated.item[0] > e->max - 1)
2645 return -EINVAL;
2646 mux = ucontrol->value.enumerated.item[0];
2647 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2648 mask = e->mask << e->shift_l;
2649 if (e->shift_l != e->shift_r) {
2650 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2651 return -EINVAL;
2652 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2653 mask |= e->mask << e->shift_r;
2654 }
2655
Liam Girdwood3cd04342012-03-09 12:02:08 +00002656 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Stephen Warrenfafd2172011-04-28 17:38:00 -06002657
Mark Brown3a655772009-10-05 17:23:30 +01002658 change = snd_soc_test_bits(widget->codec, e->reg, mask, val);
Stephen Warrenfafd2172011-04-28 17:38:00 -06002659 if (change) {
2660 for (wi = 0; wi < wlist->num_widgets; wi++) {
2661 widget = wlist->widgets[wi];
Mark Brown97404f22010-12-14 16:13:57 +00002662
Stephen Warrenfafd2172011-04-28 17:38:00 -06002663 widget->value = val;
Mark Brown97404f22010-12-14 16:13:57 +00002664
Stephen Warrenfafd2172011-04-28 17:38:00 -06002665 update.kcontrol = kcontrol;
2666 update.widget = widget;
2667 update.reg = e->reg;
2668 update.mask = mask;
2669 update.val = val;
2670 widget->dapm->update = &update;
Mark Brown1642e3d2009-10-05 16:24:26 +01002671
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002672 soc_dapm_mux_update_power(widget, kcontrol, mux, e);
Mark Brown1642e3d2009-10-05 16:24:26 +01002673
Stephen Warrenfafd2172011-04-28 17:38:00 -06002674 widget->dapm->update = NULL;
2675 }
2676 }
2677
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002678 mutex_unlock(&card->dapm_mutex);
Mark Brown97404f22010-12-14 16:13:57 +00002679 return change;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002680}
2681EXPORT_SYMBOL_GPL(snd_soc_dapm_put_value_enum_double);
2682
2683/**
Mark Brown8b37dbd2009-02-28 21:14:20 +00002684 * snd_soc_dapm_info_pin_switch - Info for a pin switch
2685 *
2686 * @kcontrol: mixer control
2687 * @uinfo: control element information
2688 *
2689 * Callback to provide information about a pin switch control.
2690 */
2691int snd_soc_dapm_info_pin_switch(struct snd_kcontrol *kcontrol,
2692 struct snd_ctl_elem_info *uinfo)
2693{
2694 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2695 uinfo->count = 1;
2696 uinfo->value.integer.min = 0;
2697 uinfo->value.integer.max = 1;
2698
2699 return 0;
2700}
2701EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch);
2702
2703/**
2704 * snd_soc_dapm_get_pin_switch - Get information for a pin switch
2705 *
2706 * @kcontrol: mixer control
2707 * @ucontrol: Value
2708 */
2709int snd_soc_dapm_get_pin_switch(struct snd_kcontrol *kcontrol,
2710 struct snd_ctl_elem_value *ucontrol)
2711{
Mark Brown48a8c392012-02-14 17:11:15 -08002712 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
Mark Brown8b37dbd2009-02-28 21:14:20 +00002713 const char *pin = (const char *)kcontrol->private_value;
2714
Liam Girdwood3cd04342012-03-09 12:02:08 +00002715 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Mark Brown8b37dbd2009-02-28 21:14:20 +00002716
2717 ucontrol->value.integer.value[0] =
Mark Brown48a8c392012-02-14 17:11:15 -08002718 snd_soc_dapm_get_pin_status(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00002719
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002720 mutex_unlock(&card->dapm_mutex);
Mark Brown8b37dbd2009-02-28 21:14:20 +00002721
2722 return 0;
2723}
2724EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch);
2725
2726/**
2727 * snd_soc_dapm_put_pin_switch - Set information for a pin switch
2728 *
2729 * @kcontrol: mixer control
2730 * @ucontrol: Value
2731 */
2732int snd_soc_dapm_put_pin_switch(struct snd_kcontrol *kcontrol,
2733 struct snd_ctl_elem_value *ucontrol)
2734{
Mark Brown48a8c392012-02-14 17:11:15 -08002735 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
Mark Brown8b37dbd2009-02-28 21:14:20 +00002736 const char *pin = (const char *)kcontrol->private_value;
2737
Liam Girdwood3cd04342012-03-09 12:02:08 +00002738 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Mark Brown8b37dbd2009-02-28 21:14:20 +00002739
2740 if (ucontrol->value.integer.value[0])
Mark Brown48a8c392012-02-14 17:11:15 -08002741 snd_soc_dapm_enable_pin(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00002742 else
Mark Brown48a8c392012-02-14 17:11:15 -08002743 snd_soc_dapm_disable_pin(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00002744
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002745 mutex_unlock(&card->dapm_mutex);
2746
Mark Brown48a8c392012-02-14 17:11:15 -08002747 snd_soc_dapm_sync(&card->dapm);
Mark Brown8b37dbd2009-02-28 21:14:20 +00002748 return 0;
2749}
2750EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch);
2751
Mark Brown5ba06fc2012-02-16 11:07:13 -08002752static struct snd_soc_dapm_widget *
2753snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
2754 const struct snd_soc_dapm_widget *widget)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002755{
2756 struct snd_soc_dapm_widget *w;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002757 size_t name_len;
Mark Brown62ea8742012-01-21 21:14:48 +00002758 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002759
2760 if ((w = dapm_cnew_widget(widget)) == NULL)
Mark Brown5ba06fc2012-02-16 11:07:13 -08002761 return NULL;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002762
Mark Brown62ea8742012-01-21 21:14:48 +00002763 switch (w->id) {
2764 case snd_soc_dapm_regulator_supply:
Liam Girdwooda3cc0562012-03-09 17:20:16 +00002765 w->regulator = devm_regulator_get(dapm->dev, w->name);
2766 if (IS_ERR(w->regulator)) {
2767 ret = PTR_ERR(w->regulator);
Mark Brown62ea8742012-01-21 21:14:48 +00002768 dev_err(dapm->dev, "Failed to request %s: %d\n",
2769 w->name, ret);
Mark Brown5ba06fc2012-02-16 11:07:13 -08002770 return NULL;
Mark Brown62ea8742012-01-21 21:14:48 +00002771 }
2772 break;
2773 default:
2774 break;
2775 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02002776
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002777 name_len = strlen(widget->name) + 1;
Mark Brown88e8b9a2011-03-02 18:18:24 +00002778 if (dapm->codec && dapm->codec->name_prefix)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002779 name_len += 1 + strlen(dapm->codec->name_prefix);
2780 w->name = kmalloc(name_len, GFP_KERNEL);
2781 if (w->name == NULL) {
2782 kfree(w);
Mark Brown5ba06fc2012-02-16 11:07:13 -08002783 return NULL;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002784 }
Mark Brown88e8b9a2011-03-02 18:18:24 +00002785 if (dapm->codec && dapm->codec->name_prefix)
Mark Brown888df392012-02-16 19:37:51 -08002786 snprintf((char *)w->name, name_len, "%s %s",
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002787 dapm->codec->name_prefix, widget->name);
2788 else
Mark Brown888df392012-02-16 19:37:51 -08002789 snprintf((char *)w->name, name_len, "%s", widget->name);
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002790
Mark Brown7ca3a182011-10-08 14:04:50 +01002791 switch (w->id) {
2792 case snd_soc_dapm_switch:
2793 case snd_soc_dapm_mixer:
2794 case snd_soc_dapm_mixer_named_ctl:
2795 w->power_check = dapm_generic_check_power;
2796 break;
2797 case snd_soc_dapm_mux:
2798 case snd_soc_dapm_virt_mux:
2799 case snd_soc_dapm_value_mux:
2800 w->power_check = dapm_generic_check_power;
2801 break;
2802 case snd_soc_dapm_adc:
2803 case snd_soc_dapm_aif_out:
2804 w->power_check = dapm_adc_check_power;
2805 break;
2806 case snd_soc_dapm_dac:
2807 case snd_soc_dapm_aif_in:
2808 w->power_check = dapm_dac_check_power;
2809 break;
2810 case snd_soc_dapm_pga:
2811 case snd_soc_dapm_out_drv:
2812 case snd_soc_dapm_input:
2813 case snd_soc_dapm_output:
2814 case snd_soc_dapm_micbias:
2815 case snd_soc_dapm_spk:
2816 case snd_soc_dapm_hp:
2817 case snd_soc_dapm_mic:
2818 case snd_soc_dapm_line:
2819 w->power_check = dapm_generic_check_power;
2820 break;
2821 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00002822 case snd_soc_dapm_regulator_supply:
Mark Brown7ca3a182011-10-08 14:04:50 +01002823 w->power_check = dapm_supply_check_power;
2824 break;
Mark Brown888df392012-02-16 19:37:51 -08002825 case snd_soc_dapm_dai:
2826 w->power_check = dapm_dai_check_power;
2827 break;
Mark Brown7ca3a182011-10-08 14:04:50 +01002828 default:
2829 w->power_check = dapm_always_on_check_power;
2830 break;
2831 }
2832
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002833 dapm->n_widgets++;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002834 w->dapm = dapm;
2835 w->codec = dapm->codec;
Liam Girdwoodb7950642011-07-04 22:10:52 +01002836 w->platform = dapm->platform;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002837 INIT_LIST_HEAD(&w->sources);
2838 INIT_LIST_HEAD(&w->sinks);
2839 INIT_LIST_HEAD(&w->list);
Mark Browndb432b42011-10-03 21:06:40 +01002840 INIT_LIST_HEAD(&w->dirty);
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002841 list_add(&w->list, &dapm->card->widgets);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002842
2843 /* machine layer set ups unconnected pins and insertions */
2844 w->connected = 1;
Mark Brown5ba06fc2012-02-16 11:07:13 -08002845 return w;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002846}
Richard Purdie2b97eab2006-10-06 18:32:18 +02002847
2848/**
Mark Brown4ba13272008-05-13 14:51:19 +02002849 * snd_soc_dapm_new_controls - create new dapm controls
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002850 * @dapm: DAPM context
Mark Brown4ba13272008-05-13 14:51:19 +02002851 * @widget: widget array
2852 * @num: number of widgets
2853 *
2854 * Creates new DAPM controls based upon the templates.
2855 *
2856 * Returns 0 for success else error.
2857 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002858int snd_soc_dapm_new_controls(struct snd_soc_dapm_context *dapm,
Mark Brown4ba13272008-05-13 14:51:19 +02002859 const struct snd_soc_dapm_widget *widget,
2860 int num)
2861{
Mark Brown5ba06fc2012-02-16 11:07:13 -08002862 struct snd_soc_dapm_widget *w;
2863 int i;
Mark Brown4ba13272008-05-13 14:51:19 +02002864
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002865 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brown4ba13272008-05-13 14:51:19 +02002866 for (i = 0; i < num; i++) {
Mark Brown5ba06fc2012-02-16 11:07:13 -08002867 w = snd_soc_dapm_new_control(dapm, widget);
2868 if (!w) {
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02002869 dev_err(dapm->dev,
Mark Brown5ba06fc2012-02-16 11:07:13 -08002870 "ASoC: Failed to create DAPM control %s\n",
2871 widget->name);
2872 return -ENOMEM;
Mark Brownb8b33cb2008-12-18 11:19:30 +00002873 }
Mark Brown4ba13272008-05-13 14:51:19 +02002874 widget++;
2875 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002876 mutex_unlock(&dapm->card->dapm_mutex);
Mark Brown4ba13272008-05-13 14:51:19 +02002877 return 0;
2878}
2879EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls);
2880
Mark Brown888df392012-02-16 19:37:51 -08002881int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm,
2882 struct snd_soc_dai *dai)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002883{
Mark Brown888df392012-02-16 19:37:51 -08002884 struct snd_soc_dapm_widget template;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002885 struct snd_soc_dapm_widget *w;
2886
Mark Brown888df392012-02-16 19:37:51 -08002887 WARN_ON(dapm->dev != dai->dev);
2888
2889 memset(&template, 0, sizeof(template));
2890 template.reg = SND_SOC_NOPM;
2891
2892 if (dai->driver->playback.stream_name) {
2893 template.id = snd_soc_dapm_dai;
2894 template.name = dai->driver->playback.stream_name;
2895 template.sname = dai->driver->playback.stream_name;
2896
2897 dev_dbg(dai->dev, "adding %s widget\n",
2898 template.name);
2899
2900 w = snd_soc_dapm_new_control(dapm, &template);
2901 if (!w) {
2902 dev_err(dapm->dev, "Failed to create %s widget\n",
2903 dai->driver->playback.stream_name);
2904 }
2905
2906 w->priv = dai;
2907 dai->playback_widget = w;
2908 }
2909
2910 if (dai->driver->capture.stream_name) {
2911 template.id = snd_soc_dapm_dai;
2912 template.name = dai->driver->capture.stream_name;
2913 template.sname = dai->driver->capture.stream_name;
2914
2915 dev_dbg(dai->dev, "adding %s widget\n",
2916 template.name);
2917
2918 w = snd_soc_dapm_new_control(dapm, &template);
2919 if (!w) {
2920 dev_err(dapm->dev, "Failed to create %s widget\n",
2921 dai->driver->capture.stream_name);
2922 }
2923
2924 w->priv = dai;
2925 dai->capture_widget = w;
2926 }
2927
2928 return 0;
2929}
2930
2931int snd_soc_dapm_link_dai_widgets(struct snd_soc_card *card)
2932{
2933 struct snd_soc_dapm_widget *dai_w, *w;
2934 struct snd_soc_dai *dai;
2935 struct snd_soc_dapm_route r;
2936
2937 memset(&r, 0, sizeof(r));
2938
2939 /* For each DAI widget... */
2940 list_for_each_entry(dai_w, &card->widgets, list) {
2941 if (dai_w->id != snd_soc_dapm_dai)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002942 continue;
Mark Brown888df392012-02-16 19:37:51 -08002943
2944 dai = dai_w->priv;
2945
2946 /* ...find all widgets with the same stream and link them */
2947 list_for_each_entry(w, &card->widgets, list) {
2948 if (w->dapm != dai_w->dapm)
2949 continue;
2950
2951 if (w->id == snd_soc_dapm_dai)
2952 continue;
2953
2954 if (!w->sname)
2955 continue;
2956
2957 if (dai->driver->playback.stream_name &&
2958 strstr(w->sname,
2959 dai->driver->playback.stream_name)) {
2960 r.source = dai->playback_widget->name;
2961 r.sink = w->name;
2962 dev_dbg(dai->dev, "%s -> %s\n",
2963 r.source, r.sink);
2964
2965 snd_soc_dapm_add_route(w->dapm, &r);
2966 }
2967
2968 if (dai->driver->capture.stream_name &&
2969 strstr(w->sname,
2970 dai->driver->capture.stream_name)) {
2971 r.source = w->name;
2972 r.sink = dai->capture_widget->name;
2973 dev_dbg(dai->dev, "%s -> %s\n",
2974 r.source, r.sink);
2975
2976 snd_soc_dapm_add_route(w->dapm, &r);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002977 }
2978 }
2979 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02002980
Mark Brown888df392012-02-16 19:37:51 -08002981 return 0;
2982}
Liam Girdwood64a648c2011-07-25 11:15:15 +01002983
Liam Girdwoodd9b09512012-03-07 16:32:59 +00002984static void soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
2985 int event)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002986{
Mark Brown7bd3a6f2012-02-16 15:03:27 -08002987
Liam Girdwoodd9b09512012-03-07 16:32:59 +00002988 struct snd_soc_dapm_widget *w_cpu, *w_codec;
2989 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2990 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Mark Brown7bd3a6f2012-02-16 15:03:27 -08002991
Liam Girdwoodd9b09512012-03-07 16:32:59 +00002992 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
2993 w_cpu = cpu_dai->playback_widget;
2994 w_codec = codec_dai->playback_widget;
2995 } else {
2996 w_cpu = cpu_dai->capture_widget;
2997 w_codec = codec_dai->capture_widget;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002998 }
2999
Liam Girdwoodd9b09512012-03-07 16:32:59 +00003000 if (w_cpu) {
3001
3002 dapm_mark_dirty(w_cpu, "stream event");
3003
3004 switch (event) {
3005 case SND_SOC_DAPM_STREAM_START:
3006 w_cpu->active = 1;
3007 break;
3008 case SND_SOC_DAPM_STREAM_STOP:
3009 w_cpu->active = 0;
3010 break;
3011 case SND_SOC_DAPM_STREAM_SUSPEND:
3012 case SND_SOC_DAPM_STREAM_RESUME:
3013 case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
3014 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
3015 break;
3016 }
3017 }
3018
3019 if (w_codec) {
3020
3021 dapm_mark_dirty(w_codec, "stream event");
3022
3023 switch (event) {
3024 case SND_SOC_DAPM_STREAM_START:
3025 w_codec->active = 1;
3026 break;
3027 case SND_SOC_DAPM_STREAM_STOP:
3028 w_codec->active = 0;
3029 break;
3030 case SND_SOC_DAPM_STREAM_SUSPEND:
3031 case SND_SOC_DAPM_STREAM_RESUME:
3032 case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
3033 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
3034 break;
3035 }
3036 }
3037
3038 dapm_power_widgets(&rtd->card->dapm, event);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003039}
3040
3041/**
3042 * snd_soc_dapm_stream_event - send a stream event to the dapm core
3043 * @rtd: PCM runtime data
3044 * @stream: stream name
3045 * @event: stream event
3046 *
3047 * Sends a stream event to the dapm core. The core then makes any
3048 * necessary widget power changes.
3049 *
3050 * Returns 0 for success else error.
3051 */
Liam Girdwoodd9b09512012-03-07 16:32:59 +00003052void snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
3053 int event)
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003054{
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003055 struct snd_soc_card *card = rtd->card;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003056
Liam Girdwood3cd04342012-03-09 12:02:08 +00003057 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Liam Girdwoodd9b09512012-03-07 16:32:59 +00003058 soc_dapm_stream_event(rtd, stream, event);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003059 mutex_unlock(&card->dapm_mutex);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003060}
Richard Purdie2b97eab2006-10-06 18:32:18 +02003061
3062/**
Liam Girdwooda5302182008-07-07 13:35:17 +01003063 * snd_soc_dapm_enable_pin - enable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003064 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01003065 * @pin: pin name
Richard Purdie2b97eab2006-10-06 18:32:18 +02003066 *
Mark Brown74b8f952009-06-06 11:26:15 +01003067 * Enables input/output pin and its parents or children widgets iff there is
Liam Girdwooda5302182008-07-07 13:35:17 +01003068 * a valid audio route and active audio stream.
3069 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3070 * do any widget power switching.
Richard Purdie2b97eab2006-10-06 18:32:18 +02003071 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003072int snd_soc_dapm_enable_pin(struct snd_soc_dapm_context *dapm, const char *pin)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003073{
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003074 return snd_soc_dapm_set_pin(dapm, pin, 1);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003075}
Liam Girdwooda5302182008-07-07 13:35:17 +01003076EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003077
3078/**
Mark Brownda341832010-03-15 19:23:37 +00003079 * snd_soc_dapm_force_enable_pin - force a pin to be enabled
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003080 * @dapm: DAPM context
Mark Brownda341832010-03-15 19:23:37 +00003081 * @pin: pin name
3082 *
3083 * Enables input/output pin regardless of any other state. This is
3084 * intended for use with microphone bias supplies used in microphone
3085 * jack detection.
3086 *
3087 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3088 * do any widget power switching.
3089 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003090int snd_soc_dapm_force_enable_pin(struct snd_soc_dapm_context *dapm,
3091 const char *pin)
Mark Brownda341832010-03-15 19:23:37 +00003092{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02003093 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
Mark Brownda341832010-03-15 19:23:37 +00003094
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02003095 if (!w) {
3096 dev_err(dapm->dev, "dapm: unknown pin %s\n", pin);
3097 return -EINVAL;
Mark Brownda341832010-03-15 19:23:37 +00003098 }
3099
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02003100 dev_dbg(w->dapm->dev, "dapm: force enable pin %s\n", pin);
3101 w->connected = 1;
3102 w->force = 1;
Mark Brown75c1f892011-10-04 22:28:08 +01003103 dapm_mark_dirty(w, "force enable");
Mark Brown0d867332011-04-06 11:38:14 +09003104
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02003105 return 0;
Mark Brownda341832010-03-15 19:23:37 +00003106}
3107EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin);
3108
3109/**
Liam Girdwooda5302182008-07-07 13:35:17 +01003110 * snd_soc_dapm_disable_pin - disable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003111 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01003112 * @pin: pin name
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02003113 *
Mark Brown74b8f952009-06-06 11:26:15 +01003114 * Disables input/output pin and its parents or children widgets.
Liam Girdwooda5302182008-07-07 13:35:17 +01003115 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3116 * do any widget power switching.
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02003117 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003118int snd_soc_dapm_disable_pin(struct snd_soc_dapm_context *dapm,
3119 const char *pin)
Liam Girdwooda5302182008-07-07 13:35:17 +01003120{
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003121 return snd_soc_dapm_set_pin(dapm, pin, 0);
Liam Girdwooda5302182008-07-07 13:35:17 +01003122}
3123EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin);
3124
3125/**
Mark Brown5817b522008-09-24 11:23:11 +01003126 * snd_soc_dapm_nc_pin - permanently disable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003127 * @dapm: DAPM context
Mark Brown5817b522008-09-24 11:23:11 +01003128 * @pin: pin name
3129 *
3130 * Marks the specified pin as being not connected, disabling it along
3131 * any parent or child widgets. At present this is identical to
3132 * snd_soc_dapm_disable_pin() but in future it will be extended to do
3133 * additional things such as disabling controls which only affect
3134 * paths through the pin.
3135 *
3136 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3137 * do any widget power switching.
3138 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003139int snd_soc_dapm_nc_pin(struct snd_soc_dapm_context *dapm, const char *pin)
Mark Brown5817b522008-09-24 11:23:11 +01003140{
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003141 return snd_soc_dapm_set_pin(dapm, pin, 0);
Mark Brown5817b522008-09-24 11:23:11 +01003142}
3143EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin);
3144
3145/**
Liam Girdwooda5302182008-07-07 13:35:17 +01003146 * snd_soc_dapm_get_pin_status - get audio pin status
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003147 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01003148 * @pin: audio signal pin endpoint (or start point)
3149 *
3150 * Get audio pin status - connected or disconnected.
3151 *
3152 * Returns 1 for connected otherwise 0.
3153 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003154int snd_soc_dapm_get_pin_status(struct snd_soc_dapm_context *dapm,
3155 const char *pin)
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02003156{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02003157 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02003158
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02003159 if (w)
3160 return w->connected;
Stephen Warrena68b38a2011-04-19 15:25:11 -06003161
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02003162 return 0;
3163}
Liam Girdwooda5302182008-07-07 13:35:17 +01003164EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status);
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02003165
3166/**
Mark Brown1547aba2010-05-07 21:11:40 +01003167 * snd_soc_dapm_ignore_suspend - ignore suspend status for DAPM endpoint
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003168 * @dapm: DAPM context
Mark Brown1547aba2010-05-07 21:11:40 +01003169 * @pin: audio signal pin endpoint (or start point)
3170 *
3171 * Mark the given endpoint or pin as ignoring suspend. When the
3172 * system is disabled a path between two endpoints flagged as ignoring
3173 * suspend will not be disabled. The path must already be enabled via
3174 * normal means at suspend time, it will not be turned on if it was not
3175 * already enabled.
3176 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003177int snd_soc_dapm_ignore_suspend(struct snd_soc_dapm_context *dapm,
3178 const char *pin)
Mark Brown1547aba2010-05-07 21:11:40 +01003179{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02003180 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, false);
Mark Brown1547aba2010-05-07 21:11:40 +01003181
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02003182 if (!w) {
3183 dev_err(dapm->dev, "dapm: unknown pin %s\n", pin);
3184 return -EINVAL;
Mark Brown1547aba2010-05-07 21:11:40 +01003185 }
3186
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02003187 w->ignore_suspend = 1;
3188
3189 return 0;
Mark Brown1547aba2010-05-07 21:11:40 +01003190}
3191EXPORT_SYMBOL_GPL(snd_soc_dapm_ignore_suspend);
3192
Stephen Warren16332812011-11-23 12:42:04 -07003193static bool snd_soc_dapm_widget_in_card_paths(struct snd_soc_card *card,
3194 struct snd_soc_dapm_widget *w)
3195{
3196 struct snd_soc_dapm_path *p;
3197
3198 list_for_each_entry(p, &card->paths, list) {
3199 if ((p->source == w) || (p->sink == w)) {
3200 dev_dbg(card->dev,
3201 "... Path %s(id:%d dapm:%p) - %s(id:%d dapm:%p)\n",
3202 p->source->name, p->source->id, p->source->dapm,
3203 p->sink->name, p->sink->id, p->sink->dapm);
3204
3205 /* Connected to something other than the codec */
3206 if (p->source->dapm != p->sink->dapm)
3207 return true;
3208 /*
3209 * Loopback connection from codec external pin to
3210 * codec external pin
3211 */
3212 if (p->sink->id == snd_soc_dapm_input) {
3213 switch (p->source->id) {
3214 case snd_soc_dapm_output:
3215 case snd_soc_dapm_micbias:
3216 return true;
3217 default:
3218 break;
3219 }
3220 }
3221 }
3222 }
3223
3224 return false;
3225}
3226
3227/**
3228 * snd_soc_dapm_auto_nc_codec_pins - call snd_soc_dapm_nc_pin for unused pins
3229 * @codec: The codec whose pins should be processed
3230 *
3231 * Automatically call snd_soc_dapm_nc_pin() for any external pins in the codec
3232 * which are unused. Pins are used if they are connected externally to the
3233 * codec, whether that be to some other device, or a loop-back connection to
3234 * the codec itself.
3235 */
3236void snd_soc_dapm_auto_nc_codec_pins(struct snd_soc_codec *codec)
3237{
3238 struct snd_soc_card *card = codec->card;
3239 struct snd_soc_dapm_context *dapm = &codec->dapm;
3240 struct snd_soc_dapm_widget *w;
3241
Mark Browna094b802011-11-27 19:42:20 +00003242 dev_dbg(codec->dev, "Auto NC: DAPMs: card:%p codec:%p\n",
Stephen Warren16332812011-11-23 12:42:04 -07003243 &card->dapm, &codec->dapm);
3244
3245 list_for_each_entry(w, &card->widgets, list) {
3246 if (w->dapm != dapm)
3247 continue;
3248 switch (w->id) {
3249 case snd_soc_dapm_input:
3250 case snd_soc_dapm_output:
3251 case snd_soc_dapm_micbias:
Mark Browna094b802011-11-27 19:42:20 +00003252 dev_dbg(codec->dev, "Auto NC: Checking widget %s\n",
Stephen Warren16332812011-11-23 12:42:04 -07003253 w->name);
3254 if (!snd_soc_dapm_widget_in_card_paths(card, w)) {
Mark Browna094b802011-11-27 19:42:20 +00003255 dev_dbg(codec->dev,
Stephen Warren16332812011-11-23 12:42:04 -07003256 "... Not in map; disabling\n");
3257 snd_soc_dapm_nc_pin(dapm, w->name);
3258 }
3259 break;
3260 default:
3261 break;
3262 }
3263 }
3264}
3265
Mark Brown1547aba2010-05-07 21:11:40 +01003266/**
Richard Purdie2b97eab2006-10-06 18:32:18 +02003267 * snd_soc_dapm_free - free dapm resources
Peter Ujfalusi728a5222011-08-26 16:33:52 +03003268 * @dapm: DAPM context
Richard Purdie2b97eab2006-10-06 18:32:18 +02003269 *
3270 * Free all dapm widgets and resources.
3271 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003272void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003273{
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003274 snd_soc_dapm_sys_remove(dapm->dev);
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02003275 dapm_debugfs_cleanup(dapm);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003276 dapm_free_widgets(dapm);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02003277 list_del(&dapm->list);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003278}
3279EXPORT_SYMBOL_GPL(snd_soc_dapm_free);
3280
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003281static void soc_dapm_shutdown_codec(struct snd_soc_dapm_context *dapm)
Mark Brown51737472009-06-22 13:16:51 +01003282{
Mark Brown51737472009-06-22 13:16:51 +01003283 struct snd_soc_dapm_widget *w;
3284 LIST_HEAD(down_list);
3285 int powerdown = 0;
3286
Jarkko Nikula97c866d2010-12-14 12:18:31 +02003287 list_for_each_entry(w, &dapm->card->widgets, list) {
3288 if (w->dapm != dapm)
3289 continue;
Mark Brown51737472009-06-22 13:16:51 +01003290 if (w->power) {
Mark Brown828a8422011-01-15 13:14:30 +00003291 dapm_seq_insert(w, &down_list, false);
Mark Brownc2caa4d2009-06-26 15:36:56 +01003292 w->power = 0;
Mark Brown51737472009-06-22 13:16:51 +01003293 powerdown = 1;
3294 }
3295 }
3296
3297 /* If there were no widgets to power down we're already in
3298 * standby.
3299 */
3300 if (powerdown) {
Mark Brown7679e422012-02-22 15:52:56 +00003301 if (dapm->bias_level == SND_SOC_BIAS_ON)
3302 snd_soc_dapm_set_bias_level(dapm,
3303 SND_SOC_BIAS_PREPARE);
Mark Brown828a8422011-01-15 13:14:30 +00003304 dapm_seq_run(dapm, &down_list, 0, false);
Mark Brown7679e422012-02-22 15:52:56 +00003305 if (dapm->bias_level == SND_SOC_BIAS_PREPARE)
3306 snd_soc_dapm_set_bias_level(dapm,
3307 SND_SOC_BIAS_STANDBY);
Mark Brown51737472009-06-22 13:16:51 +01003308 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003309}
Mark Brown51737472009-06-22 13:16:51 +01003310
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003311/*
3312 * snd_soc_dapm_shutdown - callback for system shutdown
3313 */
3314void snd_soc_dapm_shutdown(struct snd_soc_card *card)
3315{
3316 struct snd_soc_codec *codec;
3317
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003318 list_for_each_entry(codec, &card->codec_dev_list, list) {
3319 soc_dapm_shutdown_codec(&codec->dapm);
Mark Brown7679e422012-02-22 15:52:56 +00003320 if (codec->dapm.bias_level == SND_SOC_BIAS_STANDBY)
3321 snd_soc_dapm_set_bias_level(&codec->dapm,
3322 SND_SOC_BIAS_OFF);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003323 }
Mark Brown51737472009-06-22 13:16:51 +01003324}
3325
Richard Purdie2b97eab2006-10-06 18:32:18 +02003326/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01003327MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Richard Purdie2b97eab2006-10-06 18:32:18 +02003328MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
3329MODULE_LICENSE("GPL");