blob: 2bc3135512c920d59e04c60c346cd92507831605 [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>
Banajit Goswami7ffe84e2017-01-10 17:28:14 -080028#include <linux/dma-mapping.h>
Liam Girdwoodddee6272011-06-09 14:45:53 +010029#include <sound/core.h>
30#include <sound/pcm.h>
31#include <sound/pcm_params.h>
32#include <sound/soc.h>
Liam Girdwood01d75842012-04-25 12:12:49 +010033#include <sound/soc-dpcm.h>
Liam Girdwoodddee6272011-06-09 14:45:53 +010034#include <sound/initval.h>
35
Liam Girdwood01d75842012-04-25 12:12:49 +010036#define DPCM_MAX_BE_USERS 8
37
Ricard Wanderlofcde79032015-08-24 14:16:51 +020038/*
Liam Girdwoodf5b50e72017-01-10 17:10:17 -080039 * ASoC no host IO hardware.
40 * TODO: fine tune these values for all host less transfers.
41 */
42static const struct snd_pcm_hardware no_host_hardware = {
43 .info = SNDRV_PCM_INFO_MMAP |
44 SNDRV_PCM_INFO_MMAP_VALID |
45 SNDRV_PCM_INFO_INTERLEAVED |
46 SNDRV_PCM_INFO_PAUSE |
47 SNDRV_PCM_INFO_RESUME,
48 .formats = SNDRV_PCM_FMTBIT_S16_LE |
49 SNDRV_PCM_FMTBIT_S32_LE,
50 .period_bytes_min = PAGE_SIZE >> 2,
51 .period_bytes_max = PAGE_SIZE >> 1,
52 .periods_min = 2,
53 .periods_max = 4,
Banajit Goswami7ffe84e2017-01-10 17:28:14 -080054 /*
55 * Increase the max buffer bytes as PAGE_SIZE bytes is
56 * not enough to encompass all the scenarios sent by
57 * userspapce.
58 */
59 .buffer_bytes_max = PAGE_SIZE * 4,
Liam Girdwoodf5b50e72017-01-10 17:10:17 -080060};
61
62/*
Ricard Wanderlofcde79032015-08-24 14:16:51 +020063 * snd_soc_dai_stream_valid() - check if a DAI supports the given stream
64 *
65 * Returns true if the DAI supports the indicated stream type.
66 */
67static bool snd_soc_dai_stream_valid(struct snd_soc_dai *dai, int stream)
68{
69 struct snd_soc_pcm_stream *codec_stream;
70
71 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
72 codec_stream = &dai->driver->playback;
73 else
74 codec_stream = &dai->driver->capture;
75
76 /* If the codec specifies any rate at all, it supports the stream. */
77 return codec_stream->rates;
78}
79
Lars-Peter Clausen90996f42013-05-14 11:05:30 +020080/**
Lars-Peter Clausen24894b72014-03-05 13:17:43 +010081 * snd_soc_runtime_activate() - Increment active count for PCM runtime components
82 * @rtd: ASoC PCM runtime that is activated
83 * @stream: Direction of the PCM stream
84 *
85 * Increments the active count for all the DAIs and components attached to a PCM
86 * runtime. Should typically be called when a stream is opened.
87 *
88 * Must be called with the rtd->pcm_mutex being held
89 */
90void snd_soc_runtime_activate(struct snd_soc_pcm_runtime *rtd, int stream)
91{
92 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +020093 int i;
Lars-Peter Clausen24894b72014-03-05 13:17:43 +010094
95 lockdep_assert_held(&rtd->pcm_mutex);
96
97 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
98 cpu_dai->playback_active++;
Benoit Cousson2e5894d2014-07-08 23:19:35 +020099 for (i = 0; i < rtd->num_codecs; i++)
100 rtd->codec_dais[i]->playback_active++;
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100101 } else {
102 cpu_dai->capture_active++;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200103 for (i = 0; i < rtd->num_codecs; i++)
104 rtd->codec_dais[i]->capture_active++;
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100105 }
106
107 cpu_dai->active++;
Lars-Peter Clausencdde4cc2014-03-05 13:17:47 +0100108 cpu_dai->component->active++;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200109 for (i = 0; i < rtd->num_codecs; i++) {
110 rtd->codec_dais[i]->active++;
111 rtd->codec_dais[i]->component->active++;
112 }
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100113}
114
115/**
116 * snd_soc_runtime_deactivate() - Decrement active count for PCM runtime components
117 * @rtd: ASoC PCM runtime that is deactivated
118 * @stream: Direction of the PCM stream
119 *
120 * Decrements the active count for all the DAIs and components attached to a PCM
121 * runtime. Should typically be called when a stream is closed.
122 *
123 * Must be called with the rtd->pcm_mutex being held
124 */
125void snd_soc_runtime_deactivate(struct snd_soc_pcm_runtime *rtd, int stream)
126{
127 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200128 int i;
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100129
130 lockdep_assert_held(&rtd->pcm_mutex);
131
132 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
133 cpu_dai->playback_active--;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200134 for (i = 0; i < rtd->num_codecs; i++)
135 rtd->codec_dais[i]->playback_active--;
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100136 } else {
137 cpu_dai->capture_active--;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200138 for (i = 0; i < rtd->num_codecs; i++)
139 rtd->codec_dais[i]->capture_active--;
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100140 }
141
142 cpu_dai->active--;
Lars-Peter Clausencdde4cc2014-03-05 13:17:47 +0100143 cpu_dai->component->active--;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200144 for (i = 0; i < rtd->num_codecs; i++) {
145 rtd->codec_dais[i]->component->active--;
146 rtd->codec_dais[i]->active--;
147 }
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100148}
149
150/**
Lars-Peter Clausen208a1582014-03-05 13:17:42 +0100151 * snd_soc_runtime_ignore_pmdown_time() - Check whether to ignore the power down delay
152 * @rtd: The ASoC PCM runtime that should be checked.
153 *
154 * This function checks whether the power down delay should be ignored for a
155 * specific PCM runtime. Returns true if the delay is 0, if it the DAI link has
156 * been configured to ignore the delay, or if none of the components benefits
157 * from having the delay.
158 */
159bool snd_soc_runtime_ignore_pmdown_time(struct snd_soc_pcm_runtime *rtd)
160{
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200161 int i;
162 bool ignore = true;
163
Lars-Peter Clausen208a1582014-03-05 13:17:42 +0100164 if (!rtd->pmdown_time || rtd->dai_link->ignore_pmdown_time)
165 return true;
166
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200167 for (i = 0; i < rtd->num_codecs; i++)
168 ignore &= rtd->codec_dais[i]->component->ignore_pmdown_time;
169
170 return rtd->cpu_dai->component->ignore_pmdown_time && ignore;
Lars-Peter Clausen208a1582014-03-05 13:17:42 +0100171}
172
173/**
Lars-Peter Clausen90996f42013-05-14 11:05:30 +0200174 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
175 * @substream: the pcm substream
176 * @hw: the hardware parameters
177 *
178 * Sets the substream runtime hardware parameters.
179 */
180int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
181 const struct snd_pcm_hardware *hw)
182{
183 struct snd_pcm_runtime *runtime = substream->runtime;
Banajit Goswami7ffe84e2017-01-10 17:28:14 -0800184 if (!runtime)
185 return 0;
Lars-Peter Clausen90996f42013-05-14 11:05:30 +0200186 runtime->hw.info = hw->info;
187 runtime->hw.formats = hw->formats;
188 runtime->hw.period_bytes_min = hw->period_bytes_min;
189 runtime->hw.period_bytes_max = hw->period_bytes_max;
190 runtime->hw.periods_min = hw->periods_min;
191 runtime->hw.periods_max = hw->periods_max;
192 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
193 runtime->hw.fifo_size = hw->fifo_size;
194 return 0;
195}
196EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
197
Liam Girdwood01d75842012-04-25 12:12:49 +0100198/* DPCM stream event, send event to FE and all active BEs. */
Liam Girdwood23607022014-01-17 17:03:55 +0000199int dpcm_dapm_stream_event(struct snd_soc_pcm_runtime *fe, int dir,
Liam Girdwood01d75842012-04-25 12:12:49 +0100200 int event)
201{
202 struct snd_soc_dpcm *dpcm;
203
204 list_for_each_entry(dpcm, &fe->dpcm[dir].be_clients, list_be) {
205
206 struct snd_soc_pcm_runtime *be = dpcm->be;
207
Liam Girdwood103d84a2012-11-19 14:39:15 +0000208 dev_dbg(be->dev, "ASoC: BE %s event %d dir %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +0100209 be->dai_link->name, event, dir);
Banajit Goswamia5945772014-08-20 18:23:46 -0700210 if ((event == SND_SOC_DAPM_STREAM_STOP) &&
211 (be->dpcm[dir].users >= 1)) {
212 pr_debug("%s Don't close BE\n", __func__);
213 continue;
214 }
Liam Girdwood01d75842012-04-25 12:12:49 +0100215 snd_soc_dapm_stream_event(be, dir, event);
216 }
217
218 snd_soc_dapm_stream_event(fe, dir, event);
219
220 return 0;
221}
222
Dong Aisheng17841022011-08-29 17:15:14 +0800223static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream,
224 struct snd_soc_dai *soc_dai)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100225{
226 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100227 int ret;
228
Nicolin Chen3635bf02013-11-13 18:56:24 +0800229 if (soc_dai->rate && (soc_dai->driver->symmetric_rates ||
230 rtd->dai_link->symmetric_rates)) {
231 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %dHz rate\n",
232 soc_dai->rate);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100233
Lars-Peter Clausen4dcdd432015-10-18 15:39:28 +0200234 ret = snd_pcm_hw_constraint_single(substream->runtime,
Nicolin Chen3635bf02013-11-13 18:56:24 +0800235 SNDRV_PCM_HW_PARAM_RATE,
Lars-Peter Clausen4dcdd432015-10-18 15:39:28 +0200236 soc_dai->rate);
Nicolin Chen3635bf02013-11-13 18:56:24 +0800237 if (ret < 0) {
238 dev_err(soc_dai->dev,
239 "ASoC: Unable to apply rate constraint: %d\n",
240 ret);
241 return ret;
242 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100243 }
244
Nicolin Chen3635bf02013-11-13 18:56:24 +0800245 if (soc_dai->channels && (soc_dai->driver->symmetric_channels ||
246 rtd->dai_link->symmetric_channels)) {
247 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %d channel(s)\n",
248 soc_dai->channels);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100249
Lars-Peter Clausen4dcdd432015-10-18 15:39:28 +0200250 ret = snd_pcm_hw_constraint_single(substream->runtime,
Nicolin Chen3635bf02013-11-13 18:56:24 +0800251 SNDRV_PCM_HW_PARAM_CHANNELS,
Nicolin Chen3635bf02013-11-13 18:56:24 +0800252 soc_dai->channels);
253 if (ret < 0) {
254 dev_err(soc_dai->dev,
255 "ASoC: Unable to apply channel symmetry constraint: %d\n",
256 ret);
257 return ret;
258 }
259 }
260
261 if (soc_dai->sample_bits && (soc_dai->driver->symmetric_samplebits ||
262 rtd->dai_link->symmetric_samplebits)) {
263 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %d sample bits\n",
264 soc_dai->sample_bits);
265
Lars-Peter Clausen4dcdd432015-10-18 15:39:28 +0200266 ret = snd_pcm_hw_constraint_single(substream->runtime,
Nicolin Chen3635bf02013-11-13 18:56:24 +0800267 SNDRV_PCM_HW_PARAM_SAMPLE_BITS,
Nicolin Chen3635bf02013-11-13 18:56:24 +0800268 soc_dai->sample_bits);
269 if (ret < 0) {
270 dev_err(soc_dai->dev,
271 "ASoC: Unable to apply sample bits symmetry constraint: %d\n",
272 ret);
273 return ret;
274 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100275 }
276
277 return 0;
278}
279
Nicolin Chen3635bf02013-11-13 18:56:24 +0800280static int soc_pcm_params_symmetry(struct snd_pcm_substream *substream,
281 struct snd_pcm_hw_params *params)
282{
283 struct snd_soc_pcm_runtime *rtd = substream->private_data;
284 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200285 unsigned int rate, channels, sample_bits, symmetry, i;
Nicolin Chen3635bf02013-11-13 18:56:24 +0800286
287 rate = params_rate(params);
288 channels = params_channels(params);
289 sample_bits = snd_pcm_format_physical_width(params_format(params));
290
291 /* reject unmatched parameters when applying symmetry */
292 symmetry = cpu_dai->driver->symmetric_rates ||
Nicolin Chen3635bf02013-11-13 18:56:24 +0800293 rtd->dai_link->symmetric_rates;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200294
295 for (i = 0; i < rtd->num_codecs; i++)
296 symmetry |= rtd->codec_dais[i]->driver->symmetric_rates;
297
Nicolin Chen3635bf02013-11-13 18:56:24 +0800298 if (symmetry && cpu_dai->rate && cpu_dai->rate != rate) {
299 dev_err(rtd->dev, "ASoC: unmatched rate symmetry: %d - %d\n",
300 cpu_dai->rate, rate);
301 return -EINVAL;
302 }
303
304 symmetry = cpu_dai->driver->symmetric_channels ||
Nicolin Chen3635bf02013-11-13 18:56:24 +0800305 rtd->dai_link->symmetric_channels;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200306
307 for (i = 0; i < rtd->num_codecs; i++)
308 symmetry |= rtd->codec_dais[i]->driver->symmetric_channels;
309
Nicolin Chen3635bf02013-11-13 18:56:24 +0800310 if (symmetry && cpu_dai->channels && cpu_dai->channels != channels) {
311 dev_err(rtd->dev, "ASoC: unmatched channel symmetry: %d - %d\n",
312 cpu_dai->channels, channels);
313 return -EINVAL;
314 }
315
316 symmetry = cpu_dai->driver->symmetric_samplebits ||
Nicolin Chen3635bf02013-11-13 18:56:24 +0800317 rtd->dai_link->symmetric_samplebits;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200318
319 for (i = 0; i < rtd->num_codecs; i++)
320 symmetry |= rtd->codec_dais[i]->driver->symmetric_samplebits;
321
Nicolin Chen3635bf02013-11-13 18:56:24 +0800322 if (symmetry && cpu_dai->sample_bits && cpu_dai->sample_bits != sample_bits) {
323 dev_err(rtd->dev, "ASoC: unmatched sample bits symmetry: %d - %d\n",
324 cpu_dai->sample_bits, sample_bits);
325 return -EINVAL;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100326 }
327
328 return 0;
329}
330
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100331static bool soc_pcm_has_symmetry(struct snd_pcm_substream *substream)
332{
333 struct snd_soc_pcm_runtime *rtd = substream->private_data;
334 struct snd_soc_dai_driver *cpu_driver = rtd->cpu_dai->driver;
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100335 struct snd_soc_dai_link *link = rtd->dai_link;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200336 unsigned int symmetry, i;
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100337
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200338 symmetry = cpu_driver->symmetric_rates || link->symmetric_rates ||
339 cpu_driver->symmetric_channels || link->symmetric_channels ||
340 cpu_driver->symmetric_samplebits || link->symmetric_samplebits;
341
342 for (i = 0; i < rtd->num_codecs; i++)
343 symmetry = symmetry ||
344 rtd->codec_dais[i]->driver->symmetric_rates ||
345 rtd->codec_dais[i]->driver->symmetric_channels ||
346 rtd->codec_dais[i]->driver->symmetric_samplebits;
347
348 return symmetry;
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100349}
350
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200351static void soc_pcm_set_msb(struct snd_pcm_substream *substream, int bits)
Mark Brown58ba9b22012-01-16 18:38:51 +0000352{
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200353 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Takashi Iwaic6068d32014-12-31 17:10:34 +0100354 int ret;
Mark Brown58ba9b22012-01-16 18:38:51 +0000355
356 if (!bits)
357 return;
358
Lars-Peter Clausen0e2a3752014-12-29 18:43:38 +0100359 ret = snd_pcm_hw_constraint_msbits(substream->runtime, 0, 0, bits);
360 if (ret != 0)
361 dev_warn(rtd->dev, "ASoC: Failed to set MSB %d: %d\n",
362 bits, ret);
Mark Brown58ba9b22012-01-16 18:38:51 +0000363}
364
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200365static void soc_pcm_apply_msb(struct snd_pcm_substream *substream)
Lars-Peter Clausenbd477c32013-05-14 11:05:31 +0200366{
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200367 struct snd_soc_pcm_runtime *rtd = substream->private_data;
368 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200369 struct snd_soc_dai *codec_dai;
370 int i;
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200371 unsigned int bits = 0, cpu_bits;
372
373 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200374 for (i = 0; i < rtd->num_codecs; i++) {
375 codec_dai = rtd->codec_dais[i];
376 if (codec_dai->driver->playback.sig_bits == 0) {
377 bits = 0;
378 break;
379 }
380 bits = max(codec_dai->driver->playback.sig_bits, bits);
381 }
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200382 cpu_bits = cpu_dai->driver->playback.sig_bits;
383 } else {
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200384 for (i = 0; i < rtd->num_codecs; i++) {
385 codec_dai = rtd->codec_dais[i];
Daniel Mack5e63dfc2014-10-07 14:33:46 +0200386 if (codec_dai->driver->capture.sig_bits == 0) {
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200387 bits = 0;
388 break;
389 }
390 bits = max(codec_dai->driver->capture.sig_bits, bits);
391 }
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200392 cpu_bits = cpu_dai->driver->capture.sig_bits;
393 }
394
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200395 soc_pcm_set_msb(substream, bits);
396 soc_pcm_set_msb(substream, cpu_bits);
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200397}
398
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200399static void soc_pcm_init_runtime_hw(struct snd_pcm_substream *substream)
Lars-Peter Clausenbd477c32013-05-14 11:05:31 +0200400{
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200401 struct snd_pcm_runtime *runtime = substream->runtime;
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100402 struct snd_pcm_hardware *hw = &runtime->hw;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200403 struct snd_soc_pcm_runtime *rtd = substream->private_data;
404 struct snd_soc_dai_driver *cpu_dai_drv = rtd->cpu_dai->driver;
405 struct snd_soc_dai_driver *codec_dai_drv;
406 struct snd_soc_pcm_stream *codec_stream;
407 struct snd_soc_pcm_stream *cpu_stream;
408 unsigned int chan_min = 0, chan_max = UINT_MAX;
409 unsigned int rate_min = 0, rate_max = UINT_MAX;
410 unsigned int rates = UINT_MAX;
411 u64 formats = ULLONG_MAX;
412 int i;
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100413
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200414 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
415 cpu_stream = &cpu_dai_drv->playback;
Lars-Peter Clausen16d7ea92014-01-06 14:19:16 +0100416 else
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200417 cpu_stream = &cpu_dai_drv->capture;
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100418
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200419 /* first calculate min/max only for CODECs in the DAI link */
420 for (i = 0; i < rtd->num_codecs; i++) {
Ricard Wanderlofcde79032015-08-24 14:16:51 +0200421
422 /*
423 * Skip CODECs which don't support the current stream type.
424 * Otherwise, since the rate, channel, and format values will
425 * zero in that case, we would have no usable settings left,
426 * causing the resulting setup to fail.
427 * At least one CODEC should match, otherwise we should have
428 * bailed out on a higher level, since there would be no
429 * CODEC to support the transfer direction in that case.
430 */
431 if (!snd_soc_dai_stream_valid(rtd->codec_dais[i],
432 substream->stream))
433 continue;
434
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200435 codec_dai_drv = rtd->codec_dais[i]->driver;
436 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
437 codec_stream = &codec_dai_drv->playback;
438 else
439 codec_stream = &codec_dai_drv->capture;
440 chan_min = max(chan_min, codec_stream->channels_min);
441 chan_max = min(chan_max, codec_stream->channels_max);
442 rate_min = max(rate_min, codec_stream->rate_min);
443 rate_max = min_not_zero(rate_max, codec_stream->rate_max);
444 formats &= codec_stream->formats;
445 rates = snd_pcm_rate_mask_intersect(codec_stream->rates, rates);
446 }
447
448 /*
449 * chan min/max cannot be enforced if there are multiple CODEC DAIs
450 * connected to a single CPU DAI, use CPU DAI's directly and let
451 * channel allocation be fixed up later
452 */
453 if (rtd->num_codecs > 1) {
454 chan_min = cpu_stream->channels_min;
455 chan_max = cpu_stream->channels_max;
456 }
457
458 hw->channels_min = max(chan_min, cpu_stream->channels_min);
459 hw->channels_max = min(chan_max, cpu_stream->channels_max);
460 if (hw->formats)
461 hw->formats &= formats & cpu_stream->formats;
462 else
463 hw->formats = formats & cpu_stream->formats;
464 hw->rates = snd_pcm_rate_mask_intersect(rates, cpu_stream->rates);
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100465
466 snd_pcm_limit_hw_rates(runtime);
467
468 hw->rate_min = max(hw->rate_min, cpu_stream->rate_min);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200469 hw->rate_min = max(hw->rate_min, rate_min);
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100470 hw->rate_max = min_not_zero(hw->rate_max, cpu_stream->rate_max);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200471 hw->rate_max = min_not_zero(hw->rate_max, rate_max);
Lars-Peter Clausenbd477c32013-05-14 11:05:31 +0200472}
473
Mark Brown58ba9b22012-01-16 18:38:51 +0000474/*
Liam Girdwoodddee6272011-06-09 14:45:53 +0100475 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
476 * then initialized and any private data can be allocated. This also calls
477 * startup for the cpu DAI, platform, machine and codec DAI.
478 */
479static int soc_pcm_open(struct snd_pcm_substream *substream)
480{
481 struct snd_soc_pcm_runtime *rtd = substream->private_data;
482 struct snd_pcm_runtime *runtime = substream->runtime;
483 struct snd_soc_platform *platform = rtd->platform;
484 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200485 struct snd_soc_dai *codec_dai;
486 const char *codec_dai_name = "multicodec";
487 int i, ret = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100488
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800489 pinctrl_pm_select_default_state(cpu_dai->dev);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200490 for (i = 0; i < rtd->num_codecs; i++)
491 pinctrl_pm_select_default_state(rtd->codec_dais[i]->dev);
Mark Brownd6652ef2011-12-03 20:14:31 +0000492 pm_runtime_get_sync(cpu_dai->dev);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200493 for (i = 0; i < rtd->num_codecs; i++)
494 pm_runtime_get_sync(rtd->codec_dais[i]->dev);
Mark Brownd6652ef2011-12-03 20:14:31 +0000495 pm_runtime_get_sync(platform->dev);
496
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100497 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100498
Liam Girdwoodf5b50e72017-01-10 17:10:17 -0800499 if (rtd->dai_link->no_host_mode == SND_SOC_DAI_LINK_NO_HOST)
500 snd_soc_set_runtime_hwparams(substream, &no_host_hardware);
501
Liam Girdwoodddee6272011-06-09 14:45:53 +0100502 /* startup the audio subsystem */
Mark Brownc5914b02013-10-30 17:47:39 -0700503 if (cpu_dai->driver->ops && cpu_dai->driver->ops->startup) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100504 ret = cpu_dai->driver->ops->startup(substream, cpu_dai);
505 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000506 dev_err(cpu_dai->dev, "ASoC: can't open interface"
507 " %s: %d\n", cpu_dai->name, ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100508 goto out;
509 }
510 }
511
512 if (platform->driver->ops && platform->driver->ops->open) {
513 ret = platform->driver->ops->open(substream);
514 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000515 dev_err(platform->dev, "ASoC: can't open platform"
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200516 " %s: %d\n", platform->component.name, ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100517 goto platform_err;
518 }
519 }
520
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200521 for (i = 0; i < rtd->num_codecs; i++) {
522 codec_dai = rtd->codec_dais[i];
523 if (codec_dai->driver->ops && codec_dai->driver->ops->startup) {
524 ret = codec_dai->driver->ops->startup(substream,
525 codec_dai);
526 if (ret < 0) {
527 dev_err(codec_dai->dev,
528 "ASoC: can't open codec %s: %d\n",
529 codec_dai->name, ret);
530 goto codec_dai_err;
531 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100532 }
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200533
534 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
535 codec_dai->tx_mask = 0;
536 else
537 codec_dai->rx_mask = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100538 }
539
540 if (rtd->dai_link->ops && rtd->dai_link->ops->startup) {
541 ret = rtd->dai_link->ops->startup(substream);
542 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000543 pr_err("ASoC: %s startup failed: %d\n",
Mark Brown25bfe662012-02-01 21:30:32 +0000544 rtd->dai_link->name, ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100545 goto machine_err;
546 }
547 }
548
Liam Girdwood01d75842012-04-25 12:12:49 +0100549 /* Dynamic PCM DAI links compat checks use dynamic capabilities */
550 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm)
551 goto dynamic;
552
Liam Girdwoodddee6272011-06-09 14:45:53 +0100553 /* Check that the codec and cpu DAIs are compatible */
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200554 soc_pcm_init_runtime_hw(substream);
555
556 if (rtd->num_codecs == 1)
557 codec_dai_name = rtd->codec_dai->name;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100558
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100559 if (soc_pcm_has_symmetry(substream))
560 runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
561
Liam Girdwoodddee6272011-06-09 14:45:53 +0100562 ret = -EINVAL;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100563 if (!runtime->hw.rates) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000564 printk(KERN_ERR "ASoC: %s <-> %s No matching rates\n",
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200565 codec_dai_name, cpu_dai->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100566 goto config_err;
567 }
568 if (!runtime->hw.formats) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000569 printk(KERN_ERR "ASoC: %s <-> %s No matching formats\n",
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200570 codec_dai_name, cpu_dai->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100571 goto config_err;
572 }
573 if (!runtime->hw.channels_min || !runtime->hw.channels_max ||
574 runtime->hw.channels_min > runtime->hw.channels_max) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000575 printk(KERN_ERR "ASoC: %s <-> %s No matching channels\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
Benoit Coussonc8dd1fe2014-07-01 09:47:55 +0200580 soc_pcm_apply_msb(substream);
Mark Brown58ba9b22012-01-16 18:38:51 +0000581
Liam Girdwoodddee6272011-06-09 14:45:53 +0100582 /* Symmetry only applies if we've already got an active stream. */
Dong Aisheng17841022011-08-29 17:15:14 +0800583 if (cpu_dai->active) {
584 ret = soc_pcm_apply_symmetry(substream, cpu_dai);
585 if (ret != 0)
586 goto config_err;
587 }
588
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200589 for (i = 0; i < rtd->num_codecs; i++) {
590 if (rtd->codec_dais[i]->active) {
591 ret = soc_pcm_apply_symmetry(substream,
592 rtd->codec_dais[i]);
593 if (ret != 0)
594 goto config_err;
595 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100596 }
597
Liam Girdwood103d84a2012-11-19 14:39:15 +0000598 pr_debug("ASoC: %s <-> %s info:\n",
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200599 codec_dai_name, cpu_dai->name);
Liam Girdwood103d84a2012-11-19 14:39:15 +0000600 pr_debug("ASoC: rate mask 0x%x\n", runtime->hw.rates);
601 pr_debug("ASoC: min ch %d max ch %d\n", runtime->hw.channels_min,
Liam Girdwoodddee6272011-06-09 14:45:53 +0100602 runtime->hw.channels_max);
Liam Girdwood103d84a2012-11-19 14:39:15 +0000603 pr_debug("ASoC: min rate %d max rate %d\n", runtime->hw.rate_min,
Liam Girdwoodddee6272011-06-09 14:45:53 +0100604 runtime->hw.rate_max);
605
Liam Girdwood01d75842012-04-25 12:12:49 +0100606dynamic:
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100607
608 snd_soc_runtime_activate(rtd, substream->stream);
609
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100610 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100611 return 0;
612
613config_err:
614 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
615 rtd->dai_link->ops->shutdown(substream);
616
617machine_err:
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200618 i = rtd->num_codecs;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100619
620codec_dai_err:
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200621 while (--i >= 0) {
622 codec_dai = rtd->codec_dais[i];
623 if (codec_dai->driver->ops->shutdown)
624 codec_dai->driver->ops->shutdown(substream, codec_dai);
625 }
626
Liam Girdwoodddee6272011-06-09 14:45:53 +0100627 if (platform->driver->ops && platform->driver->ops->close)
628 platform->driver->ops->close(substream);
629
630platform_err:
631 if (cpu_dai->driver->ops->shutdown)
632 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
633out:
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100634 mutex_unlock(&rtd->pcm_mutex);
Mark Brownd6652ef2011-12-03 20:14:31 +0000635
Sanyog Kale3f809782016-01-05 17:14:49 +0530636 pm_runtime_mark_last_busy(platform->dev);
637 pm_runtime_put_autosuspend(platform->dev);
638 for (i = 0; i < rtd->num_codecs; i++) {
639 pm_runtime_mark_last_busy(rtd->codec_dais[i]->dev);
640 pm_runtime_put_autosuspend(rtd->codec_dais[i]->dev);
641 }
642
643 pm_runtime_mark_last_busy(cpu_dai->dev);
644 pm_runtime_put_autosuspend(cpu_dai->dev);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200645 for (i = 0; i < rtd->num_codecs; i++) {
646 if (!rtd->codec_dais[i]->active)
647 pinctrl_pm_select_sleep_state(rtd->codec_dais[i]->dev);
648 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800649 if (!cpu_dai->active)
650 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Mark Brownd6652ef2011-12-03 20:14:31 +0000651
Liam Girdwoodddee6272011-06-09 14:45:53 +0100652 return ret;
653}
654
655/*
656 * Power down the audio subsystem pmdown_time msecs after close is called.
657 * This is to ensure there are no pops or clicks in between any music tracks
658 * due to DAPM power cycling.
659 */
660static void close_delayed_work(struct work_struct *work)
661{
662 struct snd_soc_pcm_runtime *rtd =
663 container_of(work, struct snd_soc_pcm_runtime, delayed_work.work);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200664 struct snd_soc_dai *codec_dai = rtd->codec_dais[0];
Liam Girdwoodddee6272011-06-09 14:45:53 +0100665
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100666 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100667
Liam Girdwood103d84a2012-11-19 14:39:15 +0000668 dev_dbg(rtd->dev, "ASoC: pop wq checking: %s status: %s waiting: %s\n",
Liam Girdwoodddee6272011-06-09 14:45:53 +0100669 codec_dai->driver->playback.stream_name,
670 codec_dai->playback_active ? "active" : "inactive",
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600671 rtd->pop_wait ? "yes" : "no");
Liam Girdwoodddee6272011-06-09 14:45:53 +0100672
673 /* are we waiting on this codec DAI stream */
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600674 if (rtd->pop_wait == 1) {
675 rtd->pop_wait = 0;
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800676 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_PLAYBACK,
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000677 SND_SOC_DAPM_STREAM_STOP);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100678 }
679
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100680 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100681}
682
683/*
684 * Called by ALSA when a PCM substream is closed. Private data can be
685 * freed here. The cpu DAI, codec DAI, machine and platform are also
686 * shutdown.
687 */
Liam Girdwood91d5e6b2011-06-09 17:04:59 +0100688static int soc_pcm_close(struct snd_pcm_substream *substream)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100689{
690 struct snd_soc_pcm_runtime *rtd = substream->private_data;
691 struct snd_soc_platform *platform = rtd->platform;
692 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200693 struct snd_soc_dai *codec_dai;
694 int i;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100695
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100696 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100697
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100698 snd_soc_runtime_deactivate(rtd, substream->stream);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100699
Dong Aisheng17841022011-08-29 17:15:14 +0800700 /* clear the corresponding DAIs rate when inactive */
701 if (!cpu_dai->active)
702 cpu_dai->rate = 0;
703
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200704 for (i = 0; i < rtd->num_codecs; i++) {
705 codec_dai = rtd->codec_dais[i];
706 if (!codec_dai->active)
707 codec_dai->rate = 0;
708 }
Sascha Hauer25b76792011-08-17 09:20:01 +0200709
Ramesh Babuae116012014-10-15 12:34:59 +0530710 snd_soc_dai_digital_mute(cpu_dai, 1, substream->stream);
711
Liam Girdwoodddee6272011-06-09 14:45:53 +0100712 if (cpu_dai->driver->ops->shutdown)
713 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
714
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200715 for (i = 0; i < rtd->num_codecs; i++) {
716 codec_dai = rtd->codec_dais[i];
717 if (codec_dai->driver->ops->shutdown)
718 codec_dai->driver->ops->shutdown(substream, codec_dai);
719 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100720
721 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
722 rtd->dai_link->ops->shutdown(substream);
723
724 if (platform->driver->ops && platform->driver->ops->close)
725 platform->driver->ops->close(substream);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100726
727 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Lars-Peter Clausen208a1582014-03-05 13:17:42 +0100728 if (snd_soc_runtime_ignore_pmdown_time(rtd)) {
Peter Ujfalusi1d69c5c2011-10-14 14:43:33 +0300729 /* powered down playback stream now */
730 snd_soc_dapm_stream_event(rtd,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800731 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800732 SND_SOC_DAPM_STREAM_STOP);
Peter Ujfalusi1d69c5c2011-10-14 14:43:33 +0300733 } else {
734 /* start delayed pop wq here for playback streams */
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600735 rtd->pop_wait = 1;
Mark Brownd4e1a732013-07-18 11:52:17 +0100736 queue_delayed_work(system_power_efficient_wq,
737 &rtd->delayed_work,
738 msecs_to_jiffies(rtd->pmdown_time));
Peter Ujfalusi1d69c5c2011-10-14 14:43:33 +0300739 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100740 } else {
741 /* capture streams can be powered down now */
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800742 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_CAPTURE,
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000743 SND_SOC_DAPM_STREAM_STOP);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100744 }
745
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100746 mutex_unlock(&rtd->pcm_mutex);
Mark Brownd6652ef2011-12-03 20:14:31 +0000747
Sanyog Kale3f809782016-01-05 17:14:49 +0530748 pm_runtime_mark_last_busy(platform->dev);
749 pm_runtime_put_autosuspend(platform->dev);
750
751 for (i = 0; i < rtd->num_codecs; i++) {
752 pm_runtime_mark_last_busy(rtd->codec_dais[i]->dev);
753 pm_runtime_put_autosuspend(rtd->codec_dais[i]->dev);
754 }
755
756 pm_runtime_mark_last_busy(cpu_dai->dev);
757 pm_runtime_put_autosuspend(cpu_dai->dev);
758
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200759 for (i = 0; i < rtd->num_codecs; i++) {
760 if (!rtd->codec_dais[i]->active)
761 pinctrl_pm_select_sleep_state(rtd->codec_dais[i]->dev);
762 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800763 if (!cpu_dai->active)
764 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Mark Brownd6652ef2011-12-03 20:14:31 +0000765
Liam Girdwoodddee6272011-06-09 14:45:53 +0100766 return 0;
767}
768
769/*
770 * Called by ALSA when the PCM substream is prepared, can set format, sample
771 * rate, etc. This function is non atomic and can be called multiple times,
772 * it can refer to the runtime info.
773 */
774static int soc_pcm_prepare(struct snd_pcm_substream *substream)
775{
776 struct snd_soc_pcm_runtime *rtd = substream->private_data;
777 struct snd_soc_platform *platform = rtd->platform;
778 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200779 struct snd_soc_dai *codec_dai;
780 int i, ret = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100781
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100782 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100783
Sudheer Papothi70ef6c22016-01-29 06:21:36 +0530784 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
785 snd_soc_dapm_stream_event(rtd,
786 SNDRV_PCM_STREAM_PLAYBACK,
787 SND_SOC_DAPM_STREAM_START);
788
Liam Girdwoodddee6272011-06-09 14:45:53 +0100789 if (rtd->dai_link->ops && rtd->dai_link->ops->prepare) {
790 ret = rtd->dai_link->ops->prepare(substream);
791 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000792 dev_err(rtd->card->dev, "ASoC: machine prepare error:"
793 " %d\n", ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100794 goto out;
795 }
796 }
797
798 if (platform->driver->ops && platform->driver->ops->prepare) {
799 ret = platform->driver->ops->prepare(substream);
800 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000801 dev_err(platform->dev, "ASoC: platform prepare error:"
802 " %d\n", ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100803 goto out;
804 }
805 }
806
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200807 for (i = 0; i < rtd->num_codecs; i++) {
808 codec_dai = rtd->codec_dais[i];
809 if (codec_dai->driver->ops && codec_dai->driver->ops->prepare) {
810 ret = codec_dai->driver->ops->prepare(substream,
811 codec_dai);
812 if (ret < 0) {
813 dev_err(codec_dai->dev,
Jarkko Nikula90cc7f12014-12-23 11:04:41 +0200814 "ASoC: codec DAI prepare error: %d\n",
815 ret);
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200816 goto out;
817 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100818 }
819 }
820
Mark Brownc5914b02013-10-30 17:47:39 -0700821 if (cpu_dai->driver->ops && cpu_dai->driver->ops->prepare) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100822 ret = cpu_dai->driver->ops->prepare(substream, cpu_dai);
823 if (ret < 0) {
Jarkko Nikula90cc7f12014-12-23 11:04:41 +0200824 dev_err(cpu_dai->dev,
825 "ASoC: cpu DAI prepare error: %d\n", ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100826 goto out;
827 }
828 }
829
830 /* cancel any delayed stream shutdown that is pending */
831 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600832 rtd->pop_wait) {
833 rtd->pop_wait = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100834 cancel_delayed_work(&rtd->delayed_work);
835 }
836
Sudheer Papothi70ef6c22016-01-29 06:21:36 +0530837 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
838 for (i = 0; i < rtd->num_codecs; i++) {
839 codec_dai = rtd->codec_dais[i];
840 if (codec_dai->capture_active == 1)
841 snd_soc_dapm_stream_event(rtd,
842 SNDRV_PCM_STREAM_CAPTURE,
843 SND_SOC_DAPM_STREAM_START);
844 }
845 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100846
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200847 for (i = 0; i < rtd->num_codecs; i++)
848 snd_soc_dai_digital_mute(rtd->codec_dais[i], 0,
849 substream->stream);
Ramesh Babuae116012014-10-15 12:34:59 +0530850 snd_soc_dai_digital_mute(cpu_dai, 0, substream->stream);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100851
852out:
Sudheer Papothi70ef6c22016-01-29 06:21:36 +0530853 if (ret < 0 && substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
854 pr_err("%s: Issue stop stream for codec_dai due to op failure %d = ret\n",
855 __func__, ret);
856 snd_soc_dapm_stream_event(rtd,
857 SNDRV_PCM_STREAM_PLAYBACK,
858 SND_SOC_DAPM_STREAM_STOP);
859 }
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100860 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100861 return ret;
862}
863
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200864static void soc_pcm_codec_params_fixup(struct snd_pcm_hw_params *params,
865 unsigned int mask)
866{
867 struct snd_interval *interval;
868 int channels = hweight_long(mask);
869
870 interval = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
871 interval->min = channels;
872 interval->max = channels;
873}
874
Benoit Cousson93e69582014-07-08 23:19:38 +0200875int soc_dai_hw_params(struct snd_pcm_substream *substream,
876 struct snd_pcm_hw_params *params,
877 struct snd_soc_dai *dai)
878{
879 int ret;
880
881 if (dai->driver->ops && dai->driver->ops->hw_params) {
882 ret = dai->driver->ops->hw_params(substream, params, dai);
883 if (ret < 0) {
884 dev_err(dai->dev, "ASoC: can't set %s hw params: %d\n",
885 dai->name, ret);
886 return ret;
887 }
888 }
889
890 return 0;
891}
892
Liam Girdwoodddee6272011-06-09 14:45:53 +0100893/*
894 * Called by ALSA when the hardware params are set by application. This
895 * function can also be called multiple times and can allocate buffers
896 * (using snd_pcm_lib_* ). It's non-atomic.
897 */
898static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
899 struct snd_pcm_hw_params *params)
900{
901 struct snd_soc_pcm_runtime *rtd = substream->private_data;
902 struct snd_soc_platform *platform = rtd->platform;
903 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200904 int i, ret = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100905
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100906 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100907
Banajit Goswami7ffe84e2017-01-10 17:28:14 -0800908 /* perform any hw_params fixups */
909 if ((rtd->dai_link->no_host_mode == SND_SOC_DAI_LINK_NO_HOST) &&
910 rtd->dai_link->be_hw_params_fixup) {
911 ret = rtd->dai_link->be_hw_params_fixup(rtd,
912 params);
913 if (ret < 0)
914 dev_err(rtd->card->dev, "ASoC: fixup failed for %s\n",
915 rtd->dai_link->name);
916 }
917
Nicolin Chen3635bf02013-11-13 18:56:24 +0800918 ret = soc_pcm_params_symmetry(substream, params);
919 if (ret)
920 goto out;
921
Banajit Goswami7ffe84e2017-01-10 17:28:14 -0800922 /* perform any hw_params fixups */
923 if ((rtd->dai_link->no_host_mode == SND_SOC_DAI_LINK_NO_HOST) &&
924 rtd->dai_link->be_hw_params_fixup) {
925 ret = rtd->dai_link->be_hw_params_fixup(rtd,
926 params);
927 if (ret < 0) {
928 dev_err(rtd->card->dev, "ASoC: fixup failed for %s\n",
929 rtd->dai_link->name);
930 }
931 }
932
Liam Girdwoodddee6272011-06-09 14:45:53 +0100933 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_params) {
934 ret = rtd->dai_link->ops->hw_params(substream, params);
935 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000936 dev_err(rtd->card->dev, "ASoC: machine hw_params"
937 " failed: %d\n", ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100938 goto out;
939 }
940 }
941
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200942 for (i = 0; i < rtd->num_codecs; i++) {
943 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
944 struct snd_pcm_hw_params codec_params;
945
Ricard Wanderlofcde79032015-08-24 14:16:51 +0200946 /*
947 * Skip CODECs which don't support the current stream type,
948 * the idea being that if a CODEC is not used for the currently
949 * set up transfer direction, it should not need to be
950 * configured, especially since the configuration used might
951 * not even be supported by that CODEC. There may be cases
952 * however where a CODEC needs to be set up although it is
953 * actually not being used for the transfer, e.g. if a
954 * capture-only CODEC is acting as an LRCLK and/or BCLK master
955 * for the DAI link including a playback-only CODEC.
956 * If this becomes necessary, we will have to augment the
957 * machine driver setup with information on how to act, so
958 * we can do the right thing here.
959 */
960 if (!snd_soc_dai_stream_valid(codec_dai, substream->stream))
961 continue;
962
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200963 /* copy params for each codec */
964 codec_params = *params;
965
966 /* fixup params based on TDM slot masks */
967 if (codec_dai->tx_mask)
968 soc_pcm_codec_params_fixup(&codec_params,
969 codec_dai->tx_mask);
970 if (codec_dai->rx_mask)
971 soc_pcm_codec_params_fixup(&codec_params,
972 codec_dai->rx_mask);
973
Benoit Cousson93e69582014-07-08 23:19:38 +0200974 ret = soc_dai_hw_params(substream, &codec_params, codec_dai);
975 if(ret < 0)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100976 goto codec_err;
Benoit Cousson2e5894d2014-07-08 23:19:35 +0200977
978 codec_dai->rate = params_rate(&codec_params);
979 codec_dai->channels = params_channels(&codec_params);
980 codec_dai->sample_bits = snd_pcm_format_physical_width(
981 params_format(&codec_params));
Liam Girdwoodddee6272011-06-09 14:45:53 +0100982 }
983
Benoit Cousson93e69582014-07-08 23:19:38 +0200984 ret = soc_dai_hw_params(substream, params, cpu_dai);
985 if (ret < 0)
986 goto interface_err;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100987
988 if (platform->driver->ops && platform->driver->ops->hw_params) {
989 ret = platform->driver->ops->hw_params(substream, params);
990 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000991 dev_err(platform->dev, "ASoC: %s hw params failed: %d\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200992 platform->component.name, ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100993 goto platform_err;
994 }
995 }
996
Nicolin Chen3635bf02013-11-13 18:56:24 +0800997 /* store the parameters for each DAIs */
Dong Aisheng17841022011-08-29 17:15:14 +0800998 cpu_dai->rate = params_rate(params);
Nicolin Chen3635bf02013-11-13 18:56:24 +0800999 cpu_dai->channels = params_channels(params);
1000 cpu_dai->sample_bits =
1001 snd_pcm_format_physical_width(params_format(params));
1002
Liam Girdwoodf5b50e72017-01-10 17:10:17 -08001003 /* malloc a page for hostless IO.
1004 * FIXME: rework with alsa-lib changes so that this malloc is
1005 * not required.
1006 */
1007 if (rtd->dai_link->no_host_mode == SND_SOC_DAI_LINK_NO_HOST) {
1008 substream->dma_buffer.dev.type = SNDRV_DMA_TYPE_DEV;
1009 substream->dma_buffer.dev.dev = rtd->dev;
Banajit Goswami7ffe84e2017-01-10 17:28:14 -08001010 substream->dma_buffer.dev.dev->coherent_dma_mask =
1011 DMA_BIT_MASK(sizeof(dma_addr_t) * 8);
Liam Girdwoodf5b50e72017-01-10 17:10:17 -08001012 substream->dma_buffer.private_data = NULL;
1013
Banajit Goswami7ffe84e2017-01-10 17:28:14 -08001014 arch_setup_dma_ops(substream->dma_buffer.dev.dev,
1015 0, 0, NULL, 0);
Liam Girdwoodf5b50e72017-01-10 17:10:17 -08001016 ret = snd_pcm_lib_malloc_pages(substream, PAGE_SIZE);
1017 if (ret < 0)
1018 goto platform_err;
1019 }
Liam Girdwoodddee6272011-06-09 14:45:53 +01001020out:
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001021 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +01001022 return ret;
1023
1024platform_err:
Mark Brownc5914b02013-10-30 17:47:39 -07001025 if (cpu_dai->driver->ops && cpu_dai->driver->ops->hw_free)
Liam Girdwoodddee6272011-06-09 14:45:53 +01001026 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
1027
1028interface_err:
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001029 i = rtd->num_codecs;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001030
1031codec_err:
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001032 while (--i >= 0) {
1033 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
1034 if (codec_dai->driver->ops && codec_dai->driver->ops->hw_free)
1035 codec_dai->driver->ops->hw_free(substream, codec_dai);
1036 codec_dai->rate = 0;
1037 }
1038
Liam Girdwoodddee6272011-06-09 14:45:53 +01001039 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
1040 rtd->dai_link->ops->hw_free(substream);
1041
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001042 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +01001043 return ret;
1044}
1045
1046/*
1047 * Frees resources allocated by hw_params, can be called multiple times
1048 */
1049static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
1050{
1051 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1052 struct snd_soc_platform *platform = rtd->platform;
1053 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001054 struct snd_soc_dai *codec_dai;
Nicolin Chen7f62b6e2013-12-04 11:18:36 +08001055 bool playback = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001056 int i;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001057
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001058 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +01001059
Nicolin Chend3383422013-11-20 18:37:09 +08001060 /* clear the corresponding DAIs parameters when going to be inactive */
1061 if (cpu_dai->active == 1) {
1062 cpu_dai->rate = 0;
1063 cpu_dai->channels = 0;
1064 cpu_dai->sample_bits = 0;
1065 }
1066
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001067 for (i = 0; i < rtd->num_codecs; i++) {
1068 codec_dai = rtd->codec_dais[i];
1069 if (codec_dai->active == 1) {
1070 codec_dai->rate = 0;
1071 codec_dai->channels = 0;
1072 codec_dai->sample_bits = 0;
1073 }
Nicolin Chend3383422013-11-20 18:37:09 +08001074 }
1075
Liam Girdwoodddee6272011-06-09 14:45:53 +01001076 /* apply codec digital mute */
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001077 for (i = 0; i < rtd->num_codecs; i++) {
1078 if ((playback && rtd->codec_dais[i]->playback_active == 1) ||
1079 (!playback && rtd->codec_dais[i]->capture_active == 1))
1080 snd_soc_dai_digital_mute(rtd->codec_dais[i], 1,
1081 substream->stream);
1082 }
Liam Girdwoodddee6272011-06-09 14:45:53 +01001083
1084 /* free any machine hw params */
1085 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
1086 rtd->dai_link->ops->hw_free(substream);
1087
1088 /* free any DMA resources */
1089 if (platform->driver->ops && platform->driver->ops->hw_free)
1090 platform->driver->ops->hw_free(substream);
1091
1092 /* now free hw params for the DAIs */
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001093 for (i = 0; i < rtd->num_codecs; i++) {
1094 codec_dai = rtd->codec_dais[i];
1095 if (codec_dai->driver->ops && codec_dai->driver->ops->hw_free)
1096 codec_dai->driver->ops->hw_free(substream, codec_dai);
1097 }
Liam Girdwoodddee6272011-06-09 14:45:53 +01001098
Mark Brownc5914b02013-10-30 17:47:39 -07001099 if (cpu_dai->driver->ops && cpu_dai->driver->ops->hw_free)
Liam Girdwoodddee6272011-06-09 14:45:53 +01001100 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
1101
Liam Girdwoodf5b50e72017-01-10 17:10:17 -08001102 if (rtd->dai_link->no_host_mode == SND_SOC_DAI_LINK_NO_HOST)
1103 snd_pcm_lib_free_pages(substream);
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001104 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +01001105 return 0;
1106}
1107
1108static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
1109{
1110 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1111 struct snd_soc_platform *platform = rtd->platform;
1112 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001113 struct snd_soc_dai *codec_dai;
1114 int i, ret;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001115
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001116 for (i = 0; i < rtd->num_codecs; i++) {
1117 codec_dai = rtd->codec_dais[i];
1118 if (codec_dai->driver->ops && codec_dai->driver->ops->trigger) {
1119 ret = codec_dai->driver->ops->trigger(substream,
1120 cmd, codec_dai);
1121 if (ret < 0)
1122 return ret;
1123 }
Liam Girdwoodddee6272011-06-09 14:45:53 +01001124 }
1125
1126 if (platform->driver->ops && platform->driver->ops->trigger) {
1127 ret = platform->driver->ops->trigger(substream, cmd);
1128 if (ret < 0)
1129 return ret;
1130 }
1131
Mark Brownc5914b02013-10-30 17:47:39 -07001132 if (cpu_dai->driver->ops && cpu_dai->driver->ops->trigger) {
Liam Girdwoodddee6272011-06-09 14:45:53 +01001133 ret = cpu_dai->driver->ops->trigger(substream, cmd, cpu_dai);
1134 if (ret < 0)
1135 return ret;
1136 }
Jarkko Nikula4792b0d2014-04-28 14:17:52 +02001137
1138 if (rtd->dai_link->ops && rtd->dai_link->ops->trigger) {
1139 ret = rtd->dai_link->ops->trigger(substream, cmd);
1140 if (ret < 0)
1141 return ret;
1142 }
1143
Liam Girdwoodddee6272011-06-09 14:45:53 +01001144 return 0;
1145}
1146
Mark Brown45c0a182012-05-09 21:46:27 +01001147static int soc_pcm_bespoke_trigger(struct snd_pcm_substream *substream,
1148 int cmd)
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001149{
1150 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1151 struct snd_soc_platform *platform = rtd->platform;
1152 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001153 struct snd_soc_dai *codec_dai;
1154 int i, ret;
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001155
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001156 for (i = 0; i < rtd->num_codecs; i++) {
1157 codec_dai = rtd->codec_dais[i];
1158 if (codec_dai->driver->ops &&
1159 codec_dai->driver->ops->bespoke_trigger) {
1160 ret = codec_dai->driver->ops->bespoke_trigger(substream,
1161 cmd, codec_dai);
1162 if (ret < 0)
1163 return ret;
1164 }
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001165 }
1166
Jean-Francois Moinedcf0fa22014-01-03 09:19:18 +01001167 if (platform->driver->bespoke_trigger) {
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001168 ret = platform->driver->bespoke_trigger(substream, cmd);
1169 if (ret < 0)
1170 return ret;
1171 }
1172
Mark Brownc5914b02013-10-30 17:47:39 -07001173 if (cpu_dai->driver->ops && cpu_dai->driver->ops->bespoke_trigger) {
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001174 ret = cpu_dai->driver->ops->bespoke_trigger(substream, cmd, cpu_dai);
1175 if (ret < 0)
1176 return ret;
1177 }
1178 return 0;
1179}
Liam Girdwoodddee6272011-06-09 14:45:53 +01001180/*
1181 * soc level wrapper for pointer callback
1182 * If cpu_dai, codec_dai, platform driver has the delay callback, than
1183 * the runtime->delay will be updated accordingly.
1184 */
1185static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
1186{
1187 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1188 struct snd_soc_platform *platform = rtd->platform;
1189 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001190 struct snd_soc_dai *codec_dai;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001191 struct snd_pcm_runtime *runtime = substream->runtime;
1192 snd_pcm_uframes_t offset = 0;
1193 snd_pcm_sframes_t delay = 0;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001194 snd_pcm_sframes_t codec_delay = 0;
1195 int i;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001196
1197 if (platform->driver->ops && platform->driver->ops->pointer)
1198 offset = platform->driver->ops->pointer(substream);
1199
Kenneth Westfieldd6f99fa2015-05-19 12:03:55 -07001200 if (platform->driver->delay_blk)
1201 return offset;
1202
Mark Brownc5914b02013-10-30 17:47:39 -07001203 if (cpu_dai->driver->ops && cpu_dai->driver->ops->delay)
Liam Girdwoodddee6272011-06-09 14:45:53 +01001204 delay += cpu_dai->driver->ops->delay(substream, cpu_dai);
1205
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001206 for (i = 0; i < rtd->num_codecs; i++) {
1207 codec_dai = rtd->codec_dais[i];
1208 if (codec_dai->driver->ops && codec_dai->driver->ops->delay)
1209 codec_delay = max(codec_delay,
1210 codec_dai->driver->ops->delay(substream,
1211 codec_dai));
1212 }
1213 delay += codec_delay;
Liam Girdwoodddee6272011-06-09 14:45:53 +01001214
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001215 /*
1216 * None of the existing platform drivers implement delay(), so
1217 * for now the codec_dai of first multicodec entry is used
1218 */
Liam Girdwoodddee6272011-06-09 14:45:53 +01001219 if (platform->driver->delay)
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001220 delay += platform->driver->delay(substream, rtd->codec_dais[0]);
Liam Girdwoodddee6272011-06-09 14:45:53 +01001221
1222 runtime->delay = delay;
1223
1224 return offset;
1225}
1226
Kenneth Westfieldd6f99fa2015-05-19 12:03:55 -07001227static int soc_pcm_delay_blk(struct snd_pcm_substream *substream)
1228{
1229 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1230 struct snd_soc_platform *platform = rtd->platform;
1231 struct snd_pcm_runtime *runtime = substream->runtime;
1232 snd_pcm_sframes_t delay = 0;
1233
1234 if (platform->driver->delay_blk)
1235 delay = platform->driver->delay_blk(substream,
1236 rtd->codec_dais[0]);
1237
1238 runtime->delay = delay;
1239
1240 return 0;
1241}
1242
Liam Girdwood01d75842012-04-25 12:12:49 +01001243/* connect a FE and BE */
1244static int dpcm_be_connect(struct snd_soc_pcm_runtime *fe,
1245 struct snd_soc_pcm_runtime *be, int stream)
1246{
1247 struct snd_soc_dpcm *dpcm;
1248
1249 /* only add new dpcms */
1250 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1251 if (dpcm->be == be && dpcm->fe == fe)
1252 return 0;
1253 }
1254
1255 dpcm = kzalloc(sizeof(struct snd_soc_dpcm), GFP_KERNEL);
1256 if (!dpcm)
1257 return -ENOMEM;
1258
1259 dpcm->be = be;
1260 dpcm->fe = fe;
1261 be->dpcm[stream].runtime = fe->dpcm[stream].runtime;
1262 dpcm->state = SND_SOC_DPCM_LINK_STATE_NEW;
1263 list_add(&dpcm->list_be, &fe->dpcm[stream].be_clients);
1264 list_add(&dpcm->list_fe, &be->dpcm[stream].fe_clients);
1265
Jarkko Nikula7cc302d2013-09-30 17:08:15 +03001266 dev_dbg(fe->dev, "connected new DPCM %s path %s %s %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001267 stream ? "capture" : "playback", fe->dai_link->name,
1268 stream ? "<-" : "->", be->dai_link->name);
1269
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001270#ifdef CONFIG_DEBUG_FS
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02001271 if (fe->debugfs_dpcm_root)
1272 dpcm->debugfs_state = debugfs_create_u32(be->dai_link->name, 0644,
1273 fe->debugfs_dpcm_root, &dpcm->state);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001274#endif
Liam Girdwood01d75842012-04-25 12:12:49 +01001275 return 1;
1276}
1277
1278/* reparent a BE onto another FE */
1279static void dpcm_be_reparent(struct snd_soc_pcm_runtime *fe,
1280 struct snd_soc_pcm_runtime *be, int stream)
1281{
1282 struct snd_soc_dpcm *dpcm;
1283 struct snd_pcm_substream *fe_substream, *be_substream;
1284
1285 /* reparent if BE is connected to other FEs */
1286 if (!be->dpcm[stream].users)
1287 return;
1288
1289 be_substream = snd_soc_dpcm_get_substream(be, stream);
1290
1291 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
1292 if (dpcm->fe == fe)
1293 continue;
1294
Jarkko Nikula7cc302d2013-09-30 17:08:15 +03001295 dev_dbg(fe->dev, "reparent %s path %s %s %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001296 stream ? "capture" : "playback",
1297 dpcm->fe->dai_link->name,
1298 stream ? "<-" : "->", dpcm->be->dai_link->name);
1299
1300 fe_substream = snd_soc_dpcm_get_substream(dpcm->fe, stream);
1301 be_substream->runtime = fe_substream->runtime;
1302 break;
1303 }
1304}
1305
1306/* disconnect a BE and FE */
Liam Girdwood23607022014-01-17 17:03:55 +00001307void dpcm_be_disconnect(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001308{
1309 struct snd_soc_dpcm *dpcm, *d;
1310
1311 list_for_each_entry_safe(dpcm, d, &fe->dpcm[stream].be_clients, list_be) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001312 dev_dbg(fe->dev, "ASoC: BE %s disconnect check for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001313 stream ? "capture" : "playback",
1314 dpcm->be->dai_link->name);
1315
1316 if (dpcm->state != SND_SOC_DPCM_LINK_STATE_FREE)
1317 continue;
1318
Jarkko Nikula7cc302d2013-09-30 17:08:15 +03001319 dev_dbg(fe->dev, "freed DSP %s path %s %s %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001320 stream ? "capture" : "playback", fe->dai_link->name,
1321 stream ? "<-" : "->", dpcm->be->dai_link->name);
1322
1323 /* BEs still alive need new FE */
1324 dpcm_be_reparent(fe, dpcm->be, stream);
1325
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001326#ifdef CONFIG_DEBUG_FS
1327 debugfs_remove(dpcm->debugfs_state);
1328#endif
Liam Girdwood01d75842012-04-25 12:12:49 +01001329 list_del(&dpcm->list_be);
1330 list_del(&dpcm->list_fe);
1331 kfree(dpcm);
1332 }
1333}
1334
1335/* get BE for DAI widget and stream */
1336static struct snd_soc_pcm_runtime *dpcm_get_be(struct snd_soc_card *card,
1337 struct snd_soc_dapm_widget *widget, int stream)
1338{
1339 struct snd_soc_pcm_runtime *be;
Mengdong Lin1a497982015-11-18 02:34:11 -05001340 int i;
Liam Girdwood01d75842012-04-25 12:12:49 +01001341
1342 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
Mengdong Lin1a497982015-11-18 02:34:11 -05001343 list_for_each_entry(be, &card->rtd_list, list) {
Liam Girdwood01d75842012-04-25 12:12:49 +01001344
Liam Girdwood35ea0652012-06-05 19:26:59 +01001345 if (!be->dai_link->no_pcm)
1346 continue;
1347
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001348 if (be->cpu_dai->playback_widget == widget)
Liam Girdwood01d75842012-04-25 12:12:49 +01001349 return be;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001350
Mengdong Lin1a497982015-11-18 02:34:11 -05001351 for (i = 0; i < be->num_codecs; i++) {
1352 struct snd_soc_dai *dai = be->codec_dais[i];
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001353 if (dai->playback_widget == widget)
1354 return be;
1355 }
Liam Girdwood01d75842012-04-25 12:12:49 +01001356 }
1357 } else {
1358
Mengdong Lin1a497982015-11-18 02:34:11 -05001359 list_for_each_entry(be, &card->rtd_list, list) {
Liam Girdwood01d75842012-04-25 12:12:49 +01001360
Liam Girdwood35ea0652012-06-05 19:26:59 +01001361 if (!be->dai_link->no_pcm)
1362 continue;
1363
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001364 if (be->cpu_dai->capture_widget == widget)
Liam Girdwood01d75842012-04-25 12:12:49 +01001365 return be;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001366
Mengdong Lin1a497982015-11-18 02:34:11 -05001367 for (i = 0; i < be->num_codecs; i++) {
1368 struct snd_soc_dai *dai = be->codec_dais[i];
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001369 if (dai->capture_widget == widget)
1370 return be;
1371 }
Liam Girdwood01d75842012-04-25 12:12:49 +01001372 }
1373 }
1374
Liam Girdwood103d84a2012-11-19 14:39:15 +00001375 dev_err(card->dev, "ASoC: can't get %s BE for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001376 stream ? "capture" : "playback", widget->name);
1377 return NULL;
1378}
1379
1380static inline struct snd_soc_dapm_widget *
Benoit Cousson37018612014-04-24 14:01:45 +02001381 dai_get_widget(struct snd_soc_dai *dai, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001382{
1383 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
Benoit Cousson37018612014-04-24 14:01:45 +02001384 return dai->playback_widget;
Liam Girdwood01d75842012-04-25 12:12:49 +01001385 else
Benoit Cousson37018612014-04-24 14:01:45 +02001386 return dai->capture_widget;
Liam Girdwood01d75842012-04-25 12:12:49 +01001387}
1388
1389static int widget_in_list(struct snd_soc_dapm_widget_list *list,
1390 struct snd_soc_dapm_widget *widget)
1391{
1392 int i;
1393
1394 for (i = 0; i < list->num_widgets; i++) {
1395 if (widget == list->widgets[i])
1396 return 1;
1397 }
1398
1399 return 0;
1400}
1401
Piotr Stankiewicz5fdd0222016-05-13 17:03:56 +01001402static bool dpcm_end_walk_at_be(struct snd_soc_dapm_widget *widget,
1403 enum snd_soc_dapm_direction dir)
1404{
1405 struct snd_soc_card *card = widget->dapm->card;
1406 struct snd_soc_pcm_runtime *rtd;
1407 int i;
1408
1409 if (dir == SND_SOC_DAPM_DIR_OUT) {
1410 list_for_each_entry(rtd, &card->rtd_list, list) {
1411 if (!rtd->dai_link->no_pcm)
1412 continue;
1413
1414 if (rtd->cpu_dai->playback_widget == widget)
1415 return true;
1416
1417 for (i = 0; i < rtd->num_codecs; ++i) {
1418 struct snd_soc_dai *dai = rtd->codec_dais[i];
1419 if (dai->playback_widget == widget)
1420 return true;
1421 }
1422 }
1423 } else { /* SND_SOC_DAPM_DIR_IN */
1424 list_for_each_entry(rtd, &card->rtd_list, list) {
1425 if (!rtd->dai_link->no_pcm)
1426 continue;
1427
1428 if (rtd->cpu_dai->capture_widget == widget)
1429 return true;
1430
1431 for (i = 0; i < rtd->num_codecs; ++i) {
1432 struct snd_soc_dai *dai = rtd->codec_dais[i];
1433 if (dai->capture_widget == widget)
1434 return true;
1435 }
1436 }
1437 }
1438
1439 return false;
1440}
1441
Liam Girdwood23607022014-01-17 17:03:55 +00001442int dpcm_path_get(struct snd_soc_pcm_runtime *fe,
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001443 int stream, struct snd_soc_dapm_widget_list **list)
Liam Girdwood01d75842012-04-25 12:12:49 +01001444{
1445 struct snd_soc_dai *cpu_dai = fe->cpu_dai;
Liam Girdwood01d75842012-04-25 12:12:49 +01001446 int paths;
1447
Liam Girdwood01d75842012-04-25 12:12:49 +01001448 /* get number of valid DAI paths and their widgets */
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001449 paths = snd_soc_dapm_dai_get_connected_widgets(cpu_dai, stream, list,
Piotr Stankiewicz5fdd0222016-05-13 17:03:56 +01001450 dpcm_end_walk_at_be);
Liam Girdwood01d75842012-04-25 12:12:49 +01001451
Liam Girdwood103d84a2012-11-19 14:39:15 +00001452 dev_dbg(fe->dev, "ASoC: found %d audio %s paths\n", paths,
Liam Girdwood01d75842012-04-25 12:12:49 +01001453 stream ? "capture" : "playback");
1454
Liam Girdwood01d75842012-04-25 12:12:49 +01001455 return paths;
1456}
1457
Liam Girdwood01d75842012-04-25 12:12:49 +01001458static int dpcm_prune_paths(struct snd_soc_pcm_runtime *fe, int stream,
1459 struct snd_soc_dapm_widget_list **list_)
1460{
1461 struct snd_soc_dpcm *dpcm;
1462 struct snd_soc_dapm_widget_list *list = *list_;
1463 struct snd_soc_dapm_widget *widget;
1464 int prune = 0;
1465
1466 /* Destroy any old FE <--> BE connections */
1467 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001468 unsigned int i;
Liam Girdwood01d75842012-04-25 12:12:49 +01001469
1470 /* is there a valid CPU DAI widget for this BE */
Benoit Cousson37018612014-04-24 14:01:45 +02001471 widget = dai_get_widget(dpcm->be->cpu_dai, stream);
Liam Girdwood01d75842012-04-25 12:12:49 +01001472
1473 /* prune the BE if it's no longer in our active list */
1474 if (widget && widget_in_list(list, widget))
1475 continue;
1476
1477 /* is there a valid CODEC DAI widget for this BE */
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001478 for (i = 0; i < dpcm->be->num_codecs; i++) {
1479 struct snd_soc_dai *dai = dpcm->be->codec_dais[i];
1480 widget = dai_get_widget(dai, stream);
Liam Girdwood01d75842012-04-25 12:12:49 +01001481
Benoit Cousson2e5894d2014-07-08 23:19:35 +02001482 /* prune the BE if it's no longer in our active list */
1483 if (widget && widget_in_list(list, widget))
1484 continue;
1485 }
Liam Girdwood01d75842012-04-25 12:12:49 +01001486
Liam Girdwood103d84a2012-11-19 14:39:15 +00001487 dev_dbg(fe->dev, "ASoC: pruning %s BE %s for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001488 stream ? "capture" : "playback",
1489 dpcm->be->dai_link->name, fe->dai_link->name);
1490 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
1491 dpcm->be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
1492 prune++;
1493 }
1494
Liam Girdwood103d84a2012-11-19 14:39:15 +00001495 dev_dbg(fe->dev, "ASoC: found %d old BE paths for pruning\n", prune);
Liam Girdwood01d75842012-04-25 12:12:49 +01001496 return prune;
1497}
1498
1499static int dpcm_add_paths(struct snd_soc_pcm_runtime *fe, int stream,
1500 struct snd_soc_dapm_widget_list **list_)
1501{
1502 struct snd_soc_card *card = fe->card;
1503 struct snd_soc_dapm_widget_list *list = *list_;
1504 struct snd_soc_pcm_runtime *be;
1505 int i, new = 0, err;
1506
1507 /* Create any new FE <--> BE connections */
1508 for (i = 0; i < list->num_widgets; i++) {
1509
Mark Brown46162742013-06-05 19:36:11 +01001510 switch (list->widgets[i]->id) {
1511 case snd_soc_dapm_dai_in:
Koro Chenc5b85402015-07-06 10:02:10 +08001512 if (stream != SNDRV_PCM_STREAM_PLAYBACK)
1513 continue;
1514 break;
Mark Brown46162742013-06-05 19:36:11 +01001515 case snd_soc_dapm_dai_out:
Koro Chenc5b85402015-07-06 10:02:10 +08001516 if (stream != SNDRV_PCM_STREAM_CAPTURE)
1517 continue;
Mark Brown46162742013-06-05 19:36:11 +01001518 break;
1519 default:
Liam Girdwood01d75842012-04-25 12:12:49 +01001520 continue;
Mark Brown46162742013-06-05 19:36:11 +01001521 }
Liam Girdwood01d75842012-04-25 12:12:49 +01001522
1523 /* is there a valid BE rtd for this widget */
1524 be = dpcm_get_be(card, list->widgets[i], stream);
1525 if (!be) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001526 dev_err(fe->dev, "ASoC: no BE found for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001527 list->widgets[i]->name);
1528 continue;
1529 }
1530
1531 /* make sure BE is a real BE */
1532 if (!be->dai_link->no_pcm)
1533 continue;
1534
1535 /* don't connect if FE is not running */
Liam Girdwood23607022014-01-17 17:03:55 +00001536 if (!fe->dpcm[stream].runtime && !fe->fe_compr)
Liam Girdwood01d75842012-04-25 12:12:49 +01001537 continue;
1538
1539 /* newly connected FE and BE */
1540 err = dpcm_be_connect(fe, be, stream);
1541 if (err < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001542 dev_err(fe->dev, "ASoC: can't connect %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001543 list->widgets[i]->name);
1544 break;
1545 } else if (err == 0) /* already connected */
1546 continue;
1547
1548 /* new */
1549 be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
1550 new++;
1551 }
1552
Liam Girdwood103d84a2012-11-19 14:39:15 +00001553 dev_dbg(fe->dev, "ASoC: found %d new BE paths\n", new);
Liam Girdwood01d75842012-04-25 12:12:49 +01001554 return new;
1555}
1556
1557/*
1558 * Find the corresponding BE DAIs that source or sink audio to this
1559 * FE substream.
1560 */
Liam Girdwood23607022014-01-17 17:03:55 +00001561int dpcm_process_paths(struct snd_soc_pcm_runtime *fe,
Liam Girdwood01d75842012-04-25 12:12:49 +01001562 int stream, struct snd_soc_dapm_widget_list **list, int new)
1563{
1564 if (new)
1565 return dpcm_add_paths(fe, stream, list);
1566 else
1567 return dpcm_prune_paths(fe, stream, list);
1568}
1569
Liam Girdwood23607022014-01-17 17:03:55 +00001570void dpcm_clear_pending_state(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001571{
1572 struct snd_soc_dpcm *dpcm;
1573
1574 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
1575 dpcm->be->dpcm[stream].runtime_update =
1576 SND_SOC_DPCM_UPDATE_NO;
1577}
1578
1579static void dpcm_be_dai_startup_unwind(struct snd_soc_pcm_runtime *fe,
1580 int stream)
1581{
1582 struct snd_soc_dpcm *dpcm;
1583
1584 /* disable any enabled and non active backends */
1585 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1586
1587 struct snd_soc_pcm_runtime *be = dpcm->be;
1588 struct snd_pcm_substream *be_substream =
1589 snd_soc_dpcm_get_substream(be, stream);
1590
1591 if (be->dpcm[stream].users == 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001592 dev_err(be->dev, "ASoC: no users %s at close - state %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001593 stream ? "capture" : "playback",
1594 be->dpcm[stream].state);
1595
1596 if (--be->dpcm[stream].users != 0)
1597 continue;
1598
1599 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)
1600 continue;
1601
1602 soc_pcm_close(be_substream);
1603 be_substream->runtime = NULL;
1604 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1605 }
1606}
1607
Liam Girdwood23607022014-01-17 17:03:55 +00001608int dpcm_be_dai_startup(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001609{
1610 struct snd_soc_dpcm *dpcm;
1611 int err, count = 0;
1612
1613 /* only startup BE DAIs that are either sinks or sources to this FE DAI */
1614 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1615
1616 struct snd_soc_pcm_runtime *be = dpcm->be;
1617 struct snd_pcm_substream *be_substream =
1618 snd_soc_dpcm_get_substream(be, stream);
1619
Russell King - ARM Linux2062b4c2013-10-31 15:09:20 +00001620 if (!be_substream) {
1621 dev_err(be->dev, "ASoC: no backend %s stream\n",
1622 stream ? "capture" : "playback");
1623 continue;
1624 }
1625
Liam Girdwood01d75842012-04-25 12:12:49 +01001626 /* is this op for this BE ? */
1627 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1628 continue;
1629
1630 /* first time the dpcm is open ? */
1631 if (be->dpcm[stream].users == DPCM_MAX_BE_USERS)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001632 dev_err(be->dev, "ASoC: too many users %s at open %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001633 stream ? "capture" : "playback",
1634 be->dpcm[stream].state);
1635
1636 if (be->dpcm[stream].users++ != 0)
1637 continue;
1638
1639 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_NEW) &&
1640 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_CLOSE))
1641 continue;
1642
Russell King - ARM Linux2062b4c2013-10-31 15:09:20 +00001643 dev_dbg(be->dev, "ASoC: open %s BE %s\n",
1644 stream ? "capture" : "playback", be->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001645
1646 be_substream->runtime = be->dpcm[stream].runtime;
1647 err = soc_pcm_open(be_substream);
1648 if (err < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001649 dev_err(be->dev, "ASoC: BE open failed %d\n", err);
Liam Girdwood01d75842012-04-25 12:12:49 +01001650 be->dpcm[stream].users--;
1651 if (be->dpcm[stream].users < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001652 dev_err(be->dev, "ASoC: no users %s at unwind %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001653 stream ? "capture" : "playback",
1654 be->dpcm[stream].state);
1655
1656 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1657 goto unwind;
1658 }
1659
1660 be->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1661 count++;
1662 }
1663
1664 return count;
1665
1666unwind:
1667 /* disable any enabled and non active backends */
1668 list_for_each_entry_continue_reverse(dpcm, &fe->dpcm[stream].be_clients, list_be) {
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
1673 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1674 continue;
1675
1676 if (be->dpcm[stream].users == 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001677 dev_err(be->dev, "ASoC: no users %s at close %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001678 stream ? "capture" : "playback",
1679 be->dpcm[stream].state);
1680
1681 if (--be->dpcm[stream].users != 0)
1682 continue;
1683
1684 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)
1685 continue;
1686
1687 soc_pcm_close(be_substream);
1688 be_substream->runtime = NULL;
1689 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1690 }
1691
1692 return err;
1693}
1694
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001695static void dpcm_init_runtime_hw(struct snd_pcm_runtime *runtime,
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001696 struct snd_soc_pcm_stream *stream,
1697 u64 formats)
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001698{
1699 runtime->hw.rate_min = stream->rate_min;
1700 runtime->hw.rate_max = stream->rate_max;
1701 runtime->hw.channels_min = stream->channels_min;
1702 runtime->hw.channels_max = stream->channels_max;
Lars-Peter Clausen002220a2014-01-06 14:19:07 +01001703 if (runtime->hw.formats)
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001704 runtime->hw.formats &= formats & stream->formats;
Lars-Peter Clausen002220a2014-01-06 14:19:07 +01001705 else
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001706 runtime->hw.formats = formats & stream->formats;
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001707 runtime->hw.rates = stream->rates;
1708}
1709
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001710static u64 dpcm_runtime_base_format(struct snd_pcm_substream *substream)
1711{
1712 struct snd_soc_pcm_runtime *fe = substream->private_data;
1713 struct snd_soc_dpcm *dpcm;
1714 u64 formats = ULLONG_MAX;
1715 int stream = substream->stream;
1716
1717 if (!fe->dai_link->dpcm_merged_format)
1718 return formats;
1719
1720 /*
1721 * It returns merged BE codec format
1722 * if FE want to use it (= dpcm_merged_format)
1723 */
1724
1725 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1726 struct snd_soc_pcm_runtime *be = dpcm->be;
1727 struct snd_soc_dai_driver *codec_dai_drv;
1728 struct snd_soc_pcm_stream *codec_stream;
1729 int i;
1730
1731 for (i = 0; i < be->num_codecs; i++) {
1732 codec_dai_drv = be->codec_dais[i]->driver;
1733 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
1734 codec_stream = &codec_dai_drv->playback;
1735 else
1736 codec_stream = &codec_dai_drv->capture;
1737
1738 formats &= codec_stream->formats;
1739 }
1740 }
1741
1742 return formats;
1743}
1744
Mark Brown45c0a182012-05-09 21:46:27 +01001745static void dpcm_set_fe_runtime(struct snd_pcm_substream *substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001746{
1747 struct snd_pcm_runtime *runtime = substream->runtime;
1748 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1749 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1750 struct snd_soc_dai_driver *cpu_dai_drv = cpu_dai->driver;
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001751 u64 format = dpcm_runtime_base_format(substream);
Liam Girdwood01d75842012-04-25 12:12:49 +01001752
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001753 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001754 dpcm_init_runtime_hw(runtime, &cpu_dai_drv->playback, format);
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001755 else
Kuninori Morimotob073ed42015-05-12 02:03:33 +00001756 dpcm_init_runtime_hw(runtime, &cpu_dai_drv->capture, format);
Liam Girdwood01d75842012-04-25 12:12:49 +01001757}
1758
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001759static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd);
1760
1761/* Set FE's runtime_update state; the state is protected via PCM stream lock
1762 * for avoiding the race with trigger callback.
1763 * If the state is unset and a trigger is pending while the previous operation,
1764 * process the pending trigger action here.
1765 */
1766static void dpcm_set_fe_update_state(struct snd_soc_pcm_runtime *fe,
1767 int stream, enum snd_soc_dpcm_update state)
1768{
1769 struct snd_pcm_substream *substream =
1770 snd_soc_dpcm_get_substream(fe, stream);
1771
1772 snd_pcm_stream_lock_irq(substream);
1773 if (state == SND_SOC_DPCM_UPDATE_NO && fe->dpcm[stream].trigger_pending) {
1774 dpcm_fe_dai_do_trigger(substream,
1775 fe->dpcm[stream].trigger_pending - 1);
1776 fe->dpcm[stream].trigger_pending = 0;
1777 }
1778 fe->dpcm[stream].runtime_update = state;
1779 snd_pcm_stream_unlock_irq(substream);
1780}
1781
PC Liao906c7d62015-12-11 11:33:51 +08001782static int dpcm_apply_symmetry(struct snd_pcm_substream *fe_substream,
1783 int stream)
1784{
1785 struct snd_soc_dpcm *dpcm;
1786 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
1787 struct snd_soc_dai *fe_cpu_dai = fe->cpu_dai;
1788 int err;
1789
1790 /* apply symmetry for FE */
1791 if (soc_pcm_has_symmetry(fe_substream))
1792 fe_substream->runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
1793
1794 /* Symmetry only applies if we've got an active stream. */
1795 if (fe_cpu_dai->active) {
1796 err = soc_pcm_apply_symmetry(fe_substream, fe_cpu_dai);
1797 if (err < 0)
1798 return err;
1799 }
1800
1801 /* apply symmetry for BE */
1802 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1803 struct snd_soc_pcm_runtime *be = dpcm->be;
1804 struct snd_pcm_substream *be_substream =
1805 snd_soc_dpcm_get_substream(be, stream);
1806 struct snd_soc_pcm_runtime *rtd = be_substream->private_data;
1807 int i;
1808
Jeeja KPf1176612016-09-06 14:17:55 +05301809 if (rtd->dai_link->be_hw_params_fixup)
1810 continue;
1811
PC Liao906c7d62015-12-11 11:33:51 +08001812 if (soc_pcm_has_symmetry(be_substream))
1813 be_substream->runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
1814
1815 /* Symmetry only applies if we've got an active stream. */
1816 if (rtd->cpu_dai->active) {
1817 err = soc_pcm_apply_symmetry(be_substream, rtd->cpu_dai);
1818 if (err < 0)
1819 return err;
1820 }
1821
1822 for (i = 0; i < rtd->num_codecs; i++) {
1823 if (rtd->codec_dais[i]->active) {
1824 err = soc_pcm_apply_symmetry(be_substream,
1825 rtd->codec_dais[i]);
1826 if (err < 0)
1827 return err;
1828 }
1829 }
1830 }
1831
1832 return 0;
1833}
1834
Liam Girdwood01d75842012-04-25 12:12:49 +01001835static int dpcm_fe_dai_startup(struct snd_pcm_substream *fe_substream)
1836{
1837 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
1838 struct snd_pcm_runtime *runtime = fe_substream->runtime;
1839 int stream = fe_substream->stream, ret = 0;
1840
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001841 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01001842
1843 ret = dpcm_be_dai_startup(fe, fe_substream->stream);
1844 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001845 dev_err(fe->dev,"ASoC: failed to start some BEs %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001846 goto be_err;
1847 }
1848
Liam Girdwood103d84a2012-11-19 14:39:15 +00001849 dev_dbg(fe->dev, "ASoC: open FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001850
1851 /* start the DAI frontend */
1852 ret = soc_pcm_open(fe_substream);
1853 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001854 dev_err(fe->dev,"ASoC: failed to start FE %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001855 goto unwind;
1856 }
1857
1858 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1859
1860 dpcm_set_fe_runtime(fe_substream);
1861 snd_pcm_limit_hw_rates(runtime);
1862
PC Liao906c7d62015-12-11 11:33:51 +08001863 ret = dpcm_apply_symmetry(fe_substream, stream);
1864 if (ret < 0) {
1865 dev_err(fe->dev, "ASoC: failed to apply dpcm symmetry %d\n",
1866 ret);
1867 goto unwind;
1868 }
1869
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001870 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01001871 return 0;
1872
1873unwind:
1874 dpcm_be_dai_startup_unwind(fe, fe_substream->stream);
1875be_err:
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001876 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01001877 return ret;
1878}
1879
Liam Girdwood23607022014-01-17 17:03:55 +00001880int dpcm_be_dai_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001881{
1882 struct snd_soc_dpcm *dpcm;
1883
1884 /* only shutdown BEs that are either sinks or sources to this FE DAI */
1885 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1886
1887 struct snd_soc_pcm_runtime *be = dpcm->be;
1888 struct snd_pcm_substream *be_substream =
1889 snd_soc_dpcm_get_substream(be, stream);
1890
1891 /* is this op for this BE ? */
1892 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1893 continue;
1894
1895 if (be->dpcm[stream].users == 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001896 dev_err(be->dev, "ASoC: no users %s at close - state %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001897 stream ? "capture" : "playback",
1898 be->dpcm[stream].state);
1899
1900 if (--be->dpcm[stream].users != 0)
1901 continue;
1902
1903 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
1904 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN))
1905 continue;
1906
Liam Girdwood103d84a2012-11-19 14:39:15 +00001907 dev_dbg(be->dev, "ASoC: close BE %s\n",
彭东林94d215c2016-09-26 08:29:31 +00001908 be->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001909
1910 soc_pcm_close(be_substream);
1911 be_substream->runtime = NULL;
1912
1913 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1914 }
1915 return 0;
1916}
1917
1918static int dpcm_fe_dai_shutdown(struct snd_pcm_substream *substream)
1919{
1920 struct snd_soc_pcm_runtime *fe = substream->private_data;
1921 int stream = substream->stream;
1922
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001923 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01001924
1925 /* shutdown the BEs */
1926 dpcm_be_dai_shutdown(fe, substream->stream);
1927
Liam Girdwood103d84a2012-11-19 14:39:15 +00001928 dev_dbg(fe->dev, "ASoC: close FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001929
1930 /* now shutdown the frontend */
1931 soc_pcm_close(substream);
1932
1933 /* run the stream event for each BE */
1934 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP);
1935
1936 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001937 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01001938 return 0;
1939}
1940
Liam Girdwood23607022014-01-17 17:03:55 +00001941int dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001942{
1943 struct snd_soc_dpcm *dpcm;
1944
1945 /* only hw_params backends that are either sinks or sources
1946 * to this frontend DAI */
1947 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1948
1949 struct snd_soc_pcm_runtime *be = dpcm->be;
1950 struct snd_pcm_substream *be_substream =
1951 snd_soc_dpcm_get_substream(be, stream);
1952
1953 /* is this op for this BE ? */
1954 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1955 continue;
1956
1957 /* only free hw when no longer used - check all FEs */
1958 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1959 continue;
1960
Qiao Zhou36fba622014-12-03 10:13:43 +08001961 /* do not free hw if this BE is used by other FE */
1962 if (be->dpcm[stream].users > 1)
1963 continue;
1964
Liam Girdwood01d75842012-04-25 12:12:49 +01001965 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1966 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
1967 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
Patrick Lai08b27842012-12-19 19:36:02 -08001968 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED) &&
Vinod Koul5e82d2b2016-02-01 22:26:40 +05301969 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
1970 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
Liam Girdwood01d75842012-04-25 12:12:49 +01001971 continue;
1972
Liam Girdwood103d84a2012-11-19 14:39:15 +00001973 dev_dbg(be->dev, "ASoC: hw_free BE %s\n",
彭东林94d215c2016-09-26 08:29:31 +00001974 be->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001975
1976 soc_pcm_hw_free(be_substream);
1977
1978 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
1979 }
1980
1981 return 0;
1982}
1983
Mark Brown45c0a182012-05-09 21:46:27 +01001984static int dpcm_fe_dai_hw_free(struct snd_pcm_substream *substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001985{
1986 struct snd_soc_pcm_runtime *fe = substream->private_data;
1987 int err, stream = substream->stream;
1988
1989 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01001990 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01001991
Liam Girdwood103d84a2012-11-19 14:39:15 +00001992 dev_dbg(fe->dev, "ASoC: hw_free FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001993
1994 /* call hw_free on the frontend */
1995 err = soc_pcm_hw_free(substream);
1996 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001997 dev_err(fe->dev,"ASoC: hw_free FE %s failed\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001998 fe->dai_link->name);
1999
2000 /* only hw_params backends that are either sinks or sources
2001 * to this frontend DAI */
2002 err = dpcm_be_dai_hw_free(fe, stream);
2003
2004 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002005 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01002006
2007 mutex_unlock(&fe->card->mutex);
2008 return 0;
2009}
2010
Liam Girdwood23607022014-01-17 17:03:55 +00002011int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002012{
2013 struct snd_soc_dpcm *dpcm;
2014 int ret;
2015
2016 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2017
2018 struct snd_soc_pcm_runtime *be = dpcm->be;
2019 struct snd_pcm_substream *be_substream =
2020 snd_soc_dpcm_get_substream(be, stream);
2021
2022 /* is this op for this BE ? */
2023 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2024 continue;
2025
Liam Girdwood01d75842012-04-25 12:12:49 +01002026 /* copy params for each dpcm */
2027 memcpy(&dpcm->hw_params, &fe->dpcm[stream].hw_params,
2028 sizeof(struct snd_pcm_hw_params));
2029
2030 /* perform any hw_params fixups */
2031 if (be->dai_link->be_hw_params_fixup) {
2032 ret = be->dai_link->be_hw_params_fixup(be,
2033 &dpcm->hw_params);
2034 if (ret < 0) {
2035 dev_err(be->dev,
Liam Girdwood103d84a2012-11-19 14:39:15 +00002036 "ASoC: hw_params BE fixup failed %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002037 ret);
2038 goto unwind;
2039 }
2040 }
2041
Kuninori Morimotob0639bd2016-01-21 01:47:12 +00002042 /* only allow hw_params() if no connected FEs are running */
2043 if (!snd_soc_dpcm_can_be_params(fe, be, stream))
2044 continue;
2045
2046 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
2047 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2048 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE))
2049 continue;
2050
2051 dev_dbg(be->dev, "ASoC: hw_params BE %s\n",
彭东林94d215c2016-09-26 08:29:31 +00002052 be->dai_link->name);
Kuninori Morimotob0639bd2016-01-21 01:47:12 +00002053
Liam Girdwood01d75842012-04-25 12:12:49 +01002054 ret = soc_pcm_hw_params(be_substream, &dpcm->hw_params);
2055 if (ret < 0) {
2056 dev_err(dpcm->be->dev,
Liam Girdwood103d84a2012-11-19 14:39:15 +00002057 "ASoC: hw_params BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002058 goto unwind;
2059 }
2060
2061 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
2062 }
2063 return 0;
2064
2065unwind:
2066 /* disable any enabled and non active backends */
2067 list_for_each_entry_continue_reverse(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2068 struct snd_soc_pcm_runtime *be = dpcm->be;
2069 struct snd_pcm_substream *be_substream =
2070 snd_soc_dpcm_get_substream(be, stream);
2071
2072 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2073 continue;
2074
2075 /* only allow hw_free() if no connected FEs are running */
2076 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2077 continue;
2078
2079 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
2080 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2081 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
2082 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
2083 continue;
2084
2085 soc_pcm_hw_free(be_substream);
2086 }
2087
2088 return ret;
2089}
2090
Mark Brown45c0a182012-05-09 21:46:27 +01002091static int dpcm_fe_dai_hw_params(struct snd_pcm_substream *substream,
2092 struct snd_pcm_hw_params *params)
Liam Girdwood01d75842012-04-25 12:12:49 +01002093{
2094 struct snd_soc_pcm_runtime *fe = substream->private_data;
2095 int ret, stream = substream->stream;
2096
2097 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002098 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01002099
2100 memcpy(&fe->dpcm[substream->stream].hw_params, params,
2101 sizeof(struct snd_pcm_hw_params));
2102 ret = dpcm_be_dai_hw_params(fe, substream->stream);
2103 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002104 dev_err(fe->dev,"ASoC: hw_params BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002105 goto out;
2106 }
2107
Liam Girdwood103d84a2012-11-19 14:39:15 +00002108 dev_dbg(fe->dev, "ASoC: hw_params FE %s rate %d chan %x fmt %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002109 fe->dai_link->name, params_rate(params),
2110 params_channels(params), params_format(params));
2111
2112 /* call hw_params on the frontend */
2113 ret = soc_pcm_hw_params(substream, params);
2114 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002115 dev_err(fe->dev,"ASoC: hw_params FE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002116 dpcm_be_dai_hw_free(fe, stream);
2117 } else
2118 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
2119
2120out:
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002121 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01002122 mutex_unlock(&fe->card->mutex);
2123 return ret;
2124}
2125
2126static int dpcm_do_trigger(struct snd_soc_dpcm *dpcm,
2127 struct snd_pcm_substream *substream, int cmd)
2128{
2129 int ret;
2130
Liam Girdwood103d84a2012-11-19 14:39:15 +00002131 dev_dbg(dpcm->be->dev, "ASoC: trigger BE %s cmd %d\n",
彭东林94d215c2016-09-26 08:29:31 +00002132 dpcm->be->dai_link->name, cmd);
Liam Girdwood01d75842012-04-25 12:12:49 +01002133
2134 ret = soc_pcm_trigger(substream, cmd);
2135 if (ret < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002136 dev_err(dpcm->be->dev,"ASoC: trigger BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002137
2138 return ret;
2139}
2140
Liam Girdwood23607022014-01-17 17:03:55 +00002141int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime *fe, int stream,
Mark Brown45c0a182012-05-09 21:46:27 +01002142 int cmd)
Liam Girdwood01d75842012-04-25 12:12:49 +01002143{
2144 struct snd_soc_dpcm *dpcm;
2145 int ret = 0;
2146
2147 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2148
2149 struct snd_soc_pcm_runtime *be = dpcm->be;
2150 struct snd_pcm_substream *be_substream =
2151 snd_soc_dpcm_get_substream(be, stream);
2152
2153 /* is this op for this BE ? */
2154 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2155 continue;
2156
2157 switch (cmd) {
2158 case SNDRV_PCM_TRIGGER_START:
2159 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
2160 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
2161 continue;
2162
2163 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2164 if (ret)
2165 return ret;
2166
2167 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2168 break;
2169 case SNDRV_PCM_TRIGGER_RESUME:
2170 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
2171 continue;
2172
2173 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2174 if (ret)
2175 return ret;
2176
2177 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2178 break;
2179 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2180 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2181 continue;
2182
2183 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2184 if (ret)
2185 return ret;
2186
2187 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2188 break;
2189 case SNDRV_PCM_TRIGGER_STOP:
2190 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2191 continue;
2192
2193 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2194 continue;
2195
2196 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2197 if (ret)
2198 return ret;
2199
2200 be->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
2201 break;
2202 case SNDRV_PCM_TRIGGER_SUSPEND:
Nicolin Chen868a6ca2014-05-12 20:12:05 +08002203 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
Liam Girdwood01d75842012-04-25 12:12:49 +01002204 continue;
2205
2206 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2207 continue;
2208
2209 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2210 if (ret)
2211 return ret;
2212
2213 be->dpcm[stream].state = SND_SOC_DPCM_STATE_SUSPEND;
2214 break;
2215 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2216 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2217 continue;
2218
2219 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2220 continue;
2221
2222 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2223 if (ret)
2224 return ret;
2225
2226 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2227 break;
2228 }
2229 }
2230
2231 return ret;
2232}
2233EXPORT_SYMBOL_GPL(dpcm_be_dai_trigger);
2234
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002235static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd)
Liam Girdwood01d75842012-04-25 12:12:49 +01002236{
2237 struct snd_soc_pcm_runtime *fe = substream->private_data;
2238 int stream = substream->stream, ret;
2239 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2240
2241 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
2242
2243 switch (trigger) {
2244 case SND_SOC_DPCM_TRIGGER_PRE:
2245 /* call trigger on the frontend before the backend. */
2246
Liam Girdwood103d84a2012-11-19 14:39:15 +00002247 dev_dbg(fe->dev, "ASoC: pre trigger FE %s cmd %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002248 fe->dai_link->name, cmd);
2249
2250 ret = soc_pcm_trigger(substream, cmd);
2251 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002252 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002253 goto out;
2254 }
2255
2256 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2257 break;
2258 case SND_SOC_DPCM_TRIGGER_POST:
2259 /* call trigger on the frontend after the backend. */
2260
2261 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2262 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002263 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002264 goto out;
2265 }
2266
Liam Girdwood103d84a2012-11-19 14:39:15 +00002267 dev_dbg(fe->dev, "ASoC: post trigger FE %s cmd %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002268 fe->dai_link->name, cmd);
2269
2270 ret = soc_pcm_trigger(substream, cmd);
2271 break;
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002272 case SND_SOC_DPCM_TRIGGER_BESPOKE:
2273 /* bespoke trigger() - handles both FE and BEs */
2274
Liam Girdwood103d84a2012-11-19 14:39:15 +00002275 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd %d\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002276 fe->dai_link->name, cmd);
2277
2278 ret = soc_pcm_bespoke_trigger(substream, cmd);
2279 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002280 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002281 goto out;
2282 }
2283 break;
Liam Girdwood01d75842012-04-25 12:12:49 +01002284 default:
Liam Girdwood103d84a2012-11-19 14:39:15 +00002285 dev_err(fe->dev, "ASoC: invalid trigger cmd %d for %s\n", cmd,
Liam Girdwood01d75842012-04-25 12:12:49 +01002286 fe->dai_link->name);
2287 ret = -EINVAL;
2288 goto out;
2289 }
2290
2291 switch (cmd) {
2292 case SNDRV_PCM_TRIGGER_START:
2293 case SNDRV_PCM_TRIGGER_RESUME:
2294 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2295 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2296 break;
2297 case SNDRV_PCM_TRIGGER_STOP:
2298 case SNDRV_PCM_TRIGGER_SUSPEND:
Liam Girdwood01d75842012-04-25 12:12:49 +01002299 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
2300 break;
Banajit Goswami6175bce2013-02-14 18:24:08 -08002301 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2302 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2303 break;
Liam Girdwood01d75842012-04-25 12:12:49 +01002304 }
2305
2306out:
2307 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
2308 return ret;
2309}
2310
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002311static int dpcm_fe_dai_trigger(struct snd_pcm_substream *substream, int cmd)
2312{
2313 struct snd_soc_pcm_runtime *fe = substream->private_data;
2314 int stream = substream->stream;
2315
2316 /* if FE's runtime_update is already set, we're in race;
2317 * process this trigger later at exit
2318 */
2319 if (fe->dpcm[stream].runtime_update != SND_SOC_DPCM_UPDATE_NO) {
2320 fe->dpcm[stream].trigger_pending = cmd + 1;
2321 return 0; /* delayed, assuming it's successful */
2322 }
2323
2324 /* we're alone, let's trigger */
2325 return dpcm_fe_dai_do_trigger(substream, cmd);
2326}
2327
Liam Girdwood23607022014-01-17 17:03:55 +00002328int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002329{
2330 struct snd_soc_dpcm *dpcm;
2331 int ret = 0;
2332
2333 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2334
2335 struct snd_soc_pcm_runtime *be = dpcm->be;
2336 struct snd_pcm_substream *be_substream =
2337 snd_soc_dpcm_get_substream(be, stream);
2338
2339 /* is this op for this BE ? */
2340 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2341 continue;
2342
2343 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
Koro Chen95f444d2015-10-28 10:15:34 +08002344 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
2345 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
Liam Girdwood01d75842012-04-25 12:12:49 +01002346 continue;
2347
Liam Girdwood103d84a2012-11-19 14:39:15 +00002348 dev_dbg(be->dev, "ASoC: prepare BE %s\n",
彭东林94d215c2016-09-26 08:29:31 +00002349 be->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01002350
2351 ret = soc_pcm_prepare(be_substream);
2352 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002353 dev_err(be->dev, "ASoC: backend prepare failed %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002354 ret);
2355 break;
2356 }
2357
2358 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2359 }
2360 return ret;
2361}
2362
Mark Brown45c0a182012-05-09 21:46:27 +01002363static int dpcm_fe_dai_prepare(struct snd_pcm_substream *substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002364{
2365 struct snd_soc_pcm_runtime *fe = substream->private_data;
2366 int stream = substream->stream, ret = 0;
2367
2368 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2369
Liam Girdwood103d84a2012-11-19 14:39:15 +00002370 dev_dbg(fe->dev, "ASoC: prepare FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01002371
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002372 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01002373
2374 /* there is no point preparing this FE if there are no BEs */
2375 if (list_empty(&fe->dpcm[stream].be_clients)) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002376 dev_err(fe->dev, "ASoC: no backend DAIs enabled for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002377 fe->dai_link->name);
2378 ret = -EINVAL;
2379 goto out;
2380 }
2381
2382 ret = dpcm_be_dai_prepare(fe, substream->stream);
2383 if (ret < 0)
2384 goto out;
2385
2386 /* call prepare on the frontend */
2387 ret = soc_pcm_prepare(substream);
2388 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002389 dev_err(fe->dev,"ASoC: prepare FE %s failed\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002390 fe->dai_link->name);
2391 goto out;
2392 }
2393
2394 /* run the stream event for each BE */
2395 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_START);
2396 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2397
2398out:
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002399 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01002400 mutex_unlock(&fe->card->mutex);
2401
2402 return ret;
2403}
2404
Gopikrishnaiah Anandbdc375e2014-05-30 11:29:56 -07002405static int soc_pcm_compat_ioctl(struct snd_pcm_substream *substream,
2406 unsigned int cmd, void *arg)
2407{
2408 struct snd_soc_pcm_runtime *rtd = substream->private_data;
2409 struct snd_soc_platform *platform = rtd->platform;
2410
2411 if (platform->driver->ops->compat_ioctl)
2412 return platform->driver->ops->compat_ioctl(substream,
2413 cmd, arg);
2414 return snd_pcm_lib_ioctl(substream, cmd, arg);
2415}
2416
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01002417static int soc_pcm_ioctl(struct snd_pcm_substream *substream,
2418 unsigned int cmd, void *arg)
2419{
2420 struct snd_soc_pcm_runtime *rtd = substream->private_data;
2421 struct snd_soc_platform *platform = rtd->platform;
2422
Mark Brownc5914b02013-10-30 17:47:39 -07002423 if (platform->driver->ops && platform->driver->ops->ioctl)
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01002424 return platform->driver->ops->ioctl(substream, cmd, arg);
2425 return snd_pcm_lib_ioctl(substream, cmd, arg);
2426}
2427
Liam Girdwood618dae12012-04-25 12:12:51 +01002428static int dpcm_run_update_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
2429{
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002430 struct snd_pcm_substream *substream =
2431 snd_soc_dpcm_get_substream(fe, stream);
2432 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
Liam Girdwood618dae12012-04-25 12:12:51 +01002433 int err;
Liam Girdwood01d75842012-04-25 12:12:49 +01002434
Liam Girdwood103d84a2012-11-19 14:39:15 +00002435 dev_dbg(fe->dev, "ASoC: runtime %s close on FE %s\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002436 stream ? "capture" : "playback", fe->dai_link->name);
2437
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002438 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2439 /* call bespoke trigger - FE takes care of all BE triggers */
Liam Girdwood103d84a2012-11-19 14:39:15 +00002440 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd stop\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002441 fe->dai_link->name);
2442
2443 err = soc_pcm_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_STOP);
2444 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002445 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002446 } else {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002447 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd stop\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002448 fe->dai_link->name);
2449
2450 err = dpcm_be_dai_trigger(fe, stream, SNDRV_PCM_TRIGGER_STOP);
2451 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002452 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002453 }
Liam Girdwood618dae12012-04-25 12:12:51 +01002454
2455 err = dpcm_be_dai_hw_free(fe, stream);
2456 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002457 dev_err(fe->dev,"ASoC: hw_free FE failed %d\n", err);
Liam Girdwood618dae12012-04-25 12:12:51 +01002458
2459 err = dpcm_be_dai_shutdown(fe, stream);
2460 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002461 dev_err(fe->dev,"ASoC: shutdown FE failed %d\n", err);
Liam Girdwood618dae12012-04-25 12:12:51 +01002462
2463 /* run the stream event for each BE */
2464 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2465
2466 return 0;
2467}
2468
2469static int dpcm_run_update_startup(struct snd_soc_pcm_runtime *fe, int stream)
2470{
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002471 struct snd_pcm_substream *substream =
2472 snd_soc_dpcm_get_substream(fe, stream);
Liam Girdwood618dae12012-04-25 12:12:51 +01002473 struct snd_soc_dpcm *dpcm;
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002474 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
Liam Girdwood618dae12012-04-25 12:12:51 +01002475 int ret;
2476
Liam Girdwood103d84a2012-11-19 14:39:15 +00002477 dev_dbg(fe->dev, "ASoC: runtime %s open on FE %s\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002478 stream ? "capture" : "playback", fe->dai_link->name);
2479
2480 /* Only start the BE if the FE is ready */
2481 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_FREE ||
2482 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE)
2483 return -EINVAL;
2484
2485 /* startup must always be called for new BEs */
2486 ret = dpcm_be_dai_startup(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03002487 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01002488 goto disconnect;
Liam Girdwood618dae12012-04-25 12:12:51 +01002489
2490 /* keep going if FE state is > open */
2491 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_OPEN)
2492 return 0;
2493
2494 ret = dpcm_be_dai_hw_params(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03002495 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01002496 goto close;
Liam Girdwood618dae12012-04-25 12:12:51 +01002497
2498 /* keep going if FE state is > hw_params */
2499 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_PARAMS)
2500 return 0;
2501
2502
2503 ret = dpcm_be_dai_prepare(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03002504 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01002505 goto hw_free;
Liam Girdwood618dae12012-04-25 12:12:51 +01002506
2507 /* run the stream event for each BE */
2508 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2509
2510 /* keep going if FE state is > prepare */
2511 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_PREPARE ||
2512 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_STOP)
2513 return 0;
2514
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002515 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2516 /* call trigger on the frontend - FE takes care of all BE triggers */
Liam Girdwood103d84a2012-11-19 14:39:15 +00002517 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd start\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002518 fe->dai_link->name);
Liam Girdwood618dae12012-04-25 12:12:51 +01002519
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002520 ret = soc_pcm_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_START);
2521 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002522 dev_err(fe->dev,"ASoC: bespoke trigger FE failed %d\n", ret);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002523 goto hw_free;
2524 }
2525 } else {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002526 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd start\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002527 fe->dai_link->name);
2528
2529 ret = dpcm_be_dai_trigger(fe, stream,
2530 SNDRV_PCM_TRIGGER_START);
2531 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002532 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002533 goto hw_free;
2534 }
Liam Girdwood618dae12012-04-25 12:12:51 +01002535 }
2536
2537 return 0;
2538
2539hw_free:
2540 dpcm_be_dai_hw_free(fe, stream);
2541close:
2542 dpcm_be_dai_shutdown(fe, stream);
2543disconnect:
2544 /* disconnect any non started BEs */
2545 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2546 struct snd_soc_pcm_runtime *be = dpcm->be;
2547 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2548 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2549 }
2550
2551 return ret;
2552}
2553
2554static int dpcm_run_new_update(struct snd_soc_pcm_runtime *fe, int stream)
2555{
2556 int ret;
2557
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002558 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE);
Liam Girdwood618dae12012-04-25 12:12:51 +01002559 ret = dpcm_run_update_startup(fe, stream);
2560 if (ret < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002561 dev_err(fe->dev, "ASoC: failed to startup some BEs\n");
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002562 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood618dae12012-04-25 12:12:51 +01002563
2564 return ret;
2565}
2566
2567static int dpcm_run_old_update(struct snd_soc_pcm_runtime *fe, int stream)
2568{
2569 int ret;
2570
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002571 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE);
Liam Girdwood618dae12012-04-25 12:12:51 +01002572 ret = dpcm_run_update_shutdown(fe, stream);
2573 if (ret < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002574 dev_err(fe->dev, "ASoC: failed to shutdown some BEs\n");
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002575 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood618dae12012-04-25 12:12:51 +01002576
2577 return ret;
2578}
2579
2580/* Called by DAPM mixer/mux changes to update audio routing between PCMs and
2581 * any DAI links.
2582 */
Lars-Peter Clausenc3f48ae2013-07-24 15:27:36 +02002583int soc_dpcm_runtime_update(struct snd_soc_card *card)
Liam Girdwood618dae12012-04-25 12:12:51 +01002584{
Mengdong Lin1a497982015-11-18 02:34:11 -05002585 struct snd_soc_pcm_runtime *fe;
2586 int old, new, paths;
Liam Girdwood618dae12012-04-25 12:12:51 +01002587
Liam Girdwood618dae12012-04-25 12:12:51 +01002588 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
Mengdong Lin1a497982015-11-18 02:34:11 -05002589 list_for_each_entry(fe, &card->rtd_list, list) {
Liam Girdwood618dae12012-04-25 12:12:51 +01002590 struct snd_soc_dapm_widget_list *list;
Liam Girdwood618dae12012-04-25 12:12:51 +01002591
2592 /* make sure link is FE */
2593 if (!fe->dai_link->dynamic)
2594 continue;
2595
2596 /* only check active links */
2597 if (!fe->cpu_dai->active)
2598 continue;
2599
2600 /* DAPM sync will call this to update DSP paths */
Liam Girdwood103d84a2012-11-19 14:39:15 +00002601 dev_dbg(fe->dev, "ASoC: DPCM runtime update for FE %s\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002602 fe->dai_link->name);
2603
2604 /* skip if FE doesn't have playback capability */
Qiao Zhou075207d2014-11-17 16:02:57 +08002605 if (!fe->cpu_dai->driver->playback.channels_min
2606 || !fe->codec_dai->driver->playback.channels_min)
2607 goto capture;
2608
2609 /* skip if FE isn't currently playing */
2610 if (!fe->cpu_dai->playback_active
2611 || !fe->codec_dai->playback_active)
Liam Girdwood618dae12012-04-25 12:12:51 +01002612 goto capture;
2613
2614 paths = dpcm_path_get(fe, SNDRV_PCM_STREAM_PLAYBACK, &list);
2615 if (paths < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002616 dev_warn(fe->dev, "ASoC: %s no valid %s path\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002617 fe->dai_link->name, "playback");
2618 mutex_unlock(&card->mutex);
2619 return paths;
2620 }
2621
2622 /* update any new playback paths */
2623 new = dpcm_process_paths(fe, SNDRV_PCM_STREAM_PLAYBACK, &list, 1);
2624 if (new) {
2625 dpcm_run_new_update(fe, SNDRV_PCM_STREAM_PLAYBACK);
2626 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_PLAYBACK);
2627 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_PLAYBACK);
2628 }
2629
2630 /* update any old playback paths */
2631 old = dpcm_process_paths(fe, SNDRV_PCM_STREAM_PLAYBACK, &list, 0);
2632 if (old) {
2633 dpcm_run_old_update(fe, SNDRV_PCM_STREAM_PLAYBACK);
2634 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_PLAYBACK);
2635 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_PLAYBACK);
2636 }
2637
Qiao Zhou7ed9de72014-06-04 19:42:06 +08002638 dpcm_path_put(&list);
Liam Girdwood618dae12012-04-25 12:12:51 +01002639capture:
2640 /* skip if FE doesn't have capture capability */
Qiao Zhou075207d2014-11-17 16:02:57 +08002641 if (!fe->cpu_dai->driver->capture.channels_min
2642 || !fe->codec_dai->driver->capture.channels_min)
2643 continue;
2644
2645 /* skip if FE isn't currently capturing */
2646 if (!fe->cpu_dai->capture_active
2647 || !fe->codec_dai->capture_active)
Liam Girdwood618dae12012-04-25 12:12:51 +01002648 continue;
2649
2650 paths = dpcm_path_get(fe, SNDRV_PCM_STREAM_CAPTURE, &list);
2651 if (paths < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002652 dev_warn(fe->dev, "ASoC: %s no valid %s path\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002653 fe->dai_link->name, "capture");
2654 mutex_unlock(&card->mutex);
2655 return paths;
2656 }
2657
2658 /* update any new capture paths */
2659 new = dpcm_process_paths(fe, SNDRV_PCM_STREAM_CAPTURE, &list, 1);
2660 if (new) {
2661 dpcm_run_new_update(fe, SNDRV_PCM_STREAM_CAPTURE);
2662 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_CAPTURE);
2663 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_CAPTURE);
2664 }
2665
2666 /* update any old capture paths */
2667 old = dpcm_process_paths(fe, SNDRV_PCM_STREAM_CAPTURE, &list, 0);
2668 if (old) {
2669 dpcm_run_old_update(fe, SNDRV_PCM_STREAM_CAPTURE);
2670 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_CAPTURE);
2671 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_CAPTURE);
2672 }
2673
2674 dpcm_path_put(&list);
2675 }
2676
2677 mutex_unlock(&card->mutex);
2678 return 0;
2679}
Liam Girdwood01d75842012-04-25 12:12:49 +01002680int soc_dpcm_be_digital_mute(struct snd_soc_pcm_runtime *fe, int mute)
2681{
2682 struct snd_soc_dpcm *dpcm;
2683 struct list_head *clients =
2684 &fe->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients;
2685
2686 list_for_each_entry(dpcm, clients, list_be) {
2687
2688 struct snd_soc_pcm_runtime *be = dpcm->be;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002689 int i;
Liam Girdwood01d75842012-04-25 12:12:49 +01002690
2691 if (be->dai_link->ignore_suspend)
2692 continue;
2693
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002694 for (i = 0; i < be->num_codecs; i++) {
2695 struct snd_soc_dai *dai = be->codec_dais[i];
2696 struct snd_soc_dai_driver *drv = dai->driver;
Liam Girdwood01d75842012-04-25 12:12:49 +01002697
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002698 dev_dbg(be->dev, "ASoC: BE digital mute %s\n",
2699 be->dai_link->name);
2700
2701 if (drv->ops && drv->ops->digital_mute &&
2702 dai->playback_active)
2703 drv->ops->digital_mute(dai, mute);
2704 }
Liam Girdwood01d75842012-04-25 12:12:49 +01002705 }
2706
2707 return 0;
2708}
2709
Mark Brown45c0a182012-05-09 21:46:27 +01002710static int dpcm_fe_dai_open(struct snd_pcm_substream *fe_substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002711{
2712 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
2713 struct snd_soc_dpcm *dpcm;
2714 struct snd_soc_dapm_widget_list *list;
2715 int ret;
2716 int stream = fe_substream->stream;
2717
2718 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2719 fe->dpcm[stream].runtime = fe_substream->runtime;
2720
Qiao Zhou8f70e512014-09-10 17:54:07 +08002721 ret = dpcm_path_get(fe, stream, &list);
2722 if (ret < 0) {
2723 mutex_unlock(&fe->card->mutex);
2724 return ret;
2725 } else if (ret == 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002726 dev_dbg(fe->dev, "ASoC: %s no valid %s route\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002727 fe->dai_link->name, stream ? "capture" : "playback");
Liam Girdwood01d75842012-04-25 12:12:49 +01002728 }
2729
2730 /* calculate valid and active FE <-> BE dpcms */
2731 dpcm_process_paths(fe, stream, &list, 1);
2732
2733 ret = dpcm_fe_dai_startup(fe_substream);
2734 if (ret < 0) {
2735 /* clean up all links */
2736 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
2737 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2738
2739 dpcm_be_disconnect(fe, stream);
2740 fe->dpcm[stream].runtime = NULL;
2741 }
2742
2743 dpcm_clear_pending_state(fe, stream);
2744 dpcm_path_put(&list);
2745 mutex_unlock(&fe->card->mutex);
2746 return ret;
2747}
2748
Mark Brown45c0a182012-05-09 21:46:27 +01002749static int dpcm_fe_dai_close(struct snd_pcm_substream *fe_substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002750{
2751 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
2752 struct snd_soc_dpcm *dpcm;
2753 int stream = fe_substream->stream, ret;
2754
2755 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2756 ret = dpcm_fe_dai_shutdown(fe_substream);
2757
2758 /* mark FE's links ready to prune */
2759 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
2760 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2761
2762 dpcm_be_disconnect(fe, stream);
2763
2764 fe->dpcm[stream].runtime = NULL;
2765 mutex_unlock(&fe->card->mutex);
2766 return ret;
2767}
2768
Liam Girdwoodddee6272011-06-09 14:45:53 +01002769/* create a new pcm */
2770int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
2771{
Liam Girdwoodddee6272011-06-09 14:45:53 +01002772 struct snd_soc_platform *platform = rtd->platform;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002773 struct snd_soc_dai *codec_dai;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002774 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2775 struct snd_pcm *pcm;
Banajit Goswami7ffe84e2017-01-10 17:28:14 -08002776 struct snd_pcm_str *stream;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002777 char new_name[64];
2778 int ret = 0, playback = 0, capture = 0;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002779 int i;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002780
Liam Girdwood01d75842012-04-25 12:12:49 +01002781 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm) {
Liam Girdwood1e9de422014-01-07 17:51:42 +00002782 playback = rtd->dai_link->dpcm_playback;
2783 capture = rtd->dai_link->dpcm_capture;
Liam Girdwood01d75842012-04-25 12:12:49 +01002784 } else {
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002785 for (i = 0; i < rtd->num_codecs; i++) {
2786 codec_dai = rtd->codec_dais[i];
2787 if (codec_dai->driver->playback.channels_min)
2788 playback = 1;
2789 if (codec_dai->driver->capture.channels_min)
2790 capture = 1;
2791 }
2792
2793 capture = capture && cpu_dai->driver->capture.channels_min;
2794 playback = playback && cpu_dai->driver->playback.channels_min;
Liam Girdwood01d75842012-04-25 12:12:49 +01002795 }
Sangsu Parka5002312012-01-02 17:15:10 +09002796
Fabio Estevamd6bead02013-08-29 10:32:13 -03002797 if (rtd->dai_link->playback_only) {
2798 playback = 1;
2799 capture = 0;
2800 }
2801
2802 if (rtd->dai_link->capture_only) {
2803 playback = 0;
2804 capture = 1;
2805 }
2806
Liam Girdwood01d75842012-04-25 12:12:49 +01002807 /* create the PCM */
2808 if (rtd->dai_link->no_pcm) {
2809 snprintf(new_name, sizeof(new_name), "(%s)",
2810 rtd->dai_link->stream_name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002811
Liam Girdwood01d75842012-04-25 12:12:49 +01002812 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
2813 playback, capture, &pcm);
2814 } else {
2815 if (rtd->dai_link->dynamic)
2816 snprintf(new_name, sizeof(new_name), "%s (*)",
2817 rtd->dai_link->stream_name);
2818 else
2819 snprintf(new_name, sizeof(new_name), "%s %s-%d",
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002820 rtd->dai_link->stream_name,
2821 (rtd->num_codecs > 1) ?
2822 "multicodec" : rtd->codec_dai->name, num);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002823
Liam Girdwood01d75842012-04-25 12:12:49 +01002824 ret = snd_pcm_new(rtd->card->snd_card, new_name, num, playback,
2825 capture, &pcm);
2826 }
Liam Girdwoodddee6272011-06-09 14:45:53 +01002827 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002828 dev_err(rtd->card->dev, "ASoC: can't create pcm for %s\n",
Liam Girdwood5cb9b742012-07-06 16:54:52 +01002829 rtd->dai_link->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002830 return ret;
2831 }
Liam Girdwood103d84a2012-11-19 14:39:15 +00002832 dev_dbg(rtd->card->dev, "ASoC: registered pcm #%d %s\n",num, new_name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002833
2834 /* DAPM dai link stream work */
2835 INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work);
2836
Vinod Koul48c76992015-02-12 09:59:53 +05302837 pcm->nonatomic = rtd->dai_link->nonatomic;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002838 rtd->pcm = pcm;
2839 pcm->private_data = rtd;
Liam Girdwood01d75842012-04-25 12:12:49 +01002840
2841 if (rtd->dai_link->no_pcm) {
2842 if (playback)
2843 pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd;
2844 if (capture)
2845 pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd;
Banajit Goswamia19486b2016-11-21 17:54:51 -08002846 if (platform->driver->pcm_new)
2847 rtd->platform->driver->pcm_new(rtd);
Liam Girdwood01d75842012-04-25 12:12:49 +01002848 goto out;
2849 }
2850
Liam Girdwoodf5b50e72017-01-10 17:10:17 -08002851 /* setup any hostless PCMs - i.e. no host IO is performed */
2852 if (rtd->dai_link->no_host_mode) {
Banajit Goswami7ffe84e2017-01-10 17:28:14 -08002853 if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
2854 stream = &pcm->streams[SNDRV_PCM_STREAM_PLAYBACK];
2855 stream->substream->hw_no_buffer = 1;
2856 snd_soc_set_runtime_hwparams(stream->substream,
2857 &no_host_hardware);
2858 }
2859 if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) {
2860 stream = &pcm->streams[SNDRV_PCM_STREAM_CAPTURE];
2861 stream->substream->hw_no_buffer = 1;
2862 snd_soc_set_runtime_hwparams(stream->substream,
2863 &no_host_hardware);
2864 }
Liam Girdwoodf5b50e72017-01-10 17:10:17 -08002865 }
2866
Liam Girdwood01d75842012-04-25 12:12:49 +01002867 /* ASoC PCM operations */
2868 if (rtd->dai_link->dynamic) {
2869 rtd->ops.open = dpcm_fe_dai_open;
2870 rtd->ops.hw_params = dpcm_fe_dai_hw_params;
2871 rtd->ops.prepare = dpcm_fe_dai_prepare;
2872 rtd->ops.trigger = dpcm_fe_dai_trigger;
2873 rtd->ops.hw_free = dpcm_fe_dai_hw_free;
2874 rtd->ops.close = dpcm_fe_dai_close;
2875 rtd->ops.pointer = soc_pcm_pointer;
Kenneth Westfieldd6f99fa2015-05-19 12:03:55 -07002876 rtd->ops.delay_blk = soc_pcm_delay_blk;
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01002877 rtd->ops.ioctl = soc_pcm_ioctl;
Gopikrishnaiah Anandbdc375e2014-05-30 11:29:56 -07002878 rtd->ops.compat_ioctl = soc_pcm_compat_ioctl;
Liam Girdwood01d75842012-04-25 12:12:49 +01002879 } else {
2880 rtd->ops.open = soc_pcm_open;
2881 rtd->ops.hw_params = soc_pcm_hw_params;
2882 rtd->ops.prepare = soc_pcm_prepare;
2883 rtd->ops.trigger = soc_pcm_trigger;
2884 rtd->ops.hw_free = soc_pcm_hw_free;
2885 rtd->ops.close = soc_pcm_close;
2886 rtd->ops.pointer = soc_pcm_pointer;
Kenneth Westfieldd6f99fa2015-05-19 12:03:55 -07002887 rtd->ops.delay_blk = soc_pcm_delay_blk;
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01002888 rtd->ops.ioctl = soc_pcm_ioctl;
Gopikrishnaiah Anandbdc375e2014-05-30 11:29:56 -07002889 rtd->ops.compat_ioctl = soc_pcm_compat_ioctl;
Liam Girdwood01d75842012-04-25 12:12:49 +01002890 }
2891
Liam Girdwoodddee6272011-06-09 14:45:53 +01002892 if (platform->driver->ops) {
Liam Girdwood01d75842012-04-25 12:12:49 +01002893 rtd->ops.ack = platform->driver->ops->ack;
2894 rtd->ops.copy = platform->driver->ops->copy;
2895 rtd->ops.silence = platform->driver->ops->silence;
2896 rtd->ops.page = platform->driver->ops->page;
2897 rtd->ops.mmap = platform->driver->ops->mmap;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002898 }
2899
2900 if (playback)
Liam Girdwood01d75842012-04-25 12:12:49 +01002901 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &rtd->ops);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002902
2903 if (capture)
Liam Girdwood01d75842012-04-25 12:12:49 +01002904 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &rtd->ops);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002905
2906 if (platform->driver->pcm_new) {
2907 ret = platform->driver->pcm_new(rtd);
2908 if (ret < 0) {
Mark Brownb1bc7b32012-09-26 14:25:17 +01002909 dev_err(platform->dev,
2910 "ASoC: pcm constructor failed: %d\n",
2911 ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002912 return ret;
2913 }
2914 }
2915
2916 pcm->private_free = platform->driver->pcm_free;
Liam Girdwood01d75842012-04-25 12:12:49 +01002917out:
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002918 dev_info(rtd->card->dev, "%s <-> %s mapping ok\n",
2919 (rtd->num_codecs > 1) ? "multicodec" : rtd->codec_dai->name,
2920 cpu_dai->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002921 return ret;
2922}
Liam Girdwood01d75842012-04-25 12:12:49 +01002923
2924/* is the current PCM operation for this FE ? */
2925int snd_soc_dpcm_fe_can_update(struct snd_soc_pcm_runtime *fe, int stream)
2926{
2927 if (fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE)
2928 return 1;
2929 return 0;
2930}
2931EXPORT_SYMBOL_GPL(snd_soc_dpcm_fe_can_update);
2932
2933/* is the current PCM operation for this BE ? */
2934int snd_soc_dpcm_be_can_update(struct snd_soc_pcm_runtime *fe,
2935 struct snd_soc_pcm_runtime *be, int stream)
2936{
2937 if ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE) ||
2938 ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_BE) &&
2939 be->dpcm[stream].runtime_update))
2940 return 1;
2941 return 0;
2942}
2943EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_can_update);
2944
2945/* get the substream for this BE */
2946struct snd_pcm_substream *
2947 snd_soc_dpcm_get_substream(struct snd_soc_pcm_runtime *be, int stream)
2948{
2949 return be->pcm->streams[stream].substream;
2950}
2951EXPORT_SYMBOL_GPL(snd_soc_dpcm_get_substream);
2952
2953/* get the BE runtime state */
2954enum snd_soc_dpcm_state
2955 snd_soc_dpcm_be_get_state(struct snd_soc_pcm_runtime *be, int stream)
2956{
2957 return be->dpcm[stream].state;
2958}
2959EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_get_state);
2960
2961/* set the BE runtime state */
2962void snd_soc_dpcm_be_set_state(struct snd_soc_pcm_runtime *be,
2963 int stream, enum snd_soc_dpcm_state state)
2964{
2965 be->dpcm[stream].state = state;
2966}
2967EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_set_state);
2968
2969/*
2970 * We can only hw_free, stop, pause or suspend a BE DAI if any of it's FE
2971 * are not running, paused or suspended for the specified stream direction.
2972 */
2973int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime *fe,
2974 struct snd_soc_pcm_runtime *be, int stream)
2975{
2976 struct snd_soc_dpcm *dpcm;
2977 int state;
2978
2979 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
2980
2981 if (dpcm->fe == fe)
2982 continue;
2983
2984 state = dpcm->fe->dpcm[stream].state;
2985 if (state == SND_SOC_DPCM_STATE_START ||
2986 state == SND_SOC_DPCM_STATE_PAUSED ||
2987 state == SND_SOC_DPCM_STATE_SUSPEND)
2988 return 0;
2989 }
2990
2991 /* it's safe to free/stop this BE DAI */
2992 return 1;
2993}
2994EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_free_stop);
2995
2996/*
2997 * We can only change hw params a BE DAI if any of it's FE are not prepared,
2998 * running, paused or suspended for the specified stream direction.
2999 */
3000int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime *fe,
3001 struct snd_soc_pcm_runtime *be, int stream)
3002{
3003 struct snd_soc_dpcm *dpcm;
3004 int state;
3005
3006 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
3007
3008 if (dpcm->fe == fe)
3009 continue;
3010
3011 state = dpcm->fe->dpcm[stream].state;
3012 if (state == SND_SOC_DPCM_STATE_START ||
3013 state == SND_SOC_DPCM_STATE_PAUSED ||
3014 state == SND_SOC_DPCM_STATE_SUSPEND ||
3015 state == SND_SOC_DPCM_STATE_PREPARE)
3016 return 0;
3017 }
3018
3019 /* it's safe to change hw_params */
3020 return 1;
3021}
3022EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_params);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003023
Liam Girdwood07bf84a2012-04-25 12:12:52 +01003024int snd_soc_platform_trigger(struct snd_pcm_substream *substream,
3025 int cmd, struct snd_soc_platform *platform)
3026{
Mark Brownc5914b02013-10-30 17:47:39 -07003027 if (platform->driver->ops && platform->driver->ops->trigger)
Liam Girdwood07bf84a2012-04-25 12:12:52 +01003028 return platform->driver->ops->trigger(substream, cmd);
3029 return 0;
3030}
3031EXPORT_SYMBOL_GPL(snd_soc_platform_trigger);
3032
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003033#ifdef CONFIG_DEBUG_FS
3034static char *dpcm_state_string(enum snd_soc_dpcm_state state)
3035{
3036 switch (state) {
3037 case SND_SOC_DPCM_STATE_NEW:
3038 return "new";
3039 case SND_SOC_DPCM_STATE_OPEN:
3040 return "open";
3041 case SND_SOC_DPCM_STATE_HW_PARAMS:
3042 return "hw_params";
3043 case SND_SOC_DPCM_STATE_PREPARE:
3044 return "prepare";
3045 case SND_SOC_DPCM_STATE_START:
3046 return "start";
3047 case SND_SOC_DPCM_STATE_STOP:
3048 return "stop";
3049 case SND_SOC_DPCM_STATE_SUSPEND:
3050 return "suspend";
3051 case SND_SOC_DPCM_STATE_PAUSED:
3052 return "paused";
3053 case SND_SOC_DPCM_STATE_HW_FREE:
3054 return "hw_free";
3055 case SND_SOC_DPCM_STATE_CLOSE:
3056 return "close";
3057 }
3058
3059 return "unknown";
3060}
3061
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003062static ssize_t dpcm_show_state(struct snd_soc_pcm_runtime *fe,
3063 int stream, char *buf, size_t size)
3064{
3065 struct snd_pcm_hw_params *params = &fe->dpcm[stream].hw_params;
3066 struct snd_soc_dpcm *dpcm;
3067 ssize_t offset = 0;
3068
3069 /* FE state */
3070 offset += snprintf(buf + offset, size - offset,
3071 "[%s - %s]\n", fe->dai_link->name,
3072 stream ? "Capture" : "Playback");
3073
3074 offset += snprintf(buf + offset, size - offset, "State: %s\n",
3075 dpcm_state_string(fe->dpcm[stream].state));
3076
3077 if ((fe->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
3078 (fe->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
3079 offset += snprintf(buf + offset, size - offset,
3080 "Hardware Params: "
3081 "Format = %s, Channels = %d, Rate = %d\n",
3082 snd_pcm_format_name(params_format(params)),
3083 params_channels(params),
3084 params_rate(params));
3085
3086 /* BEs state */
3087 offset += snprintf(buf + offset, size - offset, "Backends:\n");
3088
3089 if (list_empty(&fe->dpcm[stream].be_clients)) {
3090 offset += snprintf(buf + offset, size - offset,
3091 " No active DSP links\n");
3092 goto out;
3093 }
3094
3095 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
3096 struct snd_soc_pcm_runtime *be = dpcm->be;
3097 params = &dpcm->hw_params;
3098
3099 offset += snprintf(buf + offset, size - offset,
3100 "- %s\n", be->dai_link->name);
3101
3102 offset += snprintf(buf + offset, size - offset,
3103 " State: %s\n",
3104 dpcm_state_string(be->dpcm[stream].state));
3105
3106 if ((be->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
3107 (be->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
3108 offset += snprintf(buf + offset, size - offset,
3109 " Hardware Params: "
3110 "Format = %s, Channels = %d, Rate = %d\n",
3111 snd_pcm_format_name(params_format(params)),
3112 params_channels(params),
3113 params_rate(params));
3114 }
3115
3116out:
3117 return offset;
3118}
3119
3120static ssize_t dpcm_state_read_file(struct file *file, char __user *user_buf,
3121 size_t count, loff_t *ppos)
3122{
3123 struct snd_soc_pcm_runtime *fe = file->private_data;
3124 ssize_t out_count = PAGE_SIZE, offset = 0, ret = 0;
3125 char *buf;
3126
3127 buf = kmalloc(out_count, GFP_KERNEL);
3128 if (!buf)
3129 return -ENOMEM;
3130
3131 if (fe->cpu_dai->driver->playback.channels_min)
3132 offset += dpcm_show_state(fe, SNDRV_PCM_STREAM_PLAYBACK,
3133 buf + offset, out_count - offset);
3134
3135 if (fe->cpu_dai->driver->capture.channels_min)
3136 offset += dpcm_show_state(fe, SNDRV_PCM_STREAM_CAPTURE,
3137 buf + offset, out_count - offset);
3138
Liam Girdwoodf57b8482012-04-27 11:33:46 +01003139 ret = simple_read_from_buffer(user_buf, count, ppos, buf, offset);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003140
Liam Girdwoodf57b8482012-04-27 11:33:46 +01003141 kfree(buf);
3142 return ret;
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003143}
3144
3145static const struct file_operations dpcm_state_fops = {
Liam Girdwoodf57b8482012-04-27 11:33:46 +01003146 .open = simple_open,
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003147 .read = dpcm_state_read_file,
3148 .llseek = default_llseek,
3149};
3150
Lars-Peter Clausen2e55b902015-04-09 10:52:37 +02003151void soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime *rtd)
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003152{
Mark Brownb3bba9a2012-05-08 10:33:47 +01003153 if (!rtd->dai_link)
Lars-Peter Clausen2e55b902015-04-09 10:52:37 +02003154 return;
Mark Brownb3bba9a2012-05-08 10:33:47 +01003155
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02003156 if (!rtd->card->debugfs_card_root)
3157 return;
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003158
3159 rtd->debugfs_dpcm_root = debugfs_create_dir(rtd->dai_link->name,
3160 rtd->card->debugfs_card_root);
3161 if (!rtd->debugfs_dpcm_root) {
3162 dev_dbg(rtd->dev,
3163 "ASoC: Failed to create dpcm debugfs directory %s\n",
3164 rtd->dai_link->name);
Lars-Peter Clausen2e55b902015-04-09 10:52:37 +02003165 return;
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003166 }
3167
Liam Girdwoodf57b8482012-04-27 11:33:46 +01003168 rtd->debugfs_dpcm_state = debugfs_create_file("state", 0444,
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003169 rtd->debugfs_dpcm_root,
3170 rtd, &dpcm_state_fops);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003171}
3172#endif