blob: bbeaa87a36f4a6472059f1f311ddd802b611065b [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
602 pm_runtime_put(platform->dev);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200603 for (i = 0; i < rtd->num_codecs; i++)
604 pm_runtime_put(rtd->codec_dais[i]->dev);
Mark Brownd6652ef2011-12-03 20:14:31 +0000605 pm_runtime_put(cpu_dai->dev);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200606 for (i = 0; i < rtd->num_codecs; i++) {
607 if (!rtd->codec_dais[i]->active)
608 pinctrl_pm_select_sleep_state(rtd->codec_dais[i]->dev);
609 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800610 if (!cpu_dai->active)
611 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Mark Brownd6652ef2011-12-03 20:14:31 +0000612
Liam Girdwoodddee6272011-06-09 14:45:53 +0100613 return ret;
614}
615
616/*
617 * Power down the audio subsystem pmdown_time msecs after close is called.
618 * This is to ensure there are no pops or clicks in between any music tracks
619 * due to DAPM power cycling.
620 */
621static void close_delayed_work(struct work_struct *work)
622{
623 struct snd_soc_pcm_runtime *rtd =
624 container_of(work, struct snd_soc_pcm_runtime, delayed_work.work);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200625 struct snd_soc_dai *codec_dai = rtd->codec_dais[0];
Liam Girdwoodddee6272011-06-09 14:45:53 +0100626
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100627 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100628
Liam Girdwood103d84a2012-11-19 14:39:15 +0000629 dev_dbg(rtd->dev, "ASoC: pop wq checking: %s status: %s waiting: %s\n",
Liam Girdwoodddee6272011-06-09 14:45:53 +0100630 codec_dai->driver->playback.stream_name,
631 codec_dai->playback_active ? "active" : "inactive",
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600632 rtd->pop_wait ? "yes" : "no");
Liam Girdwoodddee6272011-06-09 14:45:53 +0100633
634 /* are we waiting on this codec DAI stream */
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600635 if (rtd->pop_wait == 1) {
636 rtd->pop_wait = 0;
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800637 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_PLAYBACK,
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000638 SND_SOC_DAPM_STREAM_STOP);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100639 }
640
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100641 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100642}
643
644/*
645 * Called by ALSA when a PCM substream is closed. Private data can be
646 * freed here. The cpu DAI, codec DAI, machine and platform are also
647 * shutdown.
648 */
Liam Girdwood91d5e6b2011-06-09 17:04:59 +0100649static int soc_pcm_close(struct snd_pcm_substream *substream)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100650{
651 struct snd_soc_pcm_runtime *rtd = substream->private_data;
652 struct snd_soc_platform *platform = rtd->platform;
653 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200654 struct snd_soc_dai *codec_dai;
655 int i;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100656
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100657 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100658
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100659 snd_soc_runtime_deactivate(rtd, substream->stream);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100660
Dong Aisheng17841022011-08-29 17:15:14 +0800661 /* clear the corresponding DAIs rate when inactive */
662 if (!cpu_dai->active)
663 cpu_dai->rate = 0;
664
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200665 for (i = 0; i < rtd->num_codecs; i++) {
666 codec_dai = rtd->codec_dais[i];
667 if (!codec_dai->active)
668 codec_dai->rate = 0;
669 }
Sascha Hauer25b76792011-08-17 09:20:01 +0200670
Ramesh Babuae116012014-10-15 12:34:59 +0530671 snd_soc_dai_digital_mute(cpu_dai, 1, substream->stream);
672
Liam Girdwoodddee6272011-06-09 14:45:53 +0100673 if (cpu_dai->driver->ops->shutdown)
674 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
675
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200676 for (i = 0; i < rtd->num_codecs; i++) {
677 codec_dai = rtd->codec_dais[i];
678 if (codec_dai->driver->ops->shutdown)
679 codec_dai->driver->ops->shutdown(substream, codec_dai);
680 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100681
682 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
683 rtd->dai_link->ops->shutdown(substream);
684
685 if (platform->driver->ops && platform->driver->ops->close)
686 platform->driver->ops->close(substream);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100687
688 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Lars-Peter Clausen208a1582014-03-05 13:17:42 +0100689 if (snd_soc_runtime_ignore_pmdown_time(rtd)) {
Peter Ujfalusi1d69c5c2011-10-14 14:43:33 +0300690 /* powered down playback stream now */
691 snd_soc_dapm_stream_event(rtd,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800692 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800693 SND_SOC_DAPM_STREAM_STOP);
Peter Ujfalusi1d69c5c2011-10-14 14:43:33 +0300694 } else {
695 /* start delayed pop wq here for playback streams */
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600696 rtd->pop_wait = 1;
Mark Brownd4e1a732013-07-18 11:52:17 +0100697 queue_delayed_work(system_power_efficient_wq,
698 &rtd->delayed_work,
699 msecs_to_jiffies(rtd->pmdown_time));
Peter Ujfalusi1d69c5c2011-10-14 14:43:33 +0300700 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100701 } else {
702 /* capture streams can be powered down now */
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800703 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_CAPTURE,
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000704 SND_SOC_DAPM_STREAM_STOP);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100705 }
706
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100707 mutex_unlock(&rtd->pcm_mutex);
Mark Brownd6652ef2011-12-03 20:14:31 +0000708
709 pm_runtime_put(platform->dev);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200710 for (i = 0; i < rtd->num_codecs; i++)
711 pm_runtime_put(rtd->codec_dais[i]->dev);
Mark Brownd6652ef2011-12-03 20:14:31 +0000712 pm_runtime_put(cpu_dai->dev);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200713 for (i = 0; i < rtd->num_codecs; i++) {
714 if (!rtd->codec_dais[i]->active)
715 pinctrl_pm_select_sleep_state(rtd->codec_dais[i]->dev);
716 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800717 if (!cpu_dai->active)
718 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Mark Brownd6652ef2011-12-03 20:14:31 +0000719
Liam Girdwoodddee6272011-06-09 14:45:53 +0100720 return 0;
721}
722
723/*
724 * Called by ALSA when the PCM substream is prepared, can set format, sample
725 * rate, etc. This function is non atomic and can be called multiple times,
726 * it can refer to the runtime info.
727 */
728static int soc_pcm_prepare(struct snd_pcm_substream *substream)
729{
730 struct snd_soc_pcm_runtime *rtd = substream->private_data;
731 struct snd_soc_platform *platform = rtd->platform;
732 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200733 struct snd_soc_dai *codec_dai;
734 int i, ret = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100735
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100736 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100737
738 if (rtd->dai_link->ops && rtd->dai_link->ops->prepare) {
739 ret = rtd->dai_link->ops->prepare(substream);
740 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000741 dev_err(rtd->card->dev, "ASoC: machine prepare error:"
742 " %d\n", ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100743 goto out;
744 }
745 }
746
747 if (platform->driver->ops && platform->driver->ops->prepare) {
748 ret = platform->driver->ops->prepare(substream);
749 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000750 dev_err(platform->dev, "ASoC: platform prepare error:"
751 " %d\n", ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100752 goto out;
753 }
754 }
755
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200756 for (i = 0; i < rtd->num_codecs; i++) {
757 codec_dai = rtd->codec_dais[i];
758 if (codec_dai->driver->ops && codec_dai->driver->ops->prepare) {
759 ret = codec_dai->driver->ops->prepare(substream,
760 codec_dai);
761 if (ret < 0) {
762 dev_err(codec_dai->dev,
Jarkko Nikula90cc7f12014-12-23 11:04:41 +0200763 "ASoC: codec DAI prepare error: %d\n",
764 ret);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200765 goto out;
766 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100767 }
768 }
769
Mark Brownc5914b02013-10-30 17:47:39 -0700770 if (cpu_dai->driver->ops && cpu_dai->driver->ops->prepare) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100771 ret = cpu_dai->driver->ops->prepare(substream, cpu_dai);
772 if (ret < 0) {
Jarkko Nikula90cc7f12014-12-23 11:04:41 +0200773 dev_err(cpu_dai->dev,
774 "ASoC: cpu DAI prepare error: %d\n", ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100775 goto out;
776 }
777 }
778
779 /* cancel any delayed stream shutdown that is pending */
780 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600781 rtd->pop_wait) {
782 rtd->pop_wait = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100783 cancel_delayed_work(&rtd->delayed_work);
784 }
785
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000786 snd_soc_dapm_stream_event(rtd, substream->stream,
787 SND_SOC_DAPM_STREAM_START);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100788
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200789 for (i = 0; i < rtd->num_codecs; i++)
790 snd_soc_dai_digital_mute(rtd->codec_dais[i], 0,
791 substream->stream);
Ramesh Babuae116012014-10-15 12:34:59 +0530792 snd_soc_dai_digital_mute(cpu_dai, 0, substream->stream);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100793
794out:
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100795 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100796 return ret;
797}
798
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200799static void soc_pcm_codec_params_fixup(struct snd_pcm_hw_params *params,
800 unsigned int mask)
801{
802 struct snd_interval *interval;
803 int channels = hweight_long(mask);
804
805 interval = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
806 interval->min = channels;
807 interval->max = channels;
808}
809
Benoit Cousson93e69582014-07-08 23:19:38 +0200810int soc_dai_hw_params(struct snd_pcm_substream *substream,
811 struct snd_pcm_hw_params *params,
812 struct snd_soc_dai *dai)
813{
814 int ret;
815
816 if (dai->driver->ops && dai->driver->ops->hw_params) {
817 ret = dai->driver->ops->hw_params(substream, params, dai);
818 if (ret < 0) {
819 dev_err(dai->dev, "ASoC: can't set %s hw params: %d\n",
820 dai->name, ret);
821 return ret;
822 }
823 }
824
825 return 0;
826}
827
Liam Girdwoodddee6272011-06-09 14:45:53 +0100828/*
829 * Called by ALSA when the hardware params are set by application. This
830 * function can also be called multiple times and can allocate buffers
831 * (using snd_pcm_lib_* ). It's non-atomic.
832 */
833static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
834 struct snd_pcm_hw_params *params)
835{
836 struct snd_soc_pcm_runtime *rtd = substream->private_data;
837 struct snd_soc_platform *platform = rtd->platform;
838 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200839 int i, ret = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100840
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100841 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100842
Nicolin Chen3635bf02013-11-13 18:56:24 +0800843 ret = soc_pcm_params_symmetry(substream, params);
844 if (ret)
845 goto out;
846
Liam Girdwoodddee6272011-06-09 14:45:53 +0100847 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_params) {
848 ret = rtd->dai_link->ops->hw_params(substream, params);
849 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000850 dev_err(rtd->card->dev, "ASoC: machine hw_params"
851 " failed: %d\n", ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100852 goto out;
853 }
854 }
855
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200856 for (i = 0; i < rtd->num_codecs; i++) {
857 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
858 struct snd_pcm_hw_params codec_params;
859
Ricard Wanderlofcde79032015-08-24 14:16:51 +0200860 /*
861 * Skip CODECs which don't support the current stream type,
862 * the idea being that if a CODEC is not used for the currently
863 * set up transfer direction, it should not need to be
864 * configured, especially since the configuration used might
865 * not even be supported by that CODEC. There may be cases
866 * however where a CODEC needs to be set up although it is
867 * actually not being used for the transfer, e.g. if a
868 * capture-only CODEC is acting as an LRCLK and/or BCLK master
869 * for the DAI link including a playback-only CODEC.
870 * If this becomes necessary, we will have to augment the
871 * machine driver setup with information on how to act, so
872 * we can do the right thing here.
873 */
874 if (!snd_soc_dai_stream_valid(codec_dai, substream->stream))
875 continue;
876
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200877 /* copy params for each codec */
878 codec_params = *params;
879
880 /* fixup params based on TDM slot masks */
881 if (codec_dai->tx_mask)
882 soc_pcm_codec_params_fixup(&codec_params,
883 codec_dai->tx_mask);
884 if (codec_dai->rx_mask)
885 soc_pcm_codec_params_fixup(&codec_params,
886 codec_dai->rx_mask);
887
Benoit Cousson93e69582014-07-08 23:19:38 +0200888 ret = soc_dai_hw_params(substream, &codec_params, codec_dai);
889 if(ret < 0)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100890 goto codec_err;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200891
892 codec_dai->rate = params_rate(&codec_params);
893 codec_dai->channels = params_channels(&codec_params);
894 codec_dai->sample_bits = snd_pcm_format_physical_width(
895 params_format(&codec_params));
Liam Girdwoodddee6272011-06-09 14:45:53 +0100896 }
897
Benoit Cousson93e69582014-07-08 23:19:38 +0200898 ret = soc_dai_hw_params(substream, params, cpu_dai);
899 if (ret < 0)
900 goto interface_err;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100901
902 if (platform->driver->ops && platform->driver->ops->hw_params) {
903 ret = platform->driver->ops->hw_params(substream, params);
904 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000905 dev_err(platform->dev, "ASoC: %s hw params failed: %d\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200906 platform->component.name, ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100907 goto platform_err;
908 }
909 }
910
Nicolin Chen3635bf02013-11-13 18:56:24 +0800911 /* store the parameters for each DAIs */
Dong Aisheng17841022011-08-29 17:15:14 +0800912 cpu_dai->rate = params_rate(params);
Nicolin Chen3635bf02013-11-13 18:56:24 +0800913 cpu_dai->channels = params_channels(params);
914 cpu_dai->sample_bits =
915 snd_pcm_format_physical_width(params_format(params));
916
Liam Girdwoodddee6272011-06-09 14:45:53 +0100917out:
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100918 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100919 return ret;
920
921platform_err:
Mark Brownc5914b02013-10-30 17:47:39 -0700922 if (cpu_dai->driver->ops && cpu_dai->driver->ops->hw_free)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100923 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
924
925interface_err:
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200926 i = rtd->num_codecs;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100927
928codec_err:
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200929 while (--i >= 0) {
930 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
931 if (codec_dai->driver->ops && codec_dai->driver->ops->hw_free)
932 codec_dai->driver->ops->hw_free(substream, codec_dai);
933 codec_dai->rate = 0;
934 }
935
Liam Girdwoodddee6272011-06-09 14:45:53 +0100936 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
937 rtd->dai_link->ops->hw_free(substream);
938
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100939 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100940 return ret;
941}
942
943/*
944 * Frees resources allocated by hw_params, can be called multiple times
945 */
946static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
947{
948 struct snd_soc_pcm_runtime *rtd = substream->private_data;
949 struct snd_soc_platform *platform = rtd->platform;
950 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200951 struct snd_soc_dai *codec_dai;
Nicolin Chen7f62b6e2013-12-04 11:18:36 +0800952 bool playback = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200953 int i;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100954
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100955 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100956
Nicolin Chend3383422013-11-20 18:37:09 +0800957 /* clear the corresponding DAIs parameters when going to be inactive */
958 if (cpu_dai->active == 1) {
959 cpu_dai->rate = 0;
960 cpu_dai->channels = 0;
961 cpu_dai->sample_bits = 0;
962 }
963
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200964 for (i = 0; i < rtd->num_codecs; i++) {
965 codec_dai = rtd->codec_dais[i];
966 if (codec_dai->active == 1) {
967 codec_dai->rate = 0;
968 codec_dai->channels = 0;
969 codec_dai->sample_bits = 0;
970 }
Nicolin Chend3383422013-11-20 18:37:09 +0800971 }
972
Liam Girdwoodddee6272011-06-09 14:45:53 +0100973 /* apply codec digital mute */
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200974 for (i = 0; i < rtd->num_codecs; i++) {
975 if ((playback && rtd->codec_dais[i]->playback_active == 1) ||
976 (!playback && rtd->codec_dais[i]->capture_active == 1))
977 snd_soc_dai_digital_mute(rtd->codec_dais[i], 1,
978 substream->stream);
979 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100980
981 /* free any machine hw params */
982 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
983 rtd->dai_link->ops->hw_free(substream);
984
985 /* free any DMA resources */
986 if (platform->driver->ops && platform->driver->ops->hw_free)
987 platform->driver->ops->hw_free(substream);
988
989 /* now free hw params for the DAIs */
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200990 for (i = 0; i < rtd->num_codecs; i++) {
991 codec_dai = rtd->codec_dais[i];
992 if (codec_dai->driver->ops && codec_dai->driver->ops->hw_free)
993 codec_dai->driver->ops->hw_free(substream, codec_dai);
994 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100995
Mark Brownc5914b02013-10-30 17:47:39 -0700996 if (cpu_dai->driver->ops && cpu_dai->driver->ops->hw_free)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100997 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
998
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100999 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +01001000 return 0;
1001}
1002
1003static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
1004{
1005 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1006 struct snd_soc_platform *platform = rtd->platform;
1007 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001008 struct snd_soc_dai *codec_dai;
1009 int i, ret;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001010
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001011 for (i = 0; i < rtd->num_codecs; i++) {
1012 codec_dai = rtd->codec_dais[i];
1013 if (codec_dai->driver->ops && codec_dai->driver->ops->trigger) {
1014 ret = codec_dai->driver->ops->trigger(substream,
1015 cmd, codec_dai);
1016 if (ret < 0)
1017 return ret;
1018 }
Liam Girdwoodddee6272011-06-09 14:45:53 +01001019 }
1020
1021 if (platform->driver->ops && platform->driver->ops->trigger) {
1022 ret = platform->driver->ops->trigger(substream, cmd);
1023 if (ret < 0)
1024 return ret;
1025 }
1026
Mark Brownc5914b02013-10-30 17:47:39 -07001027 if (cpu_dai->driver->ops && cpu_dai->driver->ops->trigger) {
Liam Girdwoodddee6272011-06-09 14:45:53 +01001028 ret = cpu_dai->driver->ops->trigger(substream, cmd, cpu_dai);
1029 if (ret < 0)
1030 return ret;
1031 }
Jarkko Nikula4792b0d2014-04-28 14:17:52 +02001032
1033 if (rtd->dai_link->ops && rtd->dai_link->ops->trigger) {
1034 ret = rtd->dai_link->ops->trigger(substream, cmd);
1035 if (ret < 0)
1036 return ret;
1037 }
1038
Liam Girdwoodddee6272011-06-09 14:45:53 +01001039 return 0;
1040}
1041
Mark Brown45c0a182012-05-09 21:46:27 +01001042static int soc_pcm_bespoke_trigger(struct snd_pcm_substream *substream,
1043 int cmd)
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001044{
1045 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1046 struct snd_soc_platform *platform = rtd->platform;
1047 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001048 struct snd_soc_dai *codec_dai;
1049 int i, ret;
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001050
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001051 for (i = 0; i < rtd->num_codecs; i++) {
1052 codec_dai = rtd->codec_dais[i];
1053 if (codec_dai->driver->ops &&
1054 codec_dai->driver->ops->bespoke_trigger) {
1055 ret = codec_dai->driver->ops->bespoke_trigger(substream,
1056 cmd, codec_dai);
1057 if (ret < 0)
1058 return ret;
1059 }
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001060 }
1061
Jean-Francois Moinedcf0fa22014-01-03 09:19:18 +01001062 if (platform->driver->bespoke_trigger) {
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001063 ret = platform->driver->bespoke_trigger(substream, cmd);
1064 if (ret < 0)
1065 return ret;
1066 }
1067
Mark Brownc5914b02013-10-30 17:47:39 -07001068 if (cpu_dai->driver->ops && cpu_dai->driver->ops->bespoke_trigger) {
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001069 ret = cpu_dai->driver->ops->bespoke_trigger(substream, cmd, cpu_dai);
1070 if (ret < 0)
1071 return ret;
1072 }
1073 return 0;
1074}
Liam Girdwoodddee6272011-06-09 14:45:53 +01001075/*
1076 * soc level wrapper for pointer callback
1077 * If cpu_dai, codec_dai, platform driver has the delay callback, than
1078 * the runtime->delay will be updated accordingly.
1079 */
1080static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
1081{
1082 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1083 struct snd_soc_platform *platform = rtd->platform;
1084 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001085 struct snd_soc_dai *codec_dai;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001086 struct snd_pcm_runtime *runtime = substream->runtime;
1087 snd_pcm_uframes_t offset = 0;
1088 snd_pcm_sframes_t delay = 0;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001089 snd_pcm_sframes_t codec_delay = 0;
1090 int i;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001091
1092 if (platform->driver->ops && platform->driver->ops->pointer)
1093 offset = platform->driver->ops->pointer(substream);
1094
Mark Brownc5914b02013-10-30 17:47:39 -07001095 if (cpu_dai->driver->ops && cpu_dai->driver->ops->delay)
Liam Girdwoodddee6272011-06-09 14:45:53 +01001096 delay += cpu_dai->driver->ops->delay(substream, cpu_dai);
1097
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001098 for (i = 0; i < rtd->num_codecs; i++) {
1099 codec_dai = rtd->codec_dais[i];
1100 if (codec_dai->driver->ops && codec_dai->driver->ops->delay)
1101 codec_delay = max(codec_delay,
1102 codec_dai->driver->ops->delay(substream,
1103 codec_dai));
1104 }
1105 delay += codec_delay;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001106
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001107 /*
1108 * None of the existing platform drivers implement delay(), so
1109 * for now the codec_dai of first multicodec entry is used
1110 */
Liam Girdwoodddee6272011-06-09 14:45:53 +01001111 if (platform->driver->delay)
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001112 delay += platform->driver->delay(substream, rtd->codec_dais[0]);
Liam Girdwoodddee6272011-06-09 14:45:53 +01001113
1114 runtime->delay = delay;
1115
1116 return offset;
1117}
1118
Liam Girdwood01d75842012-04-25 12:12:49 +01001119/* connect a FE and BE */
1120static int dpcm_be_connect(struct snd_soc_pcm_runtime *fe,
1121 struct snd_soc_pcm_runtime *be, int stream)
1122{
1123 struct snd_soc_dpcm *dpcm;
1124
1125 /* only add new dpcms */
1126 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1127 if (dpcm->be == be && dpcm->fe == fe)
1128 return 0;
1129 }
1130
1131 dpcm = kzalloc(sizeof(struct snd_soc_dpcm), GFP_KERNEL);
1132 if (!dpcm)
1133 return -ENOMEM;
1134
1135 dpcm->be = be;
1136 dpcm->fe = fe;
1137 be->dpcm[stream].runtime = fe->dpcm[stream].runtime;
1138 dpcm->state = SND_SOC_DPCM_LINK_STATE_NEW;
1139 list_add(&dpcm->list_be, &fe->dpcm[stream].be_clients);
1140 list_add(&dpcm->list_fe, &be->dpcm[stream].fe_clients);
1141
Jarkko Nikula7cc302d2013-09-30 17:08:15 +03001142 dev_dbg(fe->dev, "connected new DPCM %s path %s %s %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001143 stream ? "capture" : "playback", fe->dai_link->name,
1144 stream ? "<-" : "->", be->dai_link->name);
1145
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001146#ifdef CONFIG_DEBUG_FS
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02001147 if (fe->debugfs_dpcm_root)
1148 dpcm->debugfs_state = debugfs_create_u32(be->dai_link->name, 0644,
1149 fe->debugfs_dpcm_root, &dpcm->state);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001150#endif
Liam Girdwood01d75842012-04-25 12:12:49 +01001151 return 1;
1152}
1153
1154/* reparent a BE onto another FE */
1155static void dpcm_be_reparent(struct snd_soc_pcm_runtime *fe,
1156 struct snd_soc_pcm_runtime *be, int stream)
1157{
1158 struct snd_soc_dpcm *dpcm;
1159 struct snd_pcm_substream *fe_substream, *be_substream;
1160
1161 /* reparent if BE is connected to other FEs */
1162 if (!be->dpcm[stream].users)
1163 return;
1164
1165 be_substream = snd_soc_dpcm_get_substream(be, stream);
1166
1167 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
1168 if (dpcm->fe == fe)
1169 continue;
1170
Jarkko Nikula7cc302d2013-09-30 17:08:15 +03001171 dev_dbg(fe->dev, "reparent %s path %s %s %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001172 stream ? "capture" : "playback",
1173 dpcm->fe->dai_link->name,
1174 stream ? "<-" : "->", dpcm->be->dai_link->name);
1175
1176 fe_substream = snd_soc_dpcm_get_substream(dpcm->fe, stream);
1177 be_substream->runtime = fe_substream->runtime;
1178 break;
1179 }
1180}
1181
1182/* disconnect a BE and FE */
Liam Girdwood23607022014-01-17 17:03:55 +00001183void dpcm_be_disconnect(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001184{
1185 struct snd_soc_dpcm *dpcm, *d;
1186
1187 list_for_each_entry_safe(dpcm, d, &fe->dpcm[stream].be_clients, list_be) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001188 dev_dbg(fe->dev, "ASoC: BE %s disconnect check for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001189 stream ? "capture" : "playback",
1190 dpcm->be->dai_link->name);
1191
1192 if (dpcm->state != SND_SOC_DPCM_LINK_STATE_FREE)
1193 continue;
1194
Jarkko Nikula7cc302d2013-09-30 17:08:15 +03001195 dev_dbg(fe->dev, "freed DSP %s path %s %s %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001196 stream ? "capture" : "playback", fe->dai_link->name,
1197 stream ? "<-" : "->", dpcm->be->dai_link->name);
1198
1199 /* BEs still alive need new FE */
1200 dpcm_be_reparent(fe, dpcm->be, stream);
1201
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001202#ifdef CONFIG_DEBUG_FS
1203 debugfs_remove(dpcm->debugfs_state);
1204#endif
Liam Girdwood01d75842012-04-25 12:12:49 +01001205 list_del(&dpcm->list_be);
1206 list_del(&dpcm->list_fe);
1207 kfree(dpcm);
1208 }
1209}
1210
1211/* get BE for DAI widget and stream */
1212static struct snd_soc_pcm_runtime *dpcm_get_be(struct snd_soc_card *card,
1213 struct snd_soc_dapm_widget *widget, int stream)
1214{
1215 struct snd_soc_pcm_runtime *be;
Mengdong Lin1a497982015-11-18 02:34:11 -05001216 int i;
Liam Girdwood01d75842012-04-25 12:12:49 +01001217
1218 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
Mengdong Lin1a497982015-11-18 02:34:11 -05001219 list_for_each_entry(be, &card->rtd_list, list) {
Liam Girdwood01d75842012-04-25 12:12:49 +01001220
Liam Girdwood35ea0652012-06-05 19:26:59 +01001221 if (!be->dai_link->no_pcm)
1222 continue;
1223
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001224 if (be->cpu_dai->playback_widget == widget)
Liam Girdwood01d75842012-04-25 12:12:49 +01001225 return be;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001226
Mengdong Lin1a497982015-11-18 02:34:11 -05001227 for (i = 0; i < be->num_codecs; i++) {
1228 struct snd_soc_dai *dai = be->codec_dais[i];
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001229 if (dai->playback_widget == widget)
1230 return be;
1231 }
Liam Girdwood01d75842012-04-25 12:12:49 +01001232 }
1233 } else {
1234
Mengdong Lin1a497982015-11-18 02:34:11 -05001235 list_for_each_entry(be, &card->rtd_list, list) {
Liam Girdwood01d75842012-04-25 12:12:49 +01001236
Liam Girdwood35ea0652012-06-05 19:26:59 +01001237 if (!be->dai_link->no_pcm)
1238 continue;
1239
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001240 if (be->cpu_dai->capture_widget == widget)
Liam Girdwood01d75842012-04-25 12:12:49 +01001241 return be;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001242
Mengdong Lin1a497982015-11-18 02:34:11 -05001243 for (i = 0; i < be->num_codecs; i++) {
1244 struct snd_soc_dai *dai = be->codec_dais[i];
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001245 if (dai->capture_widget == widget)
1246 return be;
1247 }
Liam Girdwood01d75842012-04-25 12:12:49 +01001248 }
1249 }
1250
Liam Girdwood103d84a2012-11-19 14:39:15 +00001251 dev_err(card->dev, "ASoC: can't get %s BE for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001252 stream ? "capture" : "playback", widget->name);
1253 return NULL;
1254}
1255
1256static inline struct snd_soc_dapm_widget *
Benoit Cousson37018612014-04-24 14:01:45 +02001257 dai_get_widget(struct snd_soc_dai *dai, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001258{
1259 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
Benoit Cousson37018612014-04-24 14:01:45 +02001260 return dai->playback_widget;
Liam Girdwood01d75842012-04-25 12:12:49 +01001261 else
Benoit Cousson37018612014-04-24 14:01:45 +02001262 return dai->capture_widget;
Liam Girdwood01d75842012-04-25 12:12:49 +01001263}
1264
1265static int widget_in_list(struct snd_soc_dapm_widget_list *list,
1266 struct snd_soc_dapm_widget *widget)
1267{
1268 int i;
1269
1270 for (i = 0; i < list->num_widgets; i++) {
1271 if (widget == list->widgets[i])
1272 return 1;
1273 }
1274
1275 return 0;
1276}
1277
Liam Girdwood23607022014-01-17 17:03:55 +00001278int dpcm_path_get(struct snd_soc_pcm_runtime *fe,
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001279 int stream, struct snd_soc_dapm_widget_list **list)
Liam Girdwood01d75842012-04-25 12:12:49 +01001280{
1281 struct snd_soc_dai *cpu_dai = fe->cpu_dai;
Liam Girdwood01d75842012-04-25 12:12:49 +01001282 int paths;
1283
Liam Girdwood01d75842012-04-25 12:12:49 +01001284 /* get number of valid DAI paths and their widgets */
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001285 paths = snd_soc_dapm_dai_get_connected_widgets(cpu_dai, stream, list);
Liam Girdwood01d75842012-04-25 12:12:49 +01001286
Liam Girdwood103d84a2012-11-19 14:39:15 +00001287 dev_dbg(fe->dev, "ASoC: found %d audio %s paths\n", paths,
Liam Girdwood01d75842012-04-25 12:12:49 +01001288 stream ? "capture" : "playback");
1289
Liam Girdwood01d75842012-04-25 12:12:49 +01001290 return paths;
1291}
1292
Liam Girdwood01d75842012-04-25 12:12:49 +01001293static int dpcm_prune_paths(struct snd_soc_pcm_runtime *fe, int stream,
1294 struct snd_soc_dapm_widget_list **list_)
1295{
1296 struct snd_soc_dpcm *dpcm;
1297 struct snd_soc_dapm_widget_list *list = *list_;
1298 struct snd_soc_dapm_widget *widget;
1299 int prune = 0;
1300
1301 /* Destroy any old FE <--> BE connections */
1302 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001303 unsigned int i;
Liam Girdwood01d75842012-04-25 12:12:49 +01001304
1305 /* is there a valid CPU DAI widget for this BE */
Benoit Cousson37018612014-04-24 14:01:45 +02001306 widget = dai_get_widget(dpcm->be->cpu_dai, stream);
Liam Girdwood01d75842012-04-25 12:12:49 +01001307
1308 /* prune the BE if it's no longer in our active list */
1309 if (widget && widget_in_list(list, widget))
1310 continue;
1311
1312 /* is there a valid CODEC DAI widget for this BE */
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001313 for (i = 0; i < dpcm->be->num_codecs; i++) {
1314 struct snd_soc_dai *dai = dpcm->be->codec_dais[i];
1315 widget = dai_get_widget(dai, stream);
Liam Girdwood01d75842012-04-25 12:12:49 +01001316
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001317 /* prune the BE if it's no longer in our active list */
1318 if (widget && widget_in_list(list, widget))
1319 continue;
1320 }
Liam Girdwood01d75842012-04-25 12:12:49 +01001321
Liam Girdwood103d84a2012-11-19 14:39:15 +00001322 dev_dbg(fe->dev, "ASoC: pruning %s BE %s for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001323 stream ? "capture" : "playback",
1324 dpcm->be->dai_link->name, fe->dai_link->name);
1325 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
1326 dpcm->be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
1327 prune++;
1328 }
1329
Liam Girdwood103d84a2012-11-19 14:39:15 +00001330 dev_dbg(fe->dev, "ASoC: found %d old BE paths for pruning\n", prune);
Liam Girdwood01d75842012-04-25 12:12:49 +01001331 return prune;
1332}
1333
1334static int dpcm_add_paths(struct snd_soc_pcm_runtime *fe, int stream,
1335 struct snd_soc_dapm_widget_list **list_)
1336{
1337 struct snd_soc_card *card = fe->card;
1338 struct snd_soc_dapm_widget_list *list = *list_;
1339 struct snd_soc_pcm_runtime *be;
1340 int i, new = 0, err;
1341
1342 /* Create any new FE <--> BE connections */
1343 for (i = 0; i < list->num_widgets; i++) {
1344
Mark Brown46162742013-06-05 19:36:11 +01001345 switch (list->widgets[i]->id) {
1346 case snd_soc_dapm_dai_in:
Koro Chenc5b85402015-07-06 10:02:10 +08001347 if (stream != SNDRV_PCM_STREAM_PLAYBACK)
1348 continue;
1349 break;
Mark Brown46162742013-06-05 19:36:11 +01001350 case snd_soc_dapm_dai_out:
Koro Chenc5b85402015-07-06 10:02:10 +08001351 if (stream != SNDRV_PCM_STREAM_CAPTURE)
1352 continue;
Mark Brown46162742013-06-05 19:36:11 +01001353 break;
1354 default:
Liam Girdwood01d75842012-04-25 12:12:49 +01001355 continue;
Mark Brown46162742013-06-05 19:36:11 +01001356 }
Liam Girdwood01d75842012-04-25 12:12:49 +01001357
1358 /* is there a valid BE rtd for this widget */
1359 be = dpcm_get_be(card, list->widgets[i], stream);
1360 if (!be) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001361 dev_err(fe->dev, "ASoC: no BE found for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001362 list->widgets[i]->name);
1363 continue;
1364 }
1365
1366 /* make sure BE is a real BE */
1367 if (!be->dai_link->no_pcm)
1368 continue;
1369
1370 /* don't connect if FE is not running */
Liam Girdwood23607022014-01-17 17:03:55 +00001371 if (!fe->dpcm[stream].runtime && !fe->fe_compr)
Liam Girdwood01d75842012-04-25 12:12:49 +01001372 continue;
1373
1374 /* newly connected FE and BE */
1375 err = dpcm_be_connect(fe, be, stream);
1376 if (err < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001377 dev_err(fe->dev, "ASoC: can't connect %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001378 list->widgets[i]->name);
1379 break;
1380 } else if (err == 0) /* already connected */
1381 continue;
1382
1383 /* new */
1384 be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
1385 new++;
1386 }
1387
Liam Girdwood103d84a2012-11-19 14:39:15 +00001388 dev_dbg(fe->dev, "ASoC: found %d new BE paths\n", new);
Liam Girdwood01d75842012-04-25 12:12:49 +01001389 return new;
1390}
1391
1392/*
1393 * Find the corresponding BE DAIs that source or sink audio to this
1394 * FE substream.
1395 */
Liam Girdwood23607022014-01-17 17:03:55 +00001396int dpcm_process_paths(struct snd_soc_pcm_runtime *fe,
Liam Girdwood01d75842012-04-25 12:12:49 +01001397 int stream, struct snd_soc_dapm_widget_list **list, int new)
1398{
1399 if (new)
1400 return dpcm_add_paths(fe, stream, list);
1401 else
1402 return dpcm_prune_paths(fe, stream, list);
1403}
1404
Liam Girdwood23607022014-01-17 17:03:55 +00001405void dpcm_clear_pending_state(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001406{
1407 struct snd_soc_dpcm *dpcm;
1408
1409 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
1410 dpcm->be->dpcm[stream].runtime_update =
1411 SND_SOC_DPCM_UPDATE_NO;
1412}
1413
1414static void dpcm_be_dai_startup_unwind(struct snd_soc_pcm_runtime *fe,
1415 int stream)
1416{
1417 struct snd_soc_dpcm *dpcm;
1418
1419 /* disable any enabled and non active backends */
1420 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1421
1422 struct snd_soc_pcm_runtime *be = dpcm->be;
1423 struct snd_pcm_substream *be_substream =
1424 snd_soc_dpcm_get_substream(be, stream);
1425
1426 if (be->dpcm[stream].users == 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001427 dev_err(be->dev, "ASoC: no users %s at close - state %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001428 stream ? "capture" : "playback",
1429 be->dpcm[stream].state);
1430
1431 if (--be->dpcm[stream].users != 0)
1432 continue;
1433
1434 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)
1435 continue;
1436
1437 soc_pcm_close(be_substream);
1438 be_substream->runtime = NULL;
1439 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1440 }
1441}
1442
Liam Girdwood23607022014-01-17 17:03:55 +00001443int dpcm_be_dai_startup(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001444{
1445 struct snd_soc_dpcm *dpcm;
1446 int err, count = 0;
1447
1448 /* only startup BE DAIs that are either sinks or sources to this FE DAI */
1449 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1450
1451 struct snd_soc_pcm_runtime *be = dpcm->be;
1452 struct snd_pcm_substream *be_substream =
1453 snd_soc_dpcm_get_substream(be, stream);
1454
Russell King - ARM Linux2062b4c2013-10-31 15:09:20 +00001455 if (!be_substream) {
1456 dev_err(be->dev, "ASoC: no backend %s stream\n",
1457 stream ? "capture" : "playback");
1458 continue;
1459 }
1460
Liam Girdwood01d75842012-04-25 12:12:49 +01001461 /* is this op for this BE ? */
1462 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1463 continue;
1464
1465 /* first time the dpcm is open ? */
1466 if (be->dpcm[stream].users == DPCM_MAX_BE_USERS)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001467 dev_err(be->dev, "ASoC: too many users %s at open %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001468 stream ? "capture" : "playback",
1469 be->dpcm[stream].state);
1470
1471 if (be->dpcm[stream].users++ != 0)
1472 continue;
1473
1474 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_NEW) &&
1475 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_CLOSE))
1476 continue;
1477
Russell King - ARM Linux2062b4c2013-10-31 15:09:20 +00001478 dev_dbg(be->dev, "ASoC: open %s BE %s\n",
1479 stream ? "capture" : "playback", be->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001480
1481 be_substream->runtime = be->dpcm[stream].runtime;
1482 err = soc_pcm_open(be_substream);
1483 if (err < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001484 dev_err(be->dev, "ASoC: BE open failed %d\n", err);
Liam Girdwood01d75842012-04-25 12:12:49 +01001485 be->dpcm[stream].users--;
1486 if (be->dpcm[stream].users < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001487 dev_err(be->dev, "ASoC: no users %s at unwind %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001488 stream ? "capture" : "playback",
1489 be->dpcm[stream].state);
1490
1491 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1492 goto unwind;
1493 }
1494
1495 be->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1496 count++;
1497 }
1498
1499 return count;
1500
1501unwind:
1502 /* disable any enabled and non active backends */
1503 list_for_each_entry_continue_reverse(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1504 struct snd_soc_pcm_runtime *be = dpcm->be;
1505 struct snd_pcm_substream *be_substream =
1506 snd_soc_dpcm_get_substream(be, stream);
1507
1508 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1509 continue;
1510
1511 if (be->dpcm[stream].users == 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001512 dev_err(be->dev, "ASoC: no users %s at close %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001513 stream ? "capture" : "playback",
1514 be->dpcm[stream].state);
1515
1516 if (--be->dpcm[stream].users != 0)
1517 continue;
1518
1519 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)
1520 continue;
1521
1522 soc_pcm_close(be_substream);
1523 be_substream->runtime = NULL;
1524 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1525 }
1526
1527 return err;
1528}
1529
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001530static void dpcm_init_runtime_hw(struct snd_pcm_runtime *runtime,
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001531 struct snd_soc_pcm_stream *stream,
1532 u64 formats)
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001533{
1534 runtime->hw.rate_min = stream->rate_min;
1535 runtime->hw.rate_max = stream->rate_max;
1536 runtime->hw.channels_min = stream->channels_min;
1537 runtime->hw.channels_max = stream->channels_max;
Lars-Peter Clausen002220a2014-01-06 14:19:07 +01001538 if (runtime->hw.formats)
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001539 runtime->hw.formats &= formats & stream->formats;
Lars-Peter Clausen002220a2014-01-06 14:19:07 +01001540 else
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001541 runtime->hw.formats = formats & stream->formats;
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001542 runtime->hw.rates = stream->rates;
1543}
1544
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001545static u64 dpcm_runtime_base_format(struct snd_pcm_substream *substream)
1546{
1547 struct snd_soc_pcm_runtime *fe = substream->private_data;
1548 struct snd_soc_dpcm *dpcm;
1549 u64 formats = ULLONG_MAX;
1550 int stream = substream->stream;
1551
1552 if (!fe->dai_link->dpcm_merged_format)
1553 return formats;
1554
1555 /*
1556 * It returns merged BE codec format
1557 * if FE want to use it (= dpcm_merged_format)
1558 */
1559
1560 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1561 struct snd_soc_pcm_runtime *be = dpcm->be;
1562 struct snd_soc_dai_driver *codec_dai_drv;
1563 struct snd_soc_pcm_stream *codec_stream;
1564 int i;
1565
1566 for (i = 0; i < be->num_codecs; i++) {
1567 codec_dai_drv = be->codec_dais[i]->driver;
1568 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
1569 codec_stream = &codec_dai_drv->playback;
1570 else
1571 codec_stream = &codec_dai_drv->capture;
1572
1573 formats &= codec_stream->formats;
1574 }
1575 }
1576
1577 return formats;
1578}
1579
Mark Brown45c0a182012-05-09 21:46:27 +01001580static void dpcm_set_fe_runtime(struct snd_pcm_substream *substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001581{
1582 struct snd_pcm_runtime *runtime = substream->runtime;
1583 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1584 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1585 struct snd_soc_dai_driver *cpu_dai_drv = cpu_dai->driver;
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001586 u64 format = dpcm_runtime_base_format(substream);
Liam Girdwood01d75842012-04-25 12:12:49 +01001587
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001588 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001589 dpcm_init_runtime_hw(runtime, &cpu_dai_drv->playback, format);
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001590 else
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001591 dpcm_init_runtime_hw(runtime, &cpu_dai_drv->capture, format);
Liam Girdwood01d75842012-04-25 12:12:49 +01001592}
1593
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001594static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd);
1595
1596/* Set FE's runtime_update state; the state is protected via PCM stream lock
1597 * for avoiding the race with trigger callback.
1598 * If the state is unset and a trigger is pending while the previous operation,
1599 * process the pending trigger action here.
1600 */
1601static void dpcm_set_fe_update_state(struct snd_soc_pcm_runtime *fe,
1602 int stream, enum snd_soc_dpcm_update state)
1603{
1604 struct snd_pcm_substream *substream =
1605 snd_soc_dpcm_get_substream(fe, stream);
1606
1607 snd_pcm_stream_lock_irq(substream);
1608 if (state == SND_SOC_DPCM_UPDATE_NO && fe->dpcm[stream].trigger_pending) {
1609 dpcm_fe_dai_do_trigger(substream,
1610 fe->dpcm[stream].trigger_pending - 1);
1611 fe->dpcm[stream].trigger_pending = 0;
1612 }
1613 fe->dpcm[stream].runtime_update = state;
1614 snd_pcm_stream_unlock_irq(substream);
1615}
1616
Liam Girdwood01d75842012-04-25 12:12:49 +01001617static int dpcm_fe_dai_startup(struct snd_pcm_substream *fe_substream)
1618{
1619 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
1620 struct snd_pcm_runtime *runtime = fe_substream->runtime;
1621 int stream = fe_substream->stream, ret = 0;
1622
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001623 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01001624
1625 ret = dpcm_be_dai_startup(fe, fe_substream->stream);
1626 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001627 dev_err(fe->dev,"ASoC: failed to start some BEs %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001628 goto be_err;
1629 }
1630
Liam Girdwood103d84a2012-11-19 14:39:15 +00001631 dev_dbg(fe->dev, "ASoC: open FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001632
1633 /* start the DAI frontend */
1634 ret = soc_pcm_open(fe_substream);
1635 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001636 dev_err(fe->dev,"ASoC: failed to start FE %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001637 goto unwind;
1638 }
1639
1640 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1641
1642 dpcm_set_fe_runtime(fe_substream);
1643 snd_pcm_limit_hw_rates(runtime);
1644
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001645 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01001646 return 0;
1647
1648unwind:
1649 dpcm_be_dai_startup_unwind(fe, fe_substream->stream);
1650be_err:
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001651 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01001652 return ret;
1653}
1654
Liam Girdwood23607022014-01-17 17:03:55 +00001655int dpcm_be_dai_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001656{
1657 struct snd_soc_dpcm *dpcm;
1658
1659 /* only shutdown BEs that are either sinks or sources to this FE DAI */
1660 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1661
1662 struct snd_soc_pcm_runtime *be = dpcm->be;
1663 struct snd_pcm_substream *be_substream =
1664 snd_soc_dpcm_get_substream(be, stream);
1665
1666 /* is this op for this BE ? */
1667 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1668 continue;
1669
1670 if (be->dpcm[stream].users == 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001671 dev_err(be->dev, "ASoC: no users %s at close - state %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001672 stream ? "capture" : "playback",
1673 be->dpcm[stream].state);
1674
1675 if (--be->dpcm[stream].users != 0)
1676 continue;
1677
1678 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
1679 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN))
1680 continue;
1681
Liam Girdwood103d84a2012-11-19 14:39:15 +00001682 dev_dbg(be->dev, "ASoC: close BE %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001683 dpcm->fe->dai_link->name);
1684
1685 soc_pcm_close(be_substream);
1686 be_substream->runtime = NULL;
1687
1688 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1689 }
1690 return 0;
1691}
1692
1693static int dpcm_fe_dai_shutdown(struct snd_pcm_substream *substream)
1694{
1695 struct snd_soc_pcm_runtime *fe = substream->private_data;
1696 int stream = substream->stream;
1697
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001698 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01001699
1700 /* shutdown the BEs */
1701 dpcm_be_dai_shutdown(fe, substream->stream);
1702
Liam Girdwood103d84a2012-11-19 14:39:15 +00001703 dev_dbg(fe->dev, "ASoC: close FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001704
1705 /* now shutdown the frontend */
1706 soc_pcm_close(substream);
1707
1708 /* run the stream event for each BE */
1709 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP);
1710
1711 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001712 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01001713 return 0;
1714}
1715
Liam Girdwood23607022014-01-17 17:03:55 +00001716int dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001717{
1718 struct snd_soc_dpcm *dpcm;
1719
1720 /* only hw_params backends that are either sinks or sources
1721 * to this frontend DAI */
1722 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1723
1724 struct snd_soc_pcm_runtime *be = dpcm->be;
1725 struct snd_pcm_substream *be_substream =
1726 snd_soc_dpcm_get_substream(be, stream);
1727
1728 /* is this op for this BE ? */
1729 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1730 continue;
1731
1732 /* only free hw when no longer used - check all FEs */
1733 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1734 continue;
1735
Qiao Zhou36fba622014-12-03 10:13:43 +08001736 /* do not free hw if this BE is used by other FE */
1737 if (be->dpcm[stream].users > 1)
1738 continue;
1739
Liam Girdwood01d75842012-04-25 12:12:49 +01001740 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1741 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
1742 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
Patrick Lai08b27842012-12-19 19:36:02 -08001743 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED) &&
Liam Girdwood01d75842012-04-25 12:12:49 +01001744 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
1745 continue;
1746
Liam Girdwood103d84a2012-11-19 14:39:15 +00001747 dev_dbg(be->dev, "ASoC: hw_free BE %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001748 dpcm->fe->dai_link->name);
1749
1750 soc_pcm_hw_free(be_substream);
1751
1752 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
1753 }
1754
1755 return 0;
1756}
1757
Mark Brown45c0a182012-05-09 21:46:27 +01001758static int dpcm_fe_dai_hw_free(struct snd_pcm_substream *substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001759{
1760 struct snd_soc_pcm_runtime *fe = substream->private_data;
1761 int err, stream = substream->stream;
1762
1763 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001764 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01001765
Liam Girdwood103d84a2012-11-19 14:39:15 +00001766 dev_dbg(fe->dev, "ASoC: hw_free FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001767
1768 /* call hw_free on the frontend */
1769 err = soc_pcm_hw_free(substream);
1770 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001771 dev_err(fe->dev,"ASoC: hw_free FE %s failed\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001772 fe->dai_link->name);
1773
1774 /* only hw_params backends that are either sinks or sources
1775 * to this frontend DAI */
1776 err = dpcm_be_dai_hw_free(fe, stream);
1777
1778 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001779 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01001780
1781 mutex_unlock(&fe->card->mutex);
1782 return 0;
1783}
1784
Liam Girdwood23607022014-01-17 17:03:55 +00001785int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001786{
1787 struct snd_soc_dpcm *dpcm;
1788 int ret;
1789
1790 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1791
1792 struct snd_soc_pcm_runtime *be = dpcm->be;
1793 struct snd_pcm_substream *be_substream =
1794 snd_soc_dpcm_get_substream(be, stream);
1795
1796 /* is this op for this BE ? */
1797 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1798 continue;
1799
1800 /* only allow hw_params() if no connected FEs are running */
1801 if (!snd_soc_dpcm_can_be_params(fe, be, stream))
1802 continue;
1803
1804 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
1805 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1806 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE))
1807 continue;
1808
Liam Girdwood103d84a2012-11-19 14:39:15 +00001809 dev_dbg(be->dev, "ASoC: hw_params BE %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001810 dpcm->fe->dai_link->name);
1811
1812 /* copy params for each dpcm */
1813 memcpy(&dpcm->hw_params, &fe->dpcm[stream].hw_params,
1814 sizeof(struct snd_pcm_hw_params));
1815
1816 /* perform any hw_params fixups */
1817 if (be->dai_link->be_hw_params_fixup) {
1818 ret = be->dai_link->be_hw_params_fixup(be,
1819 &dpcm->hw_params);
1820 if (ret < 0) {
1821 dev_err(be->dev,
Liam Girdwood103d84a2012-11-19 14:39:15 +00001822 "ASoC: hw_params BE fixup failed %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001823 ret);
1824 goto unwind;
1825 }
1826 }
1827
1828 ret = soc_pcm_hw_params(be_substream, &dpcm->hw_params);
1829 if (ret < 0) {
1830 dev_err(dpcm->be->dev,
Liam Girdwood103d84a2012-11-19 14:39:15 +00001831 "ASoC: hw_params BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001832 goto unwind;
1833 }
1834
1835 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
1836 }
1837 return 0;
1838
1839unwind:
1840 /* disable any enabled and non active backends */
1841 list_for_each_entry_continue_reverse(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1842 struct snd_soc_pcm_runtime *be = dpcm->be;
1843 struct snd_pcm_substream *be_substream =
1844 snd_soc_dpcm_get_substream(be, stream);
1845
1846 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1847 continue;
1848
1849 /* only allow hw_free() if no connected FEs are running */
1850 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1851 continue;
1852
1853 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
1854 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1855 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
1856 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
1857 continue;
1858
1859 soc_pcm_hw_free(be_substream);
1860 }
1861
1862 return ret;
1863}
1864
Mark Brown45c0a182012-05-09 21:46:27 +01001865static int dpcm_fe_dai_hw_params(struct snd_pcm_substream *substream,
1866 struct snd_pcm_hw_params *params)
Liam Girdwood01d75842012-04-25 12:12:49 +01001867{
1868 struct snd_soc_pcm_runtime *fe = substream->private_data;
1869 int ret, stream = substream->stream;
1870
1871 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001872 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01001873
1874 memcpy(&fe->dpcm[substream->stream].hw_params, params,
1875 sizeof(struct snd_pcm_hw_params));
1876 ret = dpcm_be_dai_hw_params(fe, substream->stream);
1877 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001878 dev_err(fe->dev,"ASoC: hw_params BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001879 goto out;
1880 }
1881
Liam Girdwood103d84a2012-11-19 14:39:15 +00001882 dev_dbg(fe->dev, "ASoC: hw_params FE %s rate %d chan %x fmt %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001883 fe->dai_link->name, params_rate(params),
1884 params_channels(params), params_format(params));
1885
1886 /* call hw_params on the frontend */
1887 ret = soc_pcm_hw_params(substream, params);
1888 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001889 dev_err(fe->dev,"ASoC: hw_params FE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001890 dpcm_be_dai_hw_free(fe, stream);
1891 } else
1892 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
1893
1894out:
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001895 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01001896 mutex_unlock(&fe->card->mutex);
1897 return ret;
1898}
1899
1900static int dpcm_do_trigger(struct snd_soc_dpcm *dpcm,
1901 struct snd_pcm_substream *substream, int cmd)
1902{
1903 int ret;
1904
Liam Girdwood103d84a2012-11-19 14:39:15 +00001905 dev_dbg(dpcm->be->dev, "ASoC: trigger BE %s cmd %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001906 dpcm->fe->dai_link->name, cmd);
1907
1908 ret = soc_pcm_trigger(substream, cmd);
1909 if (ret < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001910 dev_err(dpcm->be->dev,"ASoC: trigger BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001911
1912 return ret;
1913}
1914
Liam Girdwood23607022014-01-17 17:03:55 +00001915int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime *fe, int stream,
Mark Brown45c0a182012-05-09 21:46:27 +01001916 int cmd)
Liam Girdwood01d75842012-04-25 12:12:49 +01001917{
1918 struct snd_soc_dpcm *dpcm;
1919 int ret = 0;
1920
1921 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1922
1923 struct snd_soc_pcm_runtime *be = dpcm->be;
1924 struct snd_pcm_substream *be_substream =
1925 snd_soc_dpcm_get_substream(be, stream);
1926
1927 /* is this op for this BE ? */
1928 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1929 continue;
1930
1931 switch (cmd) {
1932 case SNDRV_PCM_TRIGGER_START:
1933 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
1934 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
1935 continue;
1936
1937 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1938 if (ret)
1939 return ret;
1940
1941 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
1942 break;
1943 case SNDRV_PCM_TRIGGER_RESUME:
1944 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
1945 continue;
1946
1947 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1948 if (ret)
1949 return ret;
1950
1951 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
1952 break;
1953 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1954 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
1955 continue;
1956
1957 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1958 if (ret)
1959 return ret;
1960
1961 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
1962 break;
1963 case SNDRV_PCM_TRIGGER_STOP:
1964 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
1965 continue;
1966
1967 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1968 continue;
1969
1970 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1971 if (ret)
1972 return ret;
1973
1974 be->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
1975 break;
1976 case SNDRV_PCM_TRIGGER_SUSPEND:
Nicolin Chen868a6ca2014-05-12 20:12:05 +08001977 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
Liam Girdwood01d75842012-04-25 12:12:49 +01001978 continue;
1979
1980 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1981 continue;
1982
1983 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1984 if (ret)
1985 return ret;
1986
1987 be->dpcm[stream].state = SND_SOC_DPCM_STATE_SUSPEND;
1988 break;
1989 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1990 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
1991 continue;
1992
1993 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1994 continue;
1995
1996 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1997 if (ret)
1998 return ret;
1999
2000 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2001 break;
2002 }
2003 }
2004
2005 return ret;
2006}
2007EXPORT_SYMBOL_GPL(dpcm_be_dai_trigger);
2008
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002009static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd)
Liam Girdwood01d75842012-04-25 12:12:49 +01002010{
2011 struct snd_soc_pcm_runtime *fe = substream->private_data;
2012 int stream = substream->stream, ret;
2013 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2014
2015 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
2016
2017 switch (trigger) {
2018 case SND_SOC_DPCM_TRIGGER_PRE:
2019 /* call trigger on the frontend before the backend. */
2020
Liam Girdwood103d84a2012-11-19 14:39:15 +00002021 dev_dbg(fe->dev, "ASoC: pre trigger FE %s cmd %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002022 fe->dai_link->name, cmd);
2023
2024 ret = soc_pcm_trigger(substream, cmd);
2025 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002026 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002027 goto out;
2028 }
2029
2030 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2031 break;
2032 case SND_SOC_DPCM_TRIGGER_POST:
2033 /* call trigger on the frontend after the backend. */
2034
2035 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2036 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002037 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002038 goto out;
2039 }
2040
Liam Girdwood103d84a2012-11-19 14:39:15 +00002041 dev_dbg(fe->dev, "ASoC: post trigger FE %s cmd %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002042 fe->dai_link->name, cmd);
2043
2044 ret = soc_pcm_trigger(substream, cmd);
2045 break;
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002046 case SND_SOC_DPCM_TRIGGER_BESPOKE:
2047 /* bespoke trigger() - handles both FE and BEs */
2048
Liam Girdwood103d84a2012-11-19 14:39:15 +00002049 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd %d\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002050 fe->dai_link->name, cmd);
2051
2052 ret = soc_pcm_bespoke_trigger(substream, cmd);
2053 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002054 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002055 goto out;
2056 }
2057 break;
Liam Girdwood01d75842012-04-25 12:12:49 +01002058 default:
Liam Girdwood103d84a2012-11-19 14:39:15 +00002059 dev_err(fe->dev, "ASoC: invalid trigger cmd %d for %s\n", cmd,
Liam Girdwood01d75842012-04-25 12:12:49 +01002060 fe->dai_link->name);
2061 ret = -EINVAL;
2062 goto out;
2063 }
2064
2065 switch (cmd) {
2066 case SNDRV_PCM_TRIGGER_START:
2067 case SNDRV_PCM_TRIGGER_RESUME:
2068 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2069 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2070 break;
2071 case SNDRV_PCM_TRIGGER_STOP:
2072 case SNDRV_PCM_TRIGGER_SUSPEND:
2073 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2074 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
2075 break;
2076 }
2077
2078out:
2079 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
2080 return ret;
2081}
2082
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002083static int dpcm_fe_dai_trigger(struct snd_pcm_substream *substream, int cmd)
2084{
2085 struct snd_soc_pcm_runtime *fe = substream->private_data;
2086 int stream = substream->stream;
2087
2088 /* if FE's runtime_update is already set, we're in race;
2089 * process this trigger later at exit
2090 */
2091 if (fe->dpcm[stream].runtime_update != SND_SOC_DPCM_UPDATE_NO) {
2092 fe->dpcm[stream].trigger_pending = cmd + 1;
2093 return 0; /* delayed, assuming it's successful */
2094 }
2095
2096 /* we're alone, let's trigger */
2097 return dpcm_fe_dai_do_trigger(substream, cmd);
2098}
2099
Liam Girdwood23607022014-01-17 17:03:55 +00002100int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002101{
2102 struct snd_soc_dpcm *dpcm;
2103 int ret = 0;
2104
2105 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2106
2107 struct snd_soc_pcm_runtime *be = dpcm->be;
2108 struct snd_pcm_substream *be_substream =
2109 snd_soc_dpcm_get_substream(be, stream);
2110
2111 /* is this op for this BE ? */
2112 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2113 continue;
2114
2115 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2116 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
2117 continue;
2118
Liam Girdwood103d84a2012-11-19 14:39:15 +00002119 dev_dbg(be->dev, "ASoC: prepare BE %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002120 dpcm->fe->dai_link->name);
2121
2122 ret = soc_pcm_prepare(be_substream);
2123 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002124 dev_err(be->dev, "ASoC: backend prepare failed %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002125 ret);
2126 break;
2127 }
2128
2129 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2130 }
2131 return ret;
2132}
2133
Mark Brown45c0a182012-05-09 21:46:27 +01002134static int dpcm_fe_dai_prepare(struct snd_pcm_substream *substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002135{
2136 struct snd_soc_pcm_runtime *fe = substream->private_data;
2137 int stream = substream->stream, ret = 0;
2138
2139 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2140
Liam Girdwood103d84a2012-11-19 14:39:15 +00002141 dev_dbg(fe->dev, "ASoC: prepare FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01002142
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002143 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01002144
2145 /* there is no point preparing this FE if there are no BEs */
2146 if (list_empty(&fe->dpcm[stream].be_clients)) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002147 dev_err(fe->dev, "ASoC: no backend DAIs enabled for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002148 fe->dai_link->name);
2149 ret = -EINVAL;
2150 goto out;
2151 }
2152
2153 ret = dpcm_be_dai_prepare(fe, substream->stream);
2154 if (ret < 0)
2155 goto out;
2156
2157 /* call prepare on the frontend */
2158 ret = soc_pcm_prepare(substream);
2159 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002160 dev_err(fe->dev,"ASoC: prepare FE %s failed\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002161 fe->dai_link->name);
2162 goto out;
2163 }
2164
2165 /* run the stream event for each BE */
2166 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_START);
2167 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2168
2169out:
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002170 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01002171 mutex_unlock(&fe->card->mutex);
2172
2173 return ret;
2174}
2175
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01002176static int soc_pcm_ioctl(struct snd_pcm_substream *substream,
2177 unsigned int cmd, void *arg)
2178{
2179 struct snd_soc_pcm_runtime *rtd = substream->private_data;
2180 struct snd_soc_platform *platform = rtd->platform;
2181
Mark Brownc5914b02013-10-30 17:47:39 -07002182 if (platform->driver->ops && platform->driver->ops->ioctl)
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01002183 return platform->driver->ops->ioctl(substream, cmd, arg);
2184 return snd_pcm_lib_ioctl(substream, cmd, arg);
2185}
2186
Liam Girdwood618dae12012-04-25 12:12:51 +01002187static int dpcm_run_update_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
2188{
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002189 struct snd_pcm_substream *substream =
2190 snd_soc_dpcm_get_substream(fe, stream);
2191 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
Liam Girdwood618dae12012-04-25 12:12:51 +01002192 int err;
Liam Girdwood01d75842012-04-25 12:12:49 +01002193
Liam Girdwood103d84a2012-11-19 14:39:15 +00002194 dev_dbg(fe->dev, "ASoC: runtime %s close on FE %s\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002195 stream ? "capture" : "playback", fe->dai_link->name);
2196
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002197 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2198 /* call bespoke trigger - FE takes care of all BE triggers */
Liam Girdwood103d84a2012-11-19 14:39:15 +00002199 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd stop\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002200 fe->dai_link->name);
2201
2202 err = soc_pcm_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_STOP);
2203 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002204 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002205 } else {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002206 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd stop\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002207 fe->dai_link->name);
2208
2209 err = dpcm_be_dai_trigger(fe, stream, SNDRV_PCM_TRIGGER_STOP);
2210 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002211 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002212 }
Liam Girdwood618dae12012-04-25 12:12:51 +01002213
2214 err = dpcm_be_dai_hw_free(fe, stream);
2215 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002216 dev_err(fe->dev,"ASoC: hw_free FE failed %d\n", err);
Liam Girdwood618dae12012-04-25 12:12:51 +01002217
2218 err = dpcm_be_dai_shutdown(fe, stream);
2219 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002220 dev_err(fe->dev,"ASoC: shutdown FE failed %d\n", err);
Liam Girdwood618dae12012-04-25 12:12:51 +01002221
2222 /* run the stream event for each BE */
2223 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2224
2225 return 0;
2226}
2227
2228static int dpcm_run_update_startup(struct snd_soc_pcm_runtime *fe, int stream)
2229{
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002230 struct snd_pcm_substream *substream =
2231 snd_soc_dpcm_get_substream(fe, stream);
Liam Girdwood618dae12012-04-25 12:12:51 +01002232 struct snd_soc_dpcm *dpcm;
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002233 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
Liam Girdwood618dae12012-04-25 12:12:51 +01002234 int ret;
2235
Liam Girdwood103d84a2012-11-19 14:39:15 +00002236 dev_dbg(fe->dev, "ASoC: runtime %s open on FE %s\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002237 stream ? "capture" : "playback", fe->dai_link->name);
2238
2239 /* Only start the BE if the FE is ready */
2240 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_FREE ||
2241 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE)
2242 return -EINVAL;
2243
2244 /* startup must always be called for new BEs */
2245 ret = dpcm_be_dai_startup(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03002246 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01002247 goto disconnect;
Liam Girdwood618dae12012-04-25 12:12:51 +01002248
2249 /* keep going if FE state is > open */
2250 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_OPEN)
2251 return 0;
2252
2253 ret = dpcm_be_dai_hw_params(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03002254 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01002255 goto close;
Liam Girdwood618dae12012-04-25 12:12:51 +01002256
2257 /* keep going if FE state is > hw_params */
2258 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_PARAMS)
2259 return 0;
2260
2261
2262 ret = dpcm_be_dai_prepare(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03002263 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01002264 goto hw_free;
Liam Girdwood618dae12012-04-25 12:12:51 +01002265
2266 /* run the stream event for each BE */
2267 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2268
2269 /* keep going if FE state is > prepare */
2270 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_PREPARE ||
2271 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_STOP)
2272 return 0;
2273
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002274 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2275 /* call trigger on the frontend - FE takes care of all BE triggers */
Liam Girdwood103d84a2012-11-19 14:39:15 +00002276 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd start\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002277 fe->dai_link->name);
Liam Girdwood618dae12012-04-25 12:12:51 +01002278
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002279 ret = soc_pcm_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_START);
2280 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002281 dev_err(fe->dev,"ASoC: bespoke trigger FE failed %d\n", ret);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002282 goto hw_free;
2283 }
2284 } else {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002285 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd start\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002286 fe->dai_link->name);
2287
2288 ret = dpcm_be_dai_trigger(fe, stream,
2289 SNDRV_PCM_TRIGGER_START);
2290 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002291 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002292 goto hw_free;
2293 }
Liam Girdwood618dae12012-04-25 12:12:51 +01002294 }
2295
2296 return 0;
2297
2298hw_free:
2299 dpcm_be_dai_hw_free(fe, stream);
2300close:
2301 dpcm_be_dai_shutdown(fe, stream);
2302disconnect:
2303 /* disconnect any non started BEs */
2304 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2305 struct snd_soc_pcm_runtime *be = dpcm->be;
2306 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2307 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2308 }
2309
2310 return ret;
2311}
2312
2313static int dpcm_run_new_update(struct snd_soc_pcm_runtime *fe, int stream)
2314{
2315 int ret;
2316
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002317 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE);
Liam Girdwood618dae12012-04-25 12:12:51 +01002318 ret = dpcm_run_update_startup(fe, stream);
2319 if (ret < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002320 dev_err(fe->dev, "ASoC: failed to startup some BEs\n");
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002321 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood618dae12012-04-25 12:12:51 +01002322
2323 return ret;
2324}
2325
2326static int dpcm_run_old_update(struct snd_soc_pcm_runtime *fe, int stream)
2327{
2328 int ret;
2329
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002330 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE);
Liam Girdwood618dae12012-04-25 12:12:51 +01002331 ret = dpcm_run_update_shutdown(fe, stream);
2332 if (ret < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002333 dev_err(fe->dev, "ASoC: failed to shutdown some BEs\n");
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002334 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood618dae12012-04-25 12:12:51 +01002335
2336 return ret;
2337}
2338
2339/* Called by DAPM mixer/mux changes to update audio routing between PCMs and
2340 * any DAI links.
2341 */
Lars-Peter Clausenc3f48ae2013-07-24 15:27:36 +02002342int soc_dpcm_runtime_update(struct snd_soc_card *card)
Liam Girdwood618dae12012-04-25 12:12:51 +01002343{
Mengdong Lin1a497982015-11-18 02:34:11 -05002344 struct snd_soc_pcm_runtime *fe;
2345 int old, new, paths;
Liam Girdwood618dae12012-04-25 12:12:51 +01002346
Liam Girdwood618dae12012-04-25 12:12:51 +01002347 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
Mengdong Lin1a497982015-11-18 02:34:11 -05002348 list_for_each_entry(fe, &card->rtd_list, list) {
Liam Girdwood618dae12012-04-25 12:12:51 +01002349 struct snd_soc_dapm_widget_list *list;
Liam Girdwood618dae12012-04-25 12:12:51 +01002350
2351 /* make sure link is FE */
2352 if (!fe->dai_link->dynamic)
2353 continue;
2354
2355 /* only check active links */
2356 if (!fe->cpu_dai->active)
2357 continue;
2358
2359 /* DAPM sync will call this to update DSP paths */
Liam Girdwood103d84a2012-11-19 14:39:15 +00002360 dev_dbg(fe->dev, "ASoC: DPCM runtime update for FE %s\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002361 fe->dai_link->name);
2362
2363 /* skip if FE doesn't have playback capability */
Qiao Zhou075207d2014-11-17 16:02:57 +08002364 if (!fe->cpu_dai->driver->playback.channels_min
2365 || !fe->codec_dai->driver->playback.channels_min)
2366 goto capture;
2367
2368 /* skip if FE isn't currently playing */
2369 if (!fe->cpu_dai->playback_active
2370 || !fe->codec_dai->playback_active)
Liam Girdwood618dae12012-04-25 12:12:51 +01002371 goto capture;
2372
2373 paths = dpcm_path_get(fe, SNDRV_PCM_STREAM_PLAYBACK, &list);
2374 if (paths < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002375 dev_warn(fe->dev, "ASoC: %s no valid %s path\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002376 fe->dai_link->name, "playback");
2377 mutex_unlock(&card->mutex);
2378 return paths;
2379 }
2380
2381 /* update any new playback paths */
2382 new = dpcm_process_paths(fe, SNDRV_PCM_STREAM_PLAYBACK, &list, 1);
2383 if (new) {
2384 dpcm_run_new_update(fe, SNDRV_PCM_STREAM_PLAYBACK);
2385 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_PLAYBACK);
2386 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_PLAYBACK);
2387 }
2388
2389 /* update any old playback paths */
2390 old = dpcm_process_paths(fe, SNDRV_PCM_STREAM_PLAYBACK, &list, 0);
2391 if (old) {
2392 dpcm_run_old_update(fe, SNDRV_PCM_STREAM_PLAYBACK);
2393 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_PLAYBACK);
2394 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_PLAYBACK);
2395 }
2396
Qiao Zhou7ed9de72014-06-04 19:42:06 +08002397 dpcm_path_put(&list);
Liam Girdwood618dae12012-04-25 12:12:51 +01002398capture:
2399 /* skip if FE doesn't have capture capability */
Qiao Zhou075207d2014-11-17 16:02:57 +08002400 if (!fe->cpu_dai->driver->capture.channels_min
2401 || !fe->codec_dai->driver->capture.channels_min)
2402 continue;
2403
2404 /* skip if FE isn't currently capturing */
2405 if (!fe->cpu_dai->capture_active
2406 || !fe->codec_dai->capture_active)
Liam Girdwood618dae12012-04-25 12:12:51 +01002407 continue;
2408
2409 paths = dpcm_path_get(fe, SNDRV_PCM_STREAM_CAPTURE, &list);
2410 if (paths < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002411 dev_warn(fe->dev, "ASoC: %s no valid %s path\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002412 fe->dai_link->name, "capture");
2413 mutex_unlock(&card->mutex);
2414 return paths;
2415 }
2416
2417 /* update any new capture paths */
2418 new = dpcm_process_paths(fe, SNDRV_PCM_STREAM_CAPTURE, &list, 1);
2419 if (new) {
2420 dpcm_run_new_update(fe, SNDRV_PCM_STREAM_CAPTURE);
2421 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_CAPTURE);
2422 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_CAPTURE);
2423 }
2424
2425 /* update any old capture paths */
2426 old = dpcm_process_paths(fe, SNDRV_PCM_STREAM_CAPTURE, &list, 0);
2427 if (old) {
2428 dpcm_run_old_update(fe, SNDRV_PCM_STREAM_CAPTURE);
2429 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_CAPTURE);
2430 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_CAPTURE);
2431 }
2432
2433 dpcm_path_put(&list);
2434 }
2435
2436 mutex_unlock(&card->mutex);
2437 return 0;
2438}
Liam Girdwood01d75842012-04-25 12:12:49 +01002439int soc_dpcm_be_digital_mute(struct snd_soc_pcm_runtime *fe, int mute)
2440{
2441 struct snd_soc_dpcm *dpcm;
2442 struct list_head *clients =
2443 &fe->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients;
2444
2445 list_for_each_entry(dpcm, clients, list_be) {
2446
2447 struct snd_soc_pcm_runtime *be = dpcm->be;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002448 int i;
Liam Girdwood01d75842012-04-25 12:12:49 +01002449
2450 if (be->dai_link->ignore_suspend)
2451 continue;
2452
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002453 for (i = 0; i < be->num_codecs; i++) {
2454 struct snd_soc_dai *dai = be->codec_dais[i];
2455 struct snd_soc_dai_driver *drv = dai->driver;
Liam Girdwood01d75842012-04-25 12:12:49 +01002456
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002457 dev_dbg(be->dev, "ASoC: BE digital mute %s\n",
2458 be->dai_link->name);
2459
2460 if (drv->ops && drv->ops->digital_mute &&
2461 dai->playback_active)
2462 drv->ops->digital_mute(dai, mute);
2463 }
Liam Girdwood01d75842012-04-25 12:12:49 +01002464 }
2465
2466 return 0;
2467}
2468
Mark Brown45c0a182012-05-09 21:46:27 +01002469static int dpcm_fe_dai_open(struct snd_pcm_substream *fe_substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002470{
2471 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
2472 struct snd_soc_dpcm *dpcm;
2473 struct snd_soc_dapm_widget_list *list;
2474 int ret;
2475 int stream = fe_substream->stream;
2476
2477 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2478 fe->dpcm[stream].runtime = fe_substream->runtime;
2479
Qiao Zhou8f70e512014-09-10 17:54:07 +08002480 ret = dpcm_path_get(fe, stream, &list);
2481 if (ret < 0) {
2482 mutex_unlock(&fe->card->mutex);
2483 return ret;
2484 } else if (ret == 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002485 dev_dbg(fe->dev, "ASoC: %s no valid %s route\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002486 fe->dai_link->name, stream ? "capture" : "playback");
Liam Girdwood01d75842012-04-25 12:12:49 +01002487 }
2488
2489 /* calculate valid and active FE <-> BE dpcms */
2490 dpcm_process_paths(fe, stream, &list, 1);
2491
2492 ret = dpcm_fe_dai_startup(fe_substream);
2493 if (ret < 0) {
2494 /* clean up all links */
2495 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
2496 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2497
2498 dpcm_be_disconnect(fe, stream);
2499 fe->dpcm[stream].runtime = NULL;
2500 }
2501
2502 dpcm_clear_pending_state(fe, stream);
2503 dpcm_path_put(&list);
2504 mutex_unlock(&fe->card->mutex);
2505 return ret;
2506}
2507
Mark Brown45c0a182012-05-09 21:46:27 +01002508static int dpcm_fe_dai_close(struct snd_pcm_substream *fe_substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002509{
2510 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
2511 struct snd_soc_dpcm *dpcm;
2512 int stream = fe_substream->stream, ret;
2513
2514 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2515 ret = dpcm_fe_dai_shutdown(fe_substream);
2516
2517 /* mark FE's links ready to prune */
2518 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
2519 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2520
2521 dpcm_be_disconnect(fe, stream);
2522
2523 fe->dpcm[stream].runtime = NULL;
2524 mutex_unlock(&fe->card->mutex);
2525 return ret;
2526}
2527
Liam Girdwoodddee6272011-06-09 14:45:53 +01002528/* create a new pcm */
2529int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
2530{
Liam Girdwoodddee6272011-06-09 14:45:53 +01002531 struct snd_soc_platform *platform = rtd->platform;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002532 struct snd_soc_dai *codec_dai;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002533 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2534 struct snd_pcm *pcm;
2535 char new_name[64];
2536 int ret = 0, playback = 0, capture = 0;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002537 int i;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002538
Liam Girdwood01d75842012-04-25 12:12:49 +01002539 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm) {
Liam Girdwood1e9de422014-01-07 17:51:42 +00002540 playback = rtd->dai_link->dpcm_playback;
2541 capture = rtd->dai_link->dpcm_capture;
Liam Girdwood01d75842012-04-25 12:12:49 +01002542 } else {
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002543 for (i = 0; i < rtd->num_codecs; i++) {
2544 codec_dai = rtd->codec_dais[i];
2545 if (codec_dai->driver->playback.channels_min)
2546 playback = 1;
2547 if (codec_dai->driver->capture.channels_min)
2548 capture = 1;
2549 }
2550
2551 capture = capture && cpu_dai->driver->capture.channels_min;
2552 playback = playback && cpu_dai->driver->playback.channels_min;
Liam Girdwood01d75842012-04-25 12:12:49 +01002553 }
Sangsu Parka5002312012-01-02 17:15:10 +09002554
Fabio Estevamd6bead02013-08-29 10:32:13 -03002555 if (rtd->dai_link->playback_only) {
2556 playback = 1;
2557 capture = 0;
2558 }
2559
2560 if (rtd->dai_link->capture_only) {
2561 playback = 0;
2562 capture = 1;
2563 }
2564
Liam Girdwood01d75842012-04-25 12:12:49 +01002565 /* create the PCM */
2566 if (rtd->dai_link->no_pcm) {
2567 snprintf(new_name, sizeof(new_name), "(%s)",
2568 rtd->dai_link->stream_name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002569
Liam Girdwood01d75842012-04-25 12:12:49 +01002570 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
2571 playback, capture, &pcm);
2572 } else {
2573 if (rtd->dai_link->dynamic)
2574 snprintf(new_name, sizeof(new_name), "%s (*)",
2575 rtd->dai_link->stream_name);
2576 else
2577 snprintf(new_name, sizeof(new_name), "%s %s-%d",
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002578 rtd->dai_link->stream_name,
2579 (rtd->num_codecs > 1) ?
2580 "multicodec" : rtd->codec_dai->name, num);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002581
Liam Girdwood01d75842012-04-25 12:12:49 +01002582 ret = snd_pcm_new(rtd->card->snd_card, new_name, num, playback,
2583 capture, &pcm);
2584 }
Liam Girdwoodddee6272011-06-09 14:45:53 +01002585 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002586 dev_err(rtd->card->dev, "ASoC: can't create pcm for %s\n",
Liam Girdwood5cb9b742012-07-06 16:54:52 +01002587 rtd->dai_link->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002588 return ret;
2589 }
Liam Girdwood103d84a2012-11-19 14:39:15 +00002590 dev_dbg(rtd->card->dev, "ASoC: registered pcm #%d %s\n",num, new_name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002591
2592 /* DAPM dai link stream work */
2593 INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work);
2594
Vinod Koul48c76992015-02-12 09:59:53 +05302595 pcm->nonatomic = rtd->dai_link->nonatomic;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002596 rtd->pcm = pcm;
2597 pcm->private_data = rtd;
Liam Girdwood01d75842012-04-25 12:12:49 +01002598
2599 if (rtd->dai_link->no_pcm) {
2600 if (playback)
2601 pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd;
2602 if (capture)
2603 pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd;
2604 goto out;
2605 }
2606
2607 /* ASoC PCM operations */
2608 if (rtd->dai_link->dynamic) {
2609 rtd->ops.open = dpcm_fe_dai_open;
2610 rtd->ops.hw_params = dpcm_fe_dai_hw_params;
2611 rtd->ops.prepare = dpcm_fe_dai_prepare;
2612 rtd->ops.trigger = dpcm_fe_dai_trigger;
2613 rtd->ops.hw_free = dpcm_fe_dai_hw_free;
2614 rtd->ops.close = dpcm_fe_dai_close;
2615 rtd->ops.pointer = soc_pcm_pointer;
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01002616 rtd->ops.ioctl = soc_pcm_ioctl;
Liam Girdwood01d75842012-04-25 12:12:49 +01002617 } else {
2618 rtd->ops.open = soc_pcm_open;
2619 rtd->ops.hw_params = soc_pcm_hw_params;
2620 rtd->ops.prepare = soc_pcm_prepare;
2621 rtd->ops.trigger = soc_pcm_trigger;
2622 rtd->ops.hw_free = soc_pcm_hw_free;
2623 rtd->ops.close = soc_pcm_close;
2624 rtd->ops.pointer = soc_pcm_pointer;
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01002625 rtd->ops.ioctl = soc_pcm_ioctl;
Liam Girdwood01d75842012-04-25 12:12:49 +01002626 }
2627
Liam Girdwoodddee6272011-06-09 14:45:53 +01002628 if (platform->driver->ops) {
Liam Girdwood01d75842012-04-25 12:12:49 +01002629 rtd->ops.ack = platform->driver->ops->ack;
2630 rtd->ops.copy = platform->driver->ops->copy;
2631 rtd->ops.silence = platform->driver->ops->silence;
2632 rtd->ops.page = platform->driver->ops->page;
2633 rtd->ops.mmap = platform->driver->ops->mmap;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002634 }
2635
2636 if (playback)
Liam Girdwood01d75842012-04-25 12:12:49 +01002637 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &rtd->ops);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002638
2639 if (capture)
Liam Girdwood01d75842012-04-25 12:12:49 +01002640 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &rtd->ops);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002641
2642 if (platform->driver->pcm_new) {
2643 ret = platform->driver->pcm_new(rtd);
2644 if (ret < 0) {
Mark Brownb1bc7b32012-09-26 14:25:17 +01002645 dev_err(platform->dev,
2646 "ASoC: pcm constructor failed: %d\n",
2647 ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002648 return ret;
2649 }
2650 }
2651
2652 pcm->private_free = platform->driver->pcm_free;
Liam Girdwood01d75842012-04-25 12:12:49 +01002653out:
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002654 dev_info(rtd->card->dev, "%s <-> %s mapping ok\n",
2655 (rtd->num_codecs > 1) ? "multicodec" : rtd->codec_dai->name,
2656 cpu_dai->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002657 return ret;
2658}
Liam Girdwood01d75842012-04-25 12:12:49 +01002659
2660/* is the current PCM operation for this FE ? */
2661int snd_soc_dpcm_fe_can_update(struct snd_soc_pcm_runtime *fe, int stream)
2662{
2663 if (fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE)
2664 return 1;
2665 return 0;
2666}
2667EXPORT_SYMBOL_GPL(snd_soc_dpcm_fe_can_update);
2668
2669/* is the current PCM operation for this BE ? */
2670int snd_soc_dpcm_be_can_update(struct snd_soc_pcm_runtime *fe,
2671 struct snd_soc_pcm_runtime *be, int stream)
2672{
2673 if ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE) ||
2674 ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_BE) &&
2675 be->dpcm[stream].runtime_update))
2676 return 1;
2677 return 0;
2678}
2679EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_can_update);
2680
2681/* get the substream for this BE */
2682struct snd_pcm_substream *
2683 snd_soc_dpcm_get_substream(struct snd_soc_pcm_runtime *be, int stream)
2684{
2685 return be->pcm->streams[stream].substream;
2686}
2687EXPORT_SYMBOL_GPL(snd_soc_dpcm_get_substream);
2688
2689/* get the BE runtime state */
2690enum snd_soc_dpcm_state
2691 snd_soc_dpcm_be_get_state(struct snd_soc_pcm_runtime *be, int stream)
2692{
2693 return be->dpcm[stream].state;
2694}
2695EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_get_state);
2696
2697/* set the BE runtime state */
2698void snd_soc_dpcm_be_set_state(struct snd_soc_pcm_runtime *be,
2699 int stream, enum snd_soc_dpcm_state state)
2700{
2701 be->dpcm[stream].state = state;
2702}
2703EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_set_state);
2704
2705/*
2706 * We can only hw_free, stop, pause or suspend a BE DAI if any of it's FE
2707 * are not running, paused or suspended for the specified stream direction.
2708 */
2709int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime *fe,
2710 struct snd_soc_pcm_runtime *be, int stream)
2711{
2712 struct snd_soc_dpcm *dpcm;
2713 int state;
2714
2715 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
2716
2717 if (dpcm->fe == fe)
2718 continue;
2719
2720 state = dpcm->fe->dpcm[stream].state;
2721 if (state == SND_SOC_DPCM_STATE_START ||
2722 state == SND_SOC_DPCM_STATE_PAUSED ||
2723 state == SND_SOC_DPCM_STATE_SUSPEND)
2724 return 0;
2725 }
2726
2727 /* it's safe to free/stop this BE DAI */
2728 return 1;
2729}
2730EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_free_stop);
2731
2732/*
2733 * We can only change hw params a BE DAI if any of it's FE are not prepared,
2734 * running, paused or suspended for the specified stream direction.
2735 */
2736int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime *fe,
2737 struct snd_soc_pcm_runtime *be, int stream)
2738{
2739 struct snd_soc_dpcm *dpcm;
2740 int state;
2741
2742 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
2743
2744 if (dpcm->fe == fe)
2745 continue;
2746
2747 state = dpcm->fe->dpcm[stream].state;
2748 if (state == SND_SOC_DPCM_STATE_START ||
2749 state == SND_SOC_DPCM_STATE_PAUSED ||
2750 state == SND_SOC_DPCM_STATE_SUSPEND ||
2751 state == SND_SOC_DPCM_STATE_PREPARE)
2752 return 0;
2753 }
2754
2755 /* it's safe to change hw_params */
2756 return 1;
2757}
2758EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_params);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002759
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002760int snd_soc_platform_trigger(struct snd_pcm_substream *substream,
2761 int cmd, struct snd_soc_platform *platform)
2762{
Mark Brownc5914b02013-10-30 17:47:39 -07002763 if (platform->driver->ops && platform->driver->ops->trigger)
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002764 return platform->driver->ops->trigger(substream, cmd);
2765 return 0;
2766}
2767EXPORT_SYMBOL_GPL(snd_soc_platform_trigger);
2768
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002769#ifdef CONFIG_DEBUG_FS
2770static char *dpcm_state_string(enum snd_soc_dpcm_state state)
2771{
2772 switch (state) {
2773 case SND_SOC_DPCM_STATE_NEW:
2774 return "new";
2775 case SND_SOC_DPCM_STATE_OPEN:
2776 return "open";
2777 case SND_SOC_DPCM_STATE_HW_PARAMS:
2778 return "hw_params";
2779 case SND_SOC_DPCM_STATE_PREPARE:
2780 return "prepare";
2781 case SND_SOC_DPCM_STATE_START:
2782 return "start";
2783 case SND_SOC_DPCM_STATE_STOP:
2784 return "stop";
2785 case SND_SOC_DPCM_STATE_SUSPEND:
2786 return "suspend";
2787 case SND_SOC_DPCM_STATE_PAUSED:
2788 return "paused";
2789 case SND_SOC_DPCM_STATE_HW_FREE:
2790 return "hw_free";
2791 case SND_SOC_DPCM_STATE_CLOSE:
2792 return "close";
2793 }
2794
2795 return "unknown";
2796}
2797
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002798static ssize_t dpcm_show_state(struct snd_soc_pcm_runtime *fe,
2799 int stream, char *buf, size_t size)
2800{
2801 struct snd_pcm_hw_params *params = &fe->dpcm[stream].hw_params;
2802 struct snd_soc_dpcm *dpcm;
2803 ssize_t offset = 0;
2804
2805 /* FE state */
2806 offset += snprintf(buf + offset, size - offset,
2807 "[%s - %s]\n", fe->dai_link->name,
2808 stream ? "Capture" : "Playback");
2809
2810 offset += snprintf(buf + offset, size - offset, "State: %s\n",
2811 dpcm_state_string(fe->dpcm[stream].state));
2812
2813 if ((fe->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
2814 (fe->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
2815 offset += snprintf(buf + offset, size - offset,
2816 "Hardware Params: "
2817 "Format = %s, Channels = %d, Rate = %d\n",
2818 snd_pcm_format_name(params_format(params)),
2819 params_channels(params),
2820 params_rate(params));
2821
2822 /* BEs state */
2823 offset += snprintf(buf + offset, size - offset, "Backends:\n");
2824
2825 if (list_empty(&fe->dpcm[stream].be_clients)) {
2826 offset += snprintf(buf + offset, size - offset,
2827 " No active DSP links\n");
2828 goto out;
2829 }
2830
2831 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2832 struct snd_soc_pcm_runtime *be = dpcm->be;
2833 params = &dpcm->hw_params;
2834
2835 offset += snprintf(buf + offset, size - offset,
2836 "- %s\n", be->dai_link->name);
2837
2838 offset += snprintf(buf + offset, size - offset,
2839 " State: %s\n",
2840 dpcm_state_string(be->dpcm[stream].state));
2841
2842 if ((be->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
2843 (be->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
2844 offset += snprintf(buf + offset, size - offset,
2845 " Hardware Params: "
2846 "Format = %s, Channels = %d, Rate = %d\n",
2847 snd_pcm_format_name(params_format(params)),
2848 params_channels(params),
2849 params_rate(params));
2850 }
2851
2852out:
2853 return offset;
2854}
2855
2856static ssize_t dpcm_state_read_file(struct file *file, char __user *user_buf,
2857 size_t count, loff_t *ppos)
2858{
2859 struct snd_soc_pcm_runtime *fe = file->private_data;
2860 ssize_t out_count = PAGE_SIZE, offset = 0, ret = 0;
2861 char *buf;
2862
2863 buf = kmalloc(out_count, GFP_KERNEL);
2864 if (!buf)
2865 return -ENOMEM;
2866
2867 if (fe->cpu_dai->driver->playback.channels_min)
2868 offset += dpcm_show_state(fe, SNDRV_PCM_STREAM_PLAYBACK,
2869 buf + offset, out_count - offset);
2870
2871 if (fe->cpu_dai->driver->capture.channels_min)
2872 offset += dpcm_show_state(fe, SNDRV_PCM_STREAM_CAPTURE,
2873 buf + offset, out_count - offset);
2874
Liam Girdwoodf57b8482012-04-27 11:33:46 +01002875 ret = simple_read_from_buffer(user_buf, count, ppos, buf, offset);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002876
Liam Girdwoodf57b8482012-04-27 11:33:46 +01002877 kfree(buf);
2878 return ret;
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002879}
2880
2881static const struct file_operations dpcm_state_fops = {
Liam Girdwoodf57b8482012-04-27 11:33:46 +01002882 .open = simple_open,
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002883 .read = dpcm_state_read_file,
2884 .llseek = default_llseek,
2885};
2886
Lars-Peter Clausen2e55b902015-04-09 10:52:37 +02002887void soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime *rtd)
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002888{
Mark Brownb3bba9a2012-05-08 10:33:47 +01002889 if (!rtd->dai_link)
Lars-Peter Clausen2e55b902015-04-09 10:52:37 +02002890 return;
Mark Brownb3bba9a2012-05-08 10:33:47 +01002891
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02002892 if (!rtd->card->debugfs_card_root)
2893 return;
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002894
2895 rtd->debugfs_dpcm_root = debugfs_create_dir(rtd->dai_link->name,
2896 rtd->card->debugfs_card_root);
2897 if (!rtd->debugfs_dpcm_root) {
2898 dev_dbg(rtd->dev,
2899 "ASoC: Failed to create dpcm debugfs directory %s\n",
2900 rtd->dai_link->name);
Lars-Peter Clausen2e55b902015-04-09 10:52:37 +02002901 return;
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002902 }
2903
Liam Girdwoodf57b8482012-04-27 11:33:46 +01002904 rtd->debugfs_dpcm_state = debugfs_create_file("state", 0444,
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002905 rtd->debugfs_dpcm_root,
2906 rtd, &dpcm_state_fops);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002907}
2908#endif