blob: 998800cc44ef9ad39aa9e6ca8a01584daa5228e6 [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{
Kuninori Morimotofbb16562017-10-11 01:38:08 +0000136 struct snd_soc_rtdcom_list *rtdcom;
137 struct snd_soc_component *component;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200138 int i;
139 bool ignore = true;
140
Lars-Peter Clausen208a1582014-03-05 13:17:42 +0100141 if (!rtd->pmdown_time || rtd->dai_link->ignore_pmdown_time)
142 return true;
143
Kuninori Morimotofbb16562017-10-11 01:38:08 +0000144 for_each_rtdcom(rtd, rtdcom) {
145 component = rtdcom->component;
146
147 ignore &= !component->driver->pmdown_time;
148 }
149
150 /* this will be removed */
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200151 for (i = 0; i < rtd->num_codecs; i++)
152 ignore &= rtd->codec_dais[i]->component->ignore_pmdown_time;
153
Kuninori Morimotofbb16562017-10-11 01:38:08 +0000154 return ignore;
Lars-Peter Clausen208a1582014-03-05 13:17:42 +0100155}
156
157/**
Lars-Peter Clausen90996f42013-05-14 11:05:30 +0200158 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
159 * @substream: the pcm substream
160 * @hw: the hardware parameters
161 *
162 * Sets the substream runtime hardware parameters.
163 */
164int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
165 const struct snd_pcm_hardware *hw)
166{
167 struct snd_pcm_runtime *runtime = substream->runtime;
168 runtime->hw.info = hw->info;
169 runtime->hw.formats = hw->formats;
170 runtime->hw.period_bytes_min = hw->period_bytes_min;
171 runtime->hw.period_bytes_max = hw->period_bytes_max;
172 runtime->hw.periods_min = hw->periods_min;
173 runtime->hw.periods_max = hw->periods_max;
174 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
175 runtime->hw.fifo_size = hw->fifo_size;
176 return 0;
177}
178EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
179
Liam Girdwood01d75842012-04-25 12:12:49 +0100180/* DPCM stream event, send event to FE and all active BEs. */
Liam Girdwood23607022014-01-17 17:03:55 +0000181int dpcm_dapm_stream_event(struct snd_soc_pcm_runtime *fe, int dir,
Liam Girdwood01d75842012-04-25 12:12:49 +0100182 int event)
183{
184 struct snd_soc_dpcm *dpcm;
185
186 list_for_each_entry(dpcm, &fe->dpcm[dir].be_clients, list_be) {
187
188 struct snd_soc_pcm_runtime *be = dpcm->be;
189
Liam Girdwood103d84a2012-11-19 14:39:15 +0000190 dev_dbg(be->dev, "ASoC: BE %s event %d dir %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +0100191 be->dai_link->name, event, dir);
192
Banajit Goswamib1cd2e32017-07-14 23:15:05 -0700193 if ((event == SND_SOC_DAPM_STREAM_STOP) &&
194 (be->dpcm[dir].users >= 1))
195 continue;
196
Liam Girdwood01d75842012-04-25 12:12:49 +0100197 snd_soc_dapm_stream_event(be, dir, event);
198 }
199
200 snd_soc_dapm_stream_event(fe, dir, event);
201
202 return 0;
203}
204
Dong Aisheng17841022011-08-29 17:15:14 +0800205static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream,
206 struct snd_soc_dai *soc_dai)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100207{
208 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100209 int ret;
210
Nicolin Chen3635bf02013-11-13 18:56:24 +0800211 if (soc_dai->rate && (soc_dai->driver->symmetric_rates ||
212 rtd->dai_link->symmetric_rates)) {
213 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %dHz rate\n",
214 soc_dai->rate);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100215
Lars-Peter Clausen4dcdd432015-10-18 15:39:28 +0200216 ret = snd_pcm_hw_constraint_single(substream->runtime,
Nicolin Chen3635bf02013-11-13 18:56:24 +0800217 SNDRV_PCM_HW_PARAM_RATE,
Lars-Peter Clausen4dcdd432015-10-18 15:39:28 +0200218 soc_dai->rate);
Nicolin Chen3635bf02013-11-13 18:56:24 +0800219 if (ret < 0) {
220 dev_err(soc_dai->dev,
221 "ASoC: Unable to apply rate constraint: %d\n",
222 ret);
223 return ret;
224 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100225 }
226
Nicolin Chen3635bf02013-11-13 18:56:24 +0800227 if (soc_dai->channels && (soc_dai->driver->symmetric_channels ||
228 rtd->dai_link->symmetric_channels)) {
229 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %d channel(s)\n",
230 soc_dai->channels);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100231
Lars-Peter Clausen4dcdd432015-10-18 15:39:28 +0200232 ret = snd_pcm_hw_constraint_single(substream->runtime,
Nicolin Chen3635bf02013-11-13 18:56:24 +0800233 SNDRV_PCM_HW_PARAM_CHANNELS,
Nicolin Chen3635bf02013-11-13 18:56:24 +0800234 soc_dai->channels);
235 if (ret < 0) {
236 dev_err(soc_dai->dev,
237 "ASoC: Unable to apply channel symmetry constraint: %d\n",
238 ret);
239 return ret;
240 }
241 }
242
243 if (soc_dai->sample_bits && (soc_dai->driver->symmetric_samplebits ||
244 rtd->dai_link->symmetric_samplebits)) {
245 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %d sample bits\n",
246 soc_dai->sample_bits);
247
Lars-Peter Clausen4dcdd432015-10-18 15:39:28 +0200248 ret = snd_pcm_hw_constraint_single(substream->runtime,
Nicolin Chen3635bf02013-11-13 18:56:24 +0800249 SNDRV_PCM_HW_PARAM_SAMPLE_BITS,
Nicolin Chen3635bf02013-11-13 18:56:24 +0800250 soc_dai->sample_bits);
251 if (ret < 0) {
252 dev_err(soc_dai->dev,
253 "ASoC: Unable to apply sample bits symmetry constraint: %d\n",
254 ret);
255 return ret;
256 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100257 }
258
259 return 0;
260}
261
Nicolin Chen3635bf02013-11-13 18:56:24 +0800262static int soc_pcm_params_symmetry(struct snd_pcm_substream *substream,
263 struct snd_pcm_hw_params *params)
264{
265 struct snd_soc_pcm_runtime *rtd = substream->private_data;
266 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200267 unsigned int rate, channels, sample_bits, symmetry, i;
Nicolin Chen3635bf02013-11-13 18:56:24 +0800268
269 rate = params_rate(params);
270 channels = params_channels(params);
271 sample_bits = snd_pcm_format_physical_width(params_format(params));
272
273 /* reject unmatched parameters when applying symmetry */
274 symmetry = cpu_dai->driver->symmetric_rates ||
Nicolin Chen3635bf02013-11-13 18:56:24 +0800275 rtd->dai_link->symmetric_rates;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200276
277 for (i = 0; i < rtd->num_codecs; i++)
278 symmetry |= rtd->codec_dais[i]->driver->symmetric_rates;
279
Nicolin Chen3635bf02013-11-13 18:56:24 +0800280 if (symmetry && cpu_dai->rate && cpu_dai->rate != rate) {
281 dev_err(rtd->dev, "ASoC: unmatched rate symmetry: %d - %d\n",
282 cpu_dai->rate, rate);
283 return -EINVAL;
284 }
285
286 symmetry = cpu_dai->driver->symmetric_channels ||
Nicolin Chen3635bf02013-11-13 18:56:24 +0800287 rtd->dai_link->symmetric_channels;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200288
289 for (i = 0; i < rtd->num_codecs; i++)
290 symmetry |= rtd->codec_dais[i]->driver->symmetric_channels;
291
Nicolin Chen3635bf02013-11-13 18:56:24 +0800292 if (symmetry && cpu_dai->channels && cpu_dai->channels != channels) {
293 dev_err(rtd->dev, "ASoC: unmatched channel symmetry: %d - %d\n",
294 cpu_dai->channels, channels);
295 return -EINVAL;
296 }
297
298 symmetry = cpu_dai->driver->symmetric_samplebits ||
Nicolin Chen3635bf02013-11-13 18:56:24 +0800299 rtd->dai_link->symmetric_samplebits;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200300
301 for (i = 0; i < rtd->num_codecs; i++)
302 symmetry |= rtd->codec_dais[i]->driver->symmetric_samplebits;
303
Nicolin Chen3635bf02013-11-13 18:56:24 +0800304 if (symmetry && cpu_dai->sample_bits && cpu_dai->sample_bits != sample_bits) {
305 dev_err(rtd->dev, "ASoC: unmatched sample bits symmetry: %d - %d\n",
306 cpu_dai->sample_bits, sample_bits);
307 return -EINVAL;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100308 }
309
310 return 0;
311}
312
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100313static bool soc_pcm_has_symmetry(struct snd_pcm_substream *substream)
314{
315 struct snd_soc_pcm_runtime *rtd = substream->private_data;
316 struct snd_soc_dai_driver *cpu_driver = rtd->cpu_dai->driver;
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100317 struct snd_soc_dai_link *link = rtd->dai_link;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200318 unsigned int symmetry, i;
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100319
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200320 symmetry = cpu_driver->symmetric_rates || link->symmetric_rates ||
321 cpu_driver->symmetric_channels || link->symmetric_channels ||
322 cpu_driver->symmetric_samplebits || link->symmetric_samplebits;
323
324 for (i = 0; i < rtd->num_codecs; i++)
325 symmetry = symmetry ||
326 rtd->codec_dais[i]->driver->symmetric_rates ||
327 rtd->codec_dais[i]->driver->symmetric_channels ||
328 rtd->codec_dais[i]->driver->symmetric_samplebits;
329
330 return symmetry;
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100331}
332
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200333static void soc_pcm_set_msb(struct snd_pcm_substream *substream, int bits)
Mark Brown58ba9b22012-01-16 18:38:51 +0000334{
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200335 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Takashi Iwaic6068d32014-12-31 17:10:34 +0100336 int ret;
Mark Brown58ba9b22012-01-16 18:38:51 +0000337
338 if (!bits)
339 return;
340
Lars-Peter Clausen0e2a3752014-12-29 18:43:38 +0100341 ret = snd_pcm_hw_constraint_msbits(substream->runtime, 0, 0, bits);
342 if (ret != 0)
343 dev_warn(rtd->dev, "ASoC: Failed to set MSB %d: %d\n",
344 bits, ret);
Mark Brown58ba9b22012-01-16 18:38:51 +0000345}
346
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200347static void soc_pcm_apply_msb(struct snd_pcm_substream *substream)
Lars-Peter Clausenbd477c32013-05-14 11:05:31 +0200348{
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200349 struct snd_soc_pcm_runtime *rtd = substream->private_data;
350 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200351 struct snd_soc_dai *codec_dai;
352 int i;
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200353 unsigned int bits = 0, cpu_bits;
354
355 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200356 for (i = 0; i < rtd->num_codecs; i++) {
357 codec_dai = rtd->codec_dais[i];
358 if (codec_dai->driver->playback.sig_bits == 0) {
359 bits = 0;
360 break;
361 }
362 bits = max(codec_dai->driver->playback.sig_bits, bits);
363 }
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200364 cpu_bits = cpu_dai->driver->playback.sig_bits;
365 } else {
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200366 for (i = 0; i < rtd->num_codecs; i++) {
367 codec_dai = rtd->codec_dais[i];
Daniel Mack5e63dfc2014-10-07 14:33:46 +0200368 if (codec_dai->driver->capture.sig_bits == 0) {
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200369 bits = 0;
370 break;
371 }
372 bits = max(codec_dai->driver->capture.sig_bits, bits);
373 }
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200374 cpu_bits = cpu_dai->driver->capture.sig_bits;
375 }
376
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200377 soc_pcm_set_msb(substream, bits);
378 soc_pcm_set_msb(substream, cpu_bits);
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200379}
380
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200381static void soc_pcm_init_runtime_hw(struct snd_pcm_substream *substream)
Lars-Peter Clausenbd477c32013-05-14 11:05:31 +0200382{
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200383 struct snd_pcm_runtime *runtime = substream->runtime;
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100384 struct snd_pcm_hardware *hw = &runtime->hw;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200385 struct snd_soc_pcm_runtime *rtd = substream->private_data;
386 struct snd_soc_dai_driver *cpu_dai_drv = rtd->cpu_dai->driver;
387 struct snd_soc_dai_driver *codec_dai_drv;
388 struct snd_soc_pcm_stream *codec_stream;
389 struct snd_soc_pcm_stream *cpu_stream;
390 unsigned int chan_min = 0, chan_max = UINT_MAX;
391 unsigned int rate_min = 0, rate_max = UINT_MAX;
392 unsigned int rates = UINT_MAX;
393 u64 formats = ULLONG_MAX;
394 int i;
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100395
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200396 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
397 cpu_stream = &cpu_dai_drv->playback;
Lars-Peter Clausen16d7ea92014-01-06 14:19:16 +0100398 else
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200399 cpu_stream = &cpu_dai_drv->capture;
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100400
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200401 /* first calculate min/max only for CODECs in the DAI link */
402 for (i = 0; i < rtd->num_codecs; i++) {
Ricard Wanderlofcde79032015-08-24 14:16:51 +0200403
404 /*
405 * Skip CODECs which don't support the current stream type.
406 * Otherwise, since the rate, channel, and format values will
407 * zero in that case, we would have no usable settings left,
408 * causing the resulting setup to fail.
409 * At least one CODEC should match, otherwise we should have
410 * bailed out on a higher level, since there would be no
411 * CODEC to support the transfer direction in that case.
412 */
413 if (!snd_soc_dai_stream_valid(rtd->codec_dais[i],
414 substream->stream))
415 continue;
416
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200417 codec_dai_drv = rtd->codec_dais[i]->driver;
418 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
419 codec_stream = &codec_dai_drv->playback;
420 else
421 codec_stream = &codec_dai_drv->capture;
422 chan_min = max(chan_min, codec_stream->channels_min);
423 chan_max = min(chan_max, codec_stream->channels_max);
424 rate_min = max(rate_min, codec_stream->rate_min);
425 rate_max = min_not_zero(rate_max, codec_stream->rate_max);
426 formats &= codec_stream->formats;
427 rates = snd_pcm_rate_mask_intersect(codec_stream->rates, rates);
428 }
429
430 /*
431 * chan min/max cannot be enforced if there are multiple CODEC DAIs
432 * connected to a single CPU DAI, use CPU DAI's directly and let
433 * channel allocation be fixed up later
434 */
435 if (rtd->num_codecs > 1) {
436 chan_min = cpu_stream->channels_min;
437 chan_max = cpu_stream->channels_max;
438 }
439
440 hw->channels_min = max(chan_min, cpu_stream->channels_min);
441 hw->channels_max = min(chan_max, cpu_stream->channels_max);
442 if (hw->formats)
443 hw->formats &= formats & cpu_stream->formats;
444 else
445 hw->formats = formats & cpu_stream->formats;
446 hw->rates = snd_pcm_rate_mask_intersect(rates, cpu_stream->rates);
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100447
448 snd_pcm_limit_hw_rates(runtime);
449
450 hw->rate_min = max(hw->rate_min, cpu_stream->rate_min);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200451 hw->rate_min = max(hw->rate_min, rate_min);
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100452 hw->rate_max = min_not_zero(hw->rate_max, cpu_stream->rate_max);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200453 hw->rate_max = min_not_zero(hw->rate_max, rate_max);
Lars-Peter Clausenbd477c32013-05-14 11:05:31 +0200454}
455
Mark Brown58ba9b22012-01-16 18:38:51 +0000456/*
Liam Girdwoodddee6272011-06-09 14:45:53 +0100457 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
458 * then initialized and any private data can be allocated. This also calls
459 * startup for the cpu DAI, platform, machine and codec DAI.
460 */
461static int soc_pcm_open(struct snd_pcm_substream *substream)
462{
463 struct snd_soc_pcm_runtime *rtd = substream->private_data;
464 struct snd_pcm_runtime *runtime = substream->runtime;
465 struct snd_soc_platform *platform = rtd->platform;
Kuninori Morimoto90be7112017-08-08 06:18:10 +0000466 struct snd_soc_component *component;
467 struct snd_soc_rtdcom_list *rtdcom;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100468 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200469 struct snd_soc_dai *codec_dai;
470 const char *codec_dai_name = "multicodec";
Kuninori Morimotob8135862017-10-11 01:37:23 +0000471 int i, ret = 0, __ret;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100472
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800473 pinctrl_pm_select_default_state(cpu_dai->dev);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200474 for (i = 0; i < rtd->num_codecs; i++)
475 pinctrl_pm_select_default_state(rtd->codec_dais[i]->dev);
Kuninori Morimoto90be7112017-08-08 06:18:10 +0000476
477 for_each_rtdcom(rtd, rtdcom) {
478 component = rtdcom->component;
479
480 pm_runtime_get_sync(component->dev);
481 }
Mark Brownd6652ef2011-12-03 20:14:31 +0000482
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100483 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100484
485 /* startup the audio subsystem */
Kuninori Morimoto9900a422017-09-25 01:38:54 +0000486 if (cpu_dai->driver->ops->startup) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100487 ret = cpu_dai->driver->ops->startup(substream, cpu_dai);
488 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000489 dev_err(cpu_dai->dev, "ASoC: can't open interface"
490 " %s: %d\n", cpu_dai->name, ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100491 goto out;
492 }
493 }
494
Kuninori Morimotob8135862017-10-11 01:37:23 +0000495 if (platform && platform->driver->ops && platform->driver->ops->open) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100496 ret = platform->driver->ops->open(substream);
497 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000498 dev_err(platform->dev, "ASoC: can't open platform"
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200499 " %s: %d\n", platform->component.name, ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100500 goto platform_err;
501 }
502 }
503
Kuninori Morimotob8135862017-10-11 01:37:23 +0000504 ret = 0;
505 for_each_rtdcom(rtd, rtdcom) {
506 component = rtdcom->component;
507
508 /* ignore duplication for now */
509 if (platform && (component == &platform->component))
510 continue;
511
512 if (!component->driver->ops ||
513 !component->driver->ops->open)
514 continue;
515
516 __ret = component->driver->ops->open(substream);
517 if (__ret < 0) {
518 dev_err(component->dev,
519 "ASoC: can't open component %s: %d\n",
520 component->name, ret);
521 ret = __ret;
522 }
523 }
524 if (ret < 0)
525 goto component_err;
526
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200527 for (i = 0; i < rtd->num_codecs; i++) {
528 codec_dai = rtd->codec_dais[i];
Kuninori Morimoto9900a422017-09-25 01:38:54 +0000529 if (codec_dai->driver->ops->startup) {
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200530 ret = codec_dai->driver->ops->startup(substream,
531 codec_dai);
532 if (ret < 0) {
533 dev_err(codec_dai->dev,
534 "ASoC: can't open codec %s: %d\n",
535 codec_dai->name, ret);
536 goto codec_dai_err;
537 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100538 }
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200539
540 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
541 codec_dai->tx_mask = 0;
542 else
543 codec_dai->rx_mask = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100544 }
545
Kuninori Morimoto75ab9eb2017-09-26 00:40:42 +0000546 if (rtd->dai_link->ops->startup) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100547 ret = rtd->dai_link->ops->startup(substream);
548 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000549 pr_err("ASoC: %s startup failed: %d\n",
Mark Brown25bfe662012-02-01 21:30:32 +0000550 rtd->dai_link->name, ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100551 goto machine_err;
552 }
553 }
554
Liam Girdwood01d75842012-04-25 12:12:49 +0100555 /* Dynamic PCM DAI links compat checks use dynamic capabilities */
556 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm)
557 goto dynamic;
558
Liam Girdwoodddee6272011-06-09 14:45:53 +0100559 /* Check that the codec and cpu DAIs are compatible */
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200560 soc_pcm_init_runtime_hw(substream);
561
562 if (rtd->num_codecs == 1)
563 codec_dai_name = rtd->codec_dai->name;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100564
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100565 if (soc_pcm_has_symmetry(substream))
566 runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
567
Liam Girdwoodddee6272011-06-09 14:45:53 +0100568 ret = -EINVAL;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100569 if (!runtime->hw.rates) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000570 printk(KERN_ERR "ASoC: %s <-> %s No matching rates\n",
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200571 codec_dai_name, cpu_dai->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100572 goto config_err;
573 }
574 if (!runtime->hw.formats) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000575 printk(KERN_ERR "ASoC: %s <-> %s No matching formats\n",
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200576 codec_dai_name, cpu_dai->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100577 goto config_err;
578 }
579 if (!runtime->hw.channels_min || !runtime->hw.channels_max ||
580 runtime->hw.channels_min > runtime->hw.channels_max) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000581 printk(KERN_ERR "ASoC: %s <-> %s No matching channels\n",
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200582 codec_dai_name, cpu_dai->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100583 goto config_err;
584 }
585
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200586 soc_pcm_apply_msb(substream);
Mark Brown58ba9b22012-01-16 18:38:51 +0000587
Liam Girdwoodddee6272011-06-09 14:45:53 +0100588 /* Symmetry only applies if we've already got an active stream. */
Dong Aisheng17841022011-08-29 17:15:14 +0800589 if (cpu_dai->active) {
590 ret = soc_pcm_apply_symmetry(substream, cpu_dai);
591 if (ret != 0)
592 goto config_err;
593 }
594
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200595 for (i = 0; i < rtd->num_codecs; i++) {
596 if (rtd->codec_dais[i]->active) {
597 ret = soc_pcm_apply_symmetry(substream,
598 rtd->codec_dais[i]);
599 if (ret != 0)
600 goto config_err;
601 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100602 }
603
Liam Girdwood103d84a2012-11-19 14:39:15 +0000604 pr_debug("ASoC: %s <-> %s info:\n",
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200605 codec_dai_name, cpu_dai->name);
Liam Girdwood103d84a2012-11-19 14:39:15 +0000606 pr_debug("ASoC: rate mask 0x%x\n", runtime->hw.rates);
607 pr_debug("ASoC: min ch %d max ch %d\n", runtime->hw.channels_min,
Liam Girdwoodddee6272011-06-09 14:45:53 +0100608 runtime->hw.channels_max);
Liam Girdwood103d84a2012-11-19 14:39:15 +0000609 pr_debug("ASoC: min rate %d max rate %d\n", runtime->hw.rate_min,
Liam Girdwoodddee6272011-06-09 14:45:53 +0100610 runtime->hw.rate_max);
611
Liam Girdwood01d75842012-04-25 12:12:49 +0100612dynamic:
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100613
614 snd_soc_runtime_activate(rtd, substream->stream);
615
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100616 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100617 return 0;
618
619config_err:
Kuninori Morimoto75ab9eb2017-09-26 00:40:42 +0000620 if (rtd->dai_link->ops->shutdown)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100621 rtd->dai_link->ops->shutdown(substream);
622
623machine_err:
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200624 i = rtd->num_codecs;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100625
626codec_dai_err:
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200627 while (--i >= 0) {
628 codec_dai = rtd->codec_dais[i];
629 if (codec_dai->driver->ops->shutdown)
630 codec_dai->driver->ops->shutdown(substream, codec_dai);
631 }
632
Kuninori Morimotob8135862017-10-11 01:37:23 +0000633component_err:
634 for_each_rtdcom(rtd, rtdcom) {
635 component = rtdcom->component;
636
637 /* ignore duplication for now */
638 if (platform && (component == &platform->component))
639 continue;
640
641 if (!component->driver->ops ||
642 !component->driver->ops->close)
643 continue;
644
645 component->driver->ops->close(substream);
646 }
647
648 if (platform && platform->driver->ops && platform->driver->ops->close)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100649 platform->driver->ops->close(substream);
650
651platform_err:
652 if (cpu_dai->driver->ops->shutdown)
653 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
654out:
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100655 mutex_unlock(&rtd->pcm_mutex);
Mark Brownd6652ef2011-12-03 20:14:31 +0000656
Kuninori Morimoto90be7112017-08-08 06:18:10 +0000657 for_each_rtdcom(rtd, rtdcom) {
658 component = rtdcom->component;
659
660 pm_runtime_mark_last_busy(component->dev);
661 pm_runtime_put_autosuspend(component->dev);
Sanyog Kale3f809782016-01-05 17:14:49 +0530662 }
663
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200664 for (i = 0; i < rtd->num_codecs; i++) {
665 if (!rtd->codec_dais[i]->active)
666 pinctrl_pm_select_sleep_state(rtd->codec_dais[i]->dev);
667 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800668 if (!cpu_dai->active)
669 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Mark Brownd6652ef2011-12-03 20:14:31 +0000670
Liam Girdwoodddee6272011-06-09 14:45:53 +0100671 return ret;
672}
673
674/*
675 * Power down the audio subsystem pmdown_time msecs after close is called.
676 * This is to ensure there are no pops or clicks in between any music tracks
677 * due to DAPM power cycling.
678 */
679static void close_delayed_work(struct work_struct *work)
680{
681 struct snd_soc_pcm_runtime *rtd =
682 container_of(work, struct snd_soc_pcm_runtime, delayed_work.work);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200683 struct snd_soc_dai *codec_dai = rtd->codec_dais[0];
Liam Girdwoodddee6272011-06-09 14:45:53 +0100684
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100685 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100686
Liam Girdwood103d84a2012-11-19 14:39:15 +0000687 dev_dbg(rtd->dev, "ASoC: pop wq checking: %s status: %s waiting: %s\n",
Liam Girdwoodddee6272011-06-09 14:45:53 +0100688 codec_dai->driver->playback.stream_name,
689 codec_dai->playback_active ? "active" : "inactive",
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600690 rtd->pop_wait ? "yes" : "no");
Liam Girdwoodddee6272011-06-09 14:45:53 +0100691
692 /* are we waiting on this codec DAI stream */
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600693 if (rtd->pop_wait == 1) {
694 rtd->pop_wait = 0;
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800695 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_PLAYBACK,
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000696 SND_SOC_DAPM_STREAM_STOP);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100697 }
698
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100699 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100700}
701
702/*
703 * Called by ALSA when a PCM substream is closed. Private data can be
704 * freed here. The cpu DAI, codec DAI, machine and platform are also
705 * shutdown.
706 */
Liam Girdwood91d5e6b2011-06-09 17:04:59 +0100707static int soc_pcm_close(struct snd_pcm_substream *substream)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100708{
709 struct snd_soc_pcm_runtime *rtd = substream->private_data;
710 struct snd_soc_platform *platform = rtd->platform;
Kuninori Morimoto90be7112017-08-08 06:18:10 +0000711 struct snd_soc_component *component;
712 struct snd_soc_rtdcom_list *rtdcom;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100713 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200714 struct snd_soc_dai *codec_dai;
715 int i;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100716
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100717 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100718
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100719 snd_soc_runtime_deactivate(rtd, substream->stream);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100720
Dong Aisheng17841022011-08-29 17:15:14 +0800721 /* clear the corresponding DAIs rate when inactive */
722 if (!cpu_dai->active)
723 cpu_dai->rate = 0;
724
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200725 for (i = 0; i < rtd->num_codecs; i++) {
726 codec_dai = rtd->codec_dais[i];
727 if (!codec_dai->active)
728 codec_dai->rate = 0;
729 }
Sascha Hauer25b76792011-08-17 09:20:01 +0200730
Ramesh Babuae116012014-10-15 12:34:59 +0530731 snd_soc_dai_digital_mute(cpu_dai, 1, substream->stream);
732
Liam Girdwoodddee6272011-06-09 14:45:53 +0100733 if (cpu_dai->driver->ops->shutdown)
734 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
735
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200736 for (i = 0; i < rtd->num_codecs; i++) {
737 codec_dai = rtd->codec_dais[i];
738 if (codec_dai->driver->ops->shutdown)
739 codec_dai->driver->ops->shutdown(substream, codec_dai);
740 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100741
Kuninori Morimoto75ab9eb2017-09-26 00:40:42 +0000742 if (rtd->dai_link->ops->shutdown)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100743 rtd->dai_link->ops->shutdown(substream);
744
Kuninori Morimotob8135862017-10-11 01:37:23 +0000745 if (platform && platform->driver->ops && platform->driver->ops->close)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100746 platform->driver->ops->close(substream);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100747
Kuninori Morimotob8135862017-10-11 01:37:23 +0000748 for_each_rtdcom(rtd, rtdcom) {
749 component = rtdcom->component;
750
751 /* ignore duplication for now */
752 if (platform && (component == &platform->component))
753 continue;
754
755 if (!component->driver->ops ||
756 !component->driver->ops->close)
757 continue;
758
759 component->driver->ops->close(substream);
760 }
761
Liam Girdwoodddee6272011-06-09 14:45:53 +0100762 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Lars-Peter Clausen208a1582014-03-05 13:17:42 +0100763 if (snd_soc_runtime_ignore_pmdown_time(rtd)) {
Peter Ujfalusi1d69c5c2011-10-14 14:43:33 +0300764 /* powered down playback stream now */
765 snd_soc_dapm_stream_event(rtd,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800766 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800767 SND_SOC_DAPM_STREAM_STOP);
Peter Ujfalusi1d69c5c2011-10-14 14:43:33 +0300768 } else {
769 /* start delayed pop wq here for playback streams */
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600770 rtd->pop_wait = 1;
Mark Brownd4e1a732013-07-18 11:52:17 +0100771 queue_delayed_work(system_power_efficient_wq,
772 &rtd->delayed_work,
773 msecs_to_jiffies(rtd->pmdown_time));
Peter Ujfalusi1d69c5c2011-10-14 14:43:33 +0300774 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100775 } else {
776 /* capture streams can be powered down now */
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800777 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_CAPTURE,
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000778 SND_SOC_DAPM_STREAM_STOP);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100779 }
780
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100781 mutex_unlock(&rtd->pcm_mutex);
Mark Brownd6652ef2011-12-03 20:14:31 +0000782
Kuninori Morimoto90be7112017-08-08 06:18:10 +0000783 for_each_rtdcom(rtd, rtdcom) {
784 component = rtdcom->component;
Sanyog Kale3f809782016-01-05 17:14:49 +0530785
Kuninori Morimoto90be7112017-08-08 06:18:10 +0000786 pm_runtime_mark_last_busy(component->dev);
787 pm_runtime_put_autosuspend(component->dev);
Sanyog Kale3f809782016-01-05 17:14:49 +0530788 }
789
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200790 for (i = 0; i < rtd->num_codecs; i++) {
791 if (!rtd->codec_dais[i]->active)
792 pinctrl_pm_select_sleep_state(rtd->codec_dais[i]->dev);
793 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800794 if (!cpu_dai->active)
795 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Mark Brownd6652ef2011-12-03 20:14:31 +0000796
Liam Girdwoodddee6272011-06-09 14:45:53 +0100797 return 0;
798}
799
800/*
801 * Called by ALSA when the PCM substream is prepared, can set format, sample
802 * rate, etc. This function is non atomic and can be called multiple times,
803 * it can refer to the runtime info.
804 */
805static int soc_pcm_prepare(struct snd_pcm_substream *substream)
806{
807 struct snd_soc_pcm_runtime *rtd = substream->private_data;
808 struct snd_soc_platform *platform = rtd->platform;
Kuninori Morimotob8135862017-10-11 01:37:23 +0000809 struct snd_soc_component *component;
810 struct snd_soc_rtdcom_list *rtdcom;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100811 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200812 struct snd_soc_dai *codec_dai;
813 int i, ret = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100814
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100815 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100816
Kuninori Morimoto75ab9eb2017-09-26 00:40:42 +0000817 if (rtd->dai_link->ops->prepare) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100818 ret = rtd->dai_link->ops->prepare(substream);
819 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000820 dev_err(rtd->card->dev, "ASoC: machine prepare error:"
821 " %d\n", ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100822 goto out;
823 }
824 }
825
Kuninori Morimotob8135862017-10-11 01:37:23 +0000826 if (platform && platform->driver->ops && platform->driver->ops->prepare) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100827 ret = platform->driver->ops->prepare(substream);
828 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000829 dev_err(platform->dev, "ASoC: platform prepare error:"
830 " %d\n", ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100831 goto out;
832 }
833 }
834
Kuninori Morimotob8135862017-10-11 01:37:23 +0000835 for_each_rtdcom(rtd, rtdcom) {
836 component = rtdcom->component;
837
838 /* ignore duplication for now */
839 if (platform && (component == &platform->component))
840 continue;
841
842 if (!component->driver->ops ||
843 !component->driver->ops->prepare)
844 continue;
845
846 ret = component->driver->ops->prepare(substream);
847 if (ret < 0) {
848 dev_err(component->dev,
849 "ASoC: platform prepare error: %d\n", ret);
850 goto out;
851 }
852 }
853
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200854 for (i = 0; i < rtd->num_codecs; i++) {
855 codec_dai = rtd->codec_dais[i];
Kuninori Morimoto9900a422017-09-25 01:38:54 +0000856 if (codec_dai->driver->ops->prepare) {
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200857 ret = codec_dai->driver->ops->prepare(substream,
858 codec_dai);
859 if (ret < 0) {
860 dev_err(codec_dai->dev,
Jarkko Nikula90cc7f12014-12-23 11:04:41 +0200861 "ASoC: codec DAI prepare error: %d\n",
862 ret);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200863 goto out;
864 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100865 }
866 }
867
Kuninori Morimoto9900a422017-09-25 01:38:54 +0000868 if (cpu_dai->driver->ops->prepare) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100869 ret = cpu_dai->driver->ops->prepare(substream, cpu_dai);
870 if (ret < 0) {
Jarkko Nikula90cc7f12014-12-23 11:04:41 +0200871 dev_err(cpu_dai->dev,
872 "ASoC: cpu DAI prepare error: %d\n", ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100873 goto out;
874 }
875 }
876
877 /* cancel any delayed stream shutdown that is pending */
878 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600879 rtd->pop_wait) {
880 rtd->pop_wait = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100881 cancel_delayed_work(&rtd->delayed_work);
882 }
883
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000884 snd_soc_dapm_stream_event(rtd, substream->stream,
885 SND_SOC_DAPM_STREAM_START);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100886
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200887 for (i = 0; i < rtd->num_codecs; i++)
888 snd_soc_dai_digital_mute(rtd->codec_dais[i], 0,
889 substream->stream);
Ramesh Babuae116012014-10-15 12:34:59 +0530890 snd_soc_dai_digital_mute(cpu_dai, 0, substream->stream);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100891
892out:
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100893 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100894 return ret;
895}
896
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200897static void soc_pcm_codec_params_fixup(struct snd_pcm_hw_params *params,
898 unsigned int mask)
899{
900 struct snd_interval *interval;
901 int channels = hweight_long(mask);
902
903 interval = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
904 interval->min = channels;
905 interval->max = channels;
906}
907
Benoit Cousson93e69582014-07-08 23:19:38 +0200908int soc_dai_hw_params(struct snd_pcm_substream *substream,
909 struct snd_pcm_hw_params *params,
910 struct snd_soc_dai *dai)
911{
912 int ret;
913
Kuninori Morimoto9900a422017-09-25 01:38:54 +0000914 if (dai->driver->ops->hw_params) {
Benoit Cousson93e69582014-07-08 23:19:38 +0200915 ret = dai->driver->ops->hw_params(substream, params, dai);
916 if (ret < 0) {
917 dev_err(dai->dev, "ASoC: can't set %s hw params: %d\n",
918 dai->name, ret);
919 return ret;
920 }
921 }
922
923 return 0;
924}
925
Liam Girdwoodddee6272011-06-09 14:45:53 +0100926/*
927 * Called by ALSA when the hardware params are set by application. This
928 * function can also be called multiple times and can allocate buffers
929 * (using snd_pcm_lib_* ). It's non-atomic.
930 */
931static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
932 struct snd_pcm_hw_params *params)
933{
934 struct snd_soc_pcm_runtime *rtd = substream->private_data;
935 struct snd_soc_platform *platform = rtd->platform;
Kuninori Morimotob8135862017-10-11 01:37:23 +0000936 struct snd_soc_component *component;
937 struct snd_soc_rtdcom_list *rtdcom;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100938 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Kuninori Morimotob8135862017-10-11 01:37:23 +0000939 int i, ret = 0, __ret;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100940
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100941 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Kuninori Morimoto75ab9eb2017-09-26 00:40:42 +0000942 if (rtd->dai_link->ops->hw_params) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100943 ret = rtd->dai_link->ops->hw_params(substream, params);
944 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000945 dev_err(rtd->card->dev, "ASoC: machine hw_params"
946 " failed: %d\n", ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100947 goto out;
948 }
949 }
950
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200951 for (i = 0; i < rtd->num_codecs; i++) {
952 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
953 struct snd_pcm_hw_params codec_params;
954
Ricard Wanderlofcde79032015-08-24 14:16:51 +0200955 /*
956 * Skip CODECs which don't support the current stream type,
957 * the idea being that if a CODEC is not used for the currently
958 * set up transfer direction, it should not need to be
959 * configured, especially since the configuration used might
960 * not even be supported by that CODEC. There may be cases
961 * however where a CODEC needs to be set up although it is
962 * actually not being used for the transfer, e.g. if a
963 * capture-only CODEC is acting as an LRCLK and/or BCLK master
964 * for the DAI link including a playback-only CODEC.
965 * If this becomes necessary, we will have to augment the
966 * machine driver setup with information on how to act, so
967 * we can do the right thing here.
968 */
969 if (!snd_soc_dai_stream_valid(codec_dai, substream->stream))
970 continue;
971
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200972 /* copy params for each codec */
973 codec_params = *params;
974
975 /* fixup params based on TDM slot masks */
976 if (codec_dai->tx_mask)
977 soc_pcm_codec_params_fixup(&codec_params,
978 codec_dai->tx_mask);
979 if (codec_dai->rx_mask)
980 soc_pcm_codec_params_fixup(&codec_params,
981 codec_dai->rx_mask);
982
Benoit Cousson93e69582014-07-08 23:19:38 +0200983 ret = soc_dai_hw_params(substream, &codec_params, codec_dai);
984 if(ret < 0)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100985 goto codec_err;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200986
987 codec_dai->rate = params_rate(&codec_params);
988 codec_dai->channels = params_channels(&codec_params);
989 codec_dai->sample_bits = snd_pcm_format_physical_width(
990 params_format(&codec_params));
Liam Girdwoodddee6272011-06-09 14:45:53 +0100991 }
992
Benoit Cousson93e69582014-07-08 23:19:38 +0200993 ret = soc_dai_hw_params(substream, params, cpu_dai);
994 if (ret < 0)
995 goto interface_err;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100996
Kuninori Morimotob8135862017-10-11 01:37:23 +0000997 if (platform && platform->driver->ops && platform->driver->ops->hw_params) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100998 ret = platform->driver->ops->hw_params(substream, params);
999 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001000 dev_err(platform->dev, "ASoC: %s hw params failed: %d\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02001001 platform->component.name, ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +01001002 goto platform_err;
1003 }
1004 }
1005
Kuninori Morimotob8135862017-10-11 01:37:23 +00001006 ret = 0;
1007 for_each_rtdcom(rtd, rtdcom) {
1008 component = rtdcom->component;
1009
1010 /* ignore duplication for now */
1011 if (platform && (component == &platform->component))
1012 continue;
1013
1014 if (!component->driver->ops ||
1015 !component->driver->ops->hw_params)
1016 continue;
1017
1018 __ret = component->driver->ops->hw_params(substream, params);
1019 if (__ret < 0) {
1020 dev_err(component->dev,
1021 "ASoC: %s hw params failed: %d\n",
1022 component->name, ret);
1023 ret = __ret;
1024 }
1025 }
1026 if (ret < 0)
1027 goto component_err;
1028
Nicolin Chen3635bf02013-11-13 18:56:24 +08001029 /* store the parameters for each DAIs */
Dong Aisheng17841022011-08-29 17:15:14 +08001030 cpu_dai->rate = params_rate(params);
Nicolin Chen3635bf02013-11-13 18:56:24 +08001031 cpu_dai->channels = params_channels(params);
1032 cpu_dai->sample_bits =
1033 snd_pcm_format_physical_width(params_format(params));
1034
jiada wang957ce0c2017-09-20 15:25:30 +09001035 ret = soc_pcm_params_symmetry(substream, params);
1036 if (ret)
Kuninori Morimotob8135862017-10-11 01:37:23 +00001037 goto component_err;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001038out:
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001039 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +01001040 return ret;
1041
Kuninori Morimotob8135862017-10-11 01:37:23 +00001042component_err:
1043 for_each_rtdcom(rtd, rtdcom) {
1044 component = rtdcom->component;
1045
1046 /* ignore duplication */
1047 if (platform && (component == &platform->component))
1048 continue;
1049
1050 if (!component->driver->ops ||
1051 !component->driver->ops->hw_free)
1052 continue;
1053
1054 component->driver->ops->hw_free(substream);
1055 }
1056
1057 if (platform && platform->driver->ops && platform->driver->ops->hw_free)
1058 platform->driver->ops->hw_free(substream);
1059
Liam Girdwoodddee6272011-06-09 14:45:53 +01001060platform_err:
Kuninori Morimoto9900a422017-09-25 01:38:54 +00001061 if (cpu_dai->driver->ops->hw_free)
Liam Girdwoodddee6272011-06-09 14:45:53 +01001062 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
1063
1064interface_err:
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001065 i = rtd->num_codecs;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001066
1067codec_err:
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001068 while (--i >= 0) {
1069 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
Kuninori Morimoto9900a422017-09-25 01:38:54 +00001070 if (codec_dai->driver->ops->hw_free)
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001071 codec_dai->driver->ops->hw_free(substream, codec_dai);
1072 codec_dai->rate = 0;
1073 }
1074
Kuninori Morimoto75ab9eb2017-09-26 00:40:42 +00001075 if (rtd->dai_link->ops->hw_free)
Liam Girdwoodddee6272011-06-09 14:45:53 +01001076 rtd->dai_link->ops->hw_free(substream);
1077
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001078 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +01001079 return ret;
1080}
1081
1082/*
1083 * Frees resources allocated by hw_params, can be called multiple times
1084 */
1085static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
1086{
1087 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1088 struct snd_soc_platform *platform = rtd->platform;
Kuninori Morimotob8135862017-10-11 01:37:23 +00001089 struct snd_soc_component *component;
1090 struct snd_soc_rtdcom_list *rtdcom;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001091 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001092 struct snd_soc_dai *codec_dai;
Nicolin Chen7f62b6e2013-12-04 11:18:36 +08001093 bool playback = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001094 int i;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001095
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001096 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +01001097
Nicolin Chend3383422013-11-20 18:37:09 +08001098 /* clear the corresponding DAIs parameters when going to be inactive */
1099 if (cpu_dai->active == 1) {
1100 cpu_dai->rate = 0;
1101 cpu_dai->channels = 0;
1102 cpu_dai->sample_bits = 0;
1103 }
1104
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001105 for (i = 0; i < rtd->num_codecs; i++) {
1106 codec_dai = rtd->codec_dais[i];
1107 if (codec_dai->active == 1) {
1108 codec_dai->rate = 0;
1109 codec_dai->channels = 0;
1110 codec_dai->sample_bits = 0;
1111 }
Nicolin Chend3383422013-11-20 18:37:09 +08001112 }
1113
Liam Girdwoodddee6272011-06-09 14:45:53 +01001114 /* apply codec digital mute */
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001115 for (i = 0; i < rtd->num_codecs; i++) {
1116 if ((playback && rtd->codec_dais[i]->playback_active == 1) ||
1117 (!playback && rtd->codec_dais[i]->capture_active == 1))
1118 snd_soc_dai_digital_mute(rtd->codec_dais[i], 1,
1119 substream->stream);
1120 }
Liam Girdwoodddee6272011-06-09 14:45:53 +01001121
1122 /* free any machine hw params */
Kuninori Morimoto75ab9eb2017-09-26 00:40:42 +00001123 if (rtd->dai_link->ops->hw_free)
Liam Girdwoodddee6272011-06-09 14:45:53 +01001124 rtd->dai_link->ops->hw_free(substream);
1125
1126 /* free any DMA resources */
Kuninori Morimotob8135862017-10-11 01:37:23 +00001127 if (platform && platform->driver->ops && platform->driver->ops->hw_free)
Liam Girdwoodddee6272011-06-09 14:45:53 +01001128 platform->driver->ops->hw_free(substream);
1129
Kuninori Morimotob8135862017-10-11 01:37:23 +00001130 /* free any component resources */
1131 for_each_rtdcom(rtd, rtdcom) {
1132 component = rtdcom->component;
1133
1134 /* ignore duplication for now */
1135 if (platform && (component == &platform->component))
1136 continue;
1137
1138 if (!component->driver->ops ||
1139 !component->driver->ops->hw_free)
1140 continue;
1141
1142 component->driver->ops->hw_free(substream);
1143 }
1144
Liam Girdwoodddee6272011-06-09 14:45:53 +01001145 /* now free hw params for the DAIs */
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001146 for (i = 0; i < rtd->num_codecs; i++) {
1147 codec_dai = rtd->codec_dais[i];
Kuninori Morimoto9900a422017-09-25 01:38:54 +00001148 if (codec_dai->driver->ops->hw_free)
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001149 codec_dai->driver->ops->hw_free(substream, codec_dai);
1150 }
Liam Girdwoodddee6272011-06-09 14:45:53 +01001151
Kuninori Morimoto9900a422017-09-25 01:38:54 +00001152 if (cpu_dai->driver->ops->hw_free)
Liam Girdwoodddee6272011-06-09 14:45:53 +01001153 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
1154
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001155 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +01001156 return 0;
1157}
1158
1159static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
1160{
1161 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1162 struct snd_soc_platform *platform = rtd->platform;
Kuninori Morimotob8135862017-10-11 01:37:23 +00001163 struct snd_soc_component *component;
1164 struct snd_soc_rtdcom_list *rtdcom;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001165 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001166 struct snd_soc_dai *codec_dai;
1167 int i, ret;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001168
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001169 for (i = 0; i < rtd->num_codecs; i++) {
1170 codec_dai = rtd->codec_dais[i];
Kuninori Morimoto9900a422017-09-25 01:38:54 +00001171 if (codec_dai->driver->ops->trigger) {
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001172 ret = codec_dai->driver->ops->trigger(substream,
1173 cmd, codec_dai);
1174 if (ret < 0)
1175 return ret;
1176 }
Liam Girdwoodddee6272011-06-09 14:45:53 +01001177 }
1178
Kuninori Morimotob8135862017-10-11 01:37:23 +00001179 if (platform && platform->driver->ops && platform->driver->ops->trigger) {
Liam Girdwoodddee6272011-06-09 14:45:53 +01001180 ret = platform->driver->ops->trigger(substream, cmd);
1181 if (ret < 0)
1182 return ret;
1183 }
1184
Kuninori Morimotob8135862017-10-11 01:37:23 +00001185 for_each_rtdcom(rtd, rtdcom) {
1186 component = rtdcom->component;
1187
1188 /* ignore duplication for now */
1189 if (platform && (component == &platform->component))
1190 continue;
1191
1192 if (!component->driver->ops ||
1193 !component->driver->ops->trigger)
1194 continue;
1195
1196 ret = component->driver->ops->trigger(substream, cmd);
1197 if (ret < 0)
1198 return ret;
1199 }
1200
Kuninori Morimoto9900a422017-09-25 01:38:54 +00001201 if (cpu_dai->driver->ops->trigger) {
Liam Girdwoodddee6272011-06-09 14:45:53 +01001202 ret = cpu_dai->driver->ops->trigger(substream, cmd, cpu_dai);
1203 if (ret < 0)
1204 return ret;
1205 }
Jarkko Nikula4792b0d2014-04-28 14:17:52 +02001206
Kuninori Morimoto75ab9eb2017-09-26 00:40:42 +00001207 if (rtd->dai_link->ops->trigger) {
Jarkko Nikula4792b0d2014-04-28 14:17:52 +02001208 ret = rtd->dai_link->ops->trigger(substream, cmd);
1209 if (ret < 0)
1210 return ret;
1211 }
1212
Liam Girdwoodddee6272011-06-09 14:45:53 +01001213 return 0;
1214}
1215
Mark Brown45c0a182012-05-09 21:46:27 +01001216static int soc_pcm_bespoke_trigger(struct snd_pcm_substream *substream,
1217 int cmd)
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001218{
1219 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001220 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001221 struct snd_soc_dai *codec_dai;
1222 int i, ret;
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001223
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001224 for (i = 0; i < rtd->num_codecs; i++) {
1225 codec_dai = rtd->codec_dais[i];
Kuninori Morimoto9900a422017-09-25 01:38:54 +00001226 if (codec_dai->driver->ops->bespoke_trigger) {
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001227 ret = codec_dai->driver->ops->bespoke_trigger(substream,
1228 cmd, codec_dai);
1229 if (ret < 0)
1230 return ret;
1231 }
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001232 }
1233
Kuninori Morimoto9900a422017-09-25 01:38:54 +00001234 if (cpu_dai->driver->ops->bespoke_trigger) {
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001235 ret = cpu_dai->driver->ops->bespoke_trigger(substream, cmd, cpu_dai);
1236 if (ret < 0)
1237 return ret;
1238 }
1239 return 0;
1240}
Liam Girdwoodddee6272011-06-09 14:45:53 +01001241/*
1242 * soc level wrapper for pointer callback
1243 * If cpu_dai, codec_dai, platform driver has the delay callback, than
1244 * the runtime->delay will be updated accordingly.
1245 */
1246static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
1247{
1248 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1249 struct snd_soc_platform *platform = rtd->platform;
Kuninori Morimotob8135862017-10-11 01:37:23 +00001250 struct snd_soc_component *component;
1251 struct snd_soc_rtdcom_list *rtdcom;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001252 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001253 struct snd_soc_dai *codec_dai;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001254 struct snd_pcm_runtime *runtime = substream->runtime;
1255 snd_pcm_uframes_t offset = 0;
1256 snd_pcm_sframes_t delay = 0;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001257 snd_pcm_sframes_t codec_delay = 0;
1258 int i;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001259
Kuninori Morimotob8135862017-10-11 01:37:23 +00001260 if (platform && platform->driver->ops && platform->driver->ops->pointer)
Liam Girdwoodddee6272011-06-09 14:45:53 +01001261 offset = platform->driver->ops->pointer(substream);
1262
Kuninori Morimotob8135862017-10-11 01:37:23 +00001263 for_each_rtdcom(rtd, rtdcom) {
1264 component = rtdcom->component;
1265
1266 /* ignore duplication for now */
1267 if (platform && (component == &platform->component))
1268 continue;
1269
1270 if (!component->driver->ops ||
1271 !component->driver->ops->pointer)
1272 continue;
1273
1274 /* FIXME: use 1st pointer */
1275 offset = component->driver->ops->pointer(substream);
1276 break;
1277 }
1278
Kuninori Morimoto9900a422017-09-25 01:38:54 +00001279 if (cpu_dai->driver->ops->delay)
Liam Girdwoodddee6272011-06-09 14:45:53 +01001280 delay += cpu_dai->driver->ops->delay(substream, cpu_dai);
1281
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001282 for (i = 0; i < rtd->num_codecs; i++) {
1283 codec_dai = rtd->codec_dais[i];
Kuninori Morimoto9900a422017-09-25 01:38:54 +00001284 if (codec_dai->driver->ops->delay)
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001285 codec_delay = max(codec_delay,
1286 codec_dai->driver->ops->delay(substream,
1287 codec_dai));
1288 }
1289 delay += codec_delay;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001290
Liam Girdwoodddee6272011-06-09 14:45:53 +01001291 runtime->delay = delay;
1292
1293 return offset;
1294}
1295
Liam Girdwood01d75842012-04-25 12:12:49 +01001296/* connect a FE and BE */
1297static int dpcm_be_connect(struct snd_soc_pcm_runtime *fe,
1298 struct snd_soc_pcm_runtime *be, int stream)
1299{
1300 struct snd_soc_dpcm *dpcm;
1301
1302 /* only add new dpcms */
1303 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1304 if (dpcm->be == be && dpcm->fe == fe)
1305 return 0;
1306 }
1307
1308 dpcm = kzalloc(sizeof(struct snd_soc_dpcm), GFP_KERNEL);
1309 if (!dpcm)
1310 return -ENOMEM;
1311
1312 dpcm->be = be;
1313 dpcm->fe = fe;
1314 be->dpcm[stream].runtime = fe->dpcm[stream].runtime;
1315 dpcm->state = SND_SOC_DPCM_LINK_STATE_NEW;
1316 list_add(&dpcm->list_be, &fe->dpcm[stream].be_clients);
1317 list_add(&dpcm->list_fe, &be->dpcm[stream].fe_clients);
1318
Jarkko Nikula7cc302d2013-09-30 17:08:15 +03001319 dev_dbg(fe->dev, "connected new DPCM %s path %s %s %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001320 stream ? "capture" : "playback", fe->dai_link->name,
1321 stream ? "<-" : "->", be->dai_link->name);
1322
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001323#ifdef CONFIG_DEBUG_FS
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02001324 if (fe->debugfs_dpcm_root)
1325 dpcm->debugfs_state = debugfs_create_u32(be->dai_link->name, 0644,
1326 fe->debugfs_dpcm_root, &dpcm->state);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001327#endif
Liam Girdwood01d75842012-04-25 12:12:49 +01001328 return 1;
1329}
1330
1331/* reparent a BE onto another FE */
1332static void dpcm_be_reparent(struct snd_soc_pcm_runtime *fe,
1333 struct snd_soc_pcm_runtime *be, int stream)
1334{
1335 struct snd_soc_dpcm *dpcm;
1336 struct snd_pcm_substream *fe_substream, *be_substream;
1337
1338 /* reparent if BE is connected to other FEs */
1339 if (!be->dpcm[stream].users)
1340 return;
1341
1342 be_substream = snd_soc_dpcm_get_substream(be, stream);
1343
1344 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
1345 if (dpcm->fe == fe)
1346 continue;
1347
Jarkko Nikula7cc302d2013-09-30 17:08:15 +03001348 dev_dbg(fe->dev, "reparent %s path %s %s %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001349 stream ? "capture" : "playback",
1350 dpcm->fe->dai_link->name,
1351 stream ? "<-" : "->", dpcm->be->dai_link->name);
1352
1353 fe_substream = snd_soc_dpcm_get_substream(dpcm->fe, stream);
1354 be_substream->runtime = fe_substream->runtime;
1355 break;
1356 }
1357}
1358
1359/* disconnect a BE and FE */
Liam Girdwood23607022014-01-17 17:03:55 +00001360void dpcm_be_disconnect(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001361{
1362 struct snd_soc_dpcm *dpcm, *d;
1363
1364 list_for_each_entry_safe(dpcm, d, &fe->dpcm[stream].be_clients, list_be) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001365 dev_dbg(fe->dev, "ASoC: BE %s disconnect check for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001366 stream ? "capture" : "playback",
1367 dpcm->be->dai_link->name);
1368
1369 if (dpcm->state != SND_SOC_DPCM_LINK_STATE_FREE)
1370 continue;
1371
Jarkko Nikula7cc302d2013-09-30 17:08:15 +03001372 dev_dbg(fe->dev, "freed DSP %s path %s %s %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001373 stream ? "capture" : "playback", fe->dai_link->name,
1374 stream ? "<-" : "->", dpcm->be->dai_link->name);
1375
1376 /* BEs still alive need new FE */
1377 dpcm_be_reparent(fe, dpcm->be, stream);
1378
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001379#ifdef CONFIG_DEBUG_FS
1380 debugfs_remove(dpcm->debugfs_state);
1381#endif
Liam Girdwood01d75842012-04-25 12:12:49 +01001382 list_del(&dpcm->list_be);
1383 list_del(&dpcm->list_fe);
1384 kfree(dpcm);
1385 }
1386}
1387
1388/* get BE for DAI widget and stream */
1389static struct snd_soc_pcm_runtime *dpcm_get_be(struct snd_soc_card *card,
1390 struct snd_soc_dapm_widget *widget, int stream)
1391{
1392 struct snd_soc_pcm_runtime *be;
Mengdong Lin1a497982015-11-18 02:34:11 -05001393 int i;
Liam Girdwood01d75842012-04-25 12:12:49 +01001394
1395 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
Mengdong Lin1a497982015-11-18 02:34:11 -05001396 list_for_each_entry(be, &card->rtd_list, list) {
Liam Girdwood01d75842012-04-25 12:12:49 +01001397
Liam Girdwood35ea0652012-06-05 19:26:59 +01001398 if (!be->dai_link->no_pcm)
1399 continue;
1400
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001401 if (be->cpu_dai->playback_widget == widget)
Liam Girdwood01d75842012-04-25 12:12:49 +01001402 return be;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001403
Mengdong Lin1a497982015-11-18 02:34:11 -05001404 for (i = 0; i < be->num_codecs; i++) {
1405 struct snd_soc_dai *dai = be->codec_dais[i];
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001406 if (dai->playback_widget == widget)
1407 return be;
1408 }
Liam Girdwood01d75842012-04-25 12:12:49 +01001409 }
1410 } else {
1411
Mengdong Lin1a497982015-11-18 02:34:11 -05001412 list_for_each_entry(be, &card->rtd_list, list) {
Liam Girdwood01d75842012-04-25 12:12:49 +01001413
Liam Girdwood35ea0652012-06-05 19:26:59 +01001414 if (!be->dai_link->no_pcm)
1415 continue;
1416
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001417 if (be->cpu_dai->capture_widget == widget)
Liam Girdwood01d75842012-04-25 12:12:49 +01001418 return be;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001419
Mengdong Lin1a497982015-11-18 02:34:11 -05001420 for (i = 0; i < be->num_codecs; i++) {
1421 struct snd_soc_dai *dai = be->codec_dais[i];
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001422 if (dai->capture_widget == widget)
1423 return be;
1424 }
Liam Girdwood01d75842012-04-25 12:12:49 +01001425 }
1426 }
1427
Liam Girdwood103d84a2012-11-19 14:39:15 +00001428 dev_err(card->dev, "ASoC: can't get %s BE for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001429 stream ? "capture" : "playback", widget->name);
1430 return NULL;
1431}
1432
1433static inline struct snd_soc_dapm_widget *
Benoit Cousson37018612014-04-24 14:01:45 +02001434 dai_get_widget(struct snd_soc_dai *dai, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001435{
1436 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
Benoit Cousson37018612014-04-24 14:01:45 +02001437 return dai->playback_widget;
Liam Girdwood01d75842012-04-25 12:12:49 +01001438 else
Benoit Cousson37018612014-04-24 14:01:45 +02001439 return dai->capture_widget;
Liam Girdwood01d75842012-04-25 12:12:49 +01001440}
1441
1442static int widget_in_list(struct snd_soc_dapm_widget_list *list,
1443 struct snd_soc_dapm_widget *widget)
1444{
1445 int i;
1446
1447 for (i = 0; i < list->num_widgets; i++) {
1448 if (widget == list->widgets[i])
1449 return 1;
1450 }
1451
1452 return 0;
1453}
1454
Piotr Stankiewicz5fdd0222016-05-13 17:03:56 +01001455static bool dpcm_end_walk_at_be(struct snd_soc_dapm_widget *widget,
1456 enum snd_soc_dapm_direction dir)
1457{
1458 struct snd_soc_card *card = widget->dapm->card;
1459 struct snd_soc_pcm_runtime *rtd;
1460 int i;
1461
1462 if (dir == SND_SOC_DAPM_DIR_OUT) {
1463 list_for_each_entry(rtd, &card->rtd_list, list) {
1464 if (!rtd->dai_link->no_pcm)
1465 continue;
1466
1467 if (rtd->cpu_dai->playback_widget == widget)
1468 return true;
1469
1470 for (i = 0; i < rtd->num_codecs; ++i) {
1471 struct snd_soc_dai *dai = rtd->codec_dais[i];
1472 if (dai->playback_widget == widget)
1473 return true;
1474 }
1475 }
1476 } else { /* SND_SOC_DAPM_DIR_IN */
1477 list_for_each_entry(rtd, &card->rtd_list, list) {
1478 if (!rtd->dai_link->no_pcm)
1479 continue;
1480
1481 if (rtd->cpu_dai->capture_widget == widget)
1482 return true;
1483
1484 for (i = 0; i < rtd->num_codecs; ++i) {
1485 struct snd_soc_dai *dai = rtd->codec_dais[i];
1486 if (dai->capture_widget == widget)
1487 return true;
1488 }
1489 }
1490 }
1491
1492 return false;
1493}
1494
Liam Girdwood23607022014-01-17 17:03:55 +00001495int dpcm_path_get(struct snd_soc_pcm_runtime *fe,
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001496 int stream, struct snd_soc_dapm_widget_list **list)
Liam Girdwood01d75842012-04-25 12:12:49 +01001497{
1498 struct snd_soc_dai *cpu_dai = fe->cpu_dai;
Liam Girdwood01d75842012-04-25 12:12:49 +01001499 int paths;
1500
Liam Girdwood01d75842012-04-25 12:12:49 +01001501 /* get number of valid DAI paths and their widgets */
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001502 paths = snd_soc_dapm_dai_get_connected_widgets(cpu_dai, stream, list,
Piotr Stankiewicz5fdd0222016-05-13 17:03:56 +01001503 dpcm_end_walk_at_be);
Liam Girdwood01d75842012-04-25 12:12:49 +01001504
Liam Girdwood103d84a2012-11-19 14:39:15 +00001505 dev_dbg(fe->dev, "ASoC: found %d audio %s paths\n", paths,
Liam Girdwood01d75842012-04-25 12:12:49 +01001506 stream ? "capture" : "playback");
1507
Liam Girdwood01d75842012-04-25 12:12:49 +01001508 return paths;
1509}
1510
Liam Girdwood01d75842012-04-25 12:12:49 +01001511static int dpcm_prune_paths(struct snd_soc_pcm_runtime *fe, int stream,
1512 struct snd_soc_dapm_widget_list **list_)
1513{
1514 struct snd_soc_dpcm *dpcm;
1515 struct snd_soc_dapm_widget_list *list = *list_;
1516 struct snd_soc_dapm_widget *widget;
1517 int prune = 0;
1518
1519 /* Destroy any old FE <--> BE connections */
1520 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001521 unsigned int i;
Liam Girdwood01d75842012-04-25 12:12:49 +01001522
1523 /* is there a valid CPU DAI widget for this BE */
Benoit Cousson37018612014-04-24 14:01:45 +02001524 widget = dai_get_widget(dpcm->be->cpu_dai, stream);
Liam Girdwood01d75842012-04-25 12:12:49 +01001525
1526 /* prune the BE if it's no longer in our active list */
1527 if (widget && widget_in_list(list, widget))
1528 continue;
1529
1530 /* is there a valid CODEC DAI widget for this BE */
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001531 for (i = 0; i < dpcm->be->num_codecs; i++) {
1532 struct snd_soc_dai *dai = dpcm->be->codec_dais[i];
1533 widget = dai_get_widget(dai, stream);
Liam Girdwood01d75842012-04-25 12:12:49 +01001534
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001535 /* prune the BE if it's no longer in our active list */
1536 if (widget && widget_in_list(list, widget))
1537 continue;
1538 }
Liam Girdwood01d75842012-04-25 12:12:49 +01001539
Liam Girdwood103d84a2012-11-19 14:39:15 +00001540 dev_dbg(fe->dev, "ASoC: pruning %s BE %s for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001541 stream ? "capture" : "playback",
1542 dpcm->be->dai_link->name, fe->dai_link->name);
1543 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
1544 dpcm->be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
1545 prune++;
1546 }
1547
Liam Girdwood103d84a2012-11-19 14:39:15 +00001548 dev_dbg(fe->dev, "ASoC: found %d old BE paths for pruning\n", prune);
Liam Girdwood01d75842012-04-25 12:12:49 +01001549 return prune;
1550}
1551
1552static int dpcm_add_paths(struct snd_soc_pcm_runtime *fe, int stream,
1553 struct snd_soc_dapm_widget_list **list_)
1554{
1555 struct snd_soc_card *card = fe->card;
1556 struct snd_soc_dapm_widget_list *list = *list_;
1557 struct snd_soc_pcm_runtime *be;
1558 int i, new = 0, err;
1559
1560 /* Create any new FE <--> BE connections */
1561 for (i = 0; i < list->num_widgets; i++) {
1562
Mark Brown46162742013-06-05 19:36:11 +01001563 switch (list->widgets[i]->id) {
1564 case snd_soc_dapm_dai_in:
Koro Chenc5b85402015-07-06 10:02:10 +08001565 if (stream != SNDRV_PCM_STREAM_PLAYBACK)
1566 continue;
1567 break;
Mark Brown46162742013-06-05 19:36:11 +01001568 case snd_soc_dapm_dai_out:
Koro Chenc5b85402015-07-06 10:02:10 +08001569 if (stream != SNDRV_PCM_STREAM_CAPTURE)
1570 continue;
Mark Brown46162742013-06-05 19:36:11 +01001571 break;
1572 default:
Liam Girdwood01d75842012-04-25 12:12:49 +01001573 continue;
Mark Brown46162742013-06-05 19:36:11 +01001574 }
Liam Girdwood01d75842012-04-25 12:12:49 +01001575
1576 /* is there a valid BE rtd for this widget */
1577 be = dpcm_get_be(card, list->widgets[i], stream);
1578 if (!be) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001579 dev_err(fe->dev, "ASoC: no BE found for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001580 list->widgets[i]->name);
1581 continue;
1582 }
1583
1584 /* make sure BE is a real BE */
1585 if (!be->dai_link->no_pcm)
1586 continue;
1587
1588 /* don't connect if FE is not running */
Liam Girdwood23607022014-01-17 17:03:55 +00001589 if (!fe->dpcm[stream].runtime && !fe->fe_compr)
Liam Girdwood01d75842012-04-25 12:12:49 +01001590 continue;
1591
1592 /* newly connected FE and BE */
1593 err = dpcm_be_connect(fe, be, stream);
1594 if (err < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001595 dev_err(fe->dev, "ASoC: can't connect %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001596 list->widgets[i]->name);
1597 break;
1598 } else if (err == 0) /* already connected */
1599 continue;
1600
1601 /* new */
1602 be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
1603 new++;
1604 }
1605
Liam Girdwood103d84a2012-11-19 14:39:15 +00001606 dev_dbg(fe->dev, "ASoC: found %d new BE paths\n", new);
Liam Girdwood01d75842012-04-25 12:12:49 +01001607 return new;
1608}
1609
1610/*
1611 * Find the corresponding BE DAIs that source or sink audio to this
1612 * FE substream.
1613 */
Liam Girdwood23607022014-01-17 17:03:55 +00001614int dpcm_process_paths(struct snd_soc_pcm_runtime *fe,
Liam Girdwood01d75842012-04-25 12:12:49 +01001615 int stream, struct snd_soc_dapm_widget_list **list, int new)
1616{
1617 if (new)
1618 return dpcm_add_paths(fe, stream, list);
1619 else
1620 return dpcm_prune_paths(fe, stream, list);
1621}
1622
Liam Girdwood23607022014-01-17 17:03:55 +00001623void dpcm_clear_pending_state(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001624{
1625 struct snd_soc_dpcm *dpcm;
1626
1627 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
1628 dpcm->be->dpcm[stream].runtime_update =
1629 SND_SOC_DPCM_UPDATE_NO;
1630}
1631
1632static void dpcm_be_dai_startup_unwind(struct snd_soc_pcm_runtime *fe,
1633 int stream)
1634{
1635 struct snd_soc_dpcm *dpcm;
1636
1637 /* disable any enabled and non active backends */
1638 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1639
1640 struct snd_soc_pcm_runtime *be = dpcm->be;
1641 struct snd_pcm_substream *be_substream =
1642 snd_soc_dpcm_get_substream(be, stream);
1643
1644 if (be->dpcm[stream].users == 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001645 dev_err(be->dev, "ASoC: no users %s at close - state %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001646 stream ? "capture" : "playback",
1647 be->dpcm[stream].state);
1648
1649 if (--be->dpcm[stream].users != 0)
1650 continue;
1651
1652 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)
1653 continue;
1654
1655 soc_pcm_close(be_substream);
1656 be_substream->runtime = NULL;
1657 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1658 }
1659}
1660
Liam Girdwood23607022014-01-17 17:03:55 +00001661int dpcm_be_dai_startup(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001662{
1663 struct snd_soc_dpcm *dpcm;
1664 int err, count = 0;
1665
1666 /* only startup BE DAIs that are either sinks or sources to this FE DAI */
1667 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1668
1669 struct snd_soc_pcm_runtime *be = dpcm->be;
1670 struct snd_pcm_substream *be_substream =
1671 snd_soc_dpcm_get_substream(be, stream);
1672
Russell King - ARM Linux2062b4c2013-10-31 15:09:20 +00001673 if (!be_substream) {
1674 dev_err(be->dev, "ASoC: no backend %s stream\n",
1675 stream ? "capture" : "playback");
1676 continue;
1677 }
1678
Liam Girdwood01d75842012-04-25 12:12:49 +01001679 /* is this op for this BE ? */
1680 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1681 continue;
1682
1683 /* first time the dpcm is open ? */
1684 if (be->dpcm[stream].users == DPCM_MAX_BE_USERS)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001685 dev_err(be->dev, "ASoC: too many users %s at open %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001686 stream ? "capture" : "playback",
1687 be->dpcm[stream].state);
1688
1689 if (be->dpcm[stream].users++ != 0)
1690 continue;
1691
1692 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_NEW) &&
1693 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_CLOSE))
1694 continue;
1695
Russell King - ARM Linux2062b4c2013-10-31 15:09:20 +00001696 dev_dbg(be->dev, "ASoC: open %s BE %s\n",
1697 stream ? "capture" : "playback", be->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001698
1699 be_substream->runtime = be->dpcm[stream].runtime;
1700 err = soc_pcm_open(be_substream);
1701 if (err < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001702 dev_err(be->dev, "ASoC: BE open failed %d\n", err);
Liam Girdwood01d75842012-04-25 12:12:49 +01001703 be->dpcm[stream].users--;
1704 if (be->dpcm[stream].users < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001705 dev_err(be->dev, "ASoC: no users %s at unwind %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001706 stream ? "capture" : "playback",
1707 be->dpcm[stream].state);
1708
1709 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1710 goto unwind;
1711 }
1712
1713 be->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1714 count++;
1715 }
1716
1717 return count;
1718
1719unwind:
1720 /* disable any enabled and non active backends */
1721 list_for_each_entry_continue_reverse(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1722 struct snd_soc_pcm_runtime *be = dpcm->be;
1723 struct snd_pcm_substream *be_substream =
1724 snd_soc_dpcm_get_substream(be, stream);
1725
1726 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1727 continue;
1728
1729 if (be->dpcm[stream].users == 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001730 dev_err(be->dev, "ASoC: no users %s at close %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001731 stream ? "capture" : "playback",
1732 be->dpcm[stream].state);
1733
1734 if (--be->dpcm[stream].users != 0)
1735 continue;
1736
1737 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)
1738 continue;
1739
1740 soc_pcm_close(be_substream);
1741 be_substream->runtime = NULL;
1742 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1743 }
1744
1745 return err;
1746}
1747
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001748static void dpcm_init_runtime_hw(struct snd_pcm_runtime *runtime,
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001749 struct snd_soc_pcm_stream *stream,
1750 u64 formats)
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001751{
1752 runtime->hw.rate_min = stream->rate_min;
1753 runtime->hw.rate_max = stream->rate_max;
1754 runtime->hw.channels_min = stream->channels_min;
1755 runtime->hw.channels_max = stream->channels_max;
Lars-Peter Clausen002220a2014-01-06 14:19:07 +01001756 if (runtime->hw.formats)
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001757 runtime->hw.formats &= formats & stream->formats;
Lars-Peter Clausen002220a2014-01-06 14:19:07 +01001758 else
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001759 runtime->hw.formats = formats & stream->formats;
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001760 runtime->hw.rates = stream->rates;
1761}
1762
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001763static u64 dpcm_runtime_base_format(struct snd_pcm_substream *substream)
1764{
1765 struct snd_soc_pcm_runtime *fe = substream->private_data;
1766 struct snd_soc_dpcm *dpcm;
1767 u64 formats = ULLONG_MAX;
1768 int stream = substream->stream;
1769
1770 if (!fe->dai_link->dpcm_merged_format)
1771 return formats;
1772
1773 /*
1774 * It returns merged BE codec format
1775 * if FE want to use it (= dpcm_merged_format)
1776 */
1777
1778 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1779 struct snd_soc_pcm_runtime *be = dpcm->be;
1780 struct snd_soc_dai_driver *codec_dai_drv;
1781 struct snd_soc_pcm_stream *codec_stream;
1782 int i;
1783
1784 for (i = 0; i < be->num_codecs; i++) {
1785 codec_dai_drv = be->codec_dais[i]->driver;
1786 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
1787 codec_stream = &codec_dai_drv->playback;
1788 else
1789 codec_stream = &codec_dai_drv->capture;
1790
1791 formats &= codec_stream->formats;
1792 }
1793 }
1794
1795 return formats;
1796}
1797
Mark Brown45c0a182012-05-09 21:46:27 +01001798static void dpcm_set_fe_runtime(struct snd_pcm_substream *substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001799{
1800 struct snd_pcm_runtime *runtime = substream->runtime;
1801 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1802 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1803 struct snd_soc_dai_driver *cpu_dai_drv = cpu_dai->driver;
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001804 u64 format = dpcm_runtime_base_format(substream);
Liam Girdwood01d75842012-04-25 12:12:49 +01001805
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001806 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001807 dpcm_init_runtime_hw(runtime, &cpu_dai_drv->playback, format);
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001808 else
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001809 dpcm_init_runtime_hw(runtime, &cpu_dai_drv->capture, format);
Liam Girdwood01d75842012-04-25 12:12:49 +01001810}
1811
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001812static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd);
1813
1814/* Set FE's runtime_update state; the state is protected via PCM stream lock
1815 * for avoiding the race with trigger callback.
1816 * If the state is unset and a trigger is pending while the previous operation,
1817 * process the pending trigger action here.
1818 */
1819static void dpcm_set_fe_update_state(struct snd_soc_pcm_runtime *fe,
1820 int stream, enum snd_soc_dpcm_update state)
1821{
1822 struct snd_pcm_substream *substream =
1823 snd_soc_dpcm_get_substream(fe, stream);
1824
1825 snd_pcm_stream_lock_irq(substream);
1826 if (state == SND_SOC_DPCM_UPDATE_NO && fe->dpcm[stream].trigger_pending) {
1827 dpcm_fe_dai_do_trigger(substream,
1828 fe->dpcm[stream].trigger_pending - 1);
1829 fe->dpcm[stream].trigger_pending = 0;
1830 }
1831 fe->dpcm[stream].runtime_update = state;
1832 snd_pcm_stream_unlock_irq(substream);
1833}
1834
PC Liao906c7d62015-12-11 11:33:51 +08001835static int dpcm_apply_symmetry(struct snd_pcm_substream *fe_substream,
1836 int stream)
1837{
1838 struct snd_soc_dpcm *dpcm;
1839 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
1840 struct snd_soc_dai *fe_cpu_dai = fe->cpu_dai;
1841 int err;
1842
1843 /* apply symmetry for FE */
1844 if (soc_pcm_has_symmetry(fe_substream))
1845 fe_substream->runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
1846
1847 /* Symmetry only applies if we've got an active stream. */
1848 if (fe_cpu_dai->active) {
1849 err = soc_pcm_apply_symmetry(fe_substream, fe_cpu_dai);
1850 if (err < 0)
1851 return err;
1852 }
1853
1854 /* apply symmetry for BE */
1855 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1856 struct snd_soc_pcm_runtime *be = dpcm->be;
1857 struct snd_pcm_substream *be_substream =
1858 snd_soc_dpcm_get_substream(be, stream);
1859 struct snd_soc_pcm_runtime *rtd = be_substream->private_data;
1860 int i;
1861
Jeeja KPf1176612016-09-06 14:17:55 +05301862 if (rtd->dai_link->be_hw_params_fixup)
1863 continue;
1864
PC Liao906c7d62015-12-11 11:33:51 +08001865 if (soc_pcm_has_symmetry(be_substream))
1866 be_substream->runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
1867
1868 /* Symmetry only applies if we've got an active stream. */
1869 if (rtd->cpu_dai->active) {
1870 err = soc_pcm_apply_symmetry(be_substream, rtd->cpu_dai);
1871 if (err < 0)
1872 return err;
1873 }
1874
1875 for (i = 0; i < rtd->num_codecs; i++) {
1876 if (rtd->codec_dais[i]->active) {
1877 err = soc_pcm_apply_symmetry(be_substream,
1878 rtd->codec_dais[i]);
1879 if (err < 0)
1880 return err;
1881 }
1882 }
1883 }
1884
1885 return 0;
1886}
1887
Liam Girdwood01d75842012-04-25 12:12:49 +01001888static int dpcm_fe_dai_startup(struct snd_pcm_substream *fe_substream)
1889{
1890 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
1891 struct snd_pcm_runtime *runtime = fe_substream->runtime;
1892 int stream = fe_substream->stream, ret = 0;
1893
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001894 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01001895
1896 ret = dpcm_be_dai_startup(fe, fe_substream->stream);
1897 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001898 dev_err(fe->dev,"ASoC: failed to start some BEs %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001899 goto be_err;
1900 }
1901
Liam Girdwood103d84a2012-11-19 14:39:15 +00001902 dev_dbg(fe->dev, "ASoC: open FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001903
1904 /* start the DAI frontend */
1905 ret = soc_pcm_open(fe_substream);
1906 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001907 dev_err(fe->dev,"ASoC: failed to start FE %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001908 goto unwind;
1909 }
1910
1911 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1912
1913 dpcm_set_fe_runtime(fe_substream);
1914 snd_pcm_limit_hw_rates(runtime);
1915
PC Liao906c7d62015-12-11 11:33:51 +08001916 ret = dpcm_apply_symmetry(fe_substream, stream);
1917 if (ret < 0) {
1918 dev_err(fe->dev, "ASoC: failed to apply dpcm symmetry %d\n",
1919 ret);
1920 goto unwind;
1921 }
1922
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001923 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01001924 return 0;
1925
1926unwind:
1927 dpcm_be_dai_startup_unwind(fe, fe_substream->stream);
1928be_err:
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001929 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01001930 return ret;
1931}
1932
Liam Girdwood23607022014-01-17 17:03:55 +00001933int dpcm_be_dai_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001934{
1935 struct snd_soc_dpcm *dpcm;
1936
1937 /* only shutdown BEs that are either sinks or sources to this FE DAI */
1938 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1939
1940 struct snd_soc_pcm_runtime *be = dpcm->be;
1941 struct snd_pcm_substream *be_substream =
1942 snd_soc_dpcm_get_substream(be, stream);
1943
1944 /* is this op for this BE ? */
1945 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1946 continue;
1947
1948 if (be->dpcm[stream].users == 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001949 dev_err(be->dev, "ASoC: no users %s at close - state %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001950 stream ? "capture" : "playback",
1951 be->dpcm[stream].state);
1952
1953 if (--be->dpcm[stream].users != 0)
1954 continue;
1955
1956 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
1957 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN))
1958 continue;
1959
Liam Girdwood103d84a2012-11-19 14:39:15 +00001960 dev_dbg(be->dev, "ASoC: close BE %s\n",
彭东林94d215c2016-09-26 08:29:31 +00001961 be->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001962
1963 soc_pcm_close(be_substream);
1964 be_substream->runtime = NULL;
1965
1966 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1967 }
1968 return 0;
1969}
1970
1971static int dpcm_fe_dai_shutdown(struct snd_pcm_substream *substream)
1972{
1973 struct snd_soc_pcm_runtime *fe = substream->private_data;
1974 int stream = substream->stream;
1975
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001976 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01001977
1978 /* shutdown the BEs */
1979 dpcm_be_dai_shutdown(fe, substream->stream);
1980
Liam Girdwood103d84a2012-11-19 14:39:15 +00001981 dev_dbg(fe->dev, "ASoC: close FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001982
1983 /* now shutdown the frontend */
1984 soc_pcm_close(substream);
1985
1986 /* run the stream event for each BE */
1987 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP);
1988
1989 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001990 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01001991 return 0;
1992}
1993
Liam Girdwood23607022014-01-17 17:03:55 +00001994int dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001995{
1996 struct snd_soc_dpcm *dpcm;
1997
1998 /* only hw_params backends that are either sinks or sources
1999 * to this frontend DAI */
2000 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2001
2002 struct snd_soc_pcm_runtime *be = dpcm->be;
2003 struct snd_pcm_substream *be_substream =
2004 snd_soc_dpcm_get_substream(be, stream);
2005
2006 /* is this op for this BE ? */
2007 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2008 continue;
2009
2010 /* only free hw when no longer used - check all FEs */
2011 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2012 continue;
2013
Qiao Zhou36fba622014-12-03 10:13:43 +08002014 /* do not free hw if this BE is used by other FE */
2015 if (be->dpcm[stream].users > 1)
2016 continue;
2017
Liam Girdwood01d75842012-04-25 12:12:49 +01002018 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2019 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
2020 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
Patrick Lai08b27842012-12-19 19:36:02 -08002021 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED) &&
Vinod Koul5e82d2b2016-02-01 22:26:40 +05302022 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
2023 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
Liam Girdwood01d75842012-04-25 12:12:49 +01002024 continue;
2025
Liam Girdwood103d84a2012-11-19 14:39:15 +00002026 dev_dbg(be->dev, "ASoC: hw_free BE %s\n",
彭东林94d215c2016-09-26 08:29:31 +00002027 be->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01002028
2029 soc_pcm_hw_free(be_substream);
2030
2031 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
2032 }
2033
2034 return 0;
2035}
2036
Mark Brown45c0a182012-05-09 21:46:27 +01002037static int dpcm_fe_dai_hw_free(struct snd_pcm_substream *substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002038{
2039 struct snd_soc_pcm_runtime *fe = substream->private_data;
2040 int err, stream = substream->stream;
2041
2042 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002043 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01002044
Liam Girdwood103d84a2012-11-19 14:39:15 +00002045 dev_dbg(fe->dev, "ASoC: hw_free FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01002046
2047 /* call hw_free on the frontend */
2048 err = soc_pcm_hw_free(substream);
2049 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002050 dev_err(fe->dev,"ASoC: hw_free FE %s failed\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002051 fe->dai_link->name);
2052
2053 /* only hw_params backends that are either sinks or sources
2054 * to this frontend DAI */
2055 err = dpcm_be_dai_hw_free(fe, stream);
2056
2057 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002058 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01002059
2060 mutex_unlock(&fe->card->mutex);
2061 return 0;
2062}
2063
Liam Girdwood23607022014-01-17 17:03:55 +00002064int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002065{
2066 struct snd_soc_dpcm *dpcm;
2067 int ret;
2068
2069 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2070
2071 struct snd_soc_pcm_runtime *be = dpcm->be;
2072 struct snd_pcm_substream *be_substream =
2073 snd_soc_dpcm_get_substream(be, stream);
2074
2075 /* is this op for this BE ? */
2076 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2077 continue;
2078
Liam Girdwood01d75842012-04-25 12:12:49 +01002079 /* copy params for each dpcm */
2080 memcpy(&dpcm->hw_params, &fe->dpcm[stream].hw_params,
2081 sizeof(struct snd_pcm_hw_params));
2082
2083 /* perform any hw_params fixups */
2084 if (be->dai_link->be_hw_params_fixup) {
2085 ret = be->dai_link->be_hw_params_fixup(be,
2086 &dpcm->hw_params);
2087 if (ret < 0) {
2088 dev_err(be->dev,
Liam Girdwood103d84a2012-11-19 14:39:15 +00002089 "ASoC: hw_params BE fixup failed %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002090 ret);
2091 goto unwind;
2092 }
2093 }
2094
Kuninori Morimotob0639bd2016-01-21 01:47:12 +00002095 /* only allow hw_params() if no connected FEs are running */
2096 if (!snd_soc_dpcm_can_be_params(fe, be, stream))
2097 continue;
2098
2099 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
2100 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2101 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE))
2102 continue;
2103
2104 dev_dbg(be->dev, "ASoC: hw_params BE %s\n",
彭东林94d215c2016-09-26 08:29:31 +00002105 be->dai_link->name);
Kuninori Morimotob0639bd2016-01-21 01:47:12 +00002106
Liam Girdwood01d75842012-04-25 12:12:49 +01002107 ret = soc_pcm_hw_params(be_substream, &dpcm->hw_params);
2108 if (ret < 0) {
2109 dev_err(dpcm->be->dev,
Liam Girdwood103d84a2012-11-19 14:39:15 +00002110 "ASoC: hw_params BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002111 goto unwind;
2112 }
2113
2114 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
2115 }
2116 return 0;
2117
2118unwind:
2119 /* disable any enabled and non active backends */
2120 list_for_each_entry_continue_reverse(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2121 struct snd_soc_pcm_runtime *be = dpcm->be;
2122 struct snd_pcm_substream *be_substream =
2123 snd_soc_dpcm_get_substream(be, stream);
2124
2125 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2126 continue;
2127
2128 /* only allow hw_free() if no connected FEs are running */
2129 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2130 continue;
2131
2132 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
2133 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2134 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
2135 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
2136 continue;
2137
2138 soc_pcm_hw_free(be_substream);
2139 }
2140
2141 return ret;
2142}
2143
Mark Brown45c0a182012-05-09 21:46:27 +01002144static int dpcm_fe_dai_hw_params(struct snd_pcm_substream *substream,
2145 struct snd_pcm_hw_params *params)
Liam Girdwood01d75842012-04-25 12:12:49 +01002146{
2147 struct snd_soc_pcm_runtime *fe = substream->private_data;
2148 int ret, stream = substream->stream;
2149
2150 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002151 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01002152
2153 memcpy(&fe->dpcm[substream->stream].hw_params, params,
2154 sizeof(struct snd_pcm_hw_params));
2155 ret = dpcm_be_dai_hw_params(fe, substream->stream);
2156 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002157 dev_err(fe->dev,"ASoC: hw_params BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002158 goto out;
2159 }
2160
Liam Girdwood103d84a2012-11-19 14:39:15 +00002161 dev_dbg(fe->dev, "ASoC: hw_params FE %s rate %d chan %x fmt %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002162 fe->dai_link->name, params_rate(params),
2163 params_channels(params), params_format(params));
2164
2165 /* call hw_params on the frontend */
2166 ret = soc_pcm_hw_params(substream, params);
2167 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002168 dev_err(fe->dev,"ASoC: hw_params FE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002169 dpcm_be_dai_hw_free(fe, stream);
2170 } else
2171 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
2172
2173out:
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002174 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01002175 mutex_unlock(&fe->card->mutex);
2176 return ret;
2177}
2178
2179static int dpcm_do_trigger(struct snd_soc_dpcm *dpcm,
2180 struct snd_pcm_substream *substream, int cmd)
2181{
2182 int ret;
2183
Liam Girdwood103d84a2012-11-19 14:39:15 +00002184 dev_dbg(dpcm->be->dev, "ASoC: trigger BE %s cmd %d\n",
彭东林94d215c2016-09-26 08:29:31 +00002185 dpcm->be->dai_link->name, cmd);
Liam Girdwood01d75842012-04-25 12:12:49 +01002186
2187 ret = soc_pcm_trigger(substream, cmd);
2188 if (ret < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002189 dev_err(dpcm->be->dev,"ASoC: trigger BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002190
2191 return ret;
2192}
2193
Liam Girdwood23607022014-01-17 17:03:55 +00002194int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime *fe, int stream,
Mark Brown45c0a182012-05-09 21:46:27 +01002195 int cmd)
Liam Girdwood01d75842012-04-25 12:12:49 +01002196{
2197 struct snd_soc_dpcm *dpcm;
2198 int ret = 0;
2199
2200 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2201
2202 struct snd_soc_pcm_runtime *be = dpcm->be;
2203 struct snd_pcm_substream *be_substream =
2204 snd_soc_dpcm_get_substream(be, stream);
2205
2206 /* is this op for this BE ? */
2207 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2208 continue;
2209
2210 switch (cmd) {
2211 case SNDRV_PCM_TRIGGER_START:
2212 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
2213 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
2214 continue;
2215
2216 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2217 if (ret)
2218 return ret;
2219
2220 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2221 break;
2222 case SNDRV_PCM_TRIGGER_RESUME:
2223 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
2224 continue;
2225
2226 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2227 if (ret)
2228 return ret;
2229
2230 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2231 break;
2232 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2233 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2234 continue;
2235
2236 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2237 if (ret)
2238 return ret;
2239
2240 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2241 break;
2242 case SNDRV_PCM_TRIGGER_STOP:
2243 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2244 continue;
2245
2246 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2247 continue;
2248
2249 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2250 if (ret)
2251 return ret;
2252
2253 be->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
2254 break;
2255 case SNDRV_PCM_TRIGGER_SUSPEND:
Nicolin Chen868a6ca2014-05-12 20:12:05 +08002256 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
Liam Girdwood01d75842012-04-25 12:12:49 +01002257 continue;
2258
2259 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2260 continue;
2261
2262 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2263 if (ret)
2264 return ret;
2265
2266 be->dpcm[stream].state = SND_SOC_DPCM_STATE_SUSPEND;
2267 break;
2268 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2269 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2270 continue;
2271
2272 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2273 continue;
2274
2275 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2276 if (ret)
2277 return ret;
2278
2279 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2280 break;
2281 }
2282 }
2283
2284 return ret;
2285}
2286EXPORT_SYMBOL_GPL(dpcm_be_dai_trigger);
2287
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002288static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd)
Liam Girdwood01d75842012-04-25 12:12:49 +01002289{
2290 struct snd_soc_pcm_runtime *fe = substream->private_data;
2291 int stream = substream->stream, ret;
2292 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2293
2294 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
2295
2296 switch (trigger) {
2297 case SND_SOC_DPCM_TRIGGER_PRE:
2298 /* call trigger on the frontend before the backend. */
2299
Liam Girdwood103d84a2012-11-19 14:39:15 +00002300 dev_dbg(fe->dev, "ASoC: pre trigger FE %s cmd %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002301 fe->dai_link->name, cmd);
2302
2303 ret = soc_pcm_trigger(substream, cmd);
2304 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002305 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002306 goto out;
2307 }
2308
2309 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2310 break;
2311 case SND_SOC_DPCM_TRIGGER_POST:
2312 /* call trigger on the frontend after the backend. */
2313
2314 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2315 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002316 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002317 goto out;
2318 }
2319
Liam Girdwood103d84a2012-11-19 14:39:15 +00002320 dev_dbg(fe->dev, "ASoC: post trigger FE %s cmd %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002321 fe->dai_link->name, cmd);
2322
2323 ret = soc_pcm_trigger(substream, cmd);
2324 break;
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002325 case SND_SOC_DPCM_TRIGGER_BESPOKE:
2326 /* bespoke trigger() - handles both FE and BEs */
2327
Liam Girdwood103d84a2012-11-19 14:39:15 +00002328 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd %d\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002329 fe->dai_link->name, cmd);
2330
2331 ret = soc_pcm_bespoke_trigger(substream, cmd);
2332 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002333 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002334 goto out;
2335 }
2336 break;
Liam Girdwood01d75842012-04-25 12:12:49 +01002337 default:
Liam Girdwood103d84a2012-11-19 14:39:15 +00002338 dev_err(fe->dev, "ASoC: invalid trigger cmd %d for %s\n", cmd,
Liam Girdwood01d75842012-04-25 12:12:49 +01002339 fe->dai_link->name);
2340 ret = -EINVAL;
2341 goto out;
2342 }
2343
2344 switch (cmd) {
2345 case SNDRV_PCM_TRIGGER_START:
2346 case SNDRV_PCM_TRIGGER_RESUME:
2347 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2348 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2349 break;
2350 case SNDRV_PCM_TRIGGER_STOP:
2351 case SNDRV_PCM_TRIGGER_SUSPEND:
Liam Girdwood01d75842012-04-25 12:12:49 +01002352 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
2353 break;
Patrick Lai9f169b92016-12-31 22:44:39 -08002354 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2355 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2356 break;
Liam Girdwood01d75842012-04-25 12:12:49 +01002357 }
2358
2359out:
2360 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
2361 return ret;
2362}
2363
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002364static int dpcm_fe_dai_trigger(struct snd_pcm_substream *substream, int cmd)
2365{
2366 struct snd_soc_pcm_runtime *fe = substream->private_data;
2367 int stream = substream->stream;
2368
2369 /* if FE's runtime_update is already set, we're in race;
2370 * process this trigger later at exit
2371 */
2372 if (fe->dpcm[stream].runtime_update != SND_SOC_DPCM_UPDATE_NO) {
2373 fe->dpcm[stream].trigger_pending = cmd + 1;
2374 return 0; /* delayed, assuming it's successful */
2375 }
2376
2377 /* we're alone, let's trigger */
2378 return dpcm_fe_dai_do_trigger(substream, cmd);
2379}
2380
Liam Girdwood23607022014-01-17 17:03:55 +00002381int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002382{
2383 struct snd_soc_dpcm *dpcm;
2384 int ret = 0;
2385
2386 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2387
2388 struct snd_soc_pcm_runtime *be = dpcm->be;
2389 struct snd_pcm_substream *be_substream =
2390 snd_soc_dpcm_get_substream(be, stream);
2391
2392 /* is this op for this BE ? */
2393 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2394 continue;
2395
2396 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
Koro Chen95f444d2015-10-28 10:15:34 +08002397 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
2398 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
Liam Girdwood01d75842012-04-25 12:12:49 +01002399 continue;
2400
Liam Girdwood103d84a2012-11-19 14:39:15 +00002401 dev_dbg(be->dev, "ASoC: prepare BE %s\n",
彭东林94d215c2016-09-26 08:29:31 +00002402 be->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01002403
2404 ret = soc_pcm_prepare(be_substream);
2405 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002406 dev_err(be->dev, "ASoC: backend prepare failed %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002407 ret);
2408 break;
2409 }
2410
2411 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2412 }
2413 return ret;
2414}
2415
Mark Brown45c0a182012-05-09 21:46:27 +01002416static int dpcm_fe_dai_prepare(struct snd_pcm_substream *substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002417{
2418 struct snd_soc_pcm_runtime *fe = substream->private_data;
2419 int stream = substream->stream, ret = 0;
2420
2421 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2422
Liam Girdwood103d84a2012-11-19 14:39:15 +00002423 dev_dbg(fe->dev, "ASoC: prepare FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01002424
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002425 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01002426
2427 /* there is no point preparing this FE if there are no BEs */
2428 if (list_empty(&fe->dpcm[stream].be_clients)) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002429 dev_err(fe->dev, "ASoC: no backend DAIs enabled for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002430 fe->dai_link->name);
2431 ret = -EINVAL;
2432 goto out;
2433 }
2434
2435 ret = dpcm_be_dai_prepare(fe, substream->stream);
2436 if (ret < 0)
2437 goto out;
2438
2439 /* call prepare on the frontend */
2440 ret = soc_pcm_prepare(substream);
2441 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002442 dev_err(fe->dev,"ASoC: prepare FE %s failed\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002443 fe->dai_link->name);
2444 goto out;
2445 }
2446
2447 /* run the stream event for each BE */
2448 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_START);
2449 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2450
2451out:
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002452 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01002453 mutex_unlock(&fe->card->mutex);
2454
2455 return ret;
2456}
2457
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01002458static int soc_pcm_ioctl(struct snd_pcm_substream *substream,
2459 unsigned int cmd, void *arg)
2460{
2461 struct snd_soc_pcm_runtime *rtd = substream->private_data;
2462 struct snd_soc_platform *platform = rtd->platform;
Kuninori Morimotob8135862017-10-11 01:37:23 +00002463 struct snd_soc_component *component;
2464 struct snd_soc_rtdcom_list *rtdcom;
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01002465
Kuninori Morimotob8135862017-10-11 01:37:23 +00002466 if (platform && platform->driver->ops && platform->driver->ops->ioctl)
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01002467 return platform->driver->ops->ioctl(substream, cmd, arg);
Kuninori Morimotob8135862017-10-11 01:37:23 +00002468
2469 for_each_rtdcom(rtd, rtdcom) {
2470 component = rtdcom->component;
2471
2472 /* ignore duplication for now */
2473 if (platform && (component == &platform->component))
2474 continue;
2475
2476 if (!component->driver->ops ||
2477 !component->driver->ops->ioctl)
2478 continue;
2479
2480 /* FIXME: use 1st ioctl */
2481 return component->driver->ops->ioctl(substream, cmd, arg);
2482 }
2483
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01002484 return snd_pcm_lib_ioctl(substream, cmd, arg);
2485}
2486
Liam Girdwood618dae12012-04-25 12:12:51 +01002487static int dpcm_run_update_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
2488{
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002489 struct snd_pcm_substream *substream =
2490 snd_soc_dpcm_get_substream(fe, stream);
2491 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
Liam Girdwood618dae12012-04-25 12:12:51 +01002492 int err;
Liam Girdwood01d75842012-04-25 12:12:49 +01002493
Liam Girdwood103d84a2012-11-19 14:39:15 +00002494 dev_dbg(fe->dev, "ASoC: runtime %s close on FE %s\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002495 stream ? "capture" : "playback", fe->dai_link->name);
2496
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002497 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2498 /* call bespoke trigger - FE takes care of all BE triggers */
Liam Girdwood103d84a2012-11-19 14:39:15 +00002499 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd stop\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002500 fe->dai_link->name);
2501
2502 err = soc_pcm_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_STOP);
2503 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002504 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002505 } else {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002506 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd stop\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002507 fe->dai_link->name);
2508
2509 err = dpcm_be_dai_trigger(fe, stream, SNDRV_PCM_TRIGGER_STOP);
2510 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002511 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002512 }
Liam Girdwood618dae12012-04-25 12:12:51 +01002513
2514 err = dpcm_be_dai_hw_free(fe, stream);
2515 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002516 dev_err(fe->dev,"ASoC: hw_free FE failed %d\n", err);
Liam Girdwood618dae12012-04-25 12:12:51 +01002517
2518 err = dpcm_be_dai_shutdown(fe, stream);
2519 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002520 dev_err(fe->dev,"ASoC: shutdown FE failed %d\n", err);
Liam Girdwood618dae12012-04-25 12:12:51 +01002521
2522 /* run the stream event for each BE */
2523 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2524
2525 return 0;
2526}
2527
2528static int dpcm_run_update_startup(struct snd_soc_pcm_runtime *fe, int stream)
2529{
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002530 struct snd_pcm_substream *substream =
2531 snd_soc_dpcm_get_substream(fe, stream);
Liam Girdwood618dae12012-04-25 12:12:51 +01002532 struct snd_soc_dpcm *dpcm;
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002533 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
Liam Girdwood618dae12012-04-25 12:12:51 +01002534 int ret;
2535
Liam Girdwood103d84a2012-11-19 14:39:15 +00002536 dev_dbg(fe->dev, "ASoC: runtime %s open on FE %s\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002537 stream ? "capture" : "playback", fe->dai_link->name);
2538
2539 /* Only start the BE if the FE is ready */
2540 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_FREE ||
2541 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE)
2542 return -EINVAL;
2543
2544 /* startup must always be called for new BEs */
2545 ret = dpcm_be_dai_startup(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03002546 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01002547 goto disconnect;
Liam Girdwood618dae12012-04-25 12:12:51 +01002548
2549 /* keep going if FE state is > open */
2550 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_OPEN)
2551 return 0;
2552
2553 ret = dpcm_be_dai_hw_params(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03002554 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01002555 goto close;
Liam Girdwood618dae12012-04-25 12:12:51 +01002556
2557 /* keep going if FE state is > hw_params */
2558 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_PARAMS)
2559 return 0;
2560
2561
2562 ret = dpcm_be_dai_prepare(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03002563 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01002564 goto hw_free;
Liam Girdwood618dae12012-04-25 12:12:51 +01002565
2566 /* run the stream event for each BE */
2567 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2568
2569 /* keep going if FE state is > prepare */
2570 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_PREPARE ||
2571 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_STOP)
2572 return 0;
2573
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002574 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2575 /* call trigger on the frontend - FE takes care of all BE triggers */
Liam Girdwood103d84a2012-11-19 14:39:15 +00002576 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd start\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002577 fe->dai_link->name);
Liam Girdwood618dae12012-04-25 12:12:51 +01002578
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002579 ret = soc_pcm_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_START);
2580 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002581 dev_err(fe->dev,"ASoC: bespoke trigger FE failed %d\n", ret);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002582 goto hw_free;
2583 }
2584 } else {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002585 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd start\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002586 fe->dai_link->name);
2587
2588 ret = dpcm_be_dai_trigger(fe, stream,
2589 SNDRV_PCM_TRIGGER_START);
2590 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002591 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002592 goto hw_free;
2593 }
Liam Girdwood618dae12012-04-25 12:12:51 +01002594 }
2595
2596 return 0;
2597
2598hw_free:
2599 dpcm_be_dai_hw_free(fe, stream);
2600close:
2601 dpcm_be_dai_shutdown(fe, stream);
2602disconnect:
2603 /* disconnect any non started BEs */
2604 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2605 struct snd_soc_pcm_runtime *be = dpcm->be;
2606 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2607 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2608 }
2609
2610 return ret;
2611}
2612
2613static int dpcm_run_new_update(struct snd_soc_pcm_runtime *fe, int stream)
2614{
2615 int ret;
2616
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002617 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE);
Liam Girdwood618dae12012-04-25 12:12:51 +01002618 ret = dpcm_run_update_startup(fe, stream);
2619 if (ret < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002620 dev_err(fe->dev, "ASoC: failed to startup some BEs\n");
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002621 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood618dae12012-04-25 12:12:51 +01002622
2623 return ret;
2624}
2625
2626static int dpcm_run_old_update(struct snd_soc_pcm_runtime *fe, int stream)
2627{
2628 int ret;
2629
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002630 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE);
Liam Girdwood618dae12012-04-25 12:12:51 +01002631 ret = dpcm_run_update_shutdown(fe, stream);
2632 if (ret < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002633 dev_err(fe->dev, "ASoC: failed to shutdown some BEs\n");
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002634 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood618dae12012-04-25 12:12:51 +01002635
2636 return ret;
2637}
2638
2639/* Called by DAPM mixer/mux changes to update audio routing between PCMs and
2640 * any DAI links.
2641 */
Lars-Peter Clausenc3f48ae2013-07-24 15:27:36 +02002642int soc_dpcm_runtime_update(struct snd_soc_card *card)
Liam Girdwood618dae12012-04-25 12:12:51 +01002643{
Mengdong Lin1a497982015-11-18 02:34:11 -05002644 struct snd_soc_pcm_runtime *fe;
2645 int old, new, paths;
Liam Girdwood618dae12012-04-25 12:12:51 +01002646
Liam Girdwood618dae12012-04-25 12:12:51 +01002647 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
Mengdong Lin1a497982015-11-18 02:34:11 -05002648 list_for_each_entry(fe, &card->rtd_list, list) {
Liam Girdwood618dae12012-04-25 12:12:51 +01002649 struct snd_soc_dapm_widget_list *list;
Liam Girdwood618dae12012-04-25 12:12:51 +01002650
2651 /* make sure link is FE */
2652 if (!fe->dai_link->dynamic)
2653 continue;
2654
2655 /* only check active links */
2656 if (!fe->cpu_dai->active)
2657 continue;
2658
2659 /* DAPM sync will call this to update DSP paths */
Liam Girdwood103d84a2012-11-19 14:39:15 +00002660 dev_dbg(fe->dev, "ASoC: DPCM runtime update for FE %s\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002661 fe->dai_link->name);
2662
2663 /* skip if FE doesn't have playback capability */
Qiao Zhou075207d2014-11-17 16:02:57 +08002664 if (!fe->cpu_dai->driver->playback.channels_min
2665 || !fe->codec_dai->driver->playback.channels_min)
2666 goto capture;
2667
2668 /* skip if FE isn't currently playing */
2669 if (!fe->cpu_dai->playback_active
2670 || !fe->codec_dai->playback_active)
Liam Girdwood618dae12012-04-25 12:12:51 +01002671 goto capture;
2672
2673 paths = dpcm_path_get(fe, SNDRV_PCM_STREAM_PLAYBACK, &list);
2674 if (paths < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002675 dev_warn(fe->dev, "ASoC: %s no valid %s path\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002676 fe->dai_link->name, "playback");
2677 mutex_unlock(&card->mutex);
2678 return paths;
2679 }
2680
2681 /* update any new playback paths */
2682 new = dpcm_process_paths(fe, SNDRV_PCM_STREAM_PLAYBACK, &list, 1);
2683 if (new) {
2684 dpcm_run_new_update(fe, SNDRV_PCM_STREAM_PLAYBACK);
2685 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_PLAYBACK);
2686 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_PLAYBACK);
2687 }
2688
2689 /* update any old playback paths */
2690 old = dpcm_process_paths(fe, SNDRV_PCM_STREAM_PLAYBACK, &list, 0);
2691 if (old) {
2692 dpcm_run_old_update(fe, SNDRV_PCM_STREAM_PLAYBACK);
2693 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_PLAYBACK);
2694 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_PLAYBACK);
2695 }
2696
Qiao Zhou7ed9de72014-06-04 19:42:06 +08002697 dpcm_path_put(&list);
Liam Girdwood618dae12012-04-25 12:12:51 +01002698capture:
2699 /* skip if FE doesn't have capture capability */
Qiao Zhou075207d2014-11-17 16:02:57 +08002700 if (!fe->cpu_dai->driver->capture.channels_min
2701 || !fe->codec_dai->driver->capture.channels_min)
2702 continue;
2703
2704 /* skip if FE isn't currently capturing */
2705 if (!fe->cpu_dai->capture_active
2706 || !fe->codec_dai->capture_active)
Liam Girdwood618dae12012-04-25 12:12:51 +01002707 continue;
2708
2709 paths = dpcm_path_get(fe, SNDRV_PCM_STREAM_CAPTURE, &list);
2710 if (paths < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002711 dev_warn(fe->dev, "ASoC: %s no valid %s path\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002712 fe->dai_link->name, "capture");
2713 mutex_unlock(&card->mutex);
2714 return paths;
2715 }
2716
2717 /* update any new capture paths */
2718 new = dpcm_process_paths(fe, SNDRV_PCM_STREAM_CAPTURE, &list, 1);
2719 if (new) {
2720 dpcm_run_new_update(fe, SNDRV_PCM_STREAM_CAPTURE);
2721 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_CAPTURE);
2722 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_CAPTURE);
2723 }
2724
2725 /* update any old capture paths */
2726 old = dpcm_process_paths(fe, SNDRV_PCM_STREAM_CAPTURE, &list, 0);
2727 if (old) {
2728 dpcm_run_old_update(fe, SNDRV_PCM_STREAM_CAPTURE);
2729 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_CAPTURE);
2730 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_CAPTURE);
2731 }
2732
2733 dpcm_path_put(&list);
2734 }
2735
2736 mutex_unlock(&card->mutex);
2737 return 0;
2738}
Liam Girdwood01d75842012-04-25 12:12:49 +01002739int soc_dpcm_be_digital_mute(struct snd_soc_pcm_runtime *fe, int mute)
2740{
2741 struct snd_soc_dpcm *dpcm;
2742 struct list_head *clients =
2743 &fe->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients;
2744
2745 list_for_each_entry(dpcm, clients, list_be) {
2746
2747 struct snd_soc_pcm_runtime *be = dpcm->be;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002748 int i;
Liam Girdwood01d75842012-04-25 12:12:49 +01002749
2750 if (be->dai_link->ignore_suspend)
2751 continue;
2752
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002753 for (i = 0; i < be->num_codecs; i++) {
2754 struct snd_soc_dai *dai = be->codec_dais[i];
2755 struct snd_soc_dai_driver *drv = dai->driver;
Liam Girdwood01d75842012-04-25 12:12:49 +01002756
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002757 dev_dbg(be->dev, "ASoC: BE digital mute %s\n",
2758 be->dai_link->name);
2759
2760 if (drv->ops && drv->ops->digital_mute &&
2761 dai->playback_active)
2762 drv->ops->digital_mute(dai, mute);
2763 }
Liam Girdwood01d75842012-04-25 12:12:49 +01002764 }
2765
2766 return 0;
2767}
2768
Mark Brown45c0a182012-05-09 21:46:27 +01002769static int dpcm_fe_dai_open(struct snd_pcm_substream *fe_substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002770{
2771 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
2772 struct snd_soc_dpcm *dpcm;
2773 struct snd_soc_dapm_widget_list *list;
2774 int ret;
2775 int stream = fe_substream->stream;
2776
2777 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2778 fe->dpcm[stream].runtime = fe_substream->runtime;
2779
Qiao Zhou8f70e512014-09-10 17:54:07 +08002780 ret = dpcm_path_get(fe, stream, &list);
2781 if (ret < 0) {
2782 mutex_unlock(&fe->card->mutex);
2783 return ret;
2784 } else if (ret == 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002785 dev_dbg(fe->dev, "ASoC: %s no valid %s route\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002786 fe->dai_link->name, stream ? "capture" : "playback");
Liam Girdwood01d75842012-04-25 12:12:49 +01002787 }
2788
2789 /* calculate valid and active FE <-> BE dpcms */
2790 dpcm_process_paths(fe, stream, &list, 1);
2791
2792 ret = dpcm_fe_dai_startup(fe_substream);
2793 if (ret < 0) {
2794 /* clean up all links */
2795 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
2796 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2797
2798 dpcm_be_disconnect(fe, stream);
2799 fe->dpcm[stream].runtime = NULL;
2800 }
2801
2802 dpcm_clear_pending_state(fe, stream);
2803 dpcm_path_put(&list);
2804 mutex_unlock(&fe->card->mutex);
2805 return ret;
2806}
2807
Mark Brown45c0a182012-05-09 21:46:27 +01002808static int dpcm_fe_dai_close(struct snd_pcm_substream *fe_substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002809{
2810 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
2811 struct snd_soc_dpcm *dpcm;
2812 int stream = fe_substream->stream, ret;
2813
2814 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2815 ret = dpcm_fe_dai_shutdown(fe_substream);
2816
2817 /* mark FE's links ready to prune */
2818 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
2819 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2820
2821 dpcm_be_disconnect(fe, stream);
2822
2823 fe->dpcm[stream].runtime = NULL;
2824 mutex_unlock(&fe->card->mutex);
2825 return ret;
2826}
2827
Takashi Iwai5d61f0b2017-08-25 12:04:07 +02002828static void soc_pcm_private_free(struct snd_pcm *pcm)
2829{
2830 struct snd_soc_pcm_runtime *rtd = pcm->private_data;
Kuninori Morimotof523ace2017-09-26 01:00:53 +00002831 struct snd_soc_rtdcom_list *rtdcom;
2832 struct snd_soc_component *component;
Takashi Iwai5d61f0b2017-08-25 12:04:07 +02002833
Kuninori Morimotof30a4c32018-01-24 05:18:46 +00002834 /* need to sync the delayed work before releasing resources */
2835 flush_delayed_work(&rtd->delayed_work);
Kuninori Morimotof523ace2017-09-26 01:00:53 +00002836 for_each_rtdcom(rtd, rtdcom) {
Kuninori Morimotof523ace2017-09-26 01:00:53 +00002837 component = rtdcom->component;
2838
2839 if (component->pcm_free)
2840 component->pcm_free(component, pcm);
2841 }
Takashi Iwai5d61f0b2017-08-25 12:04:07 +02002842}
2843
Kuninori Morimotob8135862017-10-11 01:37:23 +00002844static int soc_rtdcom_ack(struct snd_pcm_substream *substream)
2845{
2846 struct snd_soc_pcm_runtime *rtd = substream->private_data;
2847 struct snd_soc_rtdcom_list *rtdcom;
2848 struct snd_soc_component *component;
2849
2850 for_each_rtdcom(rtd, rtdcom) {
2851 component = rtdcom->component;
2852
2853 if (!component->driver->ops ||
2854 !component->driver->ops->ack)
2855 continue;
2856
2857 /* FIXME. it returns 1st ask now */
2858 return component->driver->ops->ack(substream);
2859 }
2860
2861 return -EINVAL;
2862}
2863
2864static int soc_rtdcom_copy_user(struct snd_pcm_substream *substream, int channel,
2865 unsigned long pos, void __user *buf,
2866 unsigned long bytes)
2867{
2868 struct snd_soc_pcm_runtime *rtd = substream->private_data;
2869 struct snd_soc_rtdcom_list *rtdcom;
2870 struct snd_soc_component *component;
2871
2872 for_each_rtdcom(rtd, rtdcom) {
2873 component = rtdcom->component;
2874
2875 if (!component->driver->ops ||
2876 !component->driver->ops->copy_user)
2877 continue;
2878
2879 /* FIXME. it returns 1st copy now */
2880 return component->driver->ops->copy_user(substream, channel,
2881 pos, buf, bytes);
2882 }
2883
2884 return -EINVAL;
2885}
2886
2887static int soc_rtdcom_copy_kernel(struct snd_pcm_substream *substream, int channel,
2888 unsigned long pos, void *buf, unsigned long bytes)
2889{
2890 struct snd_soc_pcm_runtime *rtd = substream->private_data;
2891 struct snd_soc_rtdcom_list *rtdcom;
2892 struct snd_soc_component *component;
2893
2894 for_each_rtdcom(rtd, rtdcom) {
2895 component = rtdcom->component;
2896
2897 if (!component->driver->ops ||
2898 !component->driver->ops->copy_kernel)
2899 continue;
2900
2901 /* FIXME. it returns 1st copy now */
2902 return component->driver->ops->copy_kernel(substream, channel,
2903 pos, buf, bytes);
2904 }
2905
2906 return -EINVAL;
2907}
2908
2909static int soc_rtdcom_fill_silence(struct snd_pcm_substream *substream, int channel,
2910 unsigned long pos, unsigned long bytes)
2911{
2912 struct snd_soc_pcm_runtime *rtd = substream->private_data;
2913 struct snd_soc_rtdcom_list *rtdcom;
2914 struct snd_soc_component *component;
2915
2916 for_each_rtdcom(rtd, rtdcom) {
2917 component = rtdcom->component;
2918
2919 if (!component->driver->ops ||
2920 !component->driver->ops->fill_silence)
2921 continue;
2922
2923 /* FIXME. it returns 1st silence now */
2924 return component->driver->ops->fill_silence(substream, channel,
2925 pos, bytes);
2926 }
2927
2928 return -EINVAL;
2929}
2930
2931static struct page *soc_rtdcom_page(struct snd_pcm_substream *substream,
2932 unsigned long offset)
2933{
2934 struct snd_soc_pcm_runtime *rtd = substream->private_data;
2935 struct snd_soc_rtdcom_list *rtdcom;
2936 struct snd_soc_component *component;
2937 struct page *page;
2938
2939 for_each_rtdcom(rtd, rtdcom) {
2940 component = rtdcom->component;
2941
2942 if (!component->driver->ops ||
2943 !component->driver->ops->page)
2944 continue;
2945
2946 /* FIXME. it returns 1st page now */
2947 page = component->driver->ops->page(substream, offset);
2948 if (page)
2949 return page;
2950 }
2951
2952 return NULL;
2953}
2954
2955static int soc_rtdcom_mmap(struct snd_pcm_substream *substream,
2956 struct vm_area_struct *vma)
2957{
2958 struct snd_soc_pcm_runtime *rtd = substream->private_data;
2959 struct snd_soc_rtdcom_list *rtdcom;
2960 struct snd_soc_component *component;
2961
2962 for_each_rtdcom(rtd, rtdcom) {
2963 component = rtdcom->component;
2964
2965 if (!component->driver->ops ||
2966 !component->driver->ops->mmap)
2967 continue;
2968
2969 /* FIXME. it returns 1st mmap now */
2970 return component->driver->ops->mmap(substream, vma);
2971 }
2972
2973 return -EINVAL;
2974}
2975
Liam Girdwoodddee6272011-06-09 14:45:53 +01002976/* create a new pcm */
2977int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
2978{
Liam Girdwoodddee6272011-06-09 14:45:53 +01002979 struct snd_soc_platform *platform = rtd->platform;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002980 struct snd_soc_dai *codec_dai;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002981 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Kuninori Morimotof523ace2017-09-26 01:00:53 +00002982 struct snd_soc_component *component;
2983 struct snd_soc_rtdcom_list *rtdcom;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002984 struct snd_pcm *pcm;
2985 char new_name[64];
2986 int ret = 0, playback = 0, capture = 0;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002987 int i;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002988
Liam Girdwood01d75842012-04-25 12:12:49 +01002989 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm) {
Liam Girdwood1e9de422014-01-07 17:51:42 +00002990 playback = rtd->dai_link->dpcm_playback;
2991 capture = rtd->dai_link->dpcm_capture;
Liam Girdwood01d75842012-04-25 12:12:49 +01002992 } else {
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002993 for (i = 0; i < rtd->num_codecs; i++) {
2994 codec_dai = rtd->codec_dais[i];
2995 if (codec_dai->driver->playback.channels_min)
2996 playback = 1;
2997 if (codec_dai->driver->capture.channels_min)
2998 capture = 1;
2999 }
3000
3001 capture = capture && cpu_dai->driver->capture.channels_min;
3002 playback = playback && cpu_dai->driver->playback.channels_min;
Liam Girdwood01d75842012-04-25 12:12:49 +01003003 }
Sangsu Parka5002312012-01-02 17:15:10 +09003004
Fabio Estevamd6bead02013-08-29 10:32:13 -03003005 if (rtd->dai_link->playback_only) {
3006 playback = 1;
3007 capture = 0;
3008 }
3009
3010 if (rtd->dai_link->capture_only) {
3011 playback = 0;
3012 capture = 1;
3013 }
3014
Liam Girdwood01d75842012-04-25 12:12:49 +01003015 /* create the PCM */
3016 if (rtd->dai_link->no_pcm) {
3017 snprintf(new_name, sizeof(new_name), "(%s)",
3018 rtd->dai_link->stream_name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01003019
Liam Girdwood01d75842012-04-25 12:12:49 +01003020 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
3021 playback, capture, &pcm);
3022 } else {
3023 if (rtd->dai_link->dynamic)
3024 snprintf(new_name, sizeof(new_name), "%s (*)",
3025 rtd->dai_link->stream_name);
3026 else
3027 snprintf(new_name, sizeof(new_name), "%s %s-%d",
Benoit Cousson2e5894d2014-07-08 23:19:35 +02003028 rtd->dai_link->stream_name,
3029 (rtd->num_codecs > 1) ?
3030 "multicodec" : rtd->codec_dai->name, num);
Liam Girdwoodddee6272011-06-09 14:45:53 +01003031
Liam Girdwood01d75842012-04-25 12:12:49 +01003032 ret = snd_pcm_new(rtd->card->snd_card, new_name, num, playback,
3033 capture, &pcm);
3034 }
Liam Girdwoodddee6272011-06-09 14:45:53 +01003035 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00003036 dev_err(rtd->card->dev, "ASoC: can't create pcm for %s\n",
Liam Girdwood5cb9b742012-07-06 16:54:52 +01003037 rtd->dai_link->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01003038 return ret;
3039 }
Liam Girdwood103d84a2012-11-19 14:39:15 +00003040 dev_dbg(rtd->card->dev, "ASoC: registered pcm #%d %s\n",num, new_name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01003041
3042 /* DAPM dai link stream work */
3043 INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work);
3044
Vinod Koul48c76992015-02-12 09:59:53 +05303045 pcm->nonatomic = rtd->dai_link->nonatomic;
Liam Girdwoodddee6272011-06-09 14:45:53 +01003046 rtd->pcm = pcm;
3047 pcm->private_data = rtd;
Liam Girdwood01d75842012-04-25 12:12:49 +01003048
3049 if (rtd->dai_link->no_pcm) {
3050 if (playback)
3051 pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd;
3052 if (capture)
3053 pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd;
3054 goto out;
3055 }
3056
3057 /* ASoC PCM operations */
3058 if (rtd->dai_link->dynamic) {
3059 rtd->ops.open = dpcm_fe_dai_open;
3060 rtd->ops.hw_params = dpcm_fe_dai_hw_params;
3061 rtd->ops.prepare = dpcm_fe_dai_prepare;
3062 rtd->ops.trigger = dpcm_fe_dai_trigger;
3063 rtd->ops.hw_free = dpcm_fe_dai_hw_free;
3064 rtd->ops.close = dpcm_fe_dai_close;
3065 rtd->ops.pointer = soc_pcm_pointer;
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01003066 rtd->ops.ioctl = soc_pcm_ioctl;
Liam Girdwood01d75842012-04-25 12:12:49 +01003067 } else {
3068 rtd->ops.open = soc_pcm_open;
3069 rtd->ops.hw_params = soc_pcm_hw_params;
3070 rtd->ops.prepare = soc_pcm_prepare;
3071 rtd->ops.trigger = soc_pcm_trigger;
3072 rtd->ops.hw_free = soc_pcm_hw_free;
3073 rtd->ops.close = soc_pcm_close;
3074 rtd->ops.pointer = soc_pcm_pointer;
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01003075 rtd->ops.ioctl = soc_pcm_ioctl;
Liam Girdwood01d75842012-04-25 12:12:49 +01003076 }
3077
Kuninori Morimotob8135862017-10-11 01:37:23 +00003078 for_each_rtdcom(rtd, rtdcom) {
3079 const struct snd_pcm_ops *ops = rtdcom->component->driver->ops;
3080
3081 if (!ops)
3082 continue;
3083
3084 if (ops->ack)
3085 rtd->ops.ack = soc_rtdcom_ack;
3086 if (ops->copy_user)
3087 rtd->ops.copy_user = soc_rtdcom_copy_user;
3088 if (ops->copy_kernel)
3089 rtd->ops.copy_kernel = soc_rtdcom_copy_kernel;
3090 if (ops->fill_silence)
3091 rtd->ops.fill_silence = soc_rtdcom_fill_silence;
3092 if (ops->page)
3093 rtd->ops.page = soc_rtdcom_page;
3094 if (ops->mmap)
3095 rtd->ops.mmap = soc_rtdcom_mmap;
3096 }
3097
3098 /* overwrite */
3099 if (platform && platform->driver->ops) {
Liam Girdwood01d75842012-04-25 12:12:49 +01003100 rtd->ops.ack = platform->driver->ops->ack;
Takashi Iwai29d1a872017-05-10 20:02:35 +02003101 rtd->ops.copy_user = platform->driver->ops->copy_user;
3102 rtd->ops.copy_kernel = platform->driver->ops->copy_kernel;
3103 rtd->ops.fill_silence = platform->driver->ops->fill_silence;
Liam Girdwood01d75842012-04-25 12:12:49 +01003104 rtd->ops.page = platform->driver->ops->page;
3105 rtd->ops.mmap = platform->driver->ops->mmap;
Liam Girdwoodddee6272011-06-09 14:45:53 +01003106 }
3107
3108 if (playback)
Liam Girdwood01d75842012-04-25 12:12:49 +01003109 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &rtd->ops);
Liam Girdwoodddee6272011-06-09 14:45:53 +01003110
3111 if (capture)
Liam Girdwood01d75842012-04-25 12:12:49 +01003112 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &rtd->ops);
Liam Girdwoodddee6272011-06-09 14:45:53 +01003113
Kuninori Morimotof523ace2017-09-26 01:00:53 +00003114 for_each_rtdcom(rtd, rtdcom) {
3115 component = rtdcom->component;
3116
3117 if (!component->pcm_new)
3118 continue;
3119
3120 ret = component->pcm_new(component, rtd);
Johan Hovoldc641e5b2017-07-12 17:55:29 +02003121 if (ret < 0) {
Kuninori Morimotof523ace2017-09-26 01:00:53 +00003122 dev_err(component->dev,
Johan Hovoldc641e5b2017-07-12 17:55:29 +02003123 "ASoC: pcm constructor failed: %d\n",
3124 ret);
3125 return ret;
Liam Girdwoodddee6272011-06-09 14:45:53 +01003126 }
3127 }
Johan Hovoldc641e5b2017-07-12 17:55:29 +02003128
Takashi Iwai5d61f0b2017-08-25 12:04:07 +02003129 pcm->private_free = soc_pcm_private_free;
Liam Girdwood01d75842012-04-25 12:12:49 +01003130out:
Benoit Cousson2e5894d2014-07-08 23:19:35 +02003131 dev_info(rtd->card->dev, "%s <-> %s mapping ok\n",
3132 (rtd->num_codecs > 1) ? "multicodec" : rtd->codec_dai->name,
3133 cpu_dai->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01003134 return ret;
3135}
Liam Girdwood01d75842012-04-25 12:12:49 +01003136
3137/* is the current PCM operation for this FE ? */
3138int snd_soc_dpcm_fe_can_update(struct snd_soc_pcm_runtime *fe, int stream)
3139{
3140 if (fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE)
3141 return 1;
3142 return 0;
3143}
3144EXPORT_SYMBOL_GPL(snd_soc_dpcm_fe_can_update);
3145
3146/* is the current PCM operation for this BE ? */
3147int snd_soc_dpcm_be_can_update(struct snd_soc_pcm_runtime *fe,
3148 struct snd_soc_pcm_runtime *be, int stream)
3149{
3150 if ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE) ||
3151 ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_BE) &&
3152 be->dpcm[stream].runtime_update))
3153 return 1;
3154 return 0;
3155}
3156EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_can_update);
3157
3158/* get the substream for this BE */
3159struct snd_pcm_substream *
3160 snd_soc_dpcm_get_substream(struct snd_soc_pcm_runtime *be, int stream)
3161{
3162 return be->pcm->streams[stream].substream;
3163}
3164EXPORT_SYMBOL_GPL(snd_soc_dpcm_get_substream);
3165
3166/* get the BE runtime state */
3167enum snd_soc_dpcm_state
3168 snd_soc_dpcm_be_get_state(struct snd_soc_pcm_runtime *be, int stream)
3169{
3170 return be->dpcm[stream].state;
3171}
3172EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_get_state);
3173
3174/* set the BE runtime state */
3175void snd_soc_dpcm_be_set_state(struct snd_soc_pcm_runtime *be,
3176 int stream, enum snd_soc_dpcm_state state)
3177{
3178 be->dpcm[stream].state = state;
3179}
3180EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_set_state);
3181
3182/*
3183 * We can only hw_free, stop, pause or suspend a BE DAI if any of it's FE
3184 * are not running, paused or suspended for the specified stream direction.
3185 */
3186int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime *fe,
3187 struct snd_soc_pcm_runtime *be, int stream)
3188{
3189 struct snd_soc_dpcm *dpcm;
3190 int state;
3191
3192 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
3193
3194 if (dpcm->fe == fe)
3195 continue;
3196
3197 state = dpcm->fe->dpcm[stream].state;
3198 if (state == SND_SOC_DPCM_STATE_START ||
3199 state == SND_SOC_DPCM_STATE_PAUSED ||
3200 state == SND_SOC_DPCM_STATE_SUSPEND)
3201 return 0;
3202 }
3203
3204 /* it's safe to free/stop this BE DAI */
3205 return 1;
3206}
3207EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_free_stop);
3208
3209/*
3210 * We can only change hw params a BE DAI if any of it's FE are not prepared,
3211 * running, paused or suspended for the specified stream direction.
3212 */
3213int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime *fe,
3214 struct snd_soc_pcm_runtime *be, int stream)
3215{
3216 struct snd_soc_dpcm *dpcm;
3217 int state;
3218
3219 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
3220
3221 if (dpcm->fe == fe)
3222 continue;
3223
3224 state = dpcm->fe->dpcm[stream].state;
3225 if (state == SND_SOC_DPCM_STATE_START ||
3226 state == SND_SOC_DPCM_STATE_PAUSED ||
3227 state == SND_SOC_DPCM_STATE_SUSPEND ||
3228 state == SND_SOC_DPCM_STATE_PREPARE)
3229 return 0;
3230 }
3231
3232 /* it's safe to change hw_params */
3233 return 1;
3234}
3235EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_params);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003236
3237#ifdef CONFIG_DEBUG_FS
Lars-Peter Clausen852801412016-11-22 11:29:14 +01003238static const char *dpcm_state_string(enum snd_soc_dpcm_state state)
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003239{
3240 switch (state) {
3241 case SND_SOC_DPCM_STATE_NEW:
3242 return "new";
3243 case SND_SOC_DPCM_STATE_OPEN:
3244 return "open";
3245 case SND_SOC_DPCM_STATE_HW_PARAMS:
3246 return "hw_params";
3247 case SND_SOC_DPCM_STATE_PREPARE:
3248 return "prepare";
3249 case SND_SOC_DPCM_STATE_START:
3250 return "start";
3251 case SND_SOC_DPCM_STATE_STOP:
3252 return "stop";
3253 case SND_SOC_DPCM_STATE_SUSPEND:
3254 return "suspend";
3255 case SND_SOC_DPCM_STATE_PAUSED:
3256 return "paused";
3257 case SND_SOC_DPCM_STATE_HW_FREE:
3258 return "hw_free";
3259 case SND_SOC_DPCM_STATE_CLOSE:
3260 return "close";
3261 }
3262
3263 return "unknown";
3264}
3265
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003266static ssize_t dpcm_show_state(struct snd_soc_pcm_runtime *fe,
3267 int stream, char *buf, size_t size)
3268{
3269 struct snd_pcm_hw_params *params = &fe->dpcm[stream].hw_params;
3270 struct snd_soc_dpcm *dpcm;
3271 ssize_t offset = 0;
3272
3273 /* FE state */
3274 offset += snprintf(buf + offset, size - offset,
3275 "[%s - %s]\n", fe->dai_link->name,
3276 stream ? "Capture" : "Playback");
3277
3278 offset += snprintf(buf + offset, size - offset, "State: %s\n",
3279 dpcm_state_string(fe->dpcm[stream].state));
3280
3281 if ((fe->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
3282 (fe->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
3283 offset += snprintf(buf + offset, size - offset,
3284 "Hardware Params: "
3285 "Format = %s, Channels = %d, Rate = %d\n",
3286 snd_pcm_format_name(params_format(params)),
3287 params_channels(params),
3288 params_rate(params));
3289
3290 /* BEs state */
3291 offset += snprintf(buf + offset, size - offset, "Backends:\n");
3292
3293 if (list_empty(&fe->dpcm[stream].be_clients)) {
3294 offset += snprintf(buf + offset, size - offset,
3295 " No active DSP links\n");
3296 goto out;
3297 }
3298
3299 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
3300 struct snd_soc_pcm_runtime *be = dpcm->be;
3301 params = &dpcm->hw_params;
3302
3303 offset += snprintf(buf + offset, size - offset,
3304 "- %s\n", be->dai_link->name);
3305
3306 offset += snprintf(buf + offset, size - offset,
3307 " State: %s\n",
3308 dpcm_state_string(be->dpcm[stream].state));
3309
3310 if ((be->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
3311 (be->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
3312 offset += snprintf(buf + offset, size - offset,
3313 " Hardware Params: "
3314 "Format = %s, Channels = %d, Rate = %d\n",
3315 snd_pcm_format_name(params_format(params)),
3316 params_channels(params),
3317 params_rate(params));
3318 }
3319
3320out:
3321 return offset;
3322}
3323
3324static ssize_t dpcm_state_read_file(struct file *file, char __user *user_buf,
3325 size_t count, loff_t *ppos)
3326{
3327 struct snd_soc_pcm_runtime *fe = file->private_data;
3328 ssize_t out_count = PAGE_SIZE, offset = 0, ret = 0;
3329 char *buf;
3330
3331 buf = kmalloc(out_count, GFP_KERNEL);
3332 if (!buf)
3333 return -ENOMEM;
3334
3335 if (fe->cpu_dai->driver->playback.channels_min)
3336 offset += dpcm_show_state(fe, SNDRV_PCM_STREAM_PLAYBACK,
3337 buf + offset, out_count - offset);
3338
3339 if (fe->cpu_dai->driver->capture.channels_min)
3340 offset += dpcm_show_state(fe, SNDRV_PCM_STREAM_CAPTURE,
3341 buf + offset, out_count - offset);
3342
Liam Girdwoodf57b8482012-04-27 11:33:46 +01003343 ret = simple_read_from_buffer(user_buf, count, ppos, buf, offset);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003344
Liam Girdwoodf57b8482012-04-27 11:33:46 +01003345 kfree(buf);
3346 return ret;
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003347}
3348
3349static const struct file_operations dpcm_state_fops = {
Liam Girdwoodf57b8482012-04-27 11:33:46 +01003350 .open = simple_open,
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003351 .read = dpcm_state_read_file,
3352 .llseek = default_llseek,
3353};
3354
Lars-Peter Clausen2e55b902015-04-09 10:52:37 +02003355void soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime *rtd)
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003356{
Mark Brownb3bba9a2012-05-08 10:33:47 +01003357 if (!rtd->dai_link)
Lars-Peter Clausen2e55b902015-04-09 10:52:37 +02003358 return;
Mark Brownb3bba9a2012-05-08 10:33:47 +01003359
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02003360 if (!rtd->card->debugfs_card_root)
3361 return;
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003362
3363 rtd->debugfs_dpcm_root = debugfs_create_dir(rtd->dai_link->name,
3364 rtd->card->debugfs_card_root);
3365 if (!rtd->debugfs_dpcm_root) {
3366 dev_dbg(rtd->dev,
3367 "ASoC: Failed to create dpcm debugfs directory %s\n",
3368 rtd->dai_link->name);
Lars-Peter Clausen2e55b902015-04-09 10:52:37 +02003369 return;
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003370 }
3371
Fabio Estevamf1e3f402017-07-29 11:40:55 -03003372 debugfs_create_file("state", 0444, rtd->debugfs_dpcm_root,
3373 rtd, &dpcm_state_fops);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003374}
3375#endif