blob: 008cf28a00d477ab502b444a7ca0e63515c5b026 [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
Banajit Goswami8886fb02016-11-21 21:39:54 -08002011int dpcm_fe_dai_hw_params_be(struct snd_soc_pcm_runtime *fe,
2012 struct snd_soc_pcm_runtime *be,
2013 struct snd_pcm_hw_params *params, int stream)
2014{
2015 int ret;
2016 struct snd_soc_dpcm *dpcm;
2017 struct snd_pcm_substream *be_substream =
2018 snd_soc_dpcm_get_substream(be, stream);
2019
2020 /* is this op for this BE ? */
2021 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2022 return 0;
2023
2024 /* only allow hw_params() if no connected FEs are running */
2025 if (!snd_soc_dpcm_can_be_params(fe, be, stream))
2026 return 0;
2027
2028 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
2029 (be->dpcm[stream].state !=
2030 SND_SOC_DPCM_STATE_HW_PARAMS) &&
2031 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE))
2032 return 0;
2033
2034 dev_dbg(be->dev, "ASoC: hw_params BE %s\n",
2035 fe->dai_link->name);
2036
2037 /* perform any hw_params fixups */
2038 if (be->dai_link->be_hw_params_fixup) {
2039 ret = be->dai_link->be_hw_params_fixup(be,
2040 params);
2041 if (ret < 0) {
2042 dev_err(be->dev,
2043 "ASoC: hw_params BE fixup failed %d\n",
2044 ret);
2045 goto unwind;
2046 }
2047 }
2048
2049 ret = soc_pcm_hw_params(be_substream, params);
2050 if (ret < 0) {
2051 dev_err(be->dev, "ASoC: hw_params BE failed %d\n", ret);
2052 goto unwind;
2053 }
2054
2055 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
2056 return 0;
2057
2058unwind:
2059 /* disable any enabled and non active backends */
2060 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2061 struct snd_soc_pcm_runtime *be = dpcm->be;
2062 struct snd_pcm_substream *be_substream =
2063 snd_soc_dpcm_get_substream(be, stream);
2064
2065 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2066 continue;
2067
2068 /* only allow hw_free() if no connected FEs are running */
2069 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2070 continue;
2071
2072 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
2073 (be->dpcm[stream].state
2074 != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2075 (be->dpcm[stream].state
2076 != SND_SOC_DPCM_STATE_HW_FREE) &&
2077 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
2078 continue;
2079
2080 soc_pcm_hw_free(be_substream);
2081 }
2082
2083 return ret;
2084}
2085
Liam Girdwood23607022014-01-17 17:03:55 +00002086int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002087{
2088 struct snd_soc_dpcm *dpcm;
2089 int ret;
2090
2091 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2092
2093 struct snd_soc_pcm_runtime *be = dpcm->be;
2094 struct snd_pcm_substream *be_substream =
2095 snd_soc_dpcm_get_substream(be, stream);
2096
2097 /* is this op for this BE ? */
2098 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2099 continue;
2100
Liam Girdwood01d75842012-04-25 12:12:49 +01002101 /* copy params for each dpcm */
2102 memcpy(&dpcm->hw_params, &fe->dpcm[stream].hw_params,
2103 sizeof(struct snd_pcm_hw_params));
2104
2105 /* perform any hw_params fixups */
2106 if (be->dai_link->be_hw_params_fixup) {
2107 ret = be->dai_link->be_hw_params_fixup(be,
2108 &dpcm->hw_params);
2109 if (ret < 0) {
2110 dev_err(be->dev,
Liam Girdwood103d84a2012-11-19 14:39:15 +00002111 "ASoC: hw_params BE fixup failed %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002112 ret);
2113 goto unwind;
2114 }
2115 }
2116
Kuninori Morimotob0639bd2016-01-21 01:47:12 +00002117 /* only allow hw_params() if no connected FEs are running */
2118 if (!snd_soc_dpcm_can_be_params(fe, be, stream))
2119 continue;
2120
2121 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
2122 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2123 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE))
2124 continue;
2125
2126 dev_dbg(be->dev, "ASoC: hw_params BE %s\n",
彭东林94d215c2016-09-26 08:29:31 +00002127 be->dai_link->name);
Kuninori Morimotob0639bd2016-01-21 01:47:12 +00002128
Liam Girdwood01d75842012-04-25 12:12:49 +01002129 ret = soc_pcm_hw_params(be_substream, &dpcm->hw_params);
2130 if (ret < 0) {
2131 dev_err(dpcm->be->dev,
Liam Girdwood103d84a2012-11-19 14:39:15 +00002132 "ASoC: hw_params BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002133 goto unwind;
2134 }
2135
2136 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
2137 }
2138 return 0;
2139
2140unwind:
2141 /* disable any enabled and non active backends */
2142 list_for_each_entry_continue_reverse(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2143 struct snd_soc_pcm_runtime *be = dpcm->be;
2144 struct snd_pcm_substream *be_substream =
2145 snd_soc_dpcm_get_substream(be, stream);
2146
2147 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2148 continue;
2149
2150 /* only allow hw_free() if no connected FEs are running */
2151 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2152 continue;
2153
2154 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
2155 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2156 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
2157 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
2158 continue;
2159
2160 soc_pcm_hw_free(be_substream);
2161 }
2162
2163 return ret;
2164}
2165
Mark Brown45c0a182012-05-09 21:46:27 +01002166static int dpcm_fe_dai_hw_params(struct snd_pcm_substream *substream,
2167 struct snd_pcm_hw_params *params)
Liam Girdwood01d75842012-04-25 12:12:49 +01002168{
2169 struct snd_soc_pcm_runtime *fe = substream->private_data;
2170 int ret, stream = substream->stream;
2171
2172 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002173 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01002174
2175 memcpy(&fe->dpcm[substream->stream].hw_params, params,
2176 sizeof(struct snd_pcm_hw_params));
2177 ret = dpcm_be_dai_hw_params(fe, substream->stream);
2178 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002179 dev_err(fe->dev,"ASoC: hw_params BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002180 goto out;
2181 }
2182
Liam Girdwood103d84a2012-11-19 14:39:15 +00002183 dev_dbg(fe->dev, "ASoC: hw_params FE %s rate %d chan %x fmt %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002184 fe->dai_link->name, params_rate(params),
2185 params_channels(params), params_format(params));
2186
2187 /* call hw_params on the frontend */
2188 ret = soc_pcm_hw_params(substream, params);
2189 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002190 dev_err(fe->dev,"ASoC: hw_params FE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002191 dpcm_be_dai_hw_free(fe, stream);
2192 } else
2193 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
2194
2195out:
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002196 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01002197 mutex_unlock(&fe->card->mutex);
2198 return ret;
2199}
2200
2201static int dpcm_do_trigger(struct snd_soc_dpcm *dpcm,
2202 struct snd_pcm_substream *substream, int cmd)
2203{
2204 int ret;
2205
Liam Girdwood103d84a2012-11-19 14:39:15 +00002206 dev_dbg(dpcm->be->dev, "ASoC: trigger BE %s cmd %d\n",
彭东林94d215c2016-09-26 08:29:31 +00002207 dpcm->be->dai_link->name, cmd);
Liam Girdwood01d75842012-04-25 12:12:49 +01002208
2209 ret = soc_pcm_trigger(substream, cmd);
2210 if (ret < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002211 dev_err(dpcm->be->dev,"ASoC: trigger BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002212
2213 return ret;
2214}
2215
Liam Girdwood23607022014-01-17 17:03:55 +00002216int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime *fe, int stream,
Mark Brown45c0a182012-05-09 21:46:27 +01002217 int cmd)
Liam Girdwood01d75842012-04-25 12:12:49 +01002218{
2219 struct snd_soc_dpcm *dpcm;
2220 int ret = 0;
2221
2222 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2223
2224 struct snd_soc_pcm_runtime *be = dpcm->be;
2225 struct snd_pcm_substream *be_substream =
2226 snd_soc_dpcm_get_substream(be, stream);
2227
2228 /* is this op for this BE ? */
2229 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2230 continue;
2231
2232 switch (cmd) {
2233 case SNDRV_PCM_TRIGGER_START:
2234 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
2235 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
2236 continue;
2237
2238 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2239 if (ret)
2240 return ret;
2241
2242 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2243 break;
2244 case SNDRV_PCM_TRIGGER_RESUME:
2245 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
2246 continue;
2247
2248 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2249 if (ret)
2250 return ret;
2251
2252 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2253 break;
2254 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2255 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
2256 continue;
2257
2258 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2259 if (ret)
2260 return ret;
2261
2262 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2263 break;
2264 case SNDRV_PCM_TRIGGER_STOP:
2265 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2266 continue;
2267
2268 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2269 continue;
2270
2271 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2272 if (ret)
2273 return ret;
2274
2275 be->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
2276 break;
2277 case SNDRV_PCM_TRIGGER_SUSPEND:
Nicolin Chen868a6ca2014-05-12 20:12:05 +08002278 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
Liam Girdwood01d75842012-04-25 12:12:49 +01002279 continue;
2280
2281 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2282 continue;
2283
2284 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2285 if (ret)
2286 return ret;
2287
2288 be->dpcm[stream].state = SND_SOC_DPCM_STATE_SUSPEND;
2289 break;
2290 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2291 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2292 continue;
2293
2294 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
2295 continue;
2296
2297 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
2298 if (ret)
2299 return ret;
2300
2301 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2302 break;
2303 }
2304 }
2305
2306 return ret;
2307}
2308EXPORT_SYMBOL_GPL(dpcm_be_dai_trigger);
2309
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002310static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd)
Liam Girdwood01d75842012-04-25 12:12:49 +01002311{
2312 struct snd_soc_pcm_runtime *fe = substream->private_data;
2313 int stream = substream->stream, ret;
2314 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
2315
2316 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
2317
2318 switch (trigger) {
2319 case SND_SOC_DPCM_TRIGGER_PRE:
2320 /* call trigger on the frontend before the backend. */
2321
Liam Girdwood103d84a2012-11-19 14:39:15 +00002322 dev_dbg(fe->dev, "ASoC: pre trigger FE %s cmd %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002323 fe->dai_link->name, cmd);
2324
2325 ret = soc_pcm_trigger(substream, cmd);
2326 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002327 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002328 goto out;
2329 }
2330
2331 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2332 break;
2333 case SND_SOC_DPCM_TRIGGER_POST:
2334 /* call trigger on the frontend after the backend. */
2335
2336 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
2337 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002338 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01002339 goto out;
2340 }
2341
Liam Girdwood103d84a2012-11-19 14:39:15 +00002342 dev_dbg(fe->dev, "ASoC: post trigger FE %s cmd %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002343 fe->dai_link->name, cmd);
2344
2345 ret = soc_pcm_trigger(substream, cmd);
2346 break;
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002347 case SND_SOC_DPCM_TRIGGER_BESPOKE:
2348 /* bespoke trigger() - handles both FE and BEs */
2349
Liam Girdwood103d84a2012-11-19 14:39:15 +00002350 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd %d\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002351 fe->dai_link->name, cmd);
2352
2353 ret = soc_pcm_bespoke_trigger(substream, cmd);
2354 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002355 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002356 goto out;
2357 }
2358 break;
Liam Girdwood01d75842012-04-25 12:12:49 +01002359 default:
Liam Girdwood103d84a2012-11-19 14:39:15 +00002360 dev_err(fe->dev, "ASoC: invalid trigger cmd %d for %s\n", cmd,
Liam Girdwood01d75842012-04-25 12:12:49 +01002361 fe->dai_link->name);
2362 ret = -EINVAL;
2363 goto out;
2364 }
2365
2366 switch (cmd) {
2367 case SNDRV_PCM_TRIGGER_START:
2368 case SNDRV_PCM_TRIGGER_RESUME:
2369 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
2370 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
2371 break;
2372 case SNDRV_PCM_TRIGGER_STOP:
2373 case SNDRV_PCM_TRIGGER_SUSPEND:
Liam Girdwood01d75842012-04-25 12:12:49 +01002374 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
2375 break;
Banajit Goswami6175bce2013-02-14 18:24:08 -08002376 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
2377 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
2378 break;
Liam Girdwood01d75842012-04-25 12:12:49 +01002379 }
2380
2381out:
2382 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
2383 return ret;
2384}
2385
Banajit Goswami8886fb02016-11-21 21:39:54 -08002386int dpcm_fe_dai_prepare_be(struct snd_soc_pcm_runtime *fe,
2387 struct snd_soc_pcm_runtime *be, int stream)
2388{
2389 struct snd_pcm_substream *be_substream =
2390 snd_soc_dpcm_get_substream(be, stream);
2391 int ret = 0;
2392
2393 /* is this op for this BE ? */
2394 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2395 return 0;
2396
2397 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2398 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
2399 return 0;
2400
2401 dev_dbg(be->dev, "ASoC: prepare BE %s\n",
2402 fe->dai_link->name);
2403
2404 ret = soc_pcm_prepare(be_substream);
2405 if (ret < 0) {
2406 dev_err(be->dev, "ASoC: backend prepare failed %d\n",
2407 ret);
2408 return ret;
2409 }
2410
2411 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2412 return ret;
2413}
2414
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002415static int dpcm_fe_dai_trigger(struct snd_pcm_substream *substream, int cmd)
2416{
2417 struct snd_soc_pcm_runtime *fe = substream->private_data;
2418 int stream = substream->stream;
2419
2420 /* if FE's runtime_update is already set, we're in race;
2421 * process this trigger later at exit
2422 */
2423 if (fe->dpcm[stream].runtime_update != SND_SOC_DPCM_UPDATE_NO) {
2424 fe->dpcm[stream].trigger_pending = cmd + 1;
2425 return 0; /* delayed, assuming it's successful */
2426 }
2427
2428 /* we're alone, let's trigger */
2429 return dpcm_fe_dai_do_trigger(substream, cmd);
2430}
2431
Liam Girdwood23607022014-01-17 17:03:55 +00002432int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002433{
2434 struct snd_soc_dpcm *dpcm;
2435 int ret = 0;
2436
2437 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2438
2439 struct snd_soc_pcm_runtime *be = dpcm->be;
2440 struct snd_pcm_substream *be_substream =
2441 snd_soc_dpcm_get_substream(be, stream);
2442
2443 /* is this op for this BE ? */
2444 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2445 continue;
2446
2447 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
Koro Chen95f444d2015-10-28 10:15:34 +08002448 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) &&
2449 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
Liam Girdwood01d75842012-04-25 12:12:49 +01002450 continue;
2451
Liam Girdwood103d84a2012-11-19 14:39:15 +00002452 dev_dbg(be->dev, "ASoC: prepare BE %s\n",
彭东林94d215c2016-09-26 08:29:31 +00002453 be->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01002454
2455 ret = soc_pcm_prepare(be_substream);
2456 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002457 dev_err(be->dev, "ASoC: backend prepare failed %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002458 ret);
2459 break;
2460 }
2461
2462 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2463 }
2464 return ret;
2465}
2466
Banajit Goswami8886fb02016-11-21 21:39:54 -08002467static void dpcm_be_async_prepare(void *data, async_cookie_t cookie)
2468{
2469 struct snd_soc_dpcm *dpcm = data;
2470 struct snd_soc_pcm_runtime *be = dpcm->be;
2471 int stream = dpcm->stream;
2472 struct snd_pcm_substream *be_substream =
2473 snd_soc_dpcm_get_substream(be, stream);
2474 int ret;
2475
2476 dev_dbg(be->dev, "%s ASoC: prepare BE %s\n", __func__,
2477 dpcm->fe->dai_link->name);
2478 ret = soc_pcm_prepare(be_substream);
2479 if (ret < 0) {
2480 be->err_ops = ret;
2481 dev_err(be->dev, "ASoC: backend prepare failed %d\n",
2482 ret);
2483 return;
2484 }
2485 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2486}
2487
2488void dpcm_be_dai_prepare_async(struct snd_soc_pcm_runtime *fe, int stream,
2489 struct async_domain *domain)
2490{
2491 struct snd_soc_dpcm *dpcm;
2492 struct snd_soc_dpcm *dpcm_async[DPCM_MAX_BE_USERS];
2493 int i = 0, j;
2494
2495 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2496 struct snd_soc_pcm_runtime *be = dpcm->be;
2497
2498 be->err_ops = 0;
2499 /* is this op for this BE ? */
2500 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
2501 continue;
2502
2503 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
2504 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
2505 continue;
2506
2507 /* does this BE support async op ?*/
2508 if ((fe->dai_link->async_ops & ASYNC_DPCM_SND_SOC_PREPARE) &&
2509 (be->dai_link->async_ops & ASYNC_DPCM_SND_SOC_PREPARE)) {
2510 dpcm->stream = stream;
2511 async_schedule_domain(dpcm_be_async_prepare,
2512 dpcm, domain);
2513 } else {
2514 dpcm_async[i++] = dpcm;
2515 }
2516 }
2517
2518 for (j = 0; j < i; j++) {
2519 struct snd_soc_dpcm *dpcm = dpcm_async[j];
2520 struct snd_soc_pcm_runtime *be = dpcm->be;
2521 struct snd_pcm_substream *be_substream =
2522 snd_soc_dpcm_get_substream(be, stream);
2523 int ret;
2524
2525 dev_dbg(be->dev, "ASoC: prepare BE %s\n",
2526 dpcm->fe->dai_link->name);
2527
2528 ret = soc_pcm_prepare(be_substream);
2529 if (ret < 0) {
2530 dev_err(be->dev, "ASoC: backend prepare failed %d\n",
2531 ret);
2532 be->err_ops = ret;
2533 return;
2534 }
2535
2536 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2537 }
2538}
2539
Mark Brown45c0a182012-05-09 21:46:27 +01002540static int dpcm_fe_dai_prepare(struct snd_pcm_substream *substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002541{
2542 struct snd_soc_pcm_runtime *fe = substream->private_data;
Banajit Goswami8886fb02016-11-21 21:39:54 -08002543 struct snd_soc_dpcm *dpcm;
Liam Girdwood01d75842012-04-25 12:12:49 +01002544 int stream = substream->stream, ret = 0;
Banajit Goswami8886fb02016-11-21 21:39:54 -08002545 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Liam Girdwood01d75842012-04-25 12:12:49 +01002546
2547 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2548
Banajit Goswami8886fb02016-11-21 21:39:54 -08002549 fe->err_ops = 0;
2550
Liam Girdwood103d84a2012-11-19 14:39:15 +00002551 dev_dbg(fe->dev, "ASoC: prepare FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01002552
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002553 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE);
Liam Girdwood01d75842012-04-25 12:12:49 +01002554
2555 /* there is no point preparing this FE if there are no BEs */
2556 if (list_empty(&fe->dpcm[stream].be_clients)) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002557 dev_err(fe->dev, "ASoC: no backend DAIs enabled for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002558 fe->dai_link->name);
2559 ret = -EINVAL;
2560 goto out;
2561 }
2562
Banajit Goswami8886fb02016-11-21 21:39:54 -08002563 if (!(fe->dai_link->async_ops & ASYNC_DPCM_SND_SOC_PREPARE)) {
2564 ret = dpcm_be_dai_prepare(fe, substream->stream);
2565 if (ret < 0)
2566 goto out;
2567 /* call prepare on the frontend */
2568 ret = soc_pcm_prepare(substream);
2569 if (ret < 0) {
2570 dev_err(fe->dev, "ASoC: prepare FE %s failed\n",
2571 fe->dai_link->name);
2572 goto out;
2573 }
2574 } else {
2575 dpcm_be_dai_prepare_async(fe, substream->stream,
2576 &async_domain);
Liam Girdwood01d75842012-04-25 12:12:49 +01002577
Banajit Goswami8886fb02016-11-21 21:39:54 -08002578 /* call prepare on the frontend */
2579 ret = soc_pcm_prepare(substream);
2580 if (ret < 0) {
2581 fe->err_ops = ret;
2582 dev_err(fe->dev, "ASoC: prepare FE %s failed\n",
2583 fe->dai_link->name);
2584 }
2585
2586 async_synchronize_full_domain(&async_domain);
2587
2588 /* check if any BE failed */
2589 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients,
2590 list_be) {
2591 struct snd_soc_pcm_runtime *be = dpcm->be;
2592
2593 if (be->err_ops < 0) {
2594 ret = be->err_ops;
2595 goto out;
2596 }
2597 }
2598
2599 /* check if FE failed */
2600 if (fe->err_ops < 0) {
2601 ret = fe->err_ops;
2602 goto out;
2603 }
Liam Girdwood01d75842012-04-25 12:12:49 +01002604 }
2605
2606 /* run the stream event for each BE */
2607 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_START);
2608 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
2609
2610out:
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002611 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood01d75842012-04-25 12:12:49 +01002612 mutex_unlock(&fe->card->mutex);
2613
2614 return ret;
2615}
2616
Gopikrishnaiah Anandbdc375e2014-05-30 11:29:56 -07002617static int soc_pcm_compat_ioctl(struct snd_pcm_substream *substream,
2618 unsigned int cmd, void *arg)
2619{
2620 struct snd_soc_pcm_runtime *rtd = substream->private_data;
2621 struct snd_soc_platform *platform = rtd->platform;
2622
2623 if (platform->driver->ops->compat_ioctl)
2624 return platform->driver->ops->compat_ioctl(substream,
2625 cmd, arg);
2626 return snd_pcm_lib_ioctl(substream, cmd, arg);
2627}
2628
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01002629static int soc_pcm_ioctl(struct snd_pcm_substream *substream,
2630 unsigned int cmd, void *arg)
2631{
2632 struct snd_soc_pcm_runtime *rtd = substream->private_data;
2633 struct snd_soc_platform *platform = rtd->platform;
2634
Mark Brownc5914b02013-10-30 17:47:39 -07002635 if (platform->driver->ops && platform->driver->ops->ioctl)
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01002636 return platform->driver->ops->ioctl(substream, cmd, arg);
2637 return snd_pcm_lib_ioctl(substream, cmd, arg);
2638}
2639
Liam Girdwood618dae12012-04-25 12:12:51 +01002640static int dpcm_run_update_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
2641{
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002642 struct snd_pcm_substream *substream =
2643 snd_soc_dpcm_get_substream(fe, stream);
2644 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
Liam Girdwood618dae12012-04-25 12:12:51 +01002645 int err;
Liam Girdwood01d75842012-04-25 12:12:49 +01002646
Liam Girdwood103d84a2012-11-19 14:39:15 +00002647 dev_dbg(fe->dev, "ASoC: runtime %s close on FE %s\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002648 stream ? "capture" : "playback", fe->dai_link->name);
2649
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002650 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2651 /* call bespoke trigger - FE takes care of all BE triggers */
Liam Girdwood103d84a2012-11-19 14:39:15 +00002652 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd stop\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002653 fe->dai_link->name);
2654
2655 err = soc_pcm_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_STOP);
2656 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002657 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002658 } else {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002659 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd stop\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002660 fe->dai_link->name);
2661
2662 err = dpcm_be_dai_trigger(fe, stream, SNDRV_PCM_TRIGGER_STOP);
2663 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002664 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002665 }
Liam Girdwood618dae12012-04-25 12:12:51 +01002666
2667 err = dpcm_be_dai_hw_free(fe, stream);
2668 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002669 dev_err(fe->dev,"ASoC: hw_free FE failed %d\n", err);
Liam Girdwood618dae12012-04-25 12:12:51 +01002670
2671 err = dpcm_be_dai_shutdown(fe, stream);
2672 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002673 dev_err(fe->dev,"ASoC: shutdown FE failed %d\n", err);
Liam Girdwood618dae12012-04-25 12:12:51 +01002674
2675 /* run the stream event for each BE */
2676 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2677
2678 return 0;
2679}
2680
2681static int dpcm_run_update_startup(struct snd_soc_pcm_runtime *fe, int stream)
2682{
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002683 struct snd_pcm_substream *substream =
2684 snd_soc_dpcm_get_substream(fe, stream);
Liam Girdwood618dae12012-04-25 12:12:51 +01002685 struct snd_soc_dpcm *dpcm;
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002686 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
Liam Girdwood618dae12012-04-25 12:12:51 +01002687 int ret;
2688
Liam Girdwood103d84a2012-11-19 14:39:15 +00002689 dev_dbg(fe->dev, "ASoC: runtime %s open on FE %s\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002690 stream ? "capture" : "playback", fe->dai_link->name);
2691
2692 /* Only start the BE if the FE is ready */
2693 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_FREE ||
2694 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE)
2695 return -EINVAL;
2696
2697 /* startup must always be called for new BEs */
2698 ret = dpcm_be_dai_startup(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03002699 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01002700 goto disconnect;
Liam Girdwood618dae12012-04-25 12:12:51 +01002701
2702 /* keep going if FE state is > open */
2703 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_OPEN)
2704 return 0;
2705
2706 ret = dpcm_be_dai_hw_params(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03002707 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01002708 goto close;
Liam Girdwood618dae12012-04-25 12:12:51 +01002709
2710 /* keep going if FE state is > hw_params */
2711 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_PARAMS)
2712 return 0;
2713
2714
2715 ret = dpcm_be_dai_prepare(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03002716 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01002717 goto hw_free;
Liam Girdwood618dae12012-04-25 12:12:51 +01002718
2719 /* run the stream event for each BE */
2720 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
2721
2722 /* keep going if FE state is > prepare */
2723 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_PREPARE ||
2724 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_STOP)
2725 return 0;
2726
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002727 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
2728 /* call trigger on the frontend - FE takes care of all BE triggers */
Liam Girdwood103d84a2012-11-19 14:39:15 +00002729 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd start\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002730 fe->dai_link->name);
Liam Girdwood618dae12012-04-25 12:12:51 +01002731
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002732 ret = soc_pcm_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_START);
2733 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002734 dev_err(fe->dev,"ASoC: bespoke trigger FE failed %d\n", ret);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002735 goto hw_free;
2736 }
2737 } else {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002738 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd start\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002739 fe->dai_link->name);
2740
2741 ret = dpcm_be_dai_trigger(fe, stream,
2742 SNDRV_PCM_TRIGGER_START);
2743 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002744 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002745 goto hw_free;
2746 }
Liam Girdwood618dae12012-04-25 12:12:51 +01002747 }
2748
2749 return 0;
2750
2751hw_free:
2752 dpcm_be_dai_hw_free(fe, stream);
2753close:
2754 dpcm_be_dai_shutdown(fe, stream);
2755disconnect:
2756 /* disconnect any non started BEs */
2757 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2758 struct snd_soc_pcm_runtime *be = dpcm->be;
2759 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
2760 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2761 }
2762
2763 return ret;
2764}
2765
2766static int dpcm_run_new_update(struct snd_soc_pcm_runtime *fe, int stream)
2767{
2768 int ret;
2769
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002770 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE);
Liam Girdwood618dae12012-04-25 12:12:51 +01002771 ret = dpcm_run_update_startup(fe, stream);
2772 if (ret < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002773 dev_err(fe->dev, "ASoC: failed to startup some BEs\n");
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002774 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood618dae12012-04-25 12:12:51 +01002775
2776 return ret;
2777}
2778
2779static int dpcm_run_old_update(struct snd_soc_pcm_runtime *fe, int stream)
2780{
2781 int ret;
2782
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002783 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE);
Liam Girdwood618dae12012-04-25 12:12:51 +01002784 ret = dpcm_run_update_shutdown(fe, stream);
2785 if (ret < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002786 dev_err(fe->dev, "ASoC: failed to shutdown some BEs\n");
Takashi Iwaiea9d0d72014-11-04 16:52:28 +01002787 dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO);
Liam Girdwood618dae12012-04-25 12:12:51 +01002788
2789 return ret;
2790}
2791
2792/* Called by DAPM mixer/mux changes to update audio routing between PCMs and
2793 * any DAI links.
2794 */
Lars-Peter Clausenc3f48ae2013-07-24 15:27:36 +02002795int soc_dpcm_runtime_update(struct snd_soc_card *card)
Liam Girdwood618dae12012-04-25 12:12:51 +01002796{
Mengdong Lin1a497982015-11-18 02:34:11 -05002797 struct snd_soc_pcm_runtime *fe;
2798 int old, new, paths;
Liam Girdwood618dae12012-04-25 12:12:51 +01002799
Liam Girdwood618dae12012-04-25 12:12:51 +01002800 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
Mengdong Lin1a497982015-11-18 02:34:11 -05002801 list_for_each_entry(fe, &card->rtd_list, list) {
Liam Girdwood618dae12012-04-25 12:12:51 +01002802 struct snd_soc_dapm_widget_list *list;
Liam Girdwood618dae12012-04-25 12:12:51 +01002803
2804 /* make sure link is FE */
2805 if (!fe->dai_link->dynamic)
2806 continue;
2807
2808 /* only check active links */
2809 if (!fe->cpu_dai->active)
2810 continue;
2811
2812 /* DAPM sync will call this to update DSP paths */
Liam Girdwood103d84a2012-11-19 14:39:15 +00002813 dev_dbg(fe->dev, "ASoC: DPCM runtime update for FE %s\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002814 fe->dai_link->name);
2815
2816 /* skip if FE doesn't have playback capability */
Qiao Zhou075207d2014-11-17 16:02:57 +08002817 if (!fe->cpu_dai->driver->playback.channels_min
2818 || !fe->codec_dai->driver->playback.channels_min)
2819 goto capture;
2820
2821 /* skip if FE isn't currently playing */
2822 if (!fe->cpu_dai->playback_active
2823 || !fe->codec_dai->playback_active)
Liam Girdwood618dae12012-04-25 12:12:51 +01002824 goto capture;
2825
2826 paths = dpcm_path_get(fe, SNDRV_PCM_STREAM_PLAYBACK, &list);
2827 if (paths < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002828 dev_warn(fe->dev, "ASoC: %s no valid %s path\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002829 fe->dai_link->name, "playback");
2830 mutex_unlock(&card->mutex);
2831 return paths;
2832 }
2833
2834 /* update any new playback paths */
2835 new = dpcm_process_paths(fe, SNDRV_PCM_STREAM_PLAYBACK, &list, 1);
2836 if (new) {
2837 dpcm_run_new_update(fe, SNDRV_PCM_STREAM_PLAYBACK);
2838 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_PLAYBACK);
2839 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_PLAYBACK);
2840 }
2841
2842 /* update any old playback paths */
2843 old = dpcm_process_paths(fe, SNDRV_PCM_STREAM_PLAYBACK, &list, 0);
2844 if (old) {
2845 dpcm_run_old_update(fe, SNDRV_PCM_STREAM_PLAYBACK);
2846 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_PLAYBACK);
2847 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_PLAYBACK);
2848 }
2849
Qiao Zhou7ed9de72014-06-04 19:42:06 +08002850 dpcm_path_put(&list);
Liam Girdwood618dae12012-04-25 12:12:51 +01002851capture:
2852 /* skip if FE doesn't have capture capability */
Qiao Zhou075207d2014-11-17 16:02:57 +08002853 if (!fe->cpu_dai->driver->capture.channels_min
2854 || !fe->codec_dai->driver->capture.channels_min)
2855 continue;
2856
2857 /* skip if FE isn't currently capturing */
2858 if (!fe->cpu_dai->capture_active
2859 || !fe->codec_dai->capture_active)
Liam Girdwood618dae12012-04-25 12:12:51 +01002860 continue;
2861
2862 paths = dpcm_path_get(fe, SNDRV_PCM_STREAM_CAPTURE, &list);
2863 if (paths < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002864 dev_warn(fe->dev, "ASoC: %s no valid %s path\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002865 fe->dai_link->name, "capture");
2866 mutex_unlock(&card->mutex);
2867 return paths;
2868 }
2869
2870 /* update any new capture paths */
2871 new = dpcm_process_paths(fe, SNDRV_PCM_STREAM_CAPTURE, &list, 1);
2872 if (new) {
2873 dpcm_run_new_update(fe, SNDRV_PCM_STREAM_CAPTURE);
2874 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_CAPTURE);
2875 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_CAPTURE);
2876 }
2877
2878 /* update any old capture paths */
2879 old = dpcm_process_paths(fe, SNDRV_PCM_STREAM_CAPTURE, &list, 0);
2880 if (old) {
2881 dpcm_run_old_update(fe, SNDRV_PCM_STREAM_CAPTURE);
2882 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_CAPTURE);
2883 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_CAPTURE);
2884 }
2885
2886 dpcm_path_put(&list);
2887 }
2888
2889 mutex_unlock(&card->mutex);
2890 return 0;
2891}
Liam Girdwood01d75842012-04-25 12:12:49 +01002892int soc_dpcm_be_digital_mute(struct snd_soc_pcm_runtime *fe, int mute)
2893{
2894 struct snd_soc_dpcm *dpcm;
2895 struct list_head *clients =
2896 &fe->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients;
2897
2898 list_for_each_entry(dpcm, clients, list_be) {
2899
2900 struct snd_soc_pcm_runtime *be = dpcm->be;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002901 int i;
Liam Girdwood01d75842012-04-25 12:12:49 +01002902
2903 if (be->dai_link->ignore_suspend)
2904 continue;
2905
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002906 for (i = 0; i < be->num_codecs; i++) {
2907 struct snd_soc_dai *dai = be->codec_dais[i];
2908 struct snd_soc_dai_driver *drv = dai->driver;
Liam Girdwood01d75842012-04-25 12:12:49 +01002909
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002910 dev_dbg(be->dev, "ASoC: BE digital mute %s\n",
2911 be->dai_link->name);
2912
2913 if (drv->ops && drv->ops->digital_mute &&
2914 dai->playback_active)
2915 drv->ops->digital_mute(dai, mute);
2916 }
Liam Girdwood01d75842012-04-25 12:12:49 +01002917 }
2918
2919 return 0;
2920}
2921
Mark Brown45c0a182012-05-09 21:46:27 +01002922static int dpcm_fe_dai_open(struct snd_pcm_substream *fe_substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002923{
2924 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
2925 struct snd_soc_dpcm *dpcm;
2926 struct snd_soc_dapm_widget_list *list;
2927 int ret;
2928 int stream = fe_substream->stream;
2929
2930 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2931 fe->dpcm[stream].runtime = fe_substream->runtime;
2932
Qiao Zhou8f70e512014-09-10 17:54:07 +08002933 ret = dpcm_path_get(fe, stream, &list);
2934 if (ret < 0) {
2935 mutex_unlock(&fe->card->mutex);
2936 return ret;
2937 } else if (ret == 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002938 dev_dbg(fe->dev, "ASoC: %s no valid %s route\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002939 fe->dai_link->name, stream ? "capture" : "playback");
Liam Girdwood01d75842012-04-25 12:12:49 +01002940 }
2941
2942 /* calculate valid and active FE <-> BE dpcms */
2943 dpcm_process_paths(fe, stream, &list, 1);
2944
2945 ret = dpcm_fe_dai_startup(fe_substream);
2946 if (ret < 0) {
2947 /* clean up all links */
2948 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
2949 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2950
2951 dpcm_be_disconnect(fe, stream);
2952 fe->dpcm[stream].runtime = NULL;
2953 }
2954
2955 dpcm_clear_pending_state(fe, stream);
2956 dpcm_path_put(&list);
2957 mutex_unlock(&fe->card->mutex);
2958 return ret;
2959}
2960
Mark Brown45c0a182012-05-09 21:46:27 +01002961static int dpcm_fe_dai_close(struct snd_pcm_substream *fe_substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002962{
2963 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
2964 struct snd_soc_dpcm *dpcm;
2965 int stream = fe_substream->stream, ret;
2966
2967 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2968 ret = dpcm_fe_dai_shutdown(fe_substream);
2969
2970 /* mark FE's links ready to prune */
2971 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
2972 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2973
2974 dpcm_be_disconnect(fe, stream);
2975
2976 fe->dpcm[stream].runtime = NULL;
2977 mutex_unlock(&fe->card->mutex);
2978 return ret;
2979}
2980
Liam Girdwoodddee6272011-06-09 14:45:53 +01002981/* create a new pcm */
2982int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
2983{
Liam Girdwoodddee6272011-06-09 14:45:53 +01002984 struct snd_soc_platform *platform = rtd->platform;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002985 struct snd_soc_dai *codec_dai;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002986 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2987 struct snd_pcm *pcm;
Banajit Goswami7ffe84e2017-01-10 17:28:14 -08002988 struct snd_pcm_str *stream;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002989 char new_name[64];
2990 int ret = 0, playback = 0, capture = 0;
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002991 int i;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002992
Liam Girdwood01d75842012-04-25 12:12:49 +01002993 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm) {
Liam Girdwood1e9de422014-01-07 17:51:42 +00002994 playback = rtd->dai_link->dpcm_playback;
2995 capture = rtd->dai_link->dpcm_capture;
Liam Girdwood01d75842012-04-25 12:12:49 +01002996 } else {
Benoit Cousson2e5894d2014-07-08 23:19:35 +02002997 for (i = 0; i < rtd->num_codecs; i++) {
2998 codec_dai = rtd->codec_dais[i];
2999 if (codec_dai->driver->playback.channels_min)
3000 playback = 1;
3001 if (codec_dai->driver->capture.channels_min)
3002 capture = 1;
3003 }
3004
3005 capture = capture && cpu_dai->driver->capture.channels_min;
3006 playback = playback && cpu_dai->driver->playback.channels_min;
Liam Girdwood01d75842012-04-25 12:12:49 +01003007 }
Sangsu Parka5002312012-01-02 17:15:10 +09003008
Fabio Estevamd6bead02013-08-29 10:32:13 -03003009 if (rtd->dai_link->playback_only) {
3010 playback = 1;
3011 capture = 0;
3012 }
3013
3014 if (rtd->dai_link->capture_only) {
3015 playback = 0;
3016 capture = 1;
3017 }
3018
Liam Girdwood01d75842012-04-25 12:12:49 +01003019 /* create the PCM */
3020 if (rtd->dai_link->no_pcm) {
3021 snprintf(new_name, sizeof(new_name), "(%s)",
3022 rtd->dai_link->stream_name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01003023
Liam Girdwood01d75842012-04-25 12:12:49 +01003024 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
3025 playback, capture, &pcm);
3026 } else {
3027 if (rtd->dai_link->dynamic)
3028 snprintf(new_name, sizeof(new_name), "%s (*)",
3029 rtd->dai_link->stream_name);
3030 else
3031 snprintf(new_name, sizeof(new_name), "%s %s-%d",
Benoit Cousson2e5894d2014-07-08 23:19:35 +02003032 rtd->dai_link->stream_name,
3033 (rtd->num_codecs > 1) ?
3034 "multicodec" : rtd->codec_dai->name, num);
Liam Girdwoodddee6272011-06-09 14:45:53 +01003035
Liam Girdwood01d75842012-04-25 12:12:49 +01003036 ret = snd_pcm_new(rtd->card->snd_card, new_name, num, playback,
3037 capture, &pcm);
3038 }
Liam Girdwoodddee6272011-06-09 14:45:53 +01003039 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00003040 dev_err(rtd->card->dev, "ASoC: can't create pcm for %s\n",
Liam Girdwood5cb9b742012-07-06 16:54:52 +01003041 rtd->dai_link->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01003042 return ret;
3043 }
Liam Girdwood103d84a2012-11-19 14:39:15 +00003044 dev_dbg(rtd->card->dev, "ASoC: registered pcm #%d %s\n",num, new_name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01003045
3046 /* DAPM dai link stream work */
3047 INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work);
3048
Vinod Koul48c76992015-02-12 09:59:53 +05303049 pcm->nonatomic = rtd->dai_link->nonatomic;
Liam Girdwoodddee6272011-06-09 14:45:53 +01003050 rtd->pcm = pcm;
3051 pcm->private_data = rtd;
Liam Girdwood01d75842012-04-25 12:12:49 +01003052
3053 if (rtd->dai_link->no_pcm) {
3054 if (playback)
3055 pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd;
3056 if (capture)
3057 pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd;
Banajit Goswamia19486b2016-11-21 17:54:51 -08003058 if (platform->driver->pcm_new)
3059 rtd->platform->driver->pcm_new(rtd);
Liam Girdwood01d75842012-04-25 12:12:49 +01003060 goto out;
3061 }
3062
Liam Girdwoodf5b50e72017-01-10 17:10:17 -08003063 /* setup any hostless PCMs - i.e. no host IO is performed */
3064 if (rtd->dai_link->no_host_mode) {
Banajit Goswami7ffe84e2017-01-10 17:28:14 -08003065 if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
3066 stream = &pcm->streams[SNDRV_PCM_STREAM_PLAYBACK];
3067 stream->substream->hw_no_buffer = 1;
3068 snd_soc_set_runtime_hwparams(stream->substream,
3069 &no_host_hardware);
3070 }
3071 if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) {
3072 stream = &pcm->streams[SNDRV_PCM_STREAM_CAPTURE];
3073 stream->substream->hw_no_buffer = 1;
3074 snd_soc_set_runtime_hwparams(stream->substream,
3075 &no_host_hardware);
3076 }
Liam Girdwoodf5b50e72017-01-10 17:10:17 -08003077 }
3078
Liam Girdwood01d75842012-04-25 12:12:49 +01003079 /* ASoC PCM operations */
3080 if (rtd->dai_link->dynamic) {
3081 rtd->ops.open = dpcm_fe_dai_open;
3082 rtd->ops.hw_params = dpcm_fe_dai_hw_params;
3083 rtd->ops.prepare = dpcm_fe_dai_prepare;
3084 rtd->ops.trigger = dpcm_fe_dai_trigger;
3085 rtd->ops.hw_free = dpcm_fe_dai_hw_free;
3086 rtd->ops.close = dpcm_fe_dai_close;
3087 rtd->ops.pointer = soc_pcm_pointer;
Kenneth Westfieldd6f99fa2015-05-19 12:03:55 -07003088 rtd->ops.delay_blk = soc_pcm_delay_blk;
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01003089 rtd->ops.ioctl = soc_pcm_ioctl;
Gopikrishnaiah Anandbdc375e2014-05-30 11:29:56 -07003090 rtd->ops.compat_ioctl = soc_pcm_compat_ioctl;
Liam Girdwood01d75842012-04-25 12:12:49 +01003091 } else {
3092 rtd->ops.open = soc_pcm_open;
3093 rtd->ops.hw_params = soc_pcm_hw_params;
3094 rtd->ops.prepare = soc_pcm_prepare;
3095 rtd->ops.trigger = soc_pcm_trigger;
3096 rtd->ops.hw_free = soc_pcm_hw_free;
3097 rtd->ops.close = soc_pcm_close;
3098 rtd->ops.pointer = soc_pcm_pointer;
Kenneth Westfieldd6f99fa2015-05-19 12:03:55 -07003099 rtd->ops.delay_blk = soc_pcm_delay_blk;
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01003100 rtd->ops.ioctl = soc_pcm_ioctl;
Gopikrishnaiah Anandbdc375e2014-05-30 11:29:56 -07003101 rtd->ops.compat_ioctl = soc_pcm_compat_ioctl;
Liam Girdwood01d75842012-04-25 12:12:49 +01003102 }
3103
Liam Girdwoodddee6272011-06-09 14:45:53 +01003104 if (platform->driver->ops) {
Liam Girdwood01d75842012-04-25 12:12:49 +01003105 rtd->ops.ack = platform->driver->ops->ack;
3106 rtd->ops.copy = platform->driver->ops->copy;
3107 rtd->ops.silence = platform->driver->ops->silence;
3108 rtd->ops.page = platform->driver->ops->page;
3109 rtd->ops.mmap = platform->driver->ops->mmap;
Liam Girdwoodddee6272011-06-09 14:45:53 +01003110 }
3111
3112 if (playback)
Liam Girdwood01d75842012-04-25 12:12:49 +01003113 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &rtd->ops);
Liam Girdwoodddee6272011-06-09 14:45:53 +01003114
3115 if (capture)
Liam Girdwood01d75842012-04-25 12:12:49 +01003116 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &rtd->ops);
Liam Girdwoodddee6272011-06-09 14:45:53 +01003117
3118 if (platform->driver->pcm_new) {
3119 ret = platform->driver->pcm_new(rtd);
3120 if (ret < 0) {
Mark Brownb1bc7b32012-09-26 14:25:17 +01003121 dev_err(platform->dev,
3122 "ASoC: pcm constructor failed: %d\n",
3123 ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +01003124 return ret;
3125 }
3126 }
3127
3128 pcm->private_free = platform->driver->pcm_free;
Liam Girdwood01d75842012-04-25 12:12:49 +01003129out:
Benoit Cousson2e5894d2014-07-08 23:19:35 +02003130 dev_info(rtd->card->dev, "%s <-> %s mapping ok\n",
3131 (rtd->num_codecs > 1) ? "multicodec" : rtd->codec_dai->name,
3132 cpu_dai->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01003133 return ret;
3134}
Liam Girdwood01d75842012-04-25 12:12:49 +01003135
3136/* is the current PCM operation for this FE ? */
3137int snd_soc_dpcm_fe_can_update(struct snd_soc_pcm_runtime *fe, int stream)
3138{
3139 if (fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE)
3140 return 1;
3141 return 0;
3142}
3143EXPORT_SYMBOL_GPL(snd_soc_dpcm_fe_can_update);
3144
3145/* is the current PCM operation for this BE ? */
3146int snd_soc_dpcm_be_can_update(struct snd_soc_pcm_runtime *fe,
3147 struct snd_soc_pcm_runtime *be, int stream)
3148{
3149 if ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE) ||
3150 ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_BE) &&
3151 be->dpcm[stream].runtime_update))
3152 return 1;
3153 return 0;
3154}
3155EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_can_update);
3156
3157/* get the substream for this BE */
3158struct snd_pcm_substream *
3159 snd_soc_dpcm_get_substream(struct snd_soc_pcm_runtime *be, int stream)
3160{
3161 return be->pcm->streams[stream].substream;
3162}
3163EXPORT_SYMBOL_GPL(snd_soc_dpcm_get_substream);
3164
3165/* get the BE runtime state */
3166enum snd_soc_dpcm_state
3167 snd_soc_dpcm_be_get_state(struct snd_soc_pcm_runtime *be, int stream)
3168{
3169 return be->dpcm[stream].state;
3170}
3171EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_get_state);
3172
3173/* set the BE runtime state */
3174void snd_soc_dpcm_be_set_state(struct snd_soc_pcm_runtime *be,
3175 int stream, enum snd_soc_dpcm_state state)
3176{
3177 be->dpcm[stream].state = state;
3178}
3179EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_set_state);
3180
3181/*
3182 * We can only hw_free, stop, pause or suspend a BE DAI if any of it's FE
3183 * are not running, paused or suspended for the specified stream direction.
3184 */
3185int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime *fe,
3186 struct snd_soc_pcm_runtime *be, int stream)
3187{
3188 struct snd_soc_dpcm *dpcm;
3189 int state;
3190
3191 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
3192
3193 if (dpcm->fe == fe)
3194 continue;
3195
3196 state = dpcm->fe->dpcm[stream].state;
3197 if (state == SND_SOC_DPCM_STATE_START ||
3198 state == SND_SOC_DPCM_STATE_PAUSED ||
3199 state == SND_SOC_DPCM_STATE_SUSPEND)
3200 return 0;
3201 }
3202
3203 /* it's safe to free/stop this BE DAI */
3204 return 1;
3205}
3206EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_free_stop);
3207
3208/*
3209 * We can only change hw params a BE DAI if any of it's FE are not prepared,
3210 * running, paused or suspended for the specified stream direction.
3211 */
3212int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime *fe,
3213 struct snd_soc_pcm_runtime *be, int stream)
3214{
3215 struct snd_soc_dpcm *dpcm;
3216 int state;
3217
3218 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
3219
3220 if (dpcm->fe == fe)
3221 continue;
3222
3223 state = dpcm->fe->dpcm[stream].state;
3224 if (state == SND_SOC_DPCM_STATE_START ||
3225 state == SND_SOC_DPCM_STATE_PAUSED ||
3226 state == SND_SOC_DPCM_STATE_SUSPEND ||
3227 state == SND_SOC_DPCM_STATE_PREPARE)
3228 return 0;
3229 }
3230
3231 /* it's safe to change hw_params */
3232 return 1;
3233}
3234EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_params);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003235
Liam Girdwood07bf84a2012-04-25 12:12:52 +01003236int snd_soc_platform_trigger(struct snd_pcm_substream *substream,
3237 int cmd, struct snd_soc_platform *platform)
3238{
Mark Brownc5914b02013-10-30 17:47:39 -07003239 if (platform->driver->ops && platform->driver->ops->trigger)
Liam Girdwood07bf84a2012-04-25 12:12:52 +01003240 return platform->driver->ops->trigger(substream, cmd);
3241 return 0;
3242}
3243EXPORT_SYMBOL_GPL(snd_soc_platform_trigger);
3244
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003245#ifdef CONFIG_DEBUG_FS
3246static char *dpcm_state_string(enum snd_soc_dpcm_state state)
3247{
3248 switch (state) {
3249 case SND_SOC_DPCM_STATE_NEW:
3250 return "new";
3251 case SND_SOC_DPCM_STATE_OPEN:
3252 return "open";
3253 case SND_SOC_DPCM_STATE_HW_PARAMS:
3254 return "hw_params";
3255 case SND_SOC_DPCM_STATE_PREPARE:
3256 return "prepare";
3257 case SND_SOC_DPCM_STATE_START:
3258 return "start";
3259 case SND_SOC_DPCM_STATE_STOP:
3260 return "stop";
3261 case SND_SOC_DPCM_STATE_SUSPEND:
3262 return "suspend";
3263 case SND_SOC_DPCM_STATE_PAUSED:
3264 return "paused";
3265 case SND_SOC_DPCM_STATE_HW_FREE:
3266 return "hw_free";
3267 case SND_SOC_DPCM_STATE_CLOSE:
3268 return "close";
3269 }
3270
3271 return "unknown";
3272}
3273
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003274static ssize_t dpcm_show_state(struct snd_soc_pcm_runtime *fe,
3275 int stream, char *buf, size_t size)
3276{
3277 struct snd_pcm_hw_params *params = &fe->dpcm[stream].hw_params;
3278 struct snd_soc_dpcm *dpcm;
3279 ssize_t offset = 0;
3280
3281 /* FE state */
3282 offset += snprintf(buf + offset, size - offset,
3283 "[%s - %s]\n", fe->dai_link->name,
3284 stream ? "Capture" : "Playback");
3285
3286 offset += snprintf(buf + offset, size - offset, "State: %s\n",
3287 dpcm_state_string(fe->dpcm[stream].state));
3288
3289 if ((fe->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
3290 (fe->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
3291 offset += snprintf(buf + offset, size - offset,
3292 "Hardware Params: "
3293 "Format = %s, Channels = %d, Rate = %d\n",
3294 snd_pcm_format_name(params_format(params)),
3295 params_channels(params),
3296 params_rate(params));
3297
3298 /* BEs state */
3299 offset += snprintf(buf + offset, size - offset, "Backends:\n");
3300
3301 if (list_empty(&fe->dpcm[stream].be_clients)) {
3302 offset += snprintf(buf + offset, size - offset,
3303 " No active DSP links\n");
3304 goto out;
3305 }
3306
3307 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
3308 struct snd_soc_pcm_runtime *be = dpcm->be;
3309 params = &dpcm->hw_params;
3310
3311 offset += snprintf(buf + offset, size - offset,
3312 "- %s\n", be->dai_link->name);
3313
3314 offset += snprintf(buf + offset, size - offset,
3315 " State: %s\n",
3316 dpcm_state_string(be->dpcm[stream].state));
3317
3318 if ((be->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
3319 (be->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
3320 offset += snprintf(buf + offset, size - offset,
3321 " Hardware Params: "
3322 "Format = %s, Channels = %d, Rate = %d\n",
3323 snd_pcm_format_name(params_format(params)),
3324 params_channels(params),
3325 params_rate(params));
3326 }
3327
3328out:
3329 return offset;
3330}
3331
3332static ssize_t dpcm_state_read_file(struct file *file, char __user *user_buf,
3333 size_t count, loff_t *ppos)
3334{
3335 struct snd_soc_pcm_runtime *fe = file->private_data;
3336 ssize_t out_count = PAGE_SIZE, offset = 0, ret = 0;
3337 char *buf;
3338
3339 buf = kmalloc(out_count, GFP_KERNEL);
3340 if (!buf)
3341 return -ENOMEM;
3342
3343 if (fe->cpu_dai->driver->playback.channels_min)
3344 offset += dpcm_show_state(fe, SNDRV_PCM_STREAM_PLAYBACK,
3345 buf + offset, out_count - offset);
3346
3347 if (fe->cpu_dai->driver->capture.channels_min)
3348 offset += dpcm_show_state(fe, SNDRV_PCM_STREAM_CAPTURE,
3349 buf + offset, out_count - offset);
3350
Liam Girdwoodf57b8482012-04-27 11:33:46 +01003351 ret = simple_read_from_buffer(user_buf, count, ppos, buf, offset);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003352
Liam Girdwoodf57b8482012-04-27 11:33:46 +01003353 kfree(buf);
3354 return ret;
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003355}
3356
3357static const struct file_operations dpcm_state_fops = {
Liam Girdwoodf57b8482012-04-27 11:33:46 +01003358 .open = simple_open,
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003359 .read = dpcm_state_read_file,
3360 .llseek = default_llseek,
3361};
3362
Lars-Peter Clausen2e55b902015-04-09 10:52:37 +02003363void soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime *rtd)
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003364{
Mark Brownb3bba9a2012-05-08 10:33:47 +01003365 if (!rtd->dai_link)
Lars-Peter Clausen2e55b902015-04-09 10:52:37 +02003366 return;
Mark Brownb3bba9a2012-05-08 10:33:47 +01003367
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02003368 if (!rtd->card->debugfs_card_root)
3369 return;
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003370
3371 rtd->debugfs_dpcm_root = debugfs_create_dir(rtd->dai_link->name,
3372 rtd->card->debugfs_card_root);
3373 if (!rtd->debugfs_dpcm_root) {
3374 dev_dbg(rtd->dev,
3375 "ASoC: Failed to create dpcm debugfs directory %s\n",
3376 rtd->dai_link->name);
Lars-Peter Clausen2e55b902015-04-09 10:52:37 +02003377 return;
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003378 }
3379
Liam Girdwoodf57b8482012-04-27 11:33:46 +01003380 rtd->debugfs_dpcm_state = debugfs_create_file("state", 0444,
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003381 rtd->debugfs_dpcm_root,
3382 rtd, &dpcm_state_fops);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01003383}
3384#endif