blob: efad248efd4faa0956e649547aa2a9fccdcfae3c [file] [log] [blame]
Liam Girdwoodddee6272011-06-09 14:45:53 +01001/*
2 * soc-pcm.c -- ALSA SoC PCM
3 *
4 * Copyright 2005 Wolfson Microelectronics PLC.
5 * Copyright 2005 Openedhand Ltd.
6 * Copyright (C) 2010 Slimlogic Ltd.
7 * Copyright (C) 2010 Texas Instruments Inc.
8 *
9 * Authors: Liam Girdwood <lrg@ti.com>
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +020010 * Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoodddee6272011-06-09 14:45:53 +010011 *
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version.
16 *
17 */
18
19#include <linux/kernel.h>
20#include <linux/init.h>
21#include <linux/delay.h>
Nicolin Chen988e8cc2013-11-04 14:57:31 +080022#include <linux/pinctrl/consumer.h>
Mark Brownd6652ef2011-12-03 20:14:31 +000023#include <linux/pm_runtime.h>
Liam Girdwoodddee6272011-06-09 14:45:53 +010024#include <linux/slab.h>
25#include <linux/workqueue.h>
Liam Girdwood01d75842012-04-25 12:12:49 +010026#include <linux/export.h>
Liam Girdwoodf86dcef2012-04-25 12:12:50 +010027#include <linux/debugfs.h>
Liam Girdwoodddee6272011-06-09 14:45:53 +010028#include <sound/core.h>
29#include <sound/pcm.h>
30#include <sound/pcm_params.h>
31#include <sound/soc.h>
Liam Girdwood01d75842012-04-25 12:12:49 +010032#include <sound/soc-dpcm.h>
Liam Girdwoodddee6272011-06-09 14:45:53 +010033#include <sound/initval.h>
34
Liam Girdwood01d75842012-04-25 12:12:49 +010035#define DPCM_MAX_BE_USERS 8
36
Ricard Wanderlofcde79032015-08-24 14:16:51 +020037/*
38 * snd_soc_dai_stream_valid() - check if a DAI supports the given stream
39 *
40 * Returns true if the DAI supports the indicated stream type.
41 */
42static bool snd_soc_dai_stream_valid(struct snd_soc_dai *dai, int stream)
43{
44 struct snd_soc_pcm_stream *codec_stream;
45
46 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
47 codec_stream = &dai->driver->playback;
48 else
49 codec_stream = &dai->driver->capture;
50
51 /* If the codec specifies any rate at all, it supports the stream. */
52 return codec_stream->rates;
53}
54
Lars-Peter Clausen90996f42013-05-14 11:05:30 +020055/**
Lars-Peter Clausen24894b72014-03-05 13:17:43 +010056 * snd_soc_runtime_activate() - Increment active count for PCM runtime components
57 * @rtd: ASoC PCM runtime that is activated
58 * @stream: Direction of the PCM stream
59 *
60 * Increments the active count for all the DAIs and components attached to a PCM
61 * runtime. Should typically be called when a stream is opened.
62 *
63 * Must be called with the rtd->pcm_mutex being held
64 */
65void snd_soc_runtime_activate(struct snd_soc_pcm_runtime *rtd, int stream)
66{
67 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +020068 int i;
Lars-Peter Clausen24894b72014-03-05 13:17:43 +010069
70 lockdep_assert_held(&rtd->pcm_mutex);
71
72 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
73 cpu_dai->playback_active++;
Benoit Cousson2e5894d2014-07-08 23:19:35 +020074 for (i = 0; i < rtd->num_codecs; i++)
75 rtd->codec_dais[i]->playback_active++;
Lars-Peter Clausen24894b72014-03-05 13:17:43 +010076 } else {
77 cpu_dai->capture_active++;
Benoit Cousson2e5894d2014-07-08 23:19:35 +020078 for (i = 0; i < rtd->num_codecs; i++)
79 rtd->codec_dais[i]->capture_active++;
Lars-Peter Clausen24894b72014-03-05 13:17:43 +010080 }
81
82 cpu_dai->active++;
Lars-Peter Clausencdde4cc2014-03-05 13:17:47 +010083 cpu_dai->component->active++;
Benoit Cousson2e5894d2014-07-08 23:19:35 +020084 for (i = 0; i < rtd->num_codecs; i++) {
85 rtd->codec_dais[i]->active++;
86 rtd->codec_dais[i]->component->active++;
87 }
Lars-Peter Clausen24894b72014-03-05 13:17:43 +010088}
89
90/**
91 * snd_soc_runtime_deactivate() - Decrement active count for PCM runtime components
92 * @rtd: ASoC PCM runtime that is deactivated
93 * @stream: Direction of the PCM stream
94 *
95 * Decrements the active count for all the DAIs and components attached to a PCM
96 * runtime. Should typically be called when a stream is closed.
97 *
98 * Must be called with the rtd->pcm_mutex being held
99 */
100void snd_soc_runtime_deactivate(struct snd_soc_pcm_runtime *rtd, int stream)
101{
102 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200103 int i;
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100104
105 lockdep_assert_held(&rtd->pcm_mutex);
106
107 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
108 cpu_dai->playback_active--;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200109 for (i = 0; i < rtd->num_codecs; i++)
110 rtd->codec_dais[i]->playback_active--;
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100111 } else {
112 cpu_dai->capture_active--;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200113 for (i = 0; i < rtd->num_codecs; i++)
114 rtd->codec_dais[i]->capture_active--;
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100115 }
116
117 cpu_dai->active--;
Lars-Peter Clausencdde4cc2014-03-05 13:17:47 +0100118 cpu_dai->component->active--;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200119 for (i = 0; i < rtd->num_codecs; i++) {
120 rtd->codec_dais[i]->component->active--;
121 rtd->codec_dais[i]->active--;
122 }
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100123}
124
125/**
Lars-Peter Clausen208a1582014-03-05 13:17:42 +0100126 * snd_soc_runtime_ignore_pmdown_time() - Check whether to ignore the power down delay
127 * @rtd: The ASoC PCM runtime that should be checked.
128 *
129 * This function checks whether the power down delay should be ignored for a
130 * specific PCM runtime. Returns true if the delay is 0, if it the DAI link has
131 * been configured to ignore the delay, or if none of the components benefits
132 * from having the delay.
133 */
134bool snd_soc_runtime_ignore_pmdown_time(struct snd_soc_pcm_runtime *rtd)
135{
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200136 int i;
137 bool ignore = true;
138
Lars-Peter Clausen208a1582014-03-05 13:17:42 +0100139 if (!rtd->pmdown_time || rtd->dai_link->ignore_pmdown_time)
140 return true;
141
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200142 for (i = 0; i < rtd->num_codecs; i++)
143 ignore &= rtd->codec_dais[i]->component->ignore_pmdown_time;
144
145 return rtd->cpu_dai->component->ignore_pmdown_time && ignore;
Lars-Peter Clausen208a1582014-03-05 13:17:42 +0100146}
147
148/**
Lars-Peter Clausen90996f42013-05-14 11:05:30 +0200149 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
150 * @substream: the pcm substream
151 * @hw: the hardware parameters
152 *
153 * Sets the substream runtime hardware parameters.
154 */
155int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
156 const struct snd_pcm_hardware *hw)
157{
158 struct snd_pcm_runtime *runtime = substream->runtime;
159 runtime->hw.info = hw->info;
160 runtime->hw.formats = hw->formats;
161 runtime->hw.period_bytes_min = hw->period_bytes_min;
162 runtime->hw.period_bytes_max = hw->period_bytes_max;
163 runtime->hw.periods_min = hw->periods_min;
164 runtime->hw.periods_max = hw->periods_max;
165 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
166 runtime->hw.fifo_size = hw->fifo_size;
167 return 0;
168}
169EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
170
Liam Girdwood01d75842012-04-25 12:12:49 +0100171/* DPCM stream event, send event to FE and all active BEs. */
Liam Girdwood23607022014-01-17 17:03:55 +0000172int dpcm_dapm_stream_event(struct snd_soc_pcm_runtime *fe, int dir,
Liam Girdwood01d75842012-04-25 12:12:49 +0100173 int event)
174{
175 struct snd_soc_dpcm *dpcm;
176
177 list_for_each_entry(dpcm, &fe->dpcm[dir].be_clients, list_be) {
178
179 struct snd_soc_pcm_runtime *be = dpcm->be;
180
Liam Girdwood103d84a2012-11-19 14:39:15 +0000181 dev_dbg(be->dev, "ASoC: BE %s event %d dir %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +0100182 be->dai_link->name, event, dir);
183
184 snd_soc_dapm_stream_event(be, dir, event);
185 }
186
187 snd_soc_dapm_stream_event(fe, dir, event);
188
189 return 0;
190}
191
Dong Aisheng17841022011-08-29 17:15:14 +0800192static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream,
193 struct snd_soc_dai *soc_dai)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100194{
195 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100196 int ret;
197
Nicolin Chen3635bf02013-11-13 18:56:24 +0800198 if (soc_dai->rate && (soc_dai->driver->symmetric_rates ||
199 rtd->dai_link->symmetric_rates)) {
200 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %dHz rate\n",
201 soc_dai->rate);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100202
Lars-Peter Clausen4dcdd432015-10-18 15:39:28 +0200203 ret = snd_pcm_hw_constraint_single(substream->runtime,
Nicolin Chen3635bf02013-11-13 18:56:24 +0800204 SNDRV_PCM_HW_PARAM_RATE,
Lars-Peter Clausen4dcdd432015-10-18 15:39:28 +0200205 soc_dai->rate);
Nicolin Chen3635bf02013-11-13 18:56:24 +0800206 if (ret < 0) {
207 dev_err(soc_dai->dev,
208 "ASoC: Unable to apply rate constraint: %d\n",
209 ret);
210 return ret;
211 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100212 }
213
Nicolin Chen3635bf02013-11-13 18:56:24 +0800214 if (soc_dai->channels && (soc_dai->driver->symmetric_channels ||
215 rtd->dai_link->symmetric_channels)) {
216 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %d channel(s)\n",
217 soc_dai->channels);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100218
Lars-Peter Clausen4dcdd432015-10-18 15:39:28 +0200219 ret = snd_pcm_hw_constraint_single(substream->runtime,
Nicolin Chen3635bf02013-11-13 18:56:24 +0800220 SNDRV_PCM_HW_PARAM_CHANNELS,
Nicolin Chen3635bf02013-11-13 18:56:24 +0800221 soc_dai->channels);
222 if (ret < 0) {
223 dev_err(soc_dai->dev,
224 "ASoC: Unable to apply channel symmetry constraint: %d\n",
225 ret);
226 return ret;
227 }
228 }
229
230 if (soc_dai->sample_bits && (soc_dai->driver->symmetric_samplebits ||
231 rtd->dai_link->symmetric_samplebits)) {
232 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %d sample bits\n",
233 soc_dai->sample_bits);
234
Lars-Peter Clausen4dcdd432015-10-18 15:39:28 +0200235 ret = snd_pcm_hw_constraint_single(substream->runtime,
Nicolin Chen3635bf02013-11-13 18:56:24 +0800236 SNDRV_PCM_HW_PARAM_SAMPLE_BITS,
Nicolin Chen3635bf02013-11-13 18:56:24 +0800237 soc_dai->sample_bits);
238 if (ret < 0) {
239 dev_err(soc_dai->dev,
240 "ASoC: Unable to apply sample bits symmetry constraint: %d\n",
241 ret);
242 return ret;
243 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100244 }
245
246 return 0;
247}
248
Nicolin Chen3635bf02013-11-13 18:56:24 +0800249static int soc_pcm_params_symmetry(struct snd_pcm_substream *substream,
250 struct snd_pcm_hw_params *params)
251{
252 struct snd_soc_pcm_runtime *rtd = substream->private_data;
253 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200254 unsigned int rate, channels, sample_bits, symmetry, i;
Nicolin Chen3635bf02013-11-13 18:56:24 +0800255
256 rate = params_rate(params);
257 channels = params_channels(params);
258 sample_bits = snd_pcm_format_physical_width(params_format(params));
259
260 /* reject unmatched parameters when applying symmetry */
261 symmetry = cpu_dai->driver->symmetric_rates ||
Nicolin Chen3635bf02013-11-13 18:56:24 +0800262 rtd->dai_link->symmetric_rates;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200263
264 for (i = 0; i < rtd->num_codecs; i++)
265 symmetry |= rtd->codec_dais[i]->driver->symmetric_rates;
266
Nicolin Chen3635bf02013-11-13 18:56:24 +0800267 if (symmetry && cpu_dai->rate && cpu_dai->rate != rate) {
268 dev_err(rtd->dev, "ASoC: unmatched rate symmetry: %d - %d\n",
269 cpu_dai->rate, rate);
270 return -EINVAL;
271 }
272
273 symmetry = cpu_dai->driver->symmetric_channels ||
Nicolin Chen3635bf02013-11-13 18:56:24 +0800274 rtd->dai_link->symmetric_channels;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200275
276 for (i = 0; i < rtd->num_codecs; i++)
277 symmetry |= rtd->codec_dais[i]->driver->symmetric_channels;
278
Nicolin Chen3635bf02013-11-13 18:56:24 +0800279 if (symmetry && cpu_dai->channels && cpu_dai->channels != channels) {
280 dev_err(rtd->dev, "ASoC: unmatched channel symmetry: %d - %d\n",
281 cpu_dai->channels, channels);
282 return -EINVAL;
283 }
284
285 symmetry = cpu_dai->driver->symmetric_samplebits ||
Nicolin Chen3635bf02013-11-13 18:56:24 +0800286 rtd->dai_link->symmetric_samplebits;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200287
288 for (i = 0; i < rtd->num_codecs; i++)
289 symmetry |= rtd->codec_dais[i]->driver->symmetric_samplebits;
290
Nicolin Chen3635bf02013-11-13 18:56:24 +0800291 if (symmetry && cpu_dai->sample_bits && cpu_dai->sample_bits != sample_bits) {
292 dev_err(rtd->dev, "ASoC: unmatched sample bits symmetry: %d - %d\n",
293 cpu_dai->sample_bits, sample_bits);
294 return -EINVAL;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100295 }
296
297 return 0;
298}
299
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100300static bool soc_pcm_has_symmetry(struct snd_pcm_substream *substream)
301{
302 struct snd_soc_pcm_runtime *rtd = substream->private_data;
303 struct snd_soc_dai_driver *cpu_driver = rtd->cpu_dai->driver;
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100304 struct snd_soc_dai_link *link = rtd->dai_link;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200305 unsigned int symmetry, i;
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100306
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200307 symmetry = cpu_driver->symmetric_rates || link->symmetric_rates ||
308 cpu_driver->symmetric_channels || link->symmetric_channels ||
309 cpu_driver->symmetric_samplebits || link->symmetric_samplebits;
310
311 for (i = 0; i < rtd->num_codecs; i++)
312 symmetry = symmetry ||
313 rtd->codec_dais[i]->driver->symmetric_rates ||
314 rtd->codec_dais[i]->driver->symmetric_channels ||
315 rtd->codec_dais[i]->driver->symmetric_samplebits;
316
317 return symmetry;
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100318}
319
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200320static void soc_pcm_set_msb(struct snd_pcm_substream *substream, int bits)
Mark Brown58ba9b22012-01-16 18:38:51 +0000321{
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200322 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Takashi Iwaic6068d32014-12-31 17:10:34 +0100323 int ret;
Mark Brown58ba9b22012-01-16 18:38:51 +0000324
325 if (!bits)
326 return;
327
Lars-Peter Clausen0e2a3752014-12-29 18:43:38 +0100328 ret = snd_pcm_hw_constraint_msbits(substream->runtime, 0, 0, bits);
329 if (ret != 0)
330 dev_warn(rtd->dev, "ASoC: Failed to set MSB %d: %d\n",
331 bits, ret);
Mark Brown58ba9b22012-01-16 18:38:51 +0000332}
333
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200334static void soc_pcm_apply_msb(struct snd_pcm_substream *substream)
Lars-Peter Clausenbd477c32013-05-14 11:05:31 +0200335{
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200336 struct snd_soc_pcm_runtime *rtd = substream->private_data;
337 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200338 struct snd_soc_dai *codec_dai;
339 int i;
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200340 unsigned int bits = 0, cpu_bits;
341
342 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200343 for (i = 0; i < rtd->num_codecs; i++) {
344 codec_dai = rtd->codec_dais[i];
345 if (codec_dai->driver->playback.sig_bits == 0) {
346 bits = 0;
347 break;
348 }
349 bits = max(codec_dai->driver->playback.sig_bits, bits);
350 }
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200351 cpu_bits = cpu_dai->driver->playback.sig_bits;
352 } else {
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200353 for (i = 0; i < rtd->num_codecs; i++) {
354 codec_dai = rtd->codec_dais[i];
Daniel Mack5e63dfc2014-10-07 14:33:46 +0200355 if (codec_dai->driver->capture.sig_bits == 0) {
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200356 bits = 0;
357 break;
358 }
359 bits = max(codec_dai->driver->capture.sig_bits, bits);
360 }
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200361 cpu_bits = cpu_dai->driver->capture.sig_bits;
362 }
363
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200364 soc_pcm_set_msb(substream, bits);
365 soc_pcm_set_msb(substream, cpu_bits);
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200366}
367
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200368static void soc_pcm_init_runtime_hw(struct snd_pcm_substream *substream)
Lars-Peter Clausenbd477c32013-05-14 11:05:31 +0200369{
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200370 struct snd_pcm_runtime *runtime = substream->runtime;
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100371 struct snd_pcm_hardware *hw = &runtime->hw;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200372 struct snd_soc_pcm_runtime *rtd = substream->private_data;
373 struct snd_soc_dai_driver *cpu_dai_drv = rtd->cpu_dai->driver;
374 struct snd_soc_dai_driver *codec_dai_drv;
375 struct snd_soc_pcm_stream *codec_stream;
376 struct snd_soc_pcm_stream *cpu_stream;
377 unsigned int chan_min = 0, chan_max = UINT_MAX;
378 unsigned int rate_min = 0, rate_max = UINT_MAX;
379 unsigned int rates = UINT_MAX;
380 u64 formats = ULLONG_MAX;
381 int i;
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100382
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200383 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
384 cpu_stream = &cpu_dai_drv->playback;
Lars-Peter Clausen16d7ea92014-01-06 14:19:16 +0100385 else
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200386 cpu_stream = &cpu_dai_drv->capture;
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100387
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200388 /* first calculate min/max only for CODECs in the DAI link */
389 for (i = 0; i < rtd->num_codecs; i++) {
Ricard Wanderlofcde79032015-08-24 14:16:51 +0200390
391 /*
392 * Skip CODECs which don't support the current stream type.
393 * Otherwise, since the rate, channel, and format values will
394 * zero in that case, we would have no usable settings left,
395 * causing the resulting setup to fail.
396 * At least one CODEC should match, otherwise we should have
397 * bailed out on a higher level, since there would be no
398 * CODEC to support the transfer direction in that case.
399 */
400 if (!snd_soc_dai_stream_valid(rtd->codec_dais[i],
401 substream->stream))
402 continue;
403
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200404 codec_dai_drv = rtd->codec_dais[i]->driver;
405 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
406 codec_stream = &codec_dai_drv->playback;
407 else
408 codec_stream = &codec_dai_drv->capture;
409 chan_min = max(chan_min, codec_stream->channels_min);
410 chan_max = min(chan_max, codec_stream->channels_max);
411 rate_min = max(rate_min, codec_stream->rate_min);
412 rate_max = min_not_zero(rate_max, codec_stream->rate_max);
413 formats &= codec_stream->formats;
414 rates = snd_pcm_rate_mask_intersect(codec_stream->rates, rates);
415 }
416
417 /*
418 * chan min/max cannot be enforced if there are multiple CODEC DAIs
419 * connected to a single CPU DAI, use CPU DAI's directly and let
420 * channel allocation be fixed up later
421 */
422 if (rtd->num_codecs > 1) {
423 chan_min = cpu_stream->channels_min;
424 chan_max = cpu_stream->channels_max;
425 }
426
427 hw->channels_min = max(chan_min, cpu_stream->channels_min);
428 hw->channels_max = min(chan_max, cpu_stream->channels_max);
429 if (hw->formats)
430 hw->formats &= formats & cpu_stream->formats;
431 else
432 hw->formats = formats & cpu_stream->formats;
433 hw->rates = snd_pcm_rate_mask_intersect(rates, cpu_stream->rates);
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100434
435 snd_pcm_limit_hw_rates(runtime);
436
437 hw->rate_min = max(hw->rate_min, cpu_stream->rate_min);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200438 hw->rate_min = max(hw->rate_min, rate_min);
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100439 hw->rate_max = min_not_zero(hw->rate_max, cpu_stream->rate_max);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200440 hw->rate_max = min_not_zero(hw->rate_max, rate_max);
Lars-Peter Clausenbd477c32013-05-14 11:05:31 +0200441}
442
Mark Brown58ba9b22012-01-16 18:38:51 +0000443/*
Liam Girdwoodddee6272011-06-09 14:45:53 +0100444 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
445 * then initialized and any private data can be allocated. This also calls
446 * startup for the cpu DAI, platform, machine and codec DAI.
447 */
448static int soc_pcm_open(struct snd_pcm_substream *substream)
449{
450 struct snd_soc_pcm_runtime *rtd = substream->private_data;
451 struct snd_pcm_runtime *runtime = substream->runtime;
452 struct snd_soc_platform *platform = rtd->platform;
453 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200454 struct snd_soc_dai *codec_dai;
455 const char *codec_dai_name = "multicodec";
456 int i, ret = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100457
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800458 pinctrl_pm_select_default_state(cpu_dai->dev);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200459 for (i = 0; i < rtd->num_codecs; i++)
460 pinctrl_pm_select_default_state(rtd->codec_dais[i]->dev);
Mark Brownd6652ef2011-12-03 20:14:31 +0000461 pm_runtime_get_sync(cpu_dai->dev);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200462 for (i = 0; i < rtd->num_codecs; i++)
463 pm_runtime_get_sync(rtd->codec_dais[i]->dev);
Mark Brownd6652ef2011-12-03 20:14:31 +0000464 pm_runtime_get_sync(platform->dev);
465
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100466 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100467
468 /* startup the audio subsystem */
Mark Brownc5914b02013-10-30 17:47:39 -0700469 if (cpu_dai->driver->ops && cpu_dai->driver->ops->startup) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100470 ret = cpu_dai->driver->ops->startup(substream, cpu_dai);
471 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000472 dev_err(cpu_dai->dev, "ASoC: can't open interface"
473 " %s: %d\n", cpu_dai->name, ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100474 goto out;
475 }
476 }
477
478 if (platform->driver->ops && platform->driver->ops->open) {
479 ret = platform->driver->ops->open(substream);
480 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000481 dev_err(platform->dev, "ASoC: can't open platform"
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200482 " %s: %d\n", platform->component.name, ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100483 goto platform_err;
484 }
485 }
486
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200487 for (i = 0; i < rtd->num_codecs; i++) {
488 codec_dai = rtd->codec_dais[i];
489 if (codec_dai->driver->ops && codec_dai->driver->ops->startup) {
490 ret = codec_dai->driver->ops->startup(substream,
491 codec_dai);
492 if (ret < 0) {
493 dev_err(codec_dai->dev,
494 "ASoC: can't open codec %s: %d\n",
495 codec_dai->name, ret);
496 goto codec_dai_err;
497 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100498 }
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200499
500 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
501 codec_dai->tx_mask = 0;
502 else
503 codec_dai->rx_mask = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100504 }
505
506 if (rtd->dai_link->ops && rtd->dai_link->ops->startup) {
507 ret = rtd->dai_link->ops->startup(substream);
508 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000509 pr_err("ASoC: %s startup failed: %d\n",
Mark Brown25bfe662012-02-01 21:30:32 +0000510 rtd->dai_link->name, ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100511 goto machine_err;
512 }
513 }
514
Liam Girdwood01d75842012-04-25 12:12:49 +0100515 /* Dynamic PCM DAI links compat checks use dynamic capabilities */
516 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm)
517 goto dynamic;
518
Liam Girdwoodddee6272011-06-09 14:45:53 +0100519 /* Check that the codec and cpu DAIs are compatible */
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200520 soc_pcm_init_runtime_hw(substream);
521
522 if (rtd->num_codecs == 1)
523 codec_dai_name = rtd->codec_dai->name;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100524
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100525 if (soc_pcm_has_symmetry(substream))
526 runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
527
Liam Girdwoodddee6272011-06-09 14:45:53 +0100528 ret = -EINVAL;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100529 if (!runtime->hw.rates) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000530 printk(KERN_ERR "ASoC: %s <-> %s No matching rates\n",
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200531 codec_dai_name, cpu_dai->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100532 goto config_err;
533 }
534 if (!runtime->hw.formats) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000535 printk(KERN_ERR "ASoC: %s <-> %s No matching formats\n",
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200536 codec_dai_name, cpu_dai->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100537 goto config_err;
538 }
539 if (!runtime->hw.channels_min || !runtime->hw.channels_max ||
540 runtime->hw.channels_min > runtime->hw.channels_max) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000541 printk(KERN_ERR "ASoC: %s <-> %s No matching channels\n",
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200542 codec_dai_name, cpu_dai->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100543 goto config_err;
544 }
545
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200546 soc_pcm_apply_msb(substream);
Mark Brown58ba9b22012-01-16 18:38:51 +0000547
Liam Girdwoodddee6272011-06-09 14:45:53 +0100548 /* Symmetry only applies if we've already got an active stream. */
Dong Aisheng17841022011-08-29 17:15:14 +0800549 if (cpu_dai->active) {
550 ret = soc_pcm_apply_symmetry(substream, cpu_dai);
551 if (ret != 0)
552 goto config_err;
553 }
554
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200555 for (i = 0; i < rtd->num_codecs; i++) {
556 if (rtd->codec_dais[i]->active) {
557 ret = soc_pcm_apply_symmetry(substream,
558 rtd->codec_dais[i]);
559 if (ret != 0)
560 goto config_err;
561 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100562 }
563
Liam Girdwood103d84a2012-11-19 14:39:15 +0000564 pr_debug("ASoC: %s <-> %s info:\n",
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200565 codec_dai_name, cpu_dai->name);
Liam Girdwood103d84a2012-11-19 14:39:15 +0000566 pr_debug("ASoC: rate mask 0x%x\n", runtime->hw.rates);
567 pr_debug("ASoC: min ch %d max ch %d\n", runtime->hw.channels_min,
Liam Girdwoodddee6272011-06-09 14:45:53 +0100568 runtime->hw.channels_max);
Liam Girdwood103d84a2012-11-19 14:39:15 +0000569 pr_debug("ASoC: min rate %d max rate %d\n", runtime->hw.rate_min,
Liam Girdwoodddee6272011-06-09 14:45:53 +0100570 runtime->hw.rate_max);
571
Liam Girdwood01d75842012-04-25 12:12:49 +0100572dynamic:
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100573
574 snd_soc_runtime_activate(rtd, substream->stream);
575
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100576 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100577 return 0;
578
579config_err:
580 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
581 rtd->dai_link->ops->shutdown(substream);
582
583machine_err:
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200584 i = rtd->num_codecs;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100585
586codec_dai_err:
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200587 while (--i >= 0) {
588 codec_dai = rtd->codec_dais[i];
589 if (codec_dai->driver->ops->shutdown)
590 codec_dai->driver->ops->shutdown(substream, codec_dai);
591 }
592
Liam Girdwoodddee6272011-06-09 14:45:53 +0100593 if (platform->driver->ops && platform->driver->ops->close)
594 platform->driver->ops->close(substream);
595
596platform_err:
597 if (cpu_dai->driver->ops->shutdown)
598 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
599out:
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100600 mutex_unlock(&rtd->pcm_mutex);
Mark Brownd6652ef2011-12-03 20:14:31 +0000601
Sanyog Kale3f809782016-01-05 17:14:49 +0530602 pm_runtime_mark_last_busy(platform->dev);
603 pm_runtime_put_autosuspend(platform->dev);
604 for (i = 0; i < rtd->num_codecs; i++) {
605 pm_runtime_mark_last_busy(rtd->codec_dais[i]->dev);
606 pm_runtime_put_autosuspend(rtd->codec_dais[i]->dev);
607 }
608
609 pm_runtime_mark_last_busy(cpu_dai->dev);
610 pm_runtime_put_autosuspend(cpu_dai->dev);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200611 for (i = 0; i < rtd->num_codecs; i++) {
612 if (!rtd->codec_dais[i]->active)
613 pinctrl_pm_select_sleep_state(rtd->codec_dais[i]->dev);
614 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800615 if (!cpu_dai->active)
616 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Mark Brownd6652ef2011-12-03 20:14:31 +0000617
Liam Girdwoodddee6272011-06-09 14:45:53 +0100618 return ret;
619}
620
621/*
622 * Power down the audio subsystem pmdown_time msecs after close is called.
623 * This is to ensure there are no pops or clicks in between any music tracks
624 * due to DAPM power cycling.
625 */
626static void close_delayed_work(struct work_struct *work)
627{
628 struct snd_soc_pcm_runtime *rtd =
629 container_of(work, struct snd_soc_pcm_runtime, delayed_work.work);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200630 struct snd_soc_dai *codec_dai = rtd->codec_dais[0];
Liam Girdwoodddee6272011-06-09 14:45:53 +0100631
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100632 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100633
Liam Girdwood103d84a2012-11-19 14:39:15 +0000634 dev_dbg(rtd->dev, "ASoC: pop wq checking: %s status: %s waiting: %s\n",
Liam Girdwoodddee6272011-06-09 14:45:53 +0100635 codec_dai->driver->playback.stream_name,
636 codec_dai->playback_active ? "active" : "inactive",
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600637 rtd->pop_wait ? "yes" : "no");
Liam Girdwoodddee6272011-06-09 14:45:53 +0100638
639 /* are we waiting on this codec DAI stream */
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600640 if (rtd->pop_wait == 1) {
641 rtd->pop_wait = 0;
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800642 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_PLAYBACK,
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000643 SND_SOC_DAPM_STREAM_STOP);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100644 }
645
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100646 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100647}
648
649/*
650 * Called by ALSA when a PCM substream is closed. Private data can be
651 * freed here. The cpu DAI, codec DAI, machine and platform are also
652 * shutdown.
653 */
Liam Girdwood91d5e6b2011-06-09 17:04:59 +0100654static int soc_pcm_close(struct snd_pcm_substream *substream)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100655{
656 struct snd_soc_pcm_runtime *rtd = substream->private_data;
657 struct snd_soc_platform *platform = rtd->platform;
658 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200659 struct snd_soc_dai *codec_dai;
660 int i;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100661
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100662 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100663
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100664 snd_soc_runtime_deactivate(rtd, substream->stream);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100665
Dong Aisheng17841022011-08-29 17:15:14 +0800666 /* clear the corresponding DAIs rate when inactive */
667 if (!cpu_dai->active)
668 cpu_dai->rate = 0;
669
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200670 for (i = 0; i < rtd->num_codecs; i++) {
671 codec_dai = rtd->codec_dais[i];
672 if (!codec_dai->active)
673 codec_dai->rate = 0;
674 }
Sascha Hauer25b76792011-08-17 09:20:01 +0200675
Ramesh Babuae116012014-10-15 12:34:59 +0530676 snd_soc_dai_digital_mute(cpu_dai, 1, substream->stream);
677
Liam Girdwoodddee6272011-06-09 14:45:53 +0100678 if (cpu_dai->driver->ops->shutdown)
679 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
680
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200681 for (i = 0; i < rtd->num_codecs; i++) {
682 codec_dai = rtd->codec_dais[i];
683 if (codec_dai->driver->ops->shutdown)
684 codec_dai->driver->ops->shutdown(substream, codec_dai);
685 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100686
687 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
688 rtd->dai_link->ops->shutdown(substream);
689
690 if (platform->driver->ops && platform->driver->ops->close)
691 platform->driver->ops->close(substream);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100692
693 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Lars-Peter Clausen208a1582014-03-05 13:17:42 +0100694 if (snd_soc_runtime_ignore_pmdown_time(rtd)) {
Peter Ujfalusi1d69c5c2011-10-14 14:43:33 +0300695 /* powered down playback stream now */
696 snd_soc_dapm_stream_event(rtd,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800697 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800698 SND_SOC_DAPM_STREAM_STOP);
Peter Ujfalusi1d69c5c2011-10-14 14:43:33 +0300699 } else {
700 /* start delayed pop wq here for playback streams */
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600701 rtd->pop_wait = 1;
Mark Brownd4e1a732013-07-18 11:52:17 +0100702 queue_delayed_work(system_power_efficient_wq,
703 &rtd->delayed_work,
704 msecs_to_jiffies(rtd->pmdown_time));
Peter Ujfalusi1d69c5c2011-10-14 14:43:33 +0300705 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100706 } else {
707 /* capture streams can be powered down now */
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800708 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_CAPTURE,
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000709 SND_SOC_DAPM_STREAM_STOP);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100710 }
711
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100712 mutex_unlock(&rtd->pcm_mutex);
Mark Brownd6652ef2011-12-03 20:14:31 +0000713
Sanyog Kale3f809782016-01-05 17:14:49 +0530714 pm_runtime_mark_last_busy(platform->dev);
715 pm_runtime_put_autosuspend(platform->dev);
716
717 for (i = 0; i < rtd->num_codecs; i++) {
718 pm_runtime_mark_last_busy(rtd->codec_dais[i]->dev);
719 pm_runtime_put_autosuspend(rtd->codec_dais[i]->dev);
720 }
721
722 pm_runtime_mark_last_busy(cpu_dai->dev);
723 pm_runtime_put_autosuspend(cpu_dai->dev);
724
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200725 for (i = 0; i < rtd->num_codecs; i++) {
726 if (!rtd->codec_dais[i]->active)
727 pinctrl_pm_select_sleep_state(rtd->codec_dais[i]->dev);
728 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800729 if (!cpu_dai->active)
730 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Mark Brownd6652ef2011-12-03 20:14:31 +0000731
Liam Girdwoodddee6272011-06-09 14:45:53 +0100732 return 0;
733}
734
735/*
736 * Called by ALSA when the PCM substream is prepared, can set format, sample
737 * rate, etc. This function is non atomic and can be called multiple times,
738 * it can refer to the runtime info.
739 */
740static int soc_pcm_prepare(struct snd_pcm_substream *substream)
741{
742 struct snd_soc_pcm_runtime *rtd = substream->private_data;
743 struct snd_soc_platform *platform = rtd->platform;
744 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200745 struct snd_soc_dai *codec_dai;
746 int i, ret = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100747
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100748 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100749
750 if (rtd->dai_link->ops && rtd->dai_link->ops->prepare) {
751 ret = rtd->dai_link->ops->prepare(substream);
752 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000753 dev_err(rtd->card->dev, "ASoC: machine prepare error:"
754 " %d\n", ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100755 goto out;
756 }
757 }
758
759 if (platform->driver->ops && platform->driver->ops->prepare) {
760 ret = platform->driver->ops->prepare(substream);
761 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000762 dev_err(platform->dev, "ASoC: platform prepare error:"
763 " %d\n", ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100764 goto out;
765 }
766 }
767
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200768 for (i = 0; i < rtd->num_codecs; i++) {
769 codec_dai = rtd->codec_dais[i];
770 if (codec_dai->driver->ops && codec_dai->driver->ops->prepare) {
771 ret = codec_dai->driver->ops->prepare(substream,
772 codec_dai);
773 if (ret < 0) {
774 dev_err(codec_dai->dev,
Jarkko Nikula90cc7f12014-12-23 11:04:41 +0200775 "ASoC: codec DAI prepare error: %d\n",
776 ret);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200777 goto out;
778 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100779 }
780 }
781
Mark Brownc5914b02013-10-30 17:47:39 -0700782 if (cpu_dai->driver->ops && cpu_dai->driver->ops->prepare) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100783 ret = cpu_dai->driver->ops->prepare(substream, cpu_dai);
784 if (ret < 0) {
Jarkko Nikula90cc7f12014-12-23 11:04:41 +0200785 dev_err(cpu_dai->dev,
786 "ASoC: cpu DAI prepare error: %d\n", ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100787 goto out;
788 }
789 }
790
791 /* cancel any delayed stream shutdown that is pending */
792 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600793 rtd->pop_wait) {
794 rtd->pop_wait = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100795 cancel_delayed_work(&rtd->delayed_work);
796 }
797
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000798 snd_soc_dapm_stream_event(rtd, substream->stream,
799 SND_SOC_DAPM_STREAM_START);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100800
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200801 for (i = 0; i < rtd->num_codecs; i++)
802 snd_soc_dai_digital_mute(rtd->codec_dais[i], 0,
803 substream->stream);
Ramesh Babuae116012014-10-15 12:34:59 +0530804 snd_soc_dai_digital_mute(cpu_dai, 0, substream->stream);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100805
806out:
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100807 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100808 return ret;
809}
810
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200811static void soc_pcm_codec_params_fixup(struct snd_pcm_hw_params *params,
812 unsigned int mask)
813{
814 struct snd_interval *interval;
815 int channels = hweight_long(mask);
816
817 interval = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
818 interval->min = channels;
819 interval->max = channels;
820}
821
Benoit Cousson93e69582014-07-08 23:19:38 +0200822int soc_dai_hw_params(struct snd_pcm_substream *substream,
823 struct snd_pcm_hw_params *params,
824 struct snd_soc_dai *dai)
825{
826 int ret;
827
828 if (dai->driver->ops && dai->driver->ops->hw_params) {
829 ret = dai->driver->ops->hw_params(substream, params, dai);
830 if (ret < 0) {
831 dev_err(dai->dev, "ASoC: can't set %s hw params: %d\n",
832 dai->name, ret);
833 return ret;
834 }
835 }
836
837 return 0;
838}
839
Liam Girdwoodddee6272011-06-09 14:45:53 +0100840/*
841 * Called by ALSA when the hardware params are set by application. This
842 * function can also be called multiple times and can allocate buffers
843 * (using snd_pcm_lib_* ). It's non-atomic.
844 */
845static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
846 struct snd_pcm_hw_params *params)
847{
848 struct snd_soc_pcm_runtime *rtd = substream->private_data;
849 struct snd_soc_platform *platform = rtd->platform;
850 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200851 int i, ret = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100852
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100853 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100854
Nicolin Chen3635bf02013-11-13 18:56:24 +0800855 ret = soc_pcm_params_symmetry(substream, params);
856 if (ret)
857 goto out;
858
Liam Girdwoodddee6272011-06-09 14:45:53 +0100859 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_params) {
860 ret = rtd->dai_link->ops->hw_params(substream, params);
861 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000862 dev_err(rtd->card->dev, "ASoC: machine hw_params"
863 " failed: %d\n", ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100864 goto out;
865 }
866 }
867
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200868 for (i = 0; i < rtd->num_codecs; i++) {
869 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
870 struct snd_pcm_hw_params codec_params;
871
Ricard Wanderlofcde79032015-08-24 14:16:51 +0200872 /*
873 * Skip CODECs which don't support the current stream type,
874 * the idea being that if a CODEC is not used for the currently
875 * set up transfer direction, it should not need to be
876 * configured, especially since the configuration used might
877 * not even be supported by that CODEC. There may be cases
878 * however where a CODEC needs to be set up although it is
879 * actually not being used for the transfer, e.g. if a
880 * capture-only CODEC is acting as an LRCLK and/or BCLK master
881 * for the DAI link including a playback-only CODEC.
882 * If this becomes necessary, we will have to augment the
883 * machine driver setup with information on how to act, so
884 * we can do the right thing here.
885 */
886 if (!snd_soc_dai_stream_valid(codec_dai, substream->stream))
887 continue;
888
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200889 /* copy params for each codec */
890 codec_params = *params;
891
892 /* fixup params based on TDM slot masks */
893 if (codec_dai->tx_mask)
894 soc_pcm_codec_params_fixup(&codec_params,
895 codec_dai->tx_mask);
896 if (codec_dai->rx_mask)
897 soc_pcm_codec_params_fixup(&codec_params,
898 codec_dai->rx_mask);
899
Benoit Cousson93e69582014-07-08 23:19:38 +0200900 ret = soc_dai_hw_params(substream, &codec_params, codec_dai);
901 if(ret < 0)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100902 goto codec_err;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200903
904 codec_dai->rate = params_rate(&codec_params);
905 codec_dai->channels = params_channels(&codec_params);
906 codec_dai->sample_bits = snd_pcm_format_physical_width(
907 params_format(&codec_params));
Liam Girdwoodddee6272011-06-09 14:45:53 +0100908 }
909
Benoit Cousson93e69582014-07-08 23:19:38 +0200910 ret = soc_dai_hw_params(substream, params, cpu_dai);
911 if (ret < 0)
912 goto interface_err;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100913
914 if (platform->driver->ops && platform->driver->ops->hw_params) {
915 ret = platform->driver->ops->hw_params(substream, params);
916 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000917 dev_err(platform->dev, "ASoC: %s hw params failed: %d\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200918 platform->component.name, ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100919 goto platform_err;
920 }
921 }
922
Nicolin Chen3635bf02013-11-13 18:56:24 +0800923 /* store the parameters for each DAIs */
Dong Aisheng17841022011-08-29 17:15:14 +0800924 cpu_dai->rate = params_rate(params);
Nicolin Chen3635bf02013-11-13 18:56:24 +0800925 cpu_dai->channels = params_channels(params);
926 cpu_dai->sample_bits =
927 snd_pcm_format_physical_width(params_format(params));
928
Liam Girdwoodddee6272011-06-09 14:45:53 +0100929out:
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100930 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100931 return ret;
932
933platform_err:
Mark Brownc5914b02013-10-30 17:47:39 -0700934 if (cpu_dai->driver->ops && cpu_dai->driver->ops->hw_free)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100935 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
936
937interface_err:
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200938 i = rtd->num_codecs;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100939
940codec_err:
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200941 while (--i >= 0) {
942 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
943 if (codec_dai->driver->ops && codec_dai->driver->ops->hw_free)
944 codec_dai->driver->ops->hw_free(substream, codec_dai);
945 codec_dai->rate = 0;
946 }
947
Liam Girdwoodddee6272011-06-09 14:45:53 +0100948 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
949 rtd->dai_link->ops->hw_free(substream);
950
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100951 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100952 return ret;
953}
954
955/*
956 * Frees resources allocated by hw_params, can be called multiple times
957 */
958static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
959{
960 struct snd_soc_pcm_runtime *rtd = substream->private_data;
961 struct snd_soc_platform *platform = rtd->platform;
962 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200963 struct snd_soc_dai *codec_dai;
Nicolin Chen7f62b6e2013-12-04 11:18:36 +0800964 bool playback = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200965 int i;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100966
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100967 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100968
Nicolin Chend3383422013-11-20 18:37:09 +0800969 /* clear the corresponding DAIs parameters when going to be inactive */
970 if (cpu_dai->active == 1) {
971 cpu_dai->rate = 0;
972 cpu_dai->channels = 0;
973 cpu_dai->sample_bits = 0;
974 }
975
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200976 for (i = 0; i < rtd->num_codecs; i++) {
977 codec_dai = rtd->codec_dais[i];
978 if (codec_dai->active == 1) {
979 codec_dai->rate = 0;
980 codec_dai->channels = 0;
981 codec_dai->sample_bits = 0;
982 }
Nicolin Chend3383422013-11-20 18:37:09 +0800983 }
984
Liam Girdwoodddee6272011-06-09 14:45:53 +0100985 /* apply codec digital mute */
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200986 for (i = 0; i < rtd->num_codecs; i++) {
987 if ((playback && rtd->codec_dais[i]->playback_active == 1) ||
988 (!playback && rtd->codec_dais[i]->capture_active == 1))
989 snd_soc_dai_digital_mute(rtd->codec_dais[i], 1,
990 substream->stream);
991 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100992
993 /* free any machine hw params */
994 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
995 rtd->dai_link->ops->hw_free(substream);
996
997 /* free any DMA resources */
998 if (platform->driver->ops && platform->driver->ops->hw_free)
999 platform->driver->ops->hw_free(substream);
1000
1001 /* now free hw params for the DAIs */
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001002 for (i = 0; i < rtd->num_codecs; i++) {
1003 codec_dai = rtd->codec_dais[i];
1004 if (codec_dai->driver->ops && codec_dai->driver->ops->hw_free)
1005 codec_dai->driver->ops->hw_free(substream, codec_dai);
1006 }
Liam Girdwoodddee6272011-06-09 14:45:53 +01001007
Mark Brownc5914b02013-10-30 17:47:39 -07001008 if (cpu_dai->driver->ops && cpu_dai->driver->ops->hw_free)
Liam Girdwoodddee6272011-06-09 14:45:53 +01001009 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
1010
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001011 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +01001012 return 0;
1013}
1014
1015static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
1016{
1017 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1018 struct snd_soc_platform *platform = rtd->platform;
1019 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001020 struct snd_soc_dai *codec_dai;
1021 int i, ret;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001022
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001023 for (i = 0; i < rtd->num_codecs; i++) {
1024 codec_dai = rtd->codec_dais[i];
1025 if (codec_dai->driver->ops && codec_dai->driver->ops->trigger) {
1026 ret = codec_dai->driver->ops->trigger(substream,
1027 cmd, codec_dai);
1028 if (ret < 0)
1029 return ret;
1030 }
Liam Girdwoodddee6272011-06-09 14:45:53 +01001031 }
1032
1033 if (platform->driver->ops && platform->driver->ops->trigger) {
1034 ret = platform->driver->ops->trigger(substream, cmd);
1035 if (ret < 0)
1036 return ret;
1037 }
1038
Mark Brownc5914b02013-10-30 17:47:39 -07001039 if (cpu_dai->driver->ops && cpu_dai->driver->ops->trigger) {
Liam Girdwoodddee6272011-06-09 14:45:53 +01001040 ret = cpu_dai->driver->ops->trigger(substream, cmd, cpu_dai);
1041 if (ret < 0)
1042 return ret;
1043 }
Jarkko Nikula4792b0d2014-04-28 14:17:52 +02001044
1045 if (rtd->dai_link->ops && rtd->dai_link->ops->trigger) {
1046 ret = rtd->dai_link->ops->trigger(substream, cmd);
1047 if (ret < 0)
1048 return ret;
1049 }
1050
Liam Girdwoodddee6272011-06-09 14:45:53 +01001051 return 0;
1052}
1053
Mark Brown45c0a182012-05-09 21:46:27 +01001054static int soc_pcm_bespoke_trigger(struct snd_pcm_substream *substream,
1055 int cmd)
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001056{
1057 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1058 struct snd_soc_platform *platform = rtd->platform;
1059 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001060 struct snd_soc_dai *codec_dai;
1061 int i, ret;
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001062
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001063 for (i = 0; i < rtd->num_codecs; i++) {
1064 codec_dai = rtd->codec_dais[i];
1065 if (codec_dai->driver->ops &&
1066 codec_dai->driver->ops->bespoke_trigger) {
1067 ret = codec_dai->driver->ops->bespoke_trigger(substream,
1068 cmd, codec_dai);
1069 if (ret < 0)
1070 return ret;
1071 }
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001072 }
1073
Jean-Francois Moinedcf0fa22014-01-03 09:19:18 +01001074 if (platform->driver->bespoke_trigger) {
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001075 ret = platform->driver->bespoke_trigger(substream, cmd);
1076 if (ret < 0)
1077 return ret;
1078 }
1079
Mark Brownc5914b02013-10-30 17:47:39 -07001080 if (cpu_dai->driver->ops && cpu_dai->driver->ops->bespoke_trigger) {
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001081 ret = cpu_dai->driver->ops->bespoke_trigger(substream, cmd, cpu_dai);
1082 if (ret < 0)
1083 return ret;
1084 }
1085 return 0;
1086}
Liam Girdwoodddee6272011-06-09 14:45:53 +01001087/*
1088 * soc level wrapper for pointer callback
1089 * If cpu_dai, codec_dai, platform driver has the delay callback, than
1090 * the runtime->delay will be updated accordingly.
1091 */
1092static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
1093{
1094 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1095 struct snd_soc_platform *platform = rtd->platform;
1096 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001097 struct snd_soc_dai *codec_dai;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001098 struct snd_pcm_runtime *runtime = substream->runtime;
1099 snd_pcm_uframes_t offset = 0;
1100 snd_pcm_sframes_t delay = 0;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001101 snd_pcm_sframes_t codec_delay = 0;
1102 int i;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001103
1104 if (platform->driver->ops && platform->driver->ops->pointer)
1105 offset = platform->driver->ops->pointer(substream);
1106
Mark Brownc5914b02013-10-30 17:47:39 -07001107 if (cpu_dai->driver->ops && cpu_dai->driver->ops->delay)
Liam Girdwoodddee6272011-06-09 14:45:53 +01001108 delay += cpu_dai->driver->ops->delay(substream, cpu_dai);
1109
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001110 for (i = 0; i < rtd->num_codecs; i++) {
1111 codec_dai = rtd->codec_dais[i];
1112 if (codec_dai->driver->ops && codec_dai->driver->ops->delay)
1113 codec_delay = max(codec_delay,
1114 codec_dai->driver->ops->delay(substream,
1115 codec_dai));
1116 }
1117 delay += codec_delay;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001118
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001119 /*
1120 * None of the existing platform drivers implement delay(), so
1121 * for now the codec_dai of first multicodec entry is used
1122 */
Liam Girdwoodddee6272011-06-09 14:45:53 +01001123 if (platform->driver->delay)
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001124 delay += platform->driver->delay(substream, rtd->codec_dais[0]);
Liam Girdwoodddee6272011-06-09 14:45:53 +01001125
1126 runtime->delay = delay;
1127
1128 return offset;
1129}
1130
Liam Girdwood01d75842012-04-25 12:12:49 +01001131/* connect a FE and BE */
1132static int dpcm_be_connect(struct snd_soc_pcm_runtime *fe,
1133 struct snd_soc_pcm_runtime *be, int stream)
1134{
1135 struct snd_soc_dpcm *dpcm;
1136
1137 /* only add new dpcms */
1138 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1139 if (dpcm->be == be && dpcm->fe == fe)
1140 return 0;
1141 }
1142
1143 dpcm = kzalloc(sizeof(struct snd_soc_dpcm), GFP_KERNEL);
1144 if (!dpcm)
1145 return -ENOMEM;
1146
1147 dpcm->be = be;
1148 dpcm->fe = fe;
1149 be->dpcm[stream].runtime = fe->dpcm[stream].runtime;
1150 dpcm->state = SND_SOC_DPCM_LINK_STATE_NEW;
1151 list_add(&dpcm->list_be, &fe->dpcm[stream].be_clients);
1152 list_add(&dpcm->list_fe, &be->dpcm[stream].fe_clients);
1153
Jarkko Nikula7cc302d2013-09-30 17:08:15 +03001154 dev_dbg(fe->dev, "connected new DPCM %s path %s %s %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001155 stream ? "capture" : "playback", fe->dai_link->name,
1156 stream ? "<-" : "->", be->dai_link->name);
1157
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001158#ifdef CONFIG_DEBUG_FS
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02001159 if (fe->debugfs_dpcm_root)
1160 dpcm->debugfs_state = debugfs_create_u32(be->dai_link->name, 0644,
1161 fe->debugfs_dpcm_root, &dpcm->state);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001162#endif
Liam Girdwood01d75842012-04-25 12:12:49 +01001163 return 1;
1164}
1165
1166/* reparent a BE onto another FE */
1167static void dpcm_be_reparent(struct snd_soc_pcm_runtime *fe,
1168 struct snd_soc_pcm_runtime *be, int stream)
1169{
1170 struct snd_soc_dpcm *dpcm;
1171 struct snd_pcm_substream *fe_substream, *be_substream;
1172
1173 /* reparent if BE is connected to other FEs */
1174 if (!be->dpcm[stream].users)
1175 return;
1176
1177 be_substream = snd_soc_dpcm_get_substream(be, stream);
1178
1179 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
1180 if (dpcm->fe == fe)
1181 continue;
1182
Jarkko Nikula7cc302d2013-09-30 17:08:15 +03001183 dev_dbg(fe->dev, "reparent %s path %s %s %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001184 stream ? "capture" : "playback",
1185 dpcm->fe->dai_link->name,
1186 stream ? "<-" : "->", dpcm->be->dai_link->name);
1187
1188 fe_substream = snd_soc_dpcm_get_substream(dpcm->fe, stream);
1189 be_substream->runtime = fe_substream->runtime;
1190 break;
1191 }
1192}
1193
1194/* disconnect a BE and FE */
Liam Girdwood23607022014-01-17 17:03:55 +00001195void dpcm_be_disconnect(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001196{
1197 struct snd_soc_dpcm *dpcm, *d;
1198
1199 list_for_each_entry_safe(dpcm, d, &fe->dpcm[stream].be_clients, list_be) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001200 dev_dbg(fe->dev, "ASoC: BE %s disconnect check for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001201 stream ? "capture" : "playback",
1202 dpcm->be->dai_link->name);
1203
1204 if (dpcm->state != SND_SOC_DPCM_LINK_STATE_FREE)
1205 continue;
1206
Jarkko Nikula7cc302d2013-09-30 17:08:15 +03001207 dev_dbg(fe->dev, "freed DSP %s path %s %s %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001208 stream ? "capture" : "playback", fe->dai_link->name,
1209 stream ? "<-" : "->", dpcm->be->dai_link->name);
1210
1211 /* BEs still alive need new FE */
1212 dpcm_be_reparent(fe, dpcm->be, stream);
1213
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001214#ifdef CONFIG_DEBUG_FS
1215 debugfs_remove(dpcm->debugfs_state);
1216#endif
Liam Girdwood01d75842012-04-25 12:12:49 +01001217 list_del(&dpcm->list_be);
1218 list_del(&dpcm->list_fe);
1219 kfree(dpcm);
1220 }
1221}
1222
1223/* get BE for DAI widget and stream */
1224static struct snd_soc_pcm_runtime *dpcm_get_be(struct snd_soc_card *card,
1225 struct snd_soc_dapm_widget *widget, int stream)
1226{
1227 struct snd_soc_pcm_runtime *be;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001228 int i, j;
Liam Girdwood01d75842012-04-25 12:12:49 +01001229
1230 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
1231 for (i = 0; i < card->num_links; i++) {
1232 be = &card->rtd[i];
1233
Liam Girdwood35ea0652012-06-05 19:26:59 +01001234 if (!be->dai_link->no_pcm)
1235 continue;
1236
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001237 if (be->cpu_dai->playback_widget == widget)
Liam Girdwood01d75842012-04-25 12:12:49 +01001238 return be;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001239
1240 for (j = 0; j < be->num_codecs; j++) {
1241 struct snd_soc_dai *dai = be->codec_dais[j];
1242 if (dai->playback_widget == widget)
1243 return be;
1244 }
Liam Girdwood01d75842012-04-25 12:12:49 +01001245 }
1246 } else {
1247
1248 for (i = 0; i < card->num_links; i++) {
1249 be = &card->rtd[i];
1250
Liam Girdwood35ea0652012-06-05 19:26:59 +01001251 if (!be->dai_link->no_pcm)
1252 continue;
1253
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001254 if (be->cpu_dai->capture_widget == widget)
Liam Girdwood01d75842012-04-25 12:12:49 +01001255 return be;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001256
1257 for (j = 0; j < be->num_codecs; j++) {
1258 struct snd_soc_dai *dai = be->codec_dais[j];
1259 if (dai->capture_widget == widget)
1260 return be;
1261 }
Liam Girdwood01d75842012-04-25 12:12:49 +01001262 }
1263 }
1264
Liam Girdwood103d84a2012-11-19 14:39:15 +00001265 dev_err(card->dev, "ASoC: can't get %s BE for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001266 stream ? "capture" : "playback", widget->name);
1267 return NULL;
1268}
1269
1270static inline struct snd_soc_dapm_widget *
Benoit Cousson37018612014-04-24 14:01:45 +02001271 dai_get_widget(struct snd_soc_dai *dai, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001272{
1273 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
Benoit Cousson37018612014-04-24 14:01:45 +02001274 return dai->playback_widget;
Liam Girdwood01d75842012-04-25 12:12:49 +01001275 else
Benoit Cousson37018612014-04-24 14:01:45 +02001276 return dai->capture_widget;
Liam Girdwood01d75842012-04-25 12:12:49 +01001277}
1278
1279static int widget_in_list(struct snd_soc_dapm_widget_list *list,
1280 struct snd_soc_dapm_widget *widget)
1281{
1282 int i;
1283
1284 for (i = 0; i < list->num_widgets; i++) {
1285 if (widget == list->widgets[i])
1286 return 1;
1287 }
1288
1289 return 0;
1290}
1291
Liam Girdwood23607022014-01-17 17:03:55 +00001292int dpcm_path_get(struct snd_soc_pcm_runtime *fe,
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001293 int stream, struct snd_soc_dapm_widget_list **list)
Liam Girdwood01d75842012-04-25 12:12:49 +01001294{
1295 struct snd_soc_dai *cpu_dai = fe->cpu_dai;
Liam Girdwood01d75842012-04-25 12:12:49 +01001296 int paths;
1297
Liam Girdwood01d75842012-04-25 12:12:49 +01001298 /* get number of valid DAI paths and their widgets */
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001299 paths = snd_soc_dapm_dai_get_connected_widgets(cpu_dai, stream, list);
Liam Girdwood01d75842012-04-25 12:12:49 +01001300
Liam Girdwood103d84a2012-11-19 14:39:15 +00001301 dev_dbg(fe->dev, "ASoC: found %d audio %s paths\n", paths,
Liam Girdwood01d75842012-04-25 12:12:49 +01001302 stream ? "capture" : "playback");
1303
Liam Girdwood01d75842012-04-25 12:12:49 +01001304 return paths;
1305}
1306
Liam Girdwood01d75842012-04-25 12:12:49 +01001307static int dpcm_prune_paths(struct snd_soc_pcm_runtime *fe, int stream,
1308 struct snd_soc_dapm_widget_list **list_)
1309{
1310 struct snd_soc_dpcm *dpcm;
1311 struct snd_soc_dapm_widget_list *list = *list_;
1312 struct snd_soc_dapm_widget *widget;
1313 int prune = 0;
1314
1315 /* Destroy any old FE <--> BE connections */
1316 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001317 unsigned int i;
Liam Girdwood01d75842012-04-25 12:12:49 +01001318
1319 /* is there a valid CPU DAI widget for this BE */
Benoit Cousson37018612014-04-24 14:01:45 +02001320 widget = dai_get_widget(dpcm->be->cpu_dai, stream);
Liam Girdwood01d75842012-04-25 12:12:49 +01001321
1322 /* prune the BE if it's no longer in our active list */
1323 if (widget && widget_in_list(list, widget))
1324 continue;
1325
1326 /* is there a valid CODEC DAI widget for this BE */
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001327 for (i = 0; i < dpcm->be->num_codecs; i++) {
1328 struct snd_soc_dai *dai = dpcm->be->codec_dais[i];
1329 widget = dai_get_widget(dai, stream);
Liam Girdwood01d75842012-04-25 12:12:49 +01001330
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001331 /* prune the BE if it's no longer in our active list */
1332 if (widget && widget_in_list(list, widget))
1333 continue;
1334 }
Liam Girdwood01d75842012-04-25 12:12:49 +01001335
Liam Girdwood103d84a2012-11-19 14:39:15 +00001336 dev_dbg(fe->dev, "ASoC: pruning %s BE %s for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001337 stream ? "capture" : "playback",
1338 dpcm->be->dai_link->name, fe->dai_link->name);
1339 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
1340 dpcm->be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
1341 prune++;
1342 }
1343
Liam Girdwood103d84a2012-11-19 14:39:15 +00001344 dev_dbg(fe->dev, "ASoC: found %d old BE paths for pruning\n", prune);
Liam Girdwood01d75842012-04-25 12:12:49 +01001345 return prune;
1346}
1347
1348static int dpcm_add_paths(struct snd_soc_pcm_runtime *fe, int stream,
1349 struct snd_soc_dapm_widget_list **list_)
1350{
1351 struct snd_soc_card *card = fe->card;
1352 struct snd_soc_dapm_widget_list *list = *list_;
1353 struct snd_soc_pcm_runtime *be;
1354 int i, new = 0, err;
1355
1356 /* Create any new FE <--> BE connections */
1357 for (i = 0; i < list->num_widgets; i++) {
1358
Mark Brown46162742013-06-05 19:36:11 +01001359 switch (list->widgets[i]->id) {
1360 case snd_soc_dapm_dai_in:
Koro Chenc5b85402015-07-06 10:02:10 +08001361 if (stream != SNDRV_PCM_STREAM_PLAYBACK)
1362 continue;
1363 break;
Mark Brown46162742013-06-05 19:36:11 +01001364 case snd_soc_dapm_dai_out:
Koro Chenc5b85402015-07-06 10:02:10 +08001365 if (stream != SNDRV_PCM_STREAM_CAPTURE)
1366 continue;
Mark Brown46162742013-06-05 19:36:11 +01001367 break;
1368 default:
Liam Girdwood01d75842012-04-25 12:12:49 +01001369 continue;
Mark Brown46162742013-06-05 19:36:11 +01001370 }
Liam Girdwood01d75842012-04-25 12:12:49 +01001371
1372 /* is there a valid BE rtd for this widget */
1373 be = dpcm_get_be(card, list->widgets[i], stream);
1374 if (!be) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001375 dev_err(fe->dev, "ASoC: no BE found for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001376 list->widgets[i]->name);
1377 continue;
1378 }
1379
1380 /* make sure BE is a real BE */
1381 if (!be->dai_link->no_pcm)
1382 continue;
1383
1384 /* don't connect if FE is not running */
Liam Girdwood23607022014-01-17 17:03:55 +00001385 if (!fe->dpcm[stream].runtime && !fe->fe_compr)
Liam Girdwood01d75842012-04-25 12:12:49 +01001386 continue;
1387
1388 /* newly connected FE and BE */
1389 err = dpcm_be_connect(fe, be, stream);
1390 if (err < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001391 dev_err(fe->dev, "ASoC: can't connect %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001392 list->widgets[i]->name);
1393 break;
1394 } else if (err == 0) /* already connected */
1395 continue;
1396
1397 /* new */
1398 be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
1399 new++;
1400 }
1401
Liam Girdwood103d84a2012-11-19 14:39:15 +00001402 dev_dbg(fe->dev, "ASoC: found %d new BE paths\n", new);
Liam Girdwood01d75842012-04-25 12:12:49 +01001403 return new;
1404}
1405
1406/*
1407 * Find the corresponding BE DAIs that source or sink audio to this
1408 * FE substream.
1409 */
Liam Girdwood23607022014-01-17 17:03:55 +00001410int dpcm_process_paths(struct snd_soc_pcm_runtime *fe,
Liam Girdwood01d75842012-04-25 12:12:49 +01001411 int stream, struct snd_soc_dapm_widget_list **list, int new)
1412{
1413 if (new)
1414 return dpcm_add_paths(fe, stream, list);
1415 else
1416 return dpcm_prune_paths(fe, stream, list);
1417}
1418
Liam Girdwood23607022014-01-17 17:03:55 +00001419void dpcm_clear_pending_state(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001420{
1421 struct snd_soc_dpcm *dpcm;
1422
1423 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
1424 dpcm->be->dpcm[stream].runtime_update =
1425 SND_SOC_DPCM_UPDATE_NO;
1426}
1427
1428static void dpcm_be_dai_startup_unwind(struct snd_soc_pcm_runtime *fe,
1429 int stream)
1430{
1431 struct snd_soc_dpcm *dpcm;
1432
1433 /* disable any enabled and non active backends */
1434 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1435
1436 struct snd_soc_pcm_runtime *be = dpcm->be;
1437 struct snd_pcm_substream *be_substream =
1438 snd_soc_dpcm_get_substream(be, stream);
1439
1440 if (be->dpcm[stream].users == 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001441 dev_err(be->dev, "ASoC: no users %s at close - state %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001442 stream ? "capture" : "playback",
1443 be->dpcm[stream].state);
1444
1445 if (--be->dpcm[stream].users != 0)
1446 continue;
1447
1448 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)
1449 continue;
1450
1451 soc_pcm_close(be_substream);
1452 be_substream->runtime = NULL;
1453 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1454 }
1455}
1456
Liam Girdwood23607022014-01-17 17:03:55 +00001457int dpcm_be_dai_startup(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001458{
1459 struct snd_soc_dpcm *dpcm;
1460 int err, count = 0;
1461
1462 /* only startup BE DAIs that are either sinks or sources to this FE DAI */
1463 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1464
1465 struct snd_soc_pcm_runtime *be = dpcm->be;
1466 struct snd_pcm_substream *be_substream =
1467 snd_soc_dpcm_get_substream(be, stream);
1468
Russell King - ARM Linux2062b4c2013-10-31 15:09:20 +00001469 if (!be_substream) {
1470 dev_err(be->dev, "ASoC: no backend %s stream\n",
1471 stream ? "capture" : "playback");
1472 continue;
1473 }
1474
Liam Girdwood01d75842012-04-25 12:12:49 +01001475 /* is this op for this BE ? */
1476 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1477 continue;
1478
1479 /* first time the dpcm is open ? */
1480 if (be->dpcm[stream].users == DPCM_MAX_BE_USERS)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001481 dev_err(be->dev, "ASoC: too many users %s at open %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001482 stream ? "capture" : "playback",
1483 be->dpcm[stream].state);
1484
1485 if (be->dpcm[stream].users++ != 0)
1486 continue;
1487
1488 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_NEW) &&
1489 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_CLOSE))
1490 continue;
1491
Russell King - ARM Linux2062b4c2013-10-31 15:09:20 +00001492 dev_dbg(be->dev, "ASoC: open %s BE %s\n",
1493 stream ? "capture" : "playback", be->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001494
1495 be_substream->runtime = be->dpcm[stream].runtime;
1496 err = soc_pcm_open(be_substream);
1497 if (err < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001498 dev_err(be->dev, "ASoC: BE open failed %d\n", err);
Liam Girdwood01d75842012-04-25 12:12:49 +01001499 be->dpcm[stream].users--;
1500 if (be->dpcm[stream].users < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001501 dev_err(be->dev, "ASoC: no users %s at unwind %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001502 stream ? "capture" : "playback",
1503 be->dpcm[stream].state);
1504
1505 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1506 goto unwind;
1507 }
1508
1509 be->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1510 count++;
1511 }
1512
1513 return count;
1514
1515unwind:
1516 /* disable any enabled and non active backends */
1517 list_for_each_entry_continue_reverse(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1518 struct snd_soc_pcm_runtime *be = dpcm->be;
1519 struct snd_pcm_substream *be_substream =
1520 snd_soc_dpcm_get_substream(be, stream);
1521
1522 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1523 continue;
1524
1525 if (be->dpcm[stream].users == 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001526 dev_err(be->dev, "ASoC: no users %s at close %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001527 stream ? "capture" : "playback",
1528 be->dpcm[stream].state);
1529
1530 if (--be->dpcm[stream].users != 0)
1531 continue;
1532
1533 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)
1534 continue;
1535
1536 soc_pcm_close(be_substream);
1537 be_substream->runtime = NULL;
1538 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1539 }
1540
1541 return err;
1542}
1543
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001544static void dpcm_init_runtime_hw(struct snd_pcm_runtime *runtime,
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001545 struct snd_soc_pcm_stream *stream,
1546 u64 formats)
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001547{
1548 runtime->hw.rate_min = stream->rate_min;
1549 runtime->hw.rate_max = stream->rate_max;
1550 runtime->hw.channels_min = stream->channels_min;
1551 runtime->hw.channels_max = stream->channels_max;
Lars-Peter Clausen002220a2014-01-06 14:19:07 +01001552 if (runtime->hw.formats)
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001553 runtime->hw.formats &= formats & stream->formats;
Lars-Peter Clausen002220a2014-01-06 14:19:07 +01001554 else
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001555 runtime->hw.formats = formats & stream->formats;
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001556 runtime->hw.rates = stream->rates;
1557}
1558
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001559static u64 dpcm_runtime_base_format(struct snd_pcm_substream *substream)
1560{
1561 struct snd_soc_pcm_runtime *fe = substream->private_data;
1562 struct snd_soc_dpcm *dpcm;
1563 u64 formats = ULLONG_MAX;
1564 int stream = substream->stream;
1565
1566 if (!fe->dai_link->dpcm_merged_format)
1567 return formats;
1568
1569 /*
1570 * It returns merged BE codec format
1571 * if FE want to use it (= dpcm_merged_format)
1572 */
1573
1574 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1575 struct snd_soc_pcm_runtime *be = dpcm->be;
1576 struct snd_soc_dai_driver *codec_dai_drv;
1577 struct snd_soc_pcm_stream *codec_stream;
1578 int i;
1579
1580 for (i = 0; i < be->num_codecs; i++) {
1581 codec_dai_drv = be->codec_dais[i]->driver;
1582 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
1583 codec_stream = &codec_dai_drv->playback;
1584 else
1585 codec_stream = &codec_dai_drv->capture;
1586
1587 formats &= codec_stream->formats;
1588 }
1589 }
1590
1591 return formats;
1592}
1593
Mark Brown45c0a182012-05-09 21:46:27 +01001594static void dpcm_set_fe_runtime(struct snd_pcm_substream *substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001595{
1596 struct snd_pcm_runtime *runtime = substream->runtime;
1597 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1598 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1599 struct snd_soc_dai_driver *cpu_dai_drv = cpu_dai->driver;
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001600 u64 format = dpcm_runtime_base_format(substream);
Liam Girdwood01d75842012-04-25 12:12:49 +01001601
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001602 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001603 dpcm_init_runtime_hw(runtime, &cpu_dai_drv->playback, format);
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001604 else
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001605 dpcm_init_runtime_hw(runtime, &cpu_dai_drv->capture, format);
Liam Girdwood01d75842012-04-25 12:12:49 +01001606}
1607
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001608static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd);
1609
1610/* Set FE's runtime_update state; the state is protected via PCM stream lock
1611 * for avoiding the race with trigger callback.
1612 * If the state is unset and a trigger is pending while the previous operation,
1613 * process the pending trigger action here.
1614 */
1615static void dpcm_set_fe_update_state(struct snd_soc_pcm_runtime *fe,
1616 int stream, enum snd_soc_dpcm_update state)
1617{
1618 struct snd_pcm_substream *substream =
1619 snd_soc_dpcm_get_substream(fe, stream);
1620
1621 snd_pcm_stream_lock_irq(substream);
1622 if (state == SND_SOC_DPCM_UPDATE_NO && fe->dpcm[stream].trigger_pending) {
1623 dpcm_fe_dai_do_trigger(substream,
1624 fe->dpcm[stream].trigger_pending - 1);
1625 fe->dpcm[stream].trigger_pending = 0;
1626 }
1627 fe->dpcm[stream].runtime_update = state;
1628 snd_pcm_stream_unlock_irq(substream);
1629}
1630
Liam Girdwood01d75842012-04-25 12:12:49 +01001631static int dpcm_fe_dai_startup(struct snd_pcm_substream *fe_substream)
1632{
1633 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
1634 struct snd_pcm_runtime *runtime = fe_substream->runtime;
1635 int stream = fe_substream->stream, ret = 0;
1636
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001637 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01001638
1639 ret = dpcm_be_dai_startup(fe, fe_substream->stream);
1640 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001641 dev_err(fe->dev,"ASoC: failed to start some BEs %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001642 goto be_err;
1643 }
1644
Liam Girdwood103d84a2012-11-19 14:39:15 +00001645 dev_dbg(fe->dev, "ASoC: open FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001646
1647 /* start the DAI frontend */
1648 ret = soc_pcm_open(fe_substream);
1649 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001650 dev_err(fe->dev,"ASoC: failed to start FE %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001651 goto unwind;
1652 }
1653
1654 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1655
1656 dpcm_set_fe_runtime(fe_substream);
1657 snd_pcm_limit_hw_rates(runtime);
1658
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001659 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01001660 return 0;
1661
1662unwind:
1663 dpcm_be_dai_startup_unwind(fe, fe_substream->stream);
1664be_err:
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001665 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01001666 return ret;
1667}
1668
Liam Girdwood23607022014-01-17 17:03:55 +00001669int dpcm_be_dai_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001670{
1671 struct snd_soc_dpcm *dpcm;
1672
1673 /* only shutdown BEs that are either sinks or sources to this FE DAI */
1674 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1675
1676 struct snd_soc_pcm_runtime *be = dpcm->be;
1677 struct snd_pcm_substream *be_substream =
1678 snd_soc_dpcm_get_substream(be, stream);
1679
1680 /* is this op for this BE ? */
1681 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1682 continue;
1683
1684 if (be->dpcm[stream].users == 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001685 dev_err(be->dev, "ASoC: no users %s at close - state %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001686 stream ? "capture" : "playback",
1687 be->dpcm[stream].state);
1688
1689 if (--be->dpcm[stream].users != 0)
1690 continue;
1691
1692 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
1693 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN))
1694 continue;
1695
Liam Girdwood103d84a2012-11-19 14:39:15 +00001696 dev_dbg(be->dev, "ASoC: close BE %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001697 dpcm->fe->dai_link->name);
1698
1699 soc_pcm_close(be_substream);
1700 be_substream->runtime = NULL;
1701
1702 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1703 }
1704 return 0;
1705}
1706
1707static int dpcm_fe_dai_shutdown(struct snd_pcm_substream *substream)
1708{
1709 struct snd_soc_pcm_runtime *fe = substream->private_data;
1710 int stream = substream->stream;
1711
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001712 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01001713
1714 /* shutdown the BEs */
1715 dpcm_be_dai_shutdown(fe, substream->stream);
1716
Liam Girdwood103d84a2012-11-19 14:39:15 +00001717 dev_dbg(fe->dev, "ASoC: close FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001718
1719 /* now shutdown the frontend */
1720 soc_pcm_close(substream);
1721
1722 /* run the stream event for each BE */
1723 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP);
1724
1725 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001726 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01001727 return 0;
1728}
1729
Liam Girdwood23607022014-01-17 17:03:55 +00001730int dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001731{
1732 struct snd_soc_dpcm *dpcm;
1733
1734 /* only hw_params backends that are either sinks or sources
1735 * to this frontend DAI */
1736 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1737
1738 struct snd_soc_pcm_runtime *be = dpcm->be;
1739 struct snd_pcm_substream *be_substream =
1740 snd_soc_dpcm_get_substream(be, stream);
1741
1742 /* is this op for this BE ? */
1743 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1744 continue;
1745
1746 /* only free hw when no longer used - check all FEs */
1747 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1748 continue;
1749
Qiao Zhou36fba622014-12-03 10:13:43 +08001750 /* do not free hw if this BE is used by other FE */
1751 if (be->dpcm[stream].users > 1)
1752 continue;
1753
Liam Girdwood01d75842012-04-25 12:12:49 +01001754 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1755 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
1756 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
Patrick Lai08b27842012-12-19 19:36:02 -08001757 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED) &&
Liam Girdwood01d75842012-04-25 12:12:49 +01001758 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
1759 continue;
1760
Liam Girdwood103d84a2012-11-19 14:39:15 +00001761 dev_dbg(be->dev, "ASoC: hw_free BE %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001762 dpcm->fe->dai_link->name);
1763
1764 soc_pcm_hw_free(be_substream);
1765
1766 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
1767 }
1768
1769 return 0;
1770}
1771
Mark Brown45c0a182012-05-09 21:46:27 +01001772static int dpcm_fe_dai_hw_free(struct snd_pcm_substream *substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001773{
1774 struct snd_soc_pcm_runtime *fe = substream->private_data;
1775 int err, stream = substream->stream;
1776
1777 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001778 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01001779
Liam Girdwood103d84a2012-11-19 14:39:15 +00001780 dev_dbg(fe->dev, "ASoC: hw_free FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001781
1782 /* call hw_free on the frontend */
1783 err = soc_pcm_hw_free(substream);
1784 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001785 dev_err(fe->dev,"ASoC: hw_free FE %s failed\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001786 fe->dai_link->name);
1787
1788 /* only hw_params backends that are either sinks or sources
1789 * to this frontend DAI */
1790 err = dpcm_be_dai_hw_free(fe, stream);
1791
1792 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001793 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01001794
1795 mutex_unlock(&fe->card->mutex);
1796 return 0;
1797}
1798
Liam Girdwood23607022014-01-17 17:03:55 +00001799int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001800{
1801 struct snd_soc_dpcm *dpcm;
1802 int ret;
1803
1804 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1805
1806 struct snd_soc_pcm_runtime *be = dpcm->be;
1807 struct snd_pcm_substream *be_substream =
1808 snd_soc_dpcm_get_substream(be, stream);
1809
1810 /* is this op for this BE ? */
1811 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1812 continue;
1813
1814 /* only allow hw_params() if no connected FEs are running */
1815 if (!snd_soc_dpcm_can_be_params(fe, be, stream))
1816 continue;
1817
1818 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
1819 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1820 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE))
1821 continue;
1822
Liam Girdwood103d84a2012-11-19 14:39:15 +00001823 dev_dbg(be->dev, "ASoC: hw_params BE %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001824 dpcm->fe->dai_link->name);
1825
1826 /* copy params for each dpcm */
1827 memcpy(&dpcm->hw_params, &fe->dpcm[stream].hw_params,
1828 sizeof(struct snd_pcm_hw_params));
1829
1830 /* perform any hw_params fixups */
1831 if (be->dai_link->be_hw_params_fixup) {
1832 ret = be->dai_link->be_hw_params_fixup(be,
1833 &dpcm->hw_params);
1834 if (ret < 0) {
1835 dev_err(be->dev,
Liam Girdwood103d84a2012-11-19 14:39:15 +00001836 "ASoC: hw_params BE fixup failed %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001837 ret);
1838 goto unwind;
1839 }
1840 }
1841
1842 ret = soc_pcm_hw_params(be_substream, &dpcm->hw_params);
1843 if (ret < 0) {
1844 dev_err(dpcm->be->dev,
Liam Girdwood103d84a2012-11-19 14:39:15 +00001845 "ASoC: hw_params BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001846 goto unwind;
1847 }
1848
1849 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
1850 }
1851 return 0;
1852
1853unwind:
1854 /* disable any enabled and non active backends */
1855 list_for_each_entry_continue_reverse(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1856 struct snd_soc_pcm_runtime *be = dpcm->be;
1857 struct snd_pcm_substream *be_substream =
1858 snd_soc_dpcm_get_substream(be, stream);
1859
1860 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1861 continue;
1862
1863 /* only allow hw_free() if no connected FEs are running */
1864 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1865 continue;
1866
1867 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
1868 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1869 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
1870 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
1871 continue;
1872
1873 soc_pcm_hw_free(be_substream);
1874 }
1875
1876 return ret;
1877}
1878
Mark Brown45c0a182012-05-09 21:46:27 +01001879static int dpcm_fe_dai_hw_params(struct snd_pcm_substream *substream,
1880 struct snd_pcm_hw_params *params)
Liam Girdwood01d75842012-04-25 12:12:49 +01001881{
1882 struct snd_soc_pcm_runtime *fe = substream->private_data;
1883 int ret, stream = substream->stream;
1884
1885 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001886 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01001887
1888 memcpy(&fe->dpcm[substream->stream].hw_params, params,
1889 sizeof(struct snd_pcm_hw_params));
1890 ret = dpcm_be_dai_hw_params(fe, substream->stream);
1891 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001892 dev_err(fe->dev,"ASoC: hw_params BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001893 goto out;
1894 }
1895
Liam Girdwood103d84a2012-11-19 14:39:15 +00001896 dev_dbg(fe->dev, "ASoC: hw_params FE %s rate %d chan %x fmt %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001897 fe->dai_link->name, params_rate(params),
1898 params_channels(params), params_format(params));
1899
1900 /* call hw_params on the frontend */
1901 ret = soc_pcm_hw_params(substream, params);
1902 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001903 dev_err(fe->dev,"ASoC: hw_params FE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001904 dpcm_be_dai_hw_free(fe, stream);
1905 } else
1906 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
1907
1908out:
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001909 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01001910 mutex_unlock(&fe->card->mutex);
1911 return ret;
1912}
1913
1914static int dpcm_do_trigger(struct snd_soc_dpcm *dpcm,
1915 struct snd_pcm_substream *substream, int cmd)
1916{
1917 int ret;
1918
Liam Girdwood103d84a2012-11-19 14:39:15 +00001919 dev_dbg(dpcm->be->dev, "ASoC: trigger BE %s cmd %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001920 dpcm->fe->dai_link->name, cmd);
1921
1922 ret = soc_pcm_trigger(substream, cmd);
1923 if (ret < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001924 dev_err(dpcm->be->dev,"ASoC: trigger BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001925
1926 return ret;
1927}
1928
Liam Girdwood23607022014-01-17 17:03:55 +00001929int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime *fe, int stream,
Mark Brown45c0a182012-05-09 21:46:27 +01001930 int cmd)
Liam Girdwood01d75842012-04-25 12:12:49 +01001931{
1932 struct snd_soc_dpcm *dpcm;
1933 int ret = 0;
1934
1935 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1936
1937 struct snd_soc_pcm_runtime *be = dpcm->be;
1938 struct snd_pcm_substream *be_substream =
1939 snd_soc_dpcm_get_substream(be, stream);
1940
1941 /* is this op for this BE ? */
1942 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1943 continue;
1944
1945 switch (cmd) {
1946 case SNDRV_PCM_TRIGGER_START:
1947 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
1948 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
1949 continue;
1950
1951 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1952 if (ret)
1953 return ret;
1954
1955 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
1956 break;
1957 case SNDRV_PCM_TRIGGER_RESUME:
1958 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
1959 continue;
1960
1961 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1962 if (ret)
1963 return ret;
1964
1965 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
1966 break;
1967 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1968 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
1969 continue;
1970
1971 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1972 if (ret)
1973 return ret;
1974
1975 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
1976 break;
1977 case SNDRV_PCM_TRIGGER_STOP:
1978 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
1979 continue;
1980
1981 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1982 continue;
1983
1984 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1985 if (ret)
1986 return ret;
1987
1988 be->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
1989 break;
1990 case SNDRV_PCM_TRIGGER_SUSPEND:
Nicolin Chen868a6ca2014-05-12 20:12:05 +08001991 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
Liam Girdwood01d75842012-04-25 12:12:49 +01001992 continue;
1993
1994 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1995 continue;
1996
1997 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1998 if (ret)
1999 return ret;
2000
2001 be->dpcm[stream].state = SND_SOC_DPCM_STATE_SUSPEND;
2002 break;
2003 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2004 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2005 continue;
2006
2007 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2008 continue;
2009
2010 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2011 if (ret)
2012 return ret;
2013
2014 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2015 break;
2016 }
2017 }
2018
2019 return ret;
2020}
2021EXPORT_SYMBOL_GPL(dpcm_be_dai_trigger);
2022
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002023static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd)
Liam Girdwood01d75842012-04-25 12:12:49 +01002024{
2025 struct snd_soc_pcm_runtime *fe = substream->private_data;
2026 int stream = substream->stream, ret;
2027 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2028
2029 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
2030
2031 switch (trigger) {
2032 case SND_SOC_DPCM_TRIGGER_PRE:
2033 /* call trigger on the frontend before the backend. */
2034
Liam Girdwood103d84a2012-11-19 14:39:15 +00002035 dev_dbg(fe->dev, "ASoC: pre trigger FE %s cmd %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002036 fe->dai_link->name, cmd);
2037
2038 ret = soc_pcm_trigger(substream, cmd);
2039 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002040 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002041 goto out;
2042 }
2043
2044 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2045 break;
2046 case SND_SOC_DPCM_TRIGGER_POST:
2047 /* call trigger on the frontend after the backend. */
2048
2049 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2050 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002051 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002052 goto out;
2053 }
2054
Liam Girdwood103d84a2012-11-19 14:39:15 +00002055 dev_dbg(fe->dev, "ASoC: post trigger FE %s cmd %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002056 fe->dai_link->name, cmd);
2057
2058 ret = soc_pcm_trigger(substream, cmd);
2059 break;
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002060 case SND_SOC_DPCM_TRIGGER_BESPOKE:
2061 /* bespoke trigger() - handles both FE and BEs */
2062
Liam Girdwood103d84a2012-11-19 14:39:15 +00002063 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd %d\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002064 fe->dai_link->name, cmd);
2065
2066 ret = soc_pcm_bespoke_trigger(substream, cmd);
2067 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002068 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002069 goto out;
2070 }
2071 break;
Liam Girdwood01d75842012-04-25 12:12:49 +01002072 default:
Liam Girdwood103d84a2012-11-19 14:39:15 +00002073 dev_err(fe->dev, "ASoC: invalid trigger cmd %d for %s\n", cmd,
Liam Girdwood01d75842012-04-25 12:12:49 +01002074 fe->dai_link->name);
2075 ret = -EINVAL;
2076 goto out;
2077 }
2078
2079 switch (cmd) {
2080 case SNDRV_PCM_TRIGGER_START:
2081 case SNDRV_PCM_TRIGGER_RESUME:
2082 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2083 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2084 break;
2085 case SNDRV_PCM_TRIGGER_STOP:
2086 case SNDRV_PCM_TRIGGER_SUSPEND:
2087 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2088 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
2089 break;
2090 }
2091
2092out:
2093 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
2094 return ret;
2095}
2096
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002097static int dpcm_fe_dai_trigger(struct snd_pcm_substream *substream, int cmd)
2098{
2099 struct snd_soc_pcm_runtime *fe = substream->private_data;
2100 int stream = substream->stream;
2101
2102 /* if FE's runtime_update is already set, we're in race;
2103 * process this trigger later at exit
2104 */
2105 if (fe->dpcm[stream].runtime_update != SND_SOC_DPCM_UPDATE_NO) {
2106 fe->dpcm[stream].trigger_pending = cmd + 1;
2107 return 0; /* delayed, assuming it's successful */
2108 }
2109
2110 /* we're alone, let's trigger */
2111 return dpcm_fe_dai_do_trigger(substream, cmd);
2112}
2113
Liam Girdwood23607022014-01-17 17:03:55 +00002114int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002115{
2116 struct snd_soc_dpcm *dpcm;
2117 int ret = 0;
2118
2119 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2120
2121 struct snd_soc_pcm_runtime *be = dpcm->be;
2122 struct snd_pcm_substream *be_substream =
2123 snd_soc_dpcm_get_substream(be, stream);
2124
2125 /* is this op for this BE ? */
2126 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2127 continue;
2128
2129 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2130 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
2131 continue;
2132
Liam Girdwood103d84a2012-11-19 14:39:15 +00002133 dev_dbg(be->dev, "ASoC: prepare BE %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002134 dpcm->fe->dai_link->name);
2135
2136 ret = soc_pcm_prepare(be_substream);
2137 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002138 dev_err(be->dev, "ASoC: backend prepare failed %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002139 ret);
2140 break;
2141 }
2142
2143 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2144 }
2145 return ret;
2146}
2147
Mark Brown45c0a182012-05-09 21:46:27 +01002148static int dpcm_fe_dai_prepare(struct snd_pcm_substream *substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002149{
2150 struct snd_soc_pcm_runtime *fe = substream->private_data;
2151 int stream = substream->stream, ret = 0;
2152
2153 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2154
Liam Girdwood103d84a2012-11-19 14:39:15 +00002155 dev_dbg(fe->dev, "ASoC: prepare FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01002156
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002157 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01002158
2159 /* there is no point preparing this FE if there are no BEs */
2160 if (list_empty(&fe->dpcm[stream].be_clients)) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002161 dev_err(fe->dev, "ASoC: no backend DAIs enabled for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002162 fe->dai_link->name);
2163 ret = -EINVAL;
2164 goto out;
2165 }
2166
2167 ret = dpcm_be_dai_prepare(fe, substream->stream);
2168 if (ret < 0)
2169 goto out;
2170
2171 /* call prepare on the frontend */
2172 ret = soc_pcm_prepare(substream);
2173 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002174 dev_err(fe->dev,"ASoC: prepare FE %s failed\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002175 fe->dai_link->name);
2176 goto out;
2177 }
2178
2179 /* run the stream event for each BE */
2180 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_START);
2181 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2182
2183out:
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002184 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01002185 mutex_unlock(&fe->card->mutex);
2186
2187 return ret;
2188}
2189
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01002190static int soc_pcm_ioctl(struct snd_pcm_substream *substream,
2191 unsigned int cmd, void *arg)
2192{
2193 struct snd_soc_pcm_runtime *rtd = substream->private_data;
2194 struct snd_soc_platform *platform = rtd->platform;
2195
Mark Brownc5914b02013-10-30 17:47:39 -07002196 if (platform->driver->ops && platform->driver->ops->ioctl)
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01002197 return platform->driver->ops->ioctl(substream, cmd, arg);
2198 return snd_pcm_lib_ioctl(substream, cmd, arg);
2199}
2200
Liam Girdwood618dae12012-04-25 12:12:51 +01002201static int dpcm_run_update_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
2202{
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002203 struct snd_pcm_substream *substream =
2204 snd_soc_dpcm_get_substream(fe, stream);
2205 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
Liam Girdwood618dae12012-04-25 12:12:51 +01002206 int err;
Liam Girdwood01d75842012-04-25 12:12:49 +01002207
Liam Girdwood103d84a2012-11-19 14:39:15 +00002208 dev_dbg(fe->dev, "ASoC: runtime %s close on FE %s\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002209 stream ? "capture" : "playback", fe->dai_link->name);
2210
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002211 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2212 /* call bespoke trigger - FE takes care of all BE triggers */
Liam Girdwood103d84a2012-11-19 14:39:15 +00002213 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd stop\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002214 fe->dai_link->name);
2215
2216 err = soc_pcm_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_STOP);
2217 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002218 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002219 } else {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002220 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd stop\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002221 fe->dai_link->name);
2222
2223 err = dpcm_be_dai_trigger(fe, stream, SNDRV_PCM_TRIGGER_STOP);
2224 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002225 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002226 }
Liam Girdwood618dae12012-04-25 12:12:51 +01002227
2228 err = dpcm_be_dai_hw_free(fe, stream);
2229 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002230 dev_err(fe->dev,"ASoC: hw_free FE failed %d\n", err);
Liam Girdwood618dae12012-04-25 12:12:51 +01002231
2232 err = dpcm_be_dai_shutdown(fe, stream);
2233 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002234 dev_err(fe->dev,"ASoC: shutdown FE failed %d\n", err);
Liam Girdwood618dae12012-04-25 12:12:51 +01002235
2236 /* run the stream event for each BE */
2237 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2238
2239 return 0;
2240}
2241
2242static int dpcm_run_update_startup(struct snd_soc_pcm_runtime *fe, int stream)
2243{
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002244 struct snd_pcm_substream *substream =
2245 snd_soc_dpcm_get_substream(fe, stream);
Liam Girdwood618dae12012-04-25 12:12:51 +01002246 struct snd_soc_dpcm *dpcm;
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002247 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
Liam Girdwood618dae12012-04-25 12:12:51 +01002248 int ret;
2249
Liam Girdwood103d84a2012-11-19 14:39:15 +00002250 dev_dbg(fe->dev, "ASoC: runtime %s open on FE %s\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002251 stream ? "capture" : "playback", fe->dai_link->name);
2252
2253 /* Only start the BE if the FE is ready */
2254 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_FREE ||
2255 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE)
2256 return -EINVAL;
2257
2258 /* startup must always be called for new BEs */
2259 ret = dpcm_be_dai_startup(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03002260 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01002261 goto disconnect;
Liam Girdwood618dae12012-04-25 12:12:51 +01002262
2263 /* keep going if FE state is > open */
2264 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_OPEN)
2265 return 0;
2266
2267 ret = dpcm_be_dai_hw_params(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03002268 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01002269 goto close;
Liam Girdwood618dae12012-04-25 12:12:51 +01002270
2271 /* keep going if FE state is > hw_params */
2272 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_PARAMS)
2273 return 0;
2274
2275
2276 ret = dpcm_be_dai_prepare(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03002277 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01002278 goto hw_free;
Liam Girdwood618dae12012-04-25 12:12:51 +01002279
2280 /* run the stream event for each BE */
2281 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2282
2283 /* keep going if FE state is > prepare */
2284 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_PREPARE ||
2285 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_STOP)
2286 return 0;
2287
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002288 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2289 /* call trigger on the frontend - FE takes care of all BE triggers */
Liam Girdwood103d84a2012-11-19 14:39:15 +00002290 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd start\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002291 fe->dai_link->name);
Liam Girdwood618dae12012-04-25 12:12:51 +01002292
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002293 ret = soc_pcm_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_START);
2294 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002295 dev_err(fe->dev,"ASoC: bespoke trigger FE failed %d\n", ret);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002296 goto hw_free;
2297 }
2298 } else {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002299 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd start\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002300 fe->dai_link->name);
2301
2302 ret = dpcm_be_dai_trigger(fe, stream,
2303 SNDRV_PCM_TRIGGER_START);
2304 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002305 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002306 goto hw_free;
2307 }
Liam Girdwood618dae12012-04-25 12:12:51 +01002308 }
2309
2310 return 0;
2311
2312hw_free:
2313 dpcm_be_dai_hw_free(fe, stream);
2314close:
2315 dpcm_be_dai_shutdown(fe, stream);
2316disconnect:
2317 /* disconnect any non started BEs */
2318 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2319 struct snd_soc_pcm_runtime *be = dpcm->be;
2320 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2321 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2322 }
2323
2324 return ret;
2325}
2326
2327static int dpcm_run_new_update(struct snd_soc_pcm_runtime *fe, int stream)
2328{
2329 int ret;
2330
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002331 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE);
Liam Girdwood618dae12012-04-25 12:12:51 +01002332 ret = dpcm_run_update_startup(fe, stream);
2333 if (ret < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002334 dev_err(fe->dev, "ASoC: failed to startup some BEs\n");
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002335 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood618dae12012-04-25 12:12:51 +01002336
2337 return ret;
2338}
2339
2340static int dpcm_run_old_update(struct snd_soc_pcm_runtime *fe, int stream)
2341{
2342 int ret;
2343
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002344 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE);
Liam Girdwood618dae12012-04-25 12:12:51 +01002345 ret = dpcm_run_update_shutdown(fe, stream);
2346 if (ret < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002347 dev_err(fe->dev, "ASoC: failed to shutdown some BEs\n");
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002348 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood618dae12012-04-25 12:12:51 +01002349
2350 return ret;
2351}
2352
2353/* Called by DAPM mixer/mux changes to update audio routing between PCMs and
2354 * any DAI links.
2355 */
Lars-Peter Clausenc3f48ae2013-07-24 15:27:36 +02002356int soc_dpcm_runtime_update(struct snd_soc_card *card)
Liam Girdwood618dae12012-04-25 12:12:51 +01002357{
Liam Girdwood618dae12012-04-25 12:12:51 +01002358 int i, old, new, paths;
2359
Liam Girdwood618dae12012-04-25 12:12:51 +01002360 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2361 for (i = 0; i < card->num_rtd; i++) {
2362 struct snd_soc_dapm_widget_list *list;
2363 struct snd_soc_pcm_runtime *fe = &card->rtd[i];
2364
2365 /* make sure link is FE */
2366 if (!fe->dai_link->dynamic)
2367 continue;
2368
2369 /* only check active links */
2370 if (!fe->cpu_dai->active)
2371 continue;
2372
2373 /* DAPM sync will call this to update DSP paths */
Liam Girdwood103d84a2012-11-19 14:39:15 +00002374 dev_dbg(fe->dev, "ASoC: DPCM runtime update for FE %s\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002375 fe->dai_link->name);
2376
2377 /* skip if FE doesn't have playback capability */
Qiao Zhou075207d2014-11-17 16:02:57 +08002378 if (!fe->cpu_dai->driver->playback.channels_min
2379 || !fe->codec_dai->driver->playback.channels_min)
2380 goto capture;
2381
2382 /* skip if FE isn't currently playing */
2383 if (!fe->cpu_dai->playback_active
2384 || !fe->codec_dai->playback_active)
Liam Girdwood618dae12012-04-25 12:12:51 +01002385 goto capture;
2386
2387 paths = dpcm_path_get(fe, SNDRV_PCM_STREAM_PLAYBACK, &list);
2388 if (paths < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002389 dev_warn(fe->dev, "ASoC: %s no valid %s path\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002390 fe->dai_link->name, "playback");
2391 mutex_unlock(&card->mutex);
2392 return paths;
2393 }
2394
2395 /* update any new playback paths */
2396 new = dpcm_process_paths(fe, SNDRV_PCM_STREAM_PLAYBACK, &list, 1);
2397 if (new) {
2398 dpcm_run_new_update(fe, SNDRV_PCM_STREAM_PLAYBACK);
2399 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_PLAYBACK);
2400 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_PLAYBACK);
2401 }
2402
2403 /* update any old playback paths */
2404 old = dpcm_process_paths(fe, SNDRV_PCM_STREAM_PLAYBACK, &list, 0);
2405 if (old) {
2406 dpcm_run_old_update(fe, SNDRV_PCM_STREAM_PLAYBACK);
2407 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_PLAYBACK);
2408 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_PLAYBACK);
2409 }
2410
Qiao Zhou7ed9de72014-06-04 19:42:06 +08002411 dpcm_path_put(&list);
Liam Girdwood618dae12012-04-25 12:12:51 +01002412capture:
2413 /* skip if FE doesn't have capture capability */
Qiao Zhou075207d2014-11-17 16:02:57 +08002414 if (!fe->cpu_dai->driver->capture.channels_min
2415 || !fe->codec_dai->driver->capture.channels_min)
2416 continue;
2417
2418 /* skip if FE isn't currently capturing */
2419 if (!fe->cpu_dai->capture_active
2420 || !fe->codec_dai->capture_active)
Liam Girdwood618dae12012-04-25 12:12:51 +01002421 continue;
2422
2423 paths = dpcm_path_get(fe, SNDRV_PCM_STREAM_CAPTURE, &list);
2424 if (paths < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002425 dev_warn(fe->dev, "ASoC: %s no valid %s path\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002426 fe->dai_link->name, "capture");
2427 mutex_unlock(&card->mutex);
2428 return paths;
2429 }
2430
2431 /* update any new capture paths */
2432 new = dpcm_process_paths(fe, SNDRV_PCM_STREAM_CAPTURE, &list, 1);
2433 if (new) {
2434 dpcm_run_new_update(fe, SNDRV_PCM_STREAM_CAPTURE);
2435 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_CAPTURE);
2436 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_CAPTURE);
2437 }
2438
2439 /* update any old capture paths */
2440 old = dpcm_process_paths(fe, SNDRV_PCM_STREAM_CAPTURE, &list, 0);
2441 if (old) {
2442 dpcm_run_old_update(fe, SNDRV_PCM_STREAM_CAPTURE);
2443 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_CAPTURE);
2444 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_CAPTURE);
2445 }
2446
2447 dpcm_path_put(&list);
2448 }
2449
2450 mutex_unlock(&card->mutex);
2451 return 0;
2452}
Liam Girdwood01d75842012-04-25 12:12:49 +01002453int soc_dpcm_be_digital_mute(struct snd_soc_pcm_runtime *fe, int mute)
2454{
2455 struct snd_soc_dpcm *dpcm;
2456 struct list_head *clients =
2457 &fe->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients;
2458
2459 list_for_each_entry(dpcm, clients, list_be) {
2460
2461 struct snd_soc_pcm_runtime *be = dpcm->be;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002462 int i;
Liam Girdwood01d75842012-04-25 12:12:49 +01002463
2464 if (be->dai_link->ignore_suspend)
2465 continue;
2466
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002467 for (i = 0; i < be->num_codecs; i++) {
2468 struct snd_soc_dai *dai = be->codec_dais[i];
2469 struct snd_soc_dai_driver *drv = dai->driver;
Liam Girdwood01d75842012-04-25 12:12:49 +01002470
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002471 dev_dbg(be->dev, "ASoC: BE digital mute %s\n",
2472 be->dai_link->name);
2473
2474 if (drv->ops && drv->ops->digital_mute &&
2475 dai->playback_active)
2476 drv->ops->digital_mute(dai, mute);
2477 }
Liam Girdwood01d75842012-04-25 12:12:49 +01002478 }
2479
2480 return 0;
2481}
2482
Mark Brown45c0a182012-05-09 21:46:27 +01002483static int dpcm_fe_dai_open(struct snd_pcm_substream *fe_substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002484{
2485 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
2486 struct snd_soc_dpcm *dpcm;
2487 struct snd_soc_dapm_widget_list *list;
2488 int ret;
2489 int stream = fe_substream->stream;
2490
2491 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2492 fe->dpcm[stream].runtime = fe_substream->runtime;
2493
Qiao Zhou8f70e512014-09-10 17:54:07 +08002494 ret = dpcm_path_get(fe, stream, &list);
2495 if (ret < 0) {
2496 mutex_unlock(&fe->card->mutex);
2497 return ret;
2498 } else if (ret == 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002499 dev_dbg(fe->dev, "ASoC: %s no valid %s route\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002500 fe->dai_link->name, stream ? "capture" : "playback");
Liam Girdwood01d75842012-04-25 12:12:49 +01002501 }
2502
2503 /* calculate valid and active FE <-> BE dpcms */
2504 dpcm_process_paths(fe, stream, &list, 1);
2505
2506 ret = dpcm_fe_dai_startup(fe_substream);
2507 if (ret < 0) {
2508 /* clean up all links */
2509 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
2510 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2511
2512 dpcm_be_disconnect(fe, stream);
2513 fe->dpcm[stream].runtime = NULL;
2514 }
2515
2516 dpcm_clear_pending_state(fe, stream);
2517 dpcm_path_put(&list);
2518 mutex_unlock(&fe->card->mutex);
2519 return ret;
2520}
2521
Mark Brown45c0a182012-05-09 21:46:27 +01002522static int dpcm_fe_dai_close(struct snd_pcm_substream *fe_substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002523{
2524 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
2525 struct snd_soc_dpcm *dpcm;
2526 int stream = fe_substream->stream, ret;
2527
2528 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2529 ret = dpcm_fe_dai_shutdown(fe_substream);
2530
2531 /* mark FE's links ready to prune */
2532 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
2533 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2534
2535 dpcm_be_disconnect(fe, stream);
2536
2537 fe->dpcm[stream].runtime = NULL;
2538 mutex_unlock(&fe->card->mutex);
2539 return ret;
2540}
2541
Liam Girdwoodddee6272011-06-09 14:45:53 +01002542/* create a new pcm */
2543int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
2544{
Liam Girdwoodddee6272011-06-09 14:45:53 +01002545 struct snd_soc_platform *platform = rtd->platform;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002546 struct snd_soc_dai *codec_dai;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002547 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2548 struct snd_pcm *pcm;
2549 char new_name[64];
2550 int ret = 0, playback = 0, capture = 0;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002551 int i;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002552
Liam Girdwood01d75842012-04-25 12:12:49 +01002553 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm) {
Liam Girdwood1e9de422014-01-07 17:51:42 +00002554 playback = rtd->dai_link->dpcm_playback;
2555 capture = rtd->dai_link->dpcm_capture;
Liam Girdwood01d75842012-04-25 12:12:49 +01002556 } else {
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002557 for (i = 0; i < rtd->num_codecs; i++) {
2558 codec_dai = rtd->codec_dais[i];
2559 if (codec_dai->driver->playback.channels_min)
2560 playback = 1;
2561 if (codec_dai->driver->capture.channels_min)
2562 capture = 1;
2563 }
2564
2565 capture = capture && cpu_dai->driver->capture.channels_min;
2566 playback = playback && cpu_dai->driver->playback.channels_min;
Liam Girdwood01d75842012-04-25 12:12:49 +01002567 }
Sangsu Parka5002312012-01-02 17:15:10 +09002568
Fabio Estevamd6bead02013-08-29 10:32:13 -03002569 if (rtd->dai_link->playback_only) {
2570 playback = 1;
2571 capture = 0;
2572 }
2573
2574 if (rtd->dai_link->capture_only) {
2575 playback = 0;
2576 capture = 1;
2577 }
2578
Liam Girdwood01d75842012-04-25 12:12:49 +01002579 /* create the PCM */
2580 if (rtd->dai_link->no_pcm) {
2581 snprintf(new_name, sizeof(new_name), "(%s)",
2582 rtd->dai_link->stream_name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002583
Liam Girdwood01d75842012-04-25 12:12:49 +01002584 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
2585 playback, capture, &pcm);
2586 } else {
2587 if (rtd->dai_link->dynamic)
2588 snprintf(new_name, sizeof(new_name), "%s (*)",
2589 rtd->dai_link->stream_name);
2590 else
2591 snprintf(new_name, sizeof(new_name), "%s %s-%d",
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002592 rtd->dai_link->stream_name,
2593 (rtd->num_codecs > 1) ?
2594 "multicodec" : rtd->codec_dai->name, num);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002595
Liam Girdwood01d75842012-04-25 12:12:49 +01002596 ret = snd_pcm_new(rtd->card->snd_card, new_name, num, playback,
2597 capture, &pcm);
2598 }
Liam Girdwoodddee6272011-06-09 14:45:53 +01002599 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002600 dev_err(rtd->card->dev, "ASoC: can't create pcm for %s\n",
Liam Girdwood5cb9b742012-07-06 16:54:52 +01002601 rtd->dai_link->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002602 return ret;
2603 }
Liam Girdwood103d84a2012-11-19 14:39:15 +00002604 dev_dbg(rtd->card->dev, "ASoC: registered pcm #%d %s\n",num, new_name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002605
2606 /* DAPM dai link stream work */
2607 INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work);
2608
Vinod Koul48c76992015-02-12 09:59:53 +05302609 pcm->nonatomic = rtd->dai_link->nonatomic;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002610 rtd->pcm = pcm;
2611 pcm->private_data = rtd;
Liam Girdwood01d75842012-04-25 12:12:49 +01002612
2613 if (rtd->dai_link->no_pcm) {
2614 if (playback)
2615 pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd;
2616 if (capture)
2617 pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd;
2618 goto out;
2619 }
2620
2621 /* ASoC PCM operations */
2622 if (rtd->dai_link->dynamic) {
2623 rtd->ops.open = dpcm_fe_dai_open;
2624 rtd->ops.hw_params = dpcm_fe_dai_hw_params;
2625 rtd->ops.prepare = dpcm_fe_dai_prepare;
2626 rtd->ops.trigger = dpcm_fe_dai_trigger;
2627 rtd->ops.hw_free = dpcm_fe_dai_hw_free;
2628 rtd->ops.close = dpcm_fe_dai_close;
2629 rtd->ops.pointer = soc_pcm_pointer;
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01002630 rtd->ops.ioctl = soc_pcm_ioctl;
Liam Girdwood01d75842012-04-25 12:12:49 +01002631 } else {
2632 rtd->ops.open = soc_pcm_open;
2633 rtd->ops.hw_params = soc_pcm_hw_params;
2634 rtd->ops.prepare = soc_pcm_prepare;
2635 rtd->ops.trigger = soc_pcm_trigger;
2636 rtd->ops.hw_free = soc_pcm_hw_free;
2637 rtd->ops.close = soc_pcm_close;
2638 rtd->ops.pointer = soc_pcm_pointer;
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01002639 rtd->ops.ioctl = soc_pcm_ioctl;
Liam Girdwood01d75842012-04-25 12:12:49 +01002640 }
2641
Liam Girdwoodddee6272011-06-09 14:45:53 +01002642 if (platform->driver->ops) {
Liam Girdwood01d75842012-04-25 12:12:49 +01002643 rtd->ops.ack = platform->driver->ops->ack;
2644 rtd->ops.copy = platform->driver->ops->copy;
2645 rtd->ops.silence = platform->driver->ops->silence;
2646 rtd->ops.page = platform->driver->ops->page;
2647 rtd->ops.mmap = platform->driver->ops->mmap;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002648 }
2649
2650 if (playback)
Liam Girdwood01d75842012-04-25 12:12:49 +01002651 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &rtd->ops);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002652
2653 if (capture)
Liam Girdwood01d75842012-04-25 12:12:49 +01002654 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &rtd->ops);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002655
2656 if (platform->driver->pcm_new) {
2657 ret = platform->driver->pcm_new(rtd);
2658 if (ret < 0) {
Mark Brownb1bc7b32012-09-26 14:25:17 +01002659 dev_err(platform->dev,
2660 "ASoC: pcm constructor failed: %d\n",
2661 ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002662 return ret;
2663 }
2664 }
2665
2666 pcm->private_free = platform->driver->pcm_free;
Liam Girdwood01d75842012-04-25 12:12:49 +01002667out:
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002668 dev_info(rtd->card->dev, "%s <-> %s mapping ok\n",
2669 (rtd->num_codecs > 1) ? "multicodec" : rtd->codec_dai->name,
2670 cpu_dai->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002671 return ret;
2672}
Liam Girdwood01d75842012-04-25 12:12:49 +01002673
2674/* is the current PCM operation for this FE ? */
2675int snd_soc_dpcm_fe_can_update(struct snd_soc_pcm_runtime *fe, int stream)
2676{
2677 if (fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE)
2678 return 1;
2679 return 0;
2680}
2681EXPORT_SYMBOL_GPL(snd_soc_dpcm_fe_can_update);
2682
2683/* is the current PCM operation for this BE ? */
2684int snd_soc_dpcm_be_can_update(struct snd_soc_pcm_runtime *fe,
2685 struct snd_soc_pcm_runtime *be, int stream)
2686{
2687 if ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE) ||
2688 ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_BE) &&
2689 be->dpcm[stream].runtime_update))
2690 return 1;
2691 return 0;
2692}
2693EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_can_update);
2694
2695/* get the substream for this BE */
2696struct snd_pcm_substream *
2697 snd_soc_dpcm_get_substream(struct snd_soc_pcm_runtime *be, int stream)
2698{
2699 return be->pcm->streams[stream].substream;
2700}
2701EXPORT_SYMBOL_GPL(snd_soc_dpcm_get_substream);
2702
2703/* get the BE runtime state */
2704enum snd_soc_dpcm_state
2705 snd_soc_dpcm_be_get_state(struct snd_soc_pcm_runtime *be, int stream)
2706{
2707 return be->dpcm[stream].state;
2708}
2709EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_get_state);
2710
2711/* set the BE runtime state */
2712void snd_soc_dpcm_be_set_state(struct snd_soc_pcm_runtime *be,
2713 int stream, enum snd_soc_dpcm_state state)
2714{
2715 be->dpcm[stream].state = state;
2716}
2717EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_set_state);
2718
2719/*
2720 * We can only hw_free, stop, pause or suspend a BE DAI if any of it's FE
2721 * are not running, paused or suspended for the specified stream direction.
2722 */
2723int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime *fe,
2724 struct snd_soc_pcm_runtime *be, int stream)
2725{
2726 struct snd_soc_dpcm *dpcm;
2727 int state;
2728
2729 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
2730
2731 if (dpcm->fe == fe)
2732 continue;
2733
2734 state = dpcm->fe->dpcm[stream].state;
2735 if (state == SND_SOC_DPCM_STATE_START ||
2736 state == SND_SOC_DPCM_STATE_PAUSED ||
2737 state == SND_SOC_DPCM_STATE_SUSPEND)
2738 return 0;
2739 }
2740
2741 /* it's safe to free/stop this BE DAI */
2742 return 1;
2743}
2744EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_free_stop);
2745
2746/*
2747 * We can only change hw params a BE DAI if any of it's FE are not prepared,
2748 * running, paused or suspended for the specified stream direction.
2749 */
2750int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime *fe,
2751 struct snd_soc_pcm_runtime *be, int stream)
2752{
2753 struct snd_soc_dpcm *dpcm;
2754 int state;
2755
2756 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
2757
2758 if (dpcm->fe == fe)
2759 continue;
2760
2761 state = dpcm->fe->dpcm[stream].state;
2762 if (state == SND_SOC_DPCM_STATE_START ||
2763 state == SND_SOC_DPCM_STATE_PAUSED ||
2764 state == SND_SOC_DPCM_STATE_SUSPEND ||
2765 state == SND_SOC_DPCM_STATE_PREPARE)
2766 return 0;
2767 }
2768
2769 /* it's safe to change hw_params */
2770 return 1;
2771}
2772EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_params);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002773
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002774int snd_soc_platform_trigger(struct snd_pcm_substream *substream,
2775 int cmd, struct snd_soc_platform *platform)
2776{
Mark Brownc5914b02013-10-30 17:47:39 -07002777 if (platform->driver->ops && platform->driver->ops->trigger)
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002778 return platform->driver->ops->trigger(substream, cmd);
2779 return 0;
2780}
2781EXPORT_SYMBOL_GPL(snd_soc_platform_trigger);
2782
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002783#ifdef CONFIG_DEBUG_FS
2784static char *dpcm_state_string(enum snd_soc_dpcm_state state)
2785{
2786 switch (state) {
2787 case SND_SOC_DPCM_STATE_NEW:
2788 return "new";
2789 case SND_SOC_DPCM_STATE_OPEN:
2790 return "open";
2791 case SND_SOC_DPCM_STATE_HW_PARAMS:
2792 return "hw_params";
2793 case SND_SOC_DPCM_STATE_PREPARE:
2794 return "prepare";
2795 case SND_SOC_DPCM_STATE_START:
2796 return "start";
2797 case SND_SOC_DPCM_STATE_STOP:
2798 return "stop";
2799 case SND_SOC_DPCM_STATE_SUSPEND:
2800 return "suspend";
2801 case SND_SOC_DPCM_STATE_PAUSED:
2802 return "paused";
2803 case SND_SOC_DPCM_STATE_HW_FREE:
2804 return "hw_free";
2805 case SND_SOC_DPCM_STATE_CLOSE:
2806 return "close";
2807 }
2808
2809 return "unknown";
2810}
2811
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002812static ssize_t dpcm_show_state(struct snd_soc_pcm_runtime *fe,
2813 int stream, char *buf, size_t size)
2814{
2815 struct snd_pcm_hw_params *params = &fe->dpcm[stream].hw_params;
2816 struct snd_soc_dpcm *dpcm;
2817 ssize_t offset = 0;
2818
2819 /* FE state */
2820 offset += snprintf(buf + offset, size - offset,
2821 "[%s - %s]\n", fe->dai_link->name,
2822 stream ? "Capture" : "Playback");
2823
2824 offset += snprintf(buf + offset, size - offset, "State: %s\n",
2825 dpcm_state_string(fe->dpcm[stream].state));
2826
2827 if ((fe->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
2828 (fe->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
2829 offset += snprintf(buf + offset, size - offset,
2830 "Hardware Params: "
2831 "Format = %s, Channels = %d, Rate = %d\n",
2832 snd_pcm_format_name(params_format(params)),
2833 params_channels(params),
2834 params_rate(params));
2835
2836 /* BEs state */
2837 offset += snprintf(buf + offset, size - offset, "Backends:\n");
2838
2839 if (list_empty(&fe->dpcm[stream].be_clients)) {
2840 offset += snprintf(buf + offset, size - offset,
2841 " No active DSP links\n");
2842 goto out;
2843 }
2844
2845 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2846 struct snd_soc_pcm_runtime *be = dpcm->be;
2847 params = &dpcm->hw_params;
2848
2849 offset += snprintf(buf + offset, size - offset,
2850 "- %s\n", be->dai_link->name);
2851
2852 offset += snprintf(buf + offset, size - offset,
2853 " State: %s\n",
2854 dpcm_state_string(be->dpcm[stream].state));
2855
2856 if ((be->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
2857 (be->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
2858 offset += snprintf(buf + offset, size - offset,
2859 " Hardware Params: "
2860 "Format = %s, Channels = %d, Rate = %d\n",
2861 snd_pcm_format_name(params_format(params)),
2862 params_channels(params),
2863 params_rate(params));
2864 }
2865
2866out:
2867 return offset;
2868}
2869
2870static ssize_t dpcm_state_read_file(struct file *file, char __user *user_buf,
2871 size_t count, loff_t *ppos)
2872{
2873 struct snd_soc_pcm_runtime *fe = file->private_data;
2874 ssize_t out_count = PAGE_SIZE, offset = 0, ret = 0;
2875 char *buf;
2876
2877 buf = kmalloc(out_count, GFP_KERNEL);
2878 if (!buf)
2879 return -ENOMEM;
2880
2881 if (fe->cpu_dai->driver->playback.channels_min)
2882 offset += dpcm_show_state(fe, SNDRV_PCM_STREAM_PLAYBACK,
2883 buf + offset, out_count - offset);
2884
2885 if (fe->cpu_dai->driver->capture.channels_min)
2886 offset += dpcm_show_state(fe, SNDRV_PCM_STREAM_CAPTURE,
2887 buf + offset, out_count - offset);
2888
Liam Girdwoodf57b8482012-04-27 11:33:46 +01002889 ret = simple_read_from_buffer(user_buf, count, ppos, buf, offset);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002890
Liam Girdwoodf57b8482012-04-27 11:33:46 +01002891 kfree(buf);
2892 return ret;
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002893}
2894
2895static const struct file_operations dpcm_state_fops = {
Liam Girdwoodf57b8482012-04-27 11:33:46 +01002896 .open = simple_open,
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002897 .read = dpcm_state_read_file,
2898 .llseek = default_llseek,
2899};
2900
Lars-Peter Clausen2e55b902015-04-09 10:52:37 +02002901void soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime *rtd)
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002902{
Mark Brownb3bba9a2012-05-08 10:33:47 +01002903 if (!rtd->dai_link)
Lars-Peter Clausen2e55b902015-04-09 10:52:37 +02002904 return;
Mark Brownb3bba9a2012-05-08 10:33:47 +01002905
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02002906 if (!rtd->card->debugfs_card_root)
2907 return;
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002908
2909 rtd->debugfs_dpcm_root = debugfs_create_dir(rtd->dai_link->name,
2910 rtd->card->debugfs_card_root);
2911 if (!rtd->debugfs_dpcm_root) {
2912 dev_dbg(rtd->dev,
2913 "ASoC: Failed to create dpcm debugfs directory %s\n",
2914 rtd->dai_link->name);
Lars-Peter Clausen2e55b902015-04-09 10:52:37 +02002915 return;
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002916 }
2917
Liam Girdwoodf57b8482012-04-27 11:33:46 +01002918 rtd->debugfs_dpcm_state = debugfs_create_file("state", 0444,
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002919 rtd->debugfs_dpcm_root,
2920 rtd, &dpcm_state_fops);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002921}
2922#endif