blob: a391de05803765403fc94e989717ad7dae91db5c [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>
10 * Mark Brown <broonie@opensource.wolfsonmicro.com>
11 *
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version.
16 *
17 */
18
19#include <linux/kernel.h>
20#include <linux/init.h>
21#include <linux/delay.h>
Nicolin Chen988e8cc2013-11-04 14:57:31 +080022#include <linux/pinctrl/consumer.h>
Mark Brownd6652ef2011-12-03 20:14:31 +000023#include <linux/pm_runtime.h>
Liam Girdwoodddee6272011-06-09 14:45:53 +010024#include <linux/slab.h>
25#include <linux/workqueue.h>
Liam Girdwood01d75842012-04-25 12:12:49 +010026#include <linux/export.h>
Liam Girdwoodf86dcef2012-04-25 12:12:50 +010027#include <linux/debugfs.h>
Liam Girdwoodddee6272011-06-09 14:45:53 +010028#include <sound/core.h>
29#include <sound/pcm.h>
30#include <sound/pcm_params.h>
31#include <sound/soc.h>
Liam Girdwood01d75842012-04-25 12:12:49 +010032#include <sound/soc-dpcm.h>
Liam Girdwoodddee6272011-06-09 14:45:53 +010033#include <sound/initval.h>
34
Liam Girdwood01d75842012-04-25 12:12:49 +010035#define DPCM_MAX_BE_USERS 8
36
Lars-Peter Clausen90996f42013-05-14 11:05:30 +020037/**
Lars-Peter Clausen24894b72014-03-05 13:17:43 +010038 * snd_soc_runtime_activate() - Increment active count for PCM runtime components
39 * @rtd: ASoC PCM runtime that is activated
40 * @stream: Direction of the PCM stream
41 *
42 * Increments the active count for all the DAIs and components attached to a PCM
43 * runtime. Should typically be called when a stream is opened.
44 *
45 * Must be called with the rtd->pcm_mutex being held
46 */
47void snd_soc_runtime_activate(struct snd_soc_pcm_runtime *rtd, int stream)
48{
49 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
50 struct snd_soc_dai *codec_dai = rtd->codec_dai;
51
52 lockdep_assert_held(&rtd->pcm_mutex);
53
54 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
55 cpu_dai->playback_active++;
56 codec_dai->playback_active++;
57 } else {
58 cpu_dai->capture_active++;
59 codec_dai->capture_active++;
60 }
61
62 cpu_dai->active++;
63 codec_dai->active++;
Lars-Peter Clausencdde4cc2014-03-05 13:17:47 +010064 cpu_dai->component->active++;
65 codec_dai->component->active++;
Lars-Peter Clausen24894b72014-03-05 13:17:43 +010066}
67
68/**
69 * snd_soc_runtime_deactivate() - Decrement active count for PCM runtime components
70 * @rtd: ASoC PCM runtime that is deactivated
71 * @stream: Direction of the PCM stream
72 *
73 * Decrements the active count for all the DAIs and components attached to a PCM
74 * runtime. Should typically be called when a stream is closed.
75 *
76 * Must be called with the rtd->pcm_mutex being held
77 */
78void snd_soc_runtime_deactivate(struct snd_soc_pcm_runtime *rtd, int stream)
79{
80 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
81 struct snd_soc_dai *codec_dai = rtd->codec_dai;
82
83 lockdep_assert_held(&rtd->pcm_mutex);
84
85 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
86 cpu_dai->playback_active--;
87 codec_dai->playback_active--;
88 } else {
89 cpu_dai->capture_active--;
90 codec_dai->capture_active--;
91 }
92
93 cpu_dai->active--;
94 codec_dai->active--;
Lars-Peter Clausencdde4cc2014-03-05 13:17:47 +010095 cpu_dai->component->active--;
96 codec_dai->component->active--;
Lars-Peter Clausen24894b72014-03-05 13:17:43 +010097}
98
99/**
Lars-Peter Clausen208a1582014-03-05 13:17:42 +0100100 * snd_soc_runtime_ignore_pmdown_time() - Check whether to ignore the power down delay
101 * @rtd: The ASoC PCM runtime that should be checked.
102 *
103 * This function checks whether the power down delay should be ignored for a
104 * specific PCM runtime. Returns true if the delay is 0, if it the DAI link has
105 * been configured to ignore the delay, or if none of the components benefits
106 * from having the delay.
107 */
108bool snd_soc_runtime_ignore_pmdown_time(struct snd_soc_pcm_runtime *rtd)
109{
Lars-Peter Clausen208a1582014-03-05 13:17:42 +0100110 if (!rtd->pmdown_time || rtd->dai_link->ignore_pmdown_time)
111 return true;
112
Lars-Peter Clausen3d594002014-03-05 13:17:48 +0100113 return rtd->cpu_dai->component->ignore_pmdown_time &&
114 rtd->codec_dai->component->ignore_pmdown_time;
Lars-Peter Clausen208a1582014-03-05 13:17:42 +0100115}
116
117/**
Lars-Peter Clausen90996f42013-05-14 11:05:30 +0200118 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
119 * @substream: the pcm substream
120 * @hw: the hardware parameters
121 *
122 * Sets the substream runtime hardware parameters.
123 */
124int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
125 const struct snd_pcm_hardware *hw)
126{
127 struct snd_pcm_runtime *runtime = substream->runtime;
128 runtime->hw.info = hw->info;
129 runtime->hw.formats = hw->formats;
130 runtime->hw.period_bytes_min = hw->period_bytes_min;
131 runtime->hw.period_bytes_max = hw->period_bytes_max;
132 runtime->hw.periods_min = hw->periods_min;
133 runtime->hw.periods_max = hw->periods_max;
134 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
135 runtime->hw.fifo_size = hw->fifo_size;
136 return 0;
137}
138EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
139
Liam Girdwood01d75842012-04-25 12:12:49 +0100140/* DPCM stream event, send event to FE and all active BEs. */
Liam Girdwood23607022014-01-17 17:03:55 +0000141int dpcm_dapm_stream_event(struct snd_soc_pcm_runtime *fe, int dir,
Liam Girdwood01d75842012-04-25 12:12:49 +0100142 int event)
143{
144 struct snd_soc_dpcm *dpcm;
145
146 list_for_each_entry(dpcm, &fe->dpcm[dir].be_clients, list_be) {
147
148 struct snd_soc_pcm_runtime *be = dpcm->be;
149
Liam Girdwood103d84a2012-11-19 14:39:15 +0000150 dev_dbg(be->dev, "ASoC: BE %s event %d dir %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +0100151 be->dai_link->name, event, dir);
152
153 snd_soc_dapm_stream_event(be, dir, event);
154 }
155
156 snd_soc_dapm_stream_event(fe, dir, event);
157
158 return 0;
159}
160
Dong Aisheng17841022011-08-29 17:15:14 +0800161static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream,
162 struct snd_soc_dai *soc_dai)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100163{
164 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100165 int ret;
166
Nicolin Chen3635bf02013-11-13 18:56:24 +0800167 if (soc_dai->rate && (soc_dai->driver->symmetric_rates ||
168 rtd->dai_link->symmetric_rates)) {
169 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %dHz rate\n",
170 soc_dai->rate);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100171
Nicolin Chen3635bf02013-11-13 18:56:24 +0800172 ret = snd_pcm_hw_constraint_minmax(substream->runtime,
173 SNDRV_PCM_HW_PARAM_RATE,
174 soc_dai->rate, soc_dai->rate);
175 if (ret < 0) {
176 dev_err(soc_dai->dev,
177 "ASoC: Unable to apply rate constraint: %d\n",
178 ret);
179 return ret;
180 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100181 }
182
Nicolin Chen3635bf02013-11-13 18:56:24 +0800183 if (soc_dai->channels && (soc_dai->driver->symmetric_channels ||
184 rtd->dai_link->symmetric_channels)) {
185 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %d channel(s)\n",
186 soc_dai->channels);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100187
Nicolin Chen3635bf02013-11-13 18:56:24 +0800188 ret = snd_pcm_hw_constraint_minmax(substream->runtime,
189 SNDRV_PCM_HW_PARAM_CHANNELS,
190 soc_dai->channels,
191 soc_dai->channels);
192 if (ret < 0) {
193 dev_err(soc_dai->dev,
194 "ASoC: Unable to apply channel symmetry constraint: %d\n",
195 ret);
196 return ret;
197 }
198 }
199
200 if (soc_dai->sample_bits && (soc_dai->driver->symmetric_samplebits ||
201 rtd->dai_link->symmetric_samplebits)) {
202 dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %d sample bits\n",
203 soc_dai->sample_bits);
204
205 ret = snd_pcm_hw_constraint_minmax(substream->runtime,
206 SNDRV_PCM_HW_PARAM_SAMPLE_BITS,
207 soc_dai->sample_bits,
208 soc_dai->sample_bits);
209 if (ret < 0) {
210 dev_err(soc_dai->dev,
211 "ASoC: Unable to apply sample bits symmetry constraint: %d\n",
212 ret);
213 return ret;
214 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100215 }
216
217 return 0;
218}
219
Nicolin Chen3635bf02013-11-13 18:56:24 +0800220static int soc_pcm_params_symmetry(struct snd_pcm_substream *substream,
221 struct snd_pcm_hw_params *params)
222{
223 struct snd_soc_pcm_runtime *rtd = substream->private_data;
224 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
225 struct snd_soc_dai *codec_dai = rtd->codec_dai;
226 unsigned int rate, channels, sample_bits, symmetry;
227
228 rate = params_rate(params);
229 channels = params_channels(params);
230 sample_bits = snd_pcm_format_physical_width(params_format(params));
231
232 /* reject unmatched parameters when applying symmetry */
233 symmetry = cpu_dai->driver->symmetric_rates ||
234 codec_dai->driver->symmetric_rates ||
235 rtd->dai_link->symmetric_rates;
236 if (symmetry && cpu_dai->rate && cpu_dai->rate != rate) {
237 dev_err(rtd->dev, "ASoC: unmatched rate symmetry: %d - %d\n",
238 cpu_dai->rate, rate);
239 return -EINVAL;
240 }
241
242 symmetry = cpu_dai->driver->symmetric_channels ||
243 codec_dai->driver->symmetric_channels ||
244 rtd->dai_link->symmetric_channels;
245 if (symmetry && cpu_dai->channels && cpu_dai->channels != channels) {
246 dev_err(rtd->dev, "ASoC: unmatched channel symmetry: %d - %d\n",
247 cpu_dai->channels, channels);
248 return -EINVAL;
249 }
250
251 symmetry = cpu_dai->driver->symmetric_samplebits ||
252 codec_dai->driver->symmetric_samplebits ||
253 rtd->dai_link->symmetric_samplebits;
254 if (symmetry && cpu_dai->sample_bits && cpu_dai->sample_bits != sample_bits) {
255 dev_err(rtd->dev, "ASoC: unmatched sample bits symmetry: %d - %d\n",
256 cpu_dai->sample_bits, sample_bits);
257 return -EINVAL;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100258 }
259
260 return 0;
261}
262
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100263static bool soc_pcm_has_symmetry(struct snd_pcm_substream *substream)
264{
265 struct snd_soc_pcm_runtime *rtd = substream->private_data;
266 struct snd_soc_dai_driver *cpu_driver = rtd->cpu_dai->driver;
267 struct snd_soc_dai_driver *codec_driver = rtd->codec_dai->driver;
268 struct snd_soc_dai_link *link = rtd->dai_link;
269
270 return cpu_driver->symmetric_rates || codec_driver->symmetric_rates ||
271 link->symmetric_rates || cpu_driver->symmetric_channels ||
272 codec_driver->symmetric_channels || link->symmetric_channels ||
273 cpu_driver->symmetric_samplebits ||
274 codec_driver->symmetric_samplebits ||
275 link->symmetric_samplebits;
276}
277
Liam Girdwoodddee6272011-06-09 14:45:53 +0100278/*
Mark Brown58ba9b22012-01-16 18:38:51 +0000279 * List of sample sizes that might go over the bus for parameter
280 * application. There ought to be a wildcard sample size for things
281 * like the DAC/ADC resolution to use but there isn't right now.
282 */
283static int sample_sizes[] = {
Peter Ujfalusi88e33952012-01-25 10:09:41 +0200284 24, 32,
Mark Brown58ba9b22012-01-16 18:38:51 +0000285};
286
287static void soc_pcm_apply_msb(struct snd_pcm_substream *substream,
288 struct snd_soc_dai *dai)
289{
290 int ret, i, bits;
291
292 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
293 bits = dai->driver->playback.sig_bits;
294 else
295 bits = dai->driver->capture.sig_bits;
296
297 if (!bits)
298 return;
299
300 for (i = 0; i < ARRAY_SIZE(sample_sizes); i++) {
Mark Brown278047f2012-01-19 18:04:18 +0000301 if (bits >= sample_sizes[i])
302 continue;
303
304 ret = snd_pcm_hw_constraint_msbits(substream->runtime, 0,
305 sample_sizes[i], bits);
Mark Brown58ba9b22012-01-16 18:38:51 +0000306 if (ret != 0)
307 dev_warn(dai->dev,
Liam Girdwood103d84a2012-11-19 14:39:15 +0000308 "ASoC: Failed to set MSB %d/%d: %d\n",
Mark Brown58ba9b22012-01-16 18:38:51 +0000309 bits, sample_sizes[i], ret);
310 }
311}
312
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100313static void soc_pcm_init_runtime_hw(struct snd_pcm_runtime *runtime,
Lars-Peter Clausenbd477c32013-05-14 11:05:31 +0200314 struct snd_soc_pcm_stream *codec_stream,
315 struct snd_soc_pcm_stream *cpu_stream)
316{
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100317 struct snd_pcm_hardware *hw = &runtime->hw;
318
Lars-Peter Clausenbd477c32013-05-14 11:05:31 +0200319 hw->channels_min = max(codec_stream->channels_min,
320 cpu_stream->channels_min);
321 hw->channels_max = min(codec_stream->channels_max,
322 cpu_stream->channels_max);
Lars-Peter Clausen16d7ea92014-01-06 14:19:16 +0100323 if (hw->formats)
324 hw->formats &= codec_stream->formats & cpu_stream->formats;
325 else
326 hw->formats = codec_stream->formats & cpu_stream->formats;
Lars-Peter Clausen55dcdb52014-01-11 10:24:44 +0100327 hw->rates = snd_pcm_rate_mask_intersect(codec_stream->rates,
328 cpu_stream->rates);
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100329
Lars-Peter Clausen817873f2014-01-11 10:24:40 +0100330 hw->rate_min = 0;
331 hw->rate_max = UINT_MAX;
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100332
333 snd_pcm_limit_hw_rates(runtime);
334
335 hw->rate_min = max(hw->rate_min, cpu_stream->rate_min);
336 hw->rate_min = max(hw->rate_min, codec_stream->rate_min);
337 hw->rate_max = min_not_zero(hw->rate_max, cpu_stream->rate_max);
338 hw->rate_max = min_not_zero(hw->rate_max, codec_stream->rate_max);
Lars-Peter Clausenbd477c32013-05-14 11:05:31 +0200339}
340
Mark Brown58ba9b22012-01-16 18:38:51 +0000341/*
Liam Girdwoodddee6272011-06-09 14:45:53 +0100342 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
343 * then initialized and any private data can be allocated. This also calls
344 * startup for the cpu DAI, platform, machine and codec DAI.
345 */
346static int soc_pcm_open(struct snd_pcm_substream *substream)
347{
348 struct snd_soc_pcm_runtime *rtd = substream->private_data;
349 struct snd_pcm_runtime *runtime = substream->runtime;
350 struct snd_soc_platform *platform = rtd->platform;
351 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
352 struct snd_soc_dai *codec_dai = rtd->codec_dai;
353 struct snd_soc_dai_driver *cpu_dai_drv = cpu_dai->driver;
354 struct snd_soc_dai_driver *codec_dai_drv = codec_dai->driver;
355 int ret = 0;
356
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800357 pinctrl_pm_select_default_state(cpu_dai->dev);
358 pinctrl_pm_select_default_state(codec_dai->dev);
Mark Brownd6652ef2011-12-03 20:14:31 +0000359 pm_runtime_get_sync(cpu_dai->dev);
360 pm_runtime_get_sync(codec_dai->dev);
361 pm_runtime_get_sync(platform->dev);
362
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100363 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100364
365 /* startup the audio subsystem */
Mark Brownc5914b02013-10-30 17:47:39 -0700366 if (cpu_dai->driver->ops && cpu_dai->driver->ops->startup) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100367 ret = cpu_dai->driver->ops->startup(substream, cpu_dai);
368 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000369 dev_err(cpu_dai->dev, "ASoC: can't open interface"
370 " %s: %d\n", cpu_dai->name, ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100371 goto out;
372 }
373 }
374
375 if (platform->driver->ops && platform->driver->ops->open) {
376 ret = platform->driver->ops->open(substream);
377 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000378 dev_err(platform->dev, "ASoC: can't open platform"
379 " %s: %d\n", platform->name, ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100380 goto platform_err;
381 }
382 }
383
Mark Brownc5914b02013-10-30 17:47:39 -0700384 if (codec_dai->driver->ops && codec_dai->driver->ops->startup) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100385 ret = codec_dai->driver->ops->startup(substream, codec_dai);
386 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000387 dev_err(codec_dai->dev, "ASoC: can't open codec"
388 " %s: %d\n", codec_dai->name, ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100389 goto codec_dai_err;
390 }
391 }
392
393 if (rtd->dai_link->ops && rtd->dai_link->ops->startup) {
394 ret = rtd->dai_link->ops->startup(substream);
395 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000396 pr_err("ASoC: %s startup failed: %d\n",
Mark Brown25bfe662012-02-01 21:30:32 +0000397 rtd->dai_link->name, ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100398 goto machine_err;
399 }
400 }
401
Liam Girdwood01d75842012-04-25 12:12:49 +0100402 /* Dynamic PCM DAI links compat checks use dynamic capabilities */
403 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm)
404 goto dynamic;
405
Liam Girdwoodddee6272011-06-09 14:45:53 +0100406 /* Check that the codec and cpu DAIs are compatible */
407 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100408 soc_pcm_init_runtime_hw(runtime, &codec_dai_drv->playback,
Lars-Peter Clausenbd477c32013-05-14 11:05:31 +0200409 &cpu_dai_drv->playback);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100410 } else {
Lars-Peter Clausen78e45c92013-11-27 09:58:18 +0100411 soc_pcm_init_runtime_hw(runtime, &codec_dai_drv->capture,
Lars-Peter Clausenbd477c32013-05-14 11:05:31 +0200412 &cpu_dai_drv->capture);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100413 }
414
Lars-Peter Clausen62e5f672013-11-30 17:38:58 +0100415 if (soc_pcm_has_symmetry(substream))
416 runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX;
417
Liam Girdwoodddee6272011-06-09 14:45:53 +0100418 ret = -EINVAL;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100419 if (!runtime->hw.rates) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000420 printk(KERN_ERR "ASoC: %s <-> %s No matching rates\n",
Liam Girdwoodddee6272011-06-09 14:45:53 +0100421 codec_dai->name, cpu_dai->name);
422 goto config_err;
423 }
424 if (!runtime->hw.formats) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000425 printk(KERN_ERR "ASoC: %s <-> %s No matching formats\n",
Liam Girdwoodddee6272011-06-09 14:45:53 +0100426 codec_dai->name, cpu_dai->name);
427 goto config_err;
428 }
429 if (!runtime->hw.channels_min || !runtime->hw.channels_max ||
430 runtime->hw.channels_min > runtime->hw.channels_max) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000431 printk(KERN_ERR "ASoC: %s <-> %s No matching channels\n",
Liam Girdwoodddee6272011-06-09 14:45:53 +0100432 codec_dai->name, cpu_dai->name);
433 goto config_err;
434 }
435
Mark Brown58ba9b22012-01-16 18:38:51 +0000436 soc_pcm_apply_msb(substream, codec_dai);
437 soc_pcm_apply_msb(substream, cpu_dai);
438
Liam Girdwoodddee6272011-06-09 14:45:53 +0100439 /* Symmetry only applies if we've already got an active stream. */
Dong Aisheng17841022011-08-29 17:15:14 +0800440 if (cpu_dai->active) {
441 ret = soc_pcm_apply_symmetry(substream, cpu_dai);
442 if (ret != 0)
443 goto config_err;
444 }
445
446 if (codec_dai->active) {
447 ret = soc_pcm_apply_symmetry(substream, codec_dai);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100448 if (ret != 0)
449 goto config_err;
450 }
451
Liam Girdwood103d84a2012-11-19 14:39:15 +0000452 pr_debug("ASoC: %s <-> %s info:\n",
Liam Girdwoodddee6272011-06-09 14:45:53 +0100453 codec_dai->name, cpu_dai->name);
Liam Girdwood103d84a2012-11-19 14:39:15 +0000454 pr_debug("ASoC: rate mask 0x%x\n", runtime->hw.rates);
455 pr_debug("ASoC: min ch %d max ch %d\n", runtime->hw.channels_min,
Liam Girdwoodddee6272011-06-09 14:45:53 +0100456 runtime->hw.channels_max);
Liam Girdwood103d84a2012-11-19 14:39:15 +0000457 pr_debug("ASoC: min rate %d max rate %d\n", runtime->hw.rate_min,
Liam Girdwoodddee6272011-06-09 14:45:53 +0100458 runtime->hw.rate_max);
459
Liam Girdwood01d75842012-04-25 12:12:49 +0100460dynamic:
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100461
462 snd_soc_runtime_activate(rtd, substream->stream);
463
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100464 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100465 return 0;
466
467config_err:
468 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
469 rtd->dai_link->ops->shutdown(substream);
470
471machine_err:
472 if (codec_dai->driver->ops->shutdown)
473 codec_dai->driver->ops->shutdown(substream, codec_dai);
474
475codec_dai_err:
476 if (platform->driver->ops && platform->driver->ops->close)
477 platform->driver->ops->close(substream);
478
479platform_err:
480 if (cpu_dai->driver->ops->shutdown)
481 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
482out:
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100483 mutex_unlock(&rtd->pcm_mutex);
Mark Brownd6652ef2011-12-03 20:14:31 +0000484
485 pm_runtime_put(platform->dev);
486 pm_runtime_put(codec_dai->dev);
487 pm_runtime_put(cpu_dai->dev);
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800488 if (!codec_dai->active)
489 pinctrl_pm_select_sleep_state(codec_dai->dev);
490 if (!cpu_dai->active)
491 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Mark Brownd6652ef2011-12-03 20:14:31 +0000492
Liam Girdwoodddee6272011-06-09 14:45:53 +0100493 return ret;
494}
495
496/*
497 * Power down the audio subsystem pmdown_time msecs after close is called.
498 * This is to ensure there are no pops or clicks in between any music tracks
499 * due to DAPM power cycling.
500 */
501static void close_delayed_work(struct work_struct *work)
502{
503 struct snd_soc_pcm_runtime *rtd =
504 container_of(work, struct snd_soc_pcm_runtime, delayed_work.work);
505 struct snd_soc_dai *codec_dai = rtd->codec_dai;
506
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100507 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100508
Liam Girdwood103d84a2012-11-19 14:39:15 +0000509 dev_dbg(rtd->dev, "ASoC: pop wq checking: %s status: %s waiting: %s\n",
Liam Girdwoodddee6272011-06-09 14:45:53 +0100510 codec_dai->driver->playback.stream_name,
511 codec_dai->playback_active ? "active" : "inactive",
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600512 rtd->pop_wait ? "yes" : "no");
Liam Girdwoodddee6272011-06-09 14:45:53 +0100513
514 /* are we waiting on this codec DAI stream */
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600515 if (rtd->pop_wait == 1) {
516 rtd->pop_wait = 0;
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800517 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_PLAYBACK,
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000518 SND_SOC_DAPM_STREAM_STOP);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100519 }
520
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100521 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100522}
523
524/*
525 * Called by ALSA when a PCM substream is closed. Private data can be
526 * freed here. The cpu DAI, codec DAI, machine and platform are also
527 * shutdown.
528 */
Liam Girdwood91d5e6b2011-06-09 17:04:59 +0100529static int soc_pcm_close(struct snd_pcm_substream *substream)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100530{
531 struct snd_soc_pcm_runtime *rtd = substream->private_data;
532 struct snd_soc_platform *platform = rtd->platform;
533 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
534 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100535
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100536 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100537
Lars-Peter Clausen24894b72014-03-05 13:17:43 +0100538 snd_soc_runtime_deactivate(rtd, substream->stream);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100539
Dong Aisheng17841022011-08-29 17:15:14 +0800540 /* clear the corresponding DAIs rate when inactive */
541 if (!cpu_dai->active)
542 cpu_dai->rate = 0;
543
544 if (!codec_dai->active)
545 codec_dai->rate = 0;
Sascha Hauer25b76792011-08-17 09:20:01 +0200546
Liam Girdwoodddee6272011-06-09 14:45:53 +0100547 if (cpu_dai->driver->ops->shutdown)
548 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
549
550 if (codec_dai->driver->ops->shutdown)
551 codec_dai->driver->ops->shutdown(substream, codec_dai);
552
553 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
554 rtd->dai_link->ops->shutdown(substream);
555
556 if (platform->driver->ops && platform->driver->ops->close)
557 platform->driver->ops->close(substream);
558 cpu_dai->runtime = NULL;
559
560 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Lars-Peter Clausen208a1582014-03-05 13:17:42 +0100561 if (snd_soc_runtime_ignore_pmdown_time(rtd)) {
Peter Ujfalusi1d69c5c2011-10-14 14:43:33 +0300562 /* powered down playback stream now */
563 snd_soc_dapm_stream_event(rtd,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800564 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800565 SND_SOC_DAPM_STREAM_STOP);
Peter Ujfalusi1d69c5c2011-10-14 14:43:33 +0300566 } else {
567 /* start delayed pop wq here for playback streams */
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600568 rtd->pop_wait = 1;
Mark Brownd4e1a732013-07-18 11:52:17 +0100569 queue_delayed_work(system_power_efficient_wq,
570 &rtd->delayed_work,
571 msecs_to_jiffies(rtd->pmdown_time));
Peter Ujfalusi1d69c5c2011-10-14 14:43:33 +0300572 }
Liam Girdwoodddee6272011-06-09 14:45:53 +0100573 } else {
574 /* capture streams can be powered down now */
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800575 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_CAPTURE,
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000576 SND_SOC_DAPM_STREAM_STOP);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100577 }
578
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100579 mutex_unlock(&rtd->pcm_mutex);
Mark Brownd6652ef2011-12-03 20:14:31 +0000580
581 pm_runtime_put(platform->dev);
582 pm_runtime_put(codec_dai->dev);
583 pm_runtime_put(cpu_dai->dev);
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800584 if (!codec_dai->active)
585 pinctrl_pm_select_sleep_state(codec_dai->dev);
586 if (!cpu_dai->active)
587 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Mark Brownd6652ef2011-12-03 20:14:31 +0000588
Liam Girdwoodddee6272011-06-09 14:45:53 +0100589 return 0;
590}
591
592/*
593 * Called by ALSA when the PCM substream is prepared, can set format, sample
594 * rate, etc. This function is non atomic and can be called multiple times,
595 * it can refer to the runtime info.
596 */
597static int soc_pcm_prepare(struct snd_pcm_substream *substream)
598{
599 struct snd_soc_pcm_runtime *rtd = substream->private_data;
600 struct snd_soc_platform *platform = rtd->platform;
601 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
602 struct snd_soc_dai *codec_dai = rtd->codec_dai;
603 int ret = 0;
604
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100605 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100606
607 if (rtd->dai_link->ops && rtd->dai_link->ops->prepare) {
608 ret = rtd->dai_link->ops->prepare(substream);
609 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000610 dev_err(rtd->card->dev, "ASoC: machine prepare error:"
611 " %d\n", ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100612 goto out;
613 }
614 }
615
616 if (platform->driver->ops && platform->driver->ops->prepare) {
617 ret = platform->driver->ops->prepare(substream);
618 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000619 dev_err(platform->dev, "ASoC: platform prepare error:"
620 " %d\n", ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100621 goto out;
622 }
623 }
624
Mark Brownc5914b02013-10-30 17:47:39 -0700625 if (codec_dai->driver->ops && codec_dai->driver->ops->prepare) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100626 ret = codec_dai->driver->ops->prepare(substream, codec_dai);
627 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000628 dev_err(codec_dai->dev, "ASoC: DAI prepare error: %d\n",
Mark Brown25bfe662012-02-01 21:30:32 +0000629 ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100630 goto out;
631 }
632 }
633
Mark Brownc5914b02013-10-30 17:47:39 -0700634 if (cpu_dai->driver->ops && cpu_dai->driver->ops->prepare) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100635 ret = cpu_dai->driver->ops->prepare(substream, cpu_dai);
636 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000637 dev_err(cpu_dai->dev, "ASoC: DAI prepare error: %d\n",
Mark Brown25bfe662012-02-01 21:30:32 +0000638 ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100639 goto out;
640 }
641 }
642
643 /* cancel any delayed stream shutdown that is pending */
644 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
Misael Lopez Cruz9bffb1f2012-12-13 12:23:05 -0600645 rtd->pop_wait) {
646 rtd->pop_wait = 0;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100647 cancel_delayed_work(&rtd->delayed_work);
648 }
649
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000650 snd_soc_dapm_stream_event(rtd, substream->stream,
651 SND_SOC_DAPM_STREAM_START);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100652
Mark Brownda183962013-02-06 15:44:07 +0000653 snd_soc_dai_digital_mute(codec_dai, 0, substream->stream);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100654
655out:
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100656 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100657 return ret;
658}
659
660/*
661 * Called by ALSA when the hardware params are set by application. This
662 * function can also be called multiple times and can allocate buffers
663 * (using snd_pcm_lib_* ). It's non-atomic.
664 */
665static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
666 struct snd_pcm_hw_params *params)
667{
668 struct snd_soc_pcm_runtime *rtd = substream->private_data;
669 struct snd_soc_platform *platform = rtd->platform;
670 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
671 struct snd_soc_dai *codec_dai = rtd->codec_dai;
672 int ret = 0;
673
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100674 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100675
Nicolin Chen3635bf02013-11-13 18:56:24 +0800676 ret = soc_pcm_params_symmetry(substream, params);
677 if (ret)
678 goto out;
679
Liam Girdwoodddee6272011-06-09 14:45:53 +0100680 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_params) {
681 ret = rtd->dai_link->ops->hw_params(substream, params);
682 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000683 dev_err(rtd->card->dev, "ASoC: machine hw_params"
684 " failed: %d\n", ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100685 goto out;
686 }
687 }
688
Mark Brownc5914b02013-10-30 17:47:39 -0700689 if (codec_dai->driver->ops && codec_dai->driver->ops->hw_params) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100690 ret = codec_dai->driver->ops->hw_params(substream, params, codec_dai);
691 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000692 dev_err(codec_dai->dev, "ASoC: can't set %s hw params:"
693 " %d\n", codec_dai->name, ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100694 goto codec_err;
695 }
696 }
697
Mark Brownc5914b02013-10-30 17:47:39 -0700698 if (cpu_dai->driver->ops && cpu_dai->driver->ops->hw_params) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100699 ret = cpu_dai->driver->ops->hw_params(substream, params, cpu_dai);
700 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000701 dev_err(cpu_dai->dev, "ASoC: %s hw params failed: %d\n",
Mark Brown25bfe662012-02-01 21:30:32 +0000702 cpu_dai->name, ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100703 goto interface_err;
704 }
705 }
706
707 if (platform->driver->ops && platform->driver->ops->hw_params) {
708 ret = platform->driver->ops->hw_params(substream, params);
709 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000710 dev_err(platform->dev, "ASoC: %s hw params failed: %d\n",
Mark Brown25bfe662012-02-01 21:30:32 +0000711 platform->name, ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100712 goto platform_err;
713 }
714 }
715
Nicolin Chen3635bf02013-11-13 18:56:24 +0800716 /* store the parameters for each DAIs */
Dong Aisheng17841022011-08-29 17:15:14 +0800717 cpu_dai->rate = params_rate(params);
Nicolin Chen3635bf02013-11-13 18:56:24 +0800718 cpu_dai->channels = params_channels(params);
719 cpu_dai->sample_bits =
720 snd_pcm_format_physical_width(params_format(params));
721
Dong Aisheng17841022011-08-29 17:15:14 +0800722 codec_dai->rate = params_rate(params);
Nicolin Chen3635bf02013-11-13 18:56:24 +0800723 codec_dai->channels = params_channels(params);
724 codec_dai->sample_bits =
725 snd_pcm_format_physical_width(params_format(params));
Liam Girdwoodddee6272011-06-09 14:45:53 +0100726
727out:
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100728 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100729 return ret;
730
731platform_err:
Mark Brownc5914b02013-10-30 17:47:39 -0700732 if (cpu_dai->driver->ops && cpu_dai->driver->ops->hw_free)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100733 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
734
735interface_err:
Mark Brownc5914b02013-10-30 17:47:39 -0700736 if (codec_dai->driver->ops && codec_dai->driver->ops->hw_free)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100737 codec_dai->driver->ops->hw_free(substream, codec_dai);
738
739codec_err:
740 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
741 rtd->dai_link->ops->hw_free(substream);
742
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100743 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100744 return ret;
745}
746
747/*
748 * Frees resources allocated by hw_params, can be called multiple times
749 */
750static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
751{
752 struct snd_soc_pcm_runtime *rtd = substream->private_data;
753 struct snd_soc_platform *platform = rtd->platform;
754 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
755 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Nicolin Chen7f62b6e2013-12-04 11:18:36 +0800756 bool playback = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
Liam Girdwoodddee6272011-06-09 14:45:53 +0100757
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100758 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100759
Nicolin Chend3383422013-11-20 18:37:09 +0800760 /* clear the corresponding DAIs parameters when going to be inactive */
761 if (cpu_dai->active == 1) {
762 cpu_dai->rate = 0;
763 cpu_dai->channels = 0;
764 cpu_dai->sample_bits = 0;
765 }
766
767 if (codec_dai->active == 1) {
768 codec_dai->rate = 0;
769 codec_dai->channels = 0;
770 codec_dai->sample_bits = 0;
771 }
772
Liam Girdwoodddee6272011-06-09 14:45:53 +0100773 /* apply codec digital mute */
Nicolin Chen7f62b6e2013-12-04 11:18:36 +0800774 if ((playback && codec_dai->playback_active == 1) ||
775 (!playback && codec_dai->capture_active == 1))
Mark Brownda183962013-02-06 15:44:07 +0000776 snd_soc_dai_digital_mute(codec_dai, 1, substream->stream);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100777
778 /* free any machine hw params */
779 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
780 rtd->dai_link->ops->hw_free(substream);
781
782 /* free any DMA resources */
783 if (platform->driver->ops && platform->driver->ops->hw_free)
784 platform->driver->ops->hw_free(substream);
785
786 /* now free hw params for the DAIs */
Mark Brownc5914b02013-10-30 17:47:39 -0700787 if (codec_dai->driver->ops && codec_dai->driver->ops->hw_free)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100788 codec_dai->driver->ops->hw_free(substream, codec_dai);
789
Mark Brownc5914b02013-10-30 17:47:39 -0700790 if (cpu_dai->driver->ops && cpu_dai->driver->ops->hw_free)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100791 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
792
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +0100793 mutex_unlock(&rtd->pcm_mutex);
Liam Girdwoodddee6272011-06-09 14:45:53 +0100794 return 0;
795}
796
797static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
798{
799 struct snd_soc_pcm_runtime *rtd = substream->private_data;
800 struct snd_soc_platform *platform = rtd->platform;
801 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
802 struct snd_soc_dai *codec_dai = rtd->codec_dai;
803 int ret;
804
Mark Brownc5914b02013-10-30 17:47:39 -0700805 if (codec_dai->driver->ops && codec_dai->driver->ops->trigger) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100806 ret = codec_dai->driver->ops->trigger(substream, cmd, codec_dai);
807 if (ret < 0)
808 return ret;
809 }
810
811 if (platform->driver->ops && platform->driver->ops->trigger) {
812 ret = platform->driver->ops->trigger(substream, cmd);
813 if (ret < 0)
814 return ret;
815 }
816
Mark Brownc5914b02013-10-30 17:47:39 -0700817 if (cpu_dai->driver->ops && cpu_dai->driver->ops->trigger) {
Liam Girdwoodddee6272011-06-09 14:45:53 +0100818 ret = cpu_dai->driver->ops->trigger(substream, cmd, cpu_dai);
819 if (ret < 0)
820 return ret;
821 }
822 return 0;
823}
824
Mark Brown45c0a182012-05-09 21:46:27 +0100825static int soc_pcm_bespoke_trigger(struct snd_pcm_substream *substream,
826 int cmd)
Liam Girdwood07bf84a2012-04-25 12:12:52 +0100827{
828 struct snd_soc_pcm_runtime *rtd = substream->private_data;
829 struct snd_soc_platform *platform = rtd->platform;
830 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
831 struct snd_soc_dai *codec_dai = rtd->codec_dai;
832 int ret;
833
Mark Brownc5914b02013-10-30 17:47:39 -0700834 if (codec_dai->driver->ops &&
835 codec_dai->driver->ops->bespoke_trigger) {
Liam Girdwood07bf84a2012-04-25 12:12:52 +0100836 ret = codec_dai->driver->ops->bespoke_trigger(substream, cmd, codec_dai);
837 if (ret < 0)
838 return ret;
839 }
840
Jean-Francois Moinedcf0fa22014-01-03 09:19:18 +0100841 if (platform->driver->bespoke_trigger) {
Liam Girdwood07bf84a2012-04-25 12:12:52 +0100842 ret = platform->driver->bespoke_trigger(substream, cmd);
843 if (ret < 0)
844 return ret;
845 }
846
Mark Brownc5914b02013-10-30 17:47:39 -0700847 if (cpu_dai->driver->ops && cpu_dai->driver->ops->bespoke_trigger) {
Liam Girdwood07bf84a2012-04-25 12:12:52 +0100848 ret = cpu_dai->driver->ops->bespoke_trigger(substream, cmd, cpu_dai);
849 if (ret < 0)
850 return ret;
851 }
852 return 0;
853}
Liam Girdwoodddee6272011-06-09 14:45:53 +0100854/*
855 * soc level wrapper for pointer callback
856 * If cpu_dai, codec_dai, platform driver has the delay callback, than
857 * the runtime->delay will be updated accordingly.
858 */
859static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
860{
861 struct snd_soc_pcm_runtime *rtd = substream->private_data;
862 struct snd_soc_platform *platform = rtd->platform;
863 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
864 struct snd_soc_dai *codec_dai = rtd->codec_dai;
865 struct snd_pcm_runtime *runtime = substream->runtime;
866 snd_pcm_uframes_t offset = 0;
867 snd_pcm_sframes_t delay = 0;
868
869 if (platform->driver->ops && platform->driver->ops->pointer)
870 offset = platform->driver->ops->pointer(substream);
871
Mark Brownc5914b02013-10-30 17:47:39 -0700872 if (cpu_dai->driver->ops && cpu_dai->driver->ops->delay)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100873 delay += cpu_dai->driver->ops->delay(substream, cpu_dai);
874
Mark Brownc5914b02013-10-30 17:47:39 -0700875 if (codec_dai->driver->ops && codec_dai->driver->ops->delay)
Liam Girdwoodddee6272011-06-09 14:45:53 +0100876 delay += codec_dai->driver->ops->delay(substream, codec_dai);
877
878 if (platform->driver->delay)
879 delay += platform->driver->delay(substream, codec_dai);
880
881 runtime->delay = delay;
882
883 return offset;
884}
885
Liam Girdwood01d75842012-04-25 12:12:49 +0100886/* connect a FE and BE */
887static int dpcm_be_connect(struct snd_soc_pcm_runtime *fe,
888 struct snd_soc_pcm_runtime *be, int stream)
889{
890 struct snd_soc_dpcm *dpcm;
891
892 /* only add new dpcms */
893 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
894 if (dpcm->be == be && dpcm->fe == fe)
895 return 0;
896 }
897
898 dpcm = kzalloc(sizeof(struct snd_soc_dpcm), GFP_KERNEL);
899 if (!dpcm)
900 return -ENOMEM;
901
902 dpcm->be = be;
903 dpcm->fe = fe;
904 be->dpcm[stream].runtime = fe->dpcm[stream].runtime;
905 dpcm->state = SND_SOC_DPCM_LINK_STATE_NEW;
906 list_add(&dpcm->list_be, &fe->dpcm[stream].be_clients);
907 list_add(&dpcm->list_fe, &be->dpcm[stream].fe_clients);
908
Jarkko Nikula7cc302d2013-09-30 17:08:15 +0300909 dev_dbg(fe->dev, "connected new DPCM %s path %s %s %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +0100910 stream ? "capture" : "playback", fe->dai_link->name,
911 stream ? "<-" : "->", be->dai_link->name);
912
Liam Girdwoodf86dcef2012-04-25 12:12:50 +0100913#ifdef CONFIG_DEBUG_FS
914 dpcm->debugfs_state = debugfs_create_u32(be->dai_link->name, 0644,
915 fe->debugfs_dpcm_root, &dpcm->state);
916#endif
Liam Girdwood01d75842012-04-25 12:12:49 +0100917 return 1;
918}
919
920/* reparent a BE onto another FE */
921static void dpcm_be_reparent(struct snd_soc_pcm_runtime *fe,
922 struct snd_soc_pcm_runtime *be, int stream)
923{
924 struct snd_soc_dpcm *dpcm;
925 struct snd_pcm_substream *fe_substream, *be_substream;
926
927 /* reparent if BE is connected to other FEs */
928 if (!be->dpcm[stream].users)
929 return;
930
931 be_substream = snd_soc_dpcm_get_substream(be, stream);
932
933 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
934 if (dpcm->fe == fe)
935 continue;
936
Jarkko Nikula7cc302d2013-09-30 17:08:15 +0300937 dev_dbg(fe->dev, "reparent %s path %s %s %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +0100938 stream ? "capture" : "playback",
939 dpcm->fe->dai_link->name,
940 stream ? "<-" : "->", dpcm->be->dai_link->name);
941
942 fe_substream = snd_soc_dpcm_get_substream(dpcm->fe, stream);
943 be_substream->runtime = fe_substream->runtime;
944 break;
945 }
946}
947
948/* disconnect a BE and FE */
Liam Girdwood23607022014-01-17 17:03:55 +0000949void dpcm_be_disconnect(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +0100950{
951 struct snd_soc_dpcm *dpcm, *d;
952
953 list_for_each_entry_safe(dpcm, d, &fe->dpcm[stream].be_clients, list_be) {
Liam Girdwood103d84a2012-11-19 14:39:15 +0000954 dev_dbg(fe->dev, "ASoC: BE %s disconnect check for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +0100955 stream ? "capture" : "playback",
956 dpcm->be->dai_link->name);
957
958 if (dpcm->state != SND_SOC_DPCM_LINK_STATE_FREE)
959 continue;
960
Jarkko Nikula7cc302d2013-09-30 17:08:15 +0300961 dev_dbg(fe->dev, "freed DSP %s path %s %s %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +0100962 stream ? "capture" : "playback", fe->dai_link->name,
963 stream ? "<-" : "->", dpcm->be->dai_link->name);
964
965 /* BEs still alive need new FE */
966 dpcm_be_reparent(fe, dpcm->be, stream);
967
Liam Girdwoodf86dcef2012-04-25 12:12:50 +0100968#ifdef CONFIG_DEBUG_FS
969 debugfs_remove(dpcm->debugfs_state);
970#endif
Liam Girdwood01d75842012-04-25 12:12:49 +0100971 list_del(&dpcm->list_be);
972 list_del(&dpcm->list_fe);
973 kfree(dpcm);
974 }
975}
976
977/* get BE for DAI widget and stream */
978static struct snd_soc_pcm_runtime *dpcm_get_be(struct snd_soc_card *card,
979 struct snd_soc_dapm_widget *widget, int stream)
980{
981 struct snd_soc_pcm_runtime *be;
982 int i;
983
984 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
985 for (i = 0; i < card->num_links; i++) {
986 be = &card->rtd[i];
987
Liam Girdwood35ea0652012-06-05 19:26:59 +0100988 if (!be->dai_link->no_pcm)
989 continue;
990
Liam Girdwood01d75842012-04-25 12:12:49 +0100991 if (be->cpu_dai->playback_widget == widget ||
992 be->codec_dai->playback_widget == widget)
993 return be;
994 }
995 } else {
996
997 for (i = 0; i < card->num_links; i++) {
998 be = &card->rtd[i];
999
Liam Girdwood35ea0652012-06-05 19:26:59 +01001000 if (!be->dai_link->no_pcm)
1001 continue;
1002
Liam Girdwood01d75842012-04-25 12:12:49 +01001003 if (be->cpu_dai->capture_widget == widget ||
1004 be->codec_dai->capture_widget == widget)
1005 return be;
1006 }
1007 }
1008
Liam Girdwood103d84a2012-11-19 14:39:15 +00001009 dev_err(card->dev, "ASoC: can't get %s BE for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001010 stream ? "capture" : "playback", widget->name);
1011 return NULL;
1012}
1013
1014static inline struct snd_soc_dapm_widget *
1015 rtd_get_cpu_widget(struct snd_soc_pcm_runtime *rtd, int stream)
1016{
1017 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
1018 return rtd->cpu_dai->playback_widget;
1019 else
1020 return rtd->cpu_dai->capture_widget;
1021}
1022
1023static inline struct snd_soc_dapm_widget *
1024 rtd_get_codec_widget(struct snd_soc_pcm_runtime *rtd, int stream)
1025{
1026 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
1027 return rtd->codec_dai->playback_widget;
1028 else
1029 return rtd->codec_dai->capture_widget;
1030}
1031
1032static int widget_in_list(struct snd_soc_dapm_widget_list *list,
1033 struct snd_soc_dapm_widget *widget)
1034{
1035 int i;
1036
1037 for (i = 0; i < list->num_widgets; i++) {
1038 if (widget == list->widgets[i])
1039 return 1;
1040 }
1041
1042 return 0;
1043}
1044
Liam Girdwood23607022014-01-17 17:03:55 +00001045int dpcm_path_get(struct snd_soc_pcm_runtime *fe,
Liam Girdwood01d75842012-04-25 12:12:49 +01001046 int stream, struct snd_soc_dapm_widget_list **list_)
1047{
1048 struct snd_soc_dai *cpu_dai = fe->cpu_dai;
1049 struct snd_soc_dapm_widget_list *list;
1050 int paths;
1051
1052 list = kzalloc(sizeof(struct snd_soc_dapm_widget_list) +
1053 sizeof(struct snd_soc_dapm_widget *), GFP_KERNEL);
1054 if (list == NULL)
1055 return -ENOMEM;
1056
1057 /* get number of valid DAI paths and their widgets */
1058 paths = snd_soc_dapm_dai_get_connected_widgets(cpu_dai, stream, &list);
1059
Liam Girdwood103d84a2012-11-19 14:39:15 +00001060 dev_dbg(fe->dev, "ASoC: found %d audio %s paths\n", paths,
Liam Girdwood01d75842012-04-25 12:12:49 +01001061 stream ? "capture" : "playback");
1062
1063 *list_ = list;
1064 return paths;
1065}
1066
Liam Girdwood01d75842012-04-25 12:12:49 +01001067static int dpcm_prune_paths(struct snd_soc_pcm_runtime *fe, int stream,
1068 struct snd_soc_dapm_widget_list **list_)
1069{
1070 struct snd_soc_dpcm *dpcm;
1071 struct snd_soc_dapm_widget_list *list = *list_;
1072 struct snd_soc_dapm_widget *widget;
1073 int prune = 0;
1074
1075 /* Destroy any old FE <--> BE connections */
1076 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1077
1078 /* is there a valid CPU DAI widget for this BE */
1079 widget = rtd_get_cpu_widget(dpcm->be, stream);
1080
1081 /* prune the BE if it's no longer in our active list */
1082 if (widget && widget_in_list(list, widget))
1083 continue;
1084
1085 /* is there a valid CODEC DAI widget for this BE */
1086 widget = rtd_get_codec_widget(dpcm->be, stream);
1087
1088 /* prune the BE if it's no longer in our active list */
1089 if (widget && widget_in_list(list, widget))
1090 continue;
1091
Liam Girdwood103d84a2012-11-19 14:39:15 +00001092 dev_dbg(fe->dev, "ASoC: pruning %s BE %s for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001093 stream ? "capture" : "playback",
1094 dpcm->be->dai_link->name, fe->dai_link->name);
1095 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
1096 dpcm->be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
1097 prune++;
1098 }
1099
Liam Girdwood103d84a2012-11-19 14:39:15 +00001100 dev_dbg(fe->dev, "ASoC: found %d old BE paths for pruning\n", prune);
Liam Girdwood01d75842012-04-25 12:12:49 +01001101 return prune;
1102}
1103
1104static int dpcm_add_paths(struct snd_soc_pcm_runtime *fe, int stream,
1105 struct snd_soc_dapm_widget_list **list_)
1106{
1107 struct snd_soc_card *card = fe->card;
1108 struct snd_soc_dapm_widget_list *list = *list_;
1109 struct snd_soc_pcm_runtime *be;
1110 int i, new = 0, err;
1111
1112 /* Create any new FE <--> BE connections */
1113 for (i = 0; i < list->num_widgets; i++) {
1114
Mark Brown46162742013-06-05 19:36:11 +01001115 switch (list->widgets[i]->id) {
1116 case snd_soc_dapm_dai_in:
1117 case snd_soc_dapm_dai_out:
1118 break;
1119 default:
Liam Girdwood01d75842012-04-25 12:12:49 +01001120 continue;
Mark Brown46162742013-06-05 19:36:11 +01001121 }
Liam Girdwood01d75842012-04-25 12:12:49 +01001122
1123 /* is there a valid BE rtd for this widget */
1124 be = dpcm_get_be(card, list->widgets[i], stream);
1125 if (!be) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001126 dev_err(fe->dev, "ASoC: no BE found for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001127 list->widgets[i]->name);
1128 continue;
1129 }
1130
1131 /* make sure BE is a real BE */
1132 if (!be->dai_link->no_pcm)
1133 continue;
1134
1135 /* don't connect if FE is not running */
Liam Girdwood23607022014-01-17 17:03:55 +00001136 if (!fe->dpcm[stream].runtime && !fe->fe_compr)
Liam Girdwood01d75842012-04-25 12:12:49 +01001137 continue;
1138
1139 /* newly connected FE and BE */
1140 err = dpcm_be_connect(fe, be, stream);
1141 if (err < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001142 dev_err(fe->dev, "ASoC: can't connect %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001143 list->widgets[i]->name);
1144 break;
1145 } else if (err == 0) /* already connected */
1146 continue;
1147
1148 /* new */
1149 be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
1150 new++;
1151 }
1152
Liam Girdwood103d84a2012-11-19 14:39:15 +00001153 dev_dbg(fe->dev, "ASoC: found %d new BE paths\n", new);
Liam Girdwood01d75842012-04-25 12:12:49 +01001154 return new;
1155}
1156
1157/*
1158 * Find the corresponding BE DAIs that source or sink audio to this
1159 * FE substream.
1160 */
Liam Girdwood23607022014-01-17 17:03:55 +00001161int dpcm_process_paths(struct snd_soc_pcm_runtime *fe,
Liam Girdwood01d75842012-04-25 12:12:49 +01001162 int stream, struct snd_soc_dapm_widget_list **list, int new)
1163{
1164 if (new)
1165 return dpcm_add_paths(fe, stream, list);
1166 else
1167 return dpcm_prune_paths(fe, stream, list);
1168}
1169
Liam Girdwood23607022014-01-17 17:03:55 +00001170void dpcm_clear_pending_state(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001171{
1172 struct snd_soc_dpcm *dpcm;
1173
1174 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
1175 dpcm->be->dpcm[stream].runtime_update =
1176 SND_SOC_DPCM_UPDATE_NO;
1177}
1178
1179static void dpcm_be_dai_startup_unwind(struct snd_soc_pcm_runtime *fe,
1180 int stream)
1181{
1182 struct snd_soc_dpcm *dpcm;
1183
1184 /* disable any enabled and non active backends */
1185 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1186
1187 struct snd_soc_pcm_runtime *be = dpcm->be;
1188 struct snd_pcm_substream *be_substream =
1189 snd_soc_dpcm_get_substream(be, stream);
1190
1191 if (be->dpcm[stream].users == 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001192 dev_err(be->dev, "ASoC: no users %s at close - state %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001193 stream ? "capture" : "playback",
1194 be->dpcm[stream].state);
1195
1196 if (--be->dpcm[stream].users != 0)
1197 continue;
1198
1199 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)
1200 continue;
1201
1202 soc_pcm_close(be_substream);
1203 be_substream->runtime = NULL;
1204 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1205 }
1206}
1207
Liam Girdwood23607022014-01-17 17:03:55 +00001208int dpcm_be_dai_startup(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001209{
1210 struct snd_soc_dpcm *dpcm;
1211 int err, count = 0;
1212
1213 /* only startup BE DAIs that are either sinks or sources to this FE DAI */
1214 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1215
1216 struct snd_soc_pcm_runtime *be = dpcm->be;
1217 struct snd_pcm_substream *be_substream =
1218 snd_soc_dpcm_get_substream(be, stream);
1219
Russell King - ARM Linux2062b4c2013-10-31 15:09:20 +00001220 if (!be_substream) {
1221 dev_err(be->dev, "ASoC: no backend %s stream\n",
1222 stream ? "capture" : "playback");
1223 continue;
1224 }
1225
Liam Girdwood01d75842012-04-25 12:12:49 +01001226 /* is this op for this BE ? */
1227 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1228 continue;
1229
1230 /* first time the dpcm is open ? */
1231 if (be->dpcm[stream].users == DPCM_MAX_BE_USERS)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001232 dev_err(be->dev, "ASoC: too many users %s at open %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001233 stream ? "capture" : "playback",
1234 be->dpcm[stream].state);
1235
1236 if (be->dpcm[stream].users++ != 0)
1237 continue;
1238
1239 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_NEW) &&
1240 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_CLOSE))
1241 continue;
1242
Russell King - ARM Linux2062b4c2013-10-31 15:09:20 +00001243 dev_dbg(be->dev, "ASoC: open %s BE %s\n",
1244 stream ? "capture" : "playback", be->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001245
1246 be_substream->runtime = be->dpcm[stream].runtime;
1247 err = soc_pcm_open(be_substream);
1248 if (err < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001249 dev_err(be->dev, "ASoC: BE open failed %d\n", err);
Liam Girdwood01d75842012-04-25 12:12:49 +01001250 be->dpcm[stream].users--;
1251 if (be->dpcm[stream].users < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001252 dev_err(be->dev, "ASoC: no users %s at unwind %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001253 stream ? "capture" : "playback",
1254 be->dpcm[stream].state);
1255
1256 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1257 goto unwind;
1258 }
1259
1260 be->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1261 count++;
1262 }
1263
1264 return count;
1265
1266unwind:
1267 /* disable any enabled and non active backends */
1268 list_for_each_entry_continue_reverse(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1269 struct snd_soc_pcm_runtime *be = dpcm->be;
1270 struct snd_pcm_substream *be_substream =
1271 snd_soc_dpcm_get_substream(be, stream);
1272
1273 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1274 continue;
1275
1276 if (be->dpcm[stream].users == 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001277 dev_err(be->dev, "ASoC: no users %s at close %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001278 stream ? "capture" : "playback",
1279 be->dpcm[stream].state);
1280
1281 if (--be->dpcm[stream].users != 0)
1282 continue;
1283
1284 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)
1285 continue;
1286
1287 soc_pcm_close(be_substream);
1288 be_substream->runtime = NULL;
1289 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1290 }
1291
1292 return err;
1293}
1294
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001295static void dpcm_init_runtime_hw(struct snd_pcm_runtime *runtime,
1296 struct snd_soc_pcm_stream *stream)
1297{
1298 runtime->hw.rate_min = stream->rate_min;
1299 runtime->hw.rate_max = stream->rate_max;
1300 runtime->hw.channels_min = stream->channels_min;
1301 runtime->hw.channels_max = stream->channels_max;
Lars-Peter Clausen002220a2014-01-06 14:19:07 +01001302 if (runtime->hw.formats)
1303 runtime->hw.formats &= stream->formats;
1304 else
1305 runtime->hw.formats = stream->formats;
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001306 runtime->hw.rates = stream->rates;
1307}
1308
Mark Brown45c0a182012-05-09 21:46:27 +01001309static void dpcm_set_fe_runtime(struct snd_pcm_substream *substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001310{
1311 struct snd_pcm_runtime *runtime = substream->runtime;
1312 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1313 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1314 struct snd_soc_dai_driver *cpu_dai_drv = cpu_dai->driver;
1315
Lars-Peter Clausen08ae9b42014-01-06 14:19:06 +01001316 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
1317 dpcm_init_runtime_hw(runtime, &cpu_dai_drv->playback);
1318 else
1319 dpcm_init_runtime_hw(runtime, &cpu_dai_drv->capture);
Liam Girdwood01d75842012-04-25 12:12:49 +01001320}
1321
1322static int dpcm_fe_dai_startup(struct snd_pcm_substream *fe_substream)
1323{
1324 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
1325 struct snd_pcm_runtime *runtime = fe_substream->runtime;
1326 int stream = fe_substream->stream, ret = 0;
1327
1328 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
1329
1330 ret = dpcm_be_dai_startup(fe, fe_substream->stream);
1331 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001332 dev_err(fe->dev,"ASoC: failed to start some BEs %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001333 goto be_err;
1334 }
1335
Liam Girdwood103d84a2012-11-19 14:39:15 +00001336 dev_dbg(fe->dev, "ASoC: open FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001337
1338 /* start the DAI frontend */
1339 ret = soc_pcm_open(fe_substream);
1340 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001341 dev_err(fe->dev,"ASoC: failed to start FE %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001342 goto unwind;
1343 }
1344
1345 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
1346
1347 dpcm_set_fe_runtime(fe_substream);
1348 snd_pcm_limit_hw_rates(runtime);
1349
1350 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
1351 return 0;
1352
1353unwind:
1354 dpcm_be_dai_startup_unwind(fe, fe_substream->stream);
1355be_err:
1356 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
1357 return ret;
1358}
1359
Liam Girdwood23607022014-01-17 17:03:55 +00001360int dpcm_be_dai_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001361{
1362 struct snd_soc_dpcm *dpcm;
1363
1364 /* only shutdown BEs that are either sinks or sources to this FE DAI */
1365 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1366
1367 struct snd_soc_pcm_runtime *be = dpcm->be;
1368 struct snd_pcm_substream *be_substream =
1369 snd_soc_dpcm_get_substream(be, stream);
1370
1371 /* is this op for this BE ? */
1372 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1373 continue;
1374
1375 if (be->dpcm[stream].users == 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001376 dev_err(be->dev, "ASoC: no users %s at close - state %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001377 stream ? "capture" : "playback",
1378 be->dpcm[stream].state);
1379
1380 if (--be->dpcm[stream].users != 0)
1381 continue;
1382
1383 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
1384 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN))
1385 continue;
1386
Liam Girdwood103d84a2012-11-19 14:39:15 +00001387 dev_dbg(be->dev, "ASoC: close BE %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001388 dpcm->fe->dai_link->name);
1389
1390 soc_pcm_close(be_substream);
1391 be_substream->runtime = NULL;
1392
1393 be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1394 }
1395 return 0;
1396}
1397
1398static int dpcm_fe_dai_shutdown(struct snd_pcm_substream *substream)
1399{
1400 struct snd_soc_pcm_runtime *fe = substream->private_data;
1401 int stream = substream->stream;
1402
1403 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
1404
1405 /* shutdown the BEs */
1406 dpcm_be_dai_shutdown(fe, substream->stream);
1407
Liam Girdwood103d84a2012-11-19 14:39:15 +00001408 dev_dbg(fe->dev, "ASoC: close FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001409
1410 /* now shutdown the frontend */
1411 soc_pcm_close(substream);
1412
1413 /* run the stream event for each BE */
1414 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP);
1415
1416 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
1417 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
1418 return 0;
1419}
1420
Liam Girdwood23607022014-01-17 17:03:55 +00001421int dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001422{
1423 struct snd_soc_dpcm *dpcm;
1424
1425 /* only hw_params backends that are either sinks or sources
1426 * to this frontend DAI */
1427 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1428
1429 struct snd_soc_pcm_runtime *be = dpcm->be;
1430 struct snd_pcm_substream *be_substream =
1431 snd_soc_dpcm_get_substream(be, stream);
1432
1433 /* is this op for this BE ? */
1434 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1435 continue;
1436
1437 /* only free hw when no longer used - check all FEs */
1438 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1439 continue;
1440
1441 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1442 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
1443 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
Patrick Lai08b27842012-12-19 19:36:02 -08001444 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED) &&
Liam Girdwood01d75842012-04-25 12:12:49 +01001445 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
1446 continue;
1447
Liam Girdwood103d84a2012-11-19 14:39:15 +00001448 dev_dbg(be->dev, "ASoC: hw_free BE %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001449 dpcm->fe->dai_link->name);
1450
1451 soc_pcm_hw_free(be_substream);
1452
1453 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
1454 }
1455
1456 return 0;
1457}
1458
Mark Brown45c0a182012-05-09 21:46:27 +01001459static int dpcm_fe_dai_hw_free(struct snd_pcm_substream *substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001460{
1461 struct snd_soc_pcm_runtime *fe = substream->private_data;
1462 int err, stream = substream->stream;
1463
1464 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
1465 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
1466
Liam Girdwood103d84a2012-11-19 14:39:15 +00001467 dev_dbg(fe->dev, "ASoC: hw_free FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001468
1469 /* call hw_free on the frontend */
1470 err = soc_pcm_hw_free(substream);
1471 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001472 dev_err(fe->dev,"ASoC: hw_free FE %s failed\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001473 fe->dai_link->name);
1474
1475 /* only hw_params backends that are either sinks or sources
1476 * to this frontend DAI */
1477 err = dpcm_be_dai_hw_free(fe, stream);
1478
1479 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE;
1480 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
1481
1482 mutex_unlock(&fe->card->mutex);
1483 return 0;
1484}
1485
Liam Girdwood23607022014-01-17 17:03:55 +00001486int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001487{
1488 struct snd_soc_dpcm *dpcm;
1489 int ret;
1490
1491 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1492
1493 struct snd_soc_pcm_runtime *be = dpcm->be;
1494 struct snd_pcm_substream *be_substream =
1495 snd_soc_dpcm_get_substream(be, stream);
1496
1497 /* is this op for this BE ? */
1498 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1499 continue;
1500
1501 /* only allow hw_params() if no connected FEs are running */
1502 if (!snd_soc_dpcm_can_be_params(fe, be, stream))
1503 continue;
1504
1505 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
1506 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1507 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE))
1508 continue;
1509
Liam Girdwood103d84a2012-11-19 14:39:15 +00001510 dev_dbg(be->dev, "ASoC: hw_params BE %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001511 dpcm->fe->dai_link->name);
1512
1513 /* copy params for each dpcm */
1514 memcpy(&dpcm->hw_params, &fe->dpcm[stream].hw_params,
1515 sizeof(struct snd_pcm_hw_params));
1516
1517 /* perform any hw_params fixups */
1518 if (be->dai_link->be_hw_params_fixup) {
1519 ret = be->dai_link->be_hw_params_fixup(be,
1520 &dpcm->hw_params);
1521 if (ret < 0) {
1522 dev_err(be->dev,
Liam Girdwood103d84a2012-11-19 14:39:15 +00001523 "ASoC: hw_params BE fixup failed %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001524 ret);
1525 goto unwind;
1526 }
1527 }
1528
1529 ret = soc_pcm_hw_params(be_substream, &dpcm->hw_params);
1530 if (ret < 0) {
1531 dev_err(dpcm->be->dev,
Liam Girdwood103d84a2012-11-19 14:39:15 +00001532 "ASoC: hw_params BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001533 goto unwind;
1534 }
1535
1536 be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
1537 }
1538 return 0;
1539
1540unwind:
1541 /* disable any enabled and non active backends */
1542 list_for_each_entry_continue_reverse(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1543 struct snd_soc_pcm_runtime *be = dpcm->be;
1544 struct snd_pcm_substream *be_substream =
1545 snd_soc_dpcm_get_substream(be, stream);
1546
1547 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1548 continue;
1549
1550 /* only allow hw_free() if no connected FEs are running */
1551 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1552 continue;
1553
1554 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) &&
1555 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1556 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
1557 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
1558 continue;
1559
1560 soc_pcm_hw_free(be_substream);
1561 }
1562
1563 return ret;
1564}
1565
Mark Brown45c0a182012-05-09 21:46:27 +01001566static int dpcm_fe_dai_hw_params(struct snd_pcm_substream *substream,
1567 struct snd_pcm_hw_params *params)
Liam Girdwood01d75842012-04-25 12:12:49 +01001568{
1569 struct snd_soc_pcm_runtime *fe = substream->private_data;
1570 int ret, stream = substream->stream;
1571
1572 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
1573 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
1574
1575 memcpy(&fe->dpcm[substream->stream].hw_params, params,
1576 sizeof(struct snd_pcm_hw_params));
1577 ret = dpcm_be_dai_hw_params(fe, substream->stream);
1578 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001579 dev_err(fe->dev,"ASoC: hw_params BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001580 goto out;
1581 }
1582
Liam Girdwood103d84a2012-11-19 14:39:15 +00001583 dev_dbg(fe->dev, "ASoC: hw_params FE %s rate %d chan %x fmt %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001584 fe->dai_link->name, params_rate(params),
1585 params_channels(params), params_format(params));
1586
1587 /* call hw_params on the frontend */
1588 ret = soc_pcm_hw_params(substream, params);
1589 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001590 dev_err(fe->dev,"ASoC: hw_params FE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001591 dpcm_be_dai_hw_free(fe, stream);
1592 } else
1593 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS;
1594
1595out:
1596 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
1597 mutex_unlock(&fe->card->mutex);
1598 return ret;
1599}
1600
1601static int dpcm_do_trigger(struct snd_soc_dpcm *dpcm,
1602 struct snd_pcm_substream *substream, int cmd)
1603{
1604 int ret;
1605
Liam Girdwood103d84a2012-11-19 14:39:15 +00001606 dev_dbg(dpcm->be->dev, "ASoC: trigger BE %s cmd %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001607 dpcm->fe->dai_link->name, cmd);
1608
1609 ret = soc_pcm_trigger(substream, cmd);
1610 if (ret < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001611 dev_err(dpcm->be->dev,"ASoC: trigger BE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001612
1613 return ret;
1614}
1615
Liam Girdwood23607022014-01-17 17:03:55 +00001616int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime *fe, int stream,
Mark Brown45c0a182012-05-09 21:46:27 +01001617 int cmd)
Liam Girdwood01d75842012-04-25 12:12:49 +01001618{
1619 struct snd_soc_dpcm *dpcm;
1620 int ret = 0;
1621
1622 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1623
1624 struct snd_soc_pcm_runtime *be = dpcm->be;
1625 struct snd_pcm_substream *be_substream =
1626 snd_soc_dpcm_get_substream(be, stream);
1627
1628 /* is this op for this BE ? */
1629 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1630 continue;
1631
1632 switch (cmd) {
1633 case SNDRV_PCM_TRIGGER_START:
1634 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
1635 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
1636 continue;
1637
1638 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1639 if (ret)
1640 return ret;
1641
1642 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
1643 break;
1644 case SNDRV_PCM_TRIGGER_RESUME:
1645 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND))
1646 continue;
1647
1648 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1649 if (ret)
1650 return ret;
1651
1652 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
1653 break;
1654 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1655 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED))
1656 continue;
1657
1658 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1659 if (ret)
1660 return ret;
1661
1662 be->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
1663 break;
1664 case SNDRV_PCM_TRIGGER_STOP:
1665 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
1666 continue;
1667
1668 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1669 continue;
1670
1671 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1672 if (ret)
1673 return ret;
1674
1675 be->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
1676 break;
1677 case SNDRV_PCM_TRIGGER_SUSPEND:
Nicolin Chen868a6ca2014-05-12 20:12:05 +08001678 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
Liam Girdwood01d75842012-04-25 12:12:49 +01001679 continue;
1680
1681 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1682 continue;
1683
1684 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1685 if (ret)
1686 return ret;
1687
1688 be->dpcm[stream].state = SND_SOC_DPCM_STATE_SUSPEND;
1689 break;
1690 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1691 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
1692 continue;
1693
1694 if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
1695 continue;
1696
1697 ret = dpcm_do_trigger(dpcm, be_substream, cmd);
1698 if (ret)
1699 return ret;
1700
1701 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
1702 break;
1703 }
1704 }
1705
1706 return ret;
1707}
1708EXPORT_SYMBOL_GPL(dpcm_be_dai_trigger);
1709
Mark Brown45c0a182012-05-09 21:46:27 +01001710static int dpcm_fe_dai_trigger(struct snd_pcm_substream *substream, int cmd)
Liam Girdwood01d75842012-04-25 12:12:49 +01001711{
1712 struct snd_soc_pcm_runtime *fe = substream->private_data;
1713 int stream = substream->stream, ret;
1714 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
1715
1716 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
1717
1718 switch (trigger) {
1719 case SND_SOC_DPCM_TRIGGER_PRE:
1720 /* call trigger on the frontend before the backend. */
1721
Liam Girdwood103d84a2012-11-19 14:39:15 +00001722 dev_dbg(fe->dev, "ASoC: pre trigger FE %s cmd %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001723 fe->dai_link->name, cmd);
1724
1725 ret = soc_pcm_trigger(substream, cmd);
1726 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001727 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001728 goto out;
1729 }
1730
1731 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
1732 break;
1733 case SND_SOC_DPCM_TRIGGER_POST:
1734 /* call trigger on the frontend after the backend. */
1735
1736 ret = dpcm_be_dai_trigger(fe, substream->stream, cmd);
1737 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001738 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood01d75842012-04-25 12:12:49 +01001739 goto out;
1740 }
1741
Liam Girdwood103d84a2012-11-19 14:39:15 +00001742 dev_dbg(fe->dev, "ASoC: post trigger FE %s cmd %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001743 fe->dai_link->name, cmd);
1744
1745 ret = soc_pcm_trigger(substream, cmd);
1746 break;
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001747 case SND_SOC_DPCM_TRIGGER_BESPOKE:
1748 /* bespoke trigger() - handles both FE and BEs */
1749
Liam Girdwood103d84a2012-11-19 14:39:15 +00001750 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd %d\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001751 fe->dai_link->name, cmd);
1752
1753 ret = soc_pcm_bespoke_trigger(substream, cmd);
1754 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001755 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001756 goto out;
1757 }
1758 break;
Liam Girdwood01d75842012-04-25 12:12:49 +01001759 default:
Liam Girdwood103d84a2012-11-19 14:39:15 +00001760 dev_err(fe->dev, "ASoC: invalid trigger cmd %d for %s\n", cmd,
Liam Girdwood01d75842012-04-25 12:12:49 +01001761 fe->dai_link->name);
1762 ret = -EINVAL;
1763 goto out;
1764 }
1765
1766 switch (cmd) {
1767 case SNDRV_PCM_TRIGGER_START:
1768 case SNDRV_PCM_TRIGGER_RESUME:
1769 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1770 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
1771 break;
1772 case SNDRV_PCM_TRIGGER_STOP:
1773 case SNDRV_PCM_TRIGGER_SUSPEND:
1774 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1775 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
1776 break;
1777 }
1778
1779out:
1780 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
1781 return ret;
1782}
1783
Liam Girdwood23607022014-01-17 17:03:55 +00001784int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime *fe, int stream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001785{
1786 struct snd_soc_dpcm *dpcm;
1787 int ret = 0;
1788
1789 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1790
1791 struct snd_soc_pcm_runtime *be = dpcm->be;
1792 struct snd_pcm_substream *be_substream =
1793 snd_soc_dpcm_get_substream(be, stream);
1794
1795 /* is this op for this BE ? */
1796 if (!snd_soc_dpcm_be_can_update(fe, be, stream))
1797 continue;
1798
1799 if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
1800 (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP))
1801 continue;
1802
Liam Girdwood103d84a2012-11-19 14:39:15 +00001803 dev_dbg(be->dev, "ASoC: prepare BE %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001804 dpcm->fe->dai_link->name);
1805
1806 ret = soc_pcm_prepare(be_substream);
1807 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001808 dev_err(be->dev, "ASoC: backend prepare failed %d\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001809 ret);
1810 break;
1811 }
1812
1813 be->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
1814 }
1815 return ret;
1816}
1817
Mark Brown45c0a182012-05-09 21:46:27 +01001818static int dpcm_fe_dai_prepare(struct snd_pcm_substream *substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01001819{
1820 struct snd_soc_pcm_runtime *fe = substream->private_data;
1821 int stream = substream->stream, ret = 0;
1822
1823 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
1824
Liam Girdwood103d84a2012-11-19 14:39:15 +00001825 dev_dbg(fe->dev, "ASoC: prepare FE %s\n", fe->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01001826
1827 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
1828
1829 /* there is no point preparing this FE if there are no BEs */
1830 if (list_empty(&fe->dpcm[stream].be_clients)) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001831 dev_err(fe->dev, "ASoC: no backend DAIs enabled for %s\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001832 fe->dai_link->name);
1833 ret = -EINVAL;
1834 goto out;
1835 }
1836
1837 ret = dpcm_be_dai_prepare(fe, substream->stream);
1838 if (ret < 0)
1839 goto out;
1840
1841 /* call prepare on the frontend */
1842 ret = soc_pcm_prepare(substream);
1843 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001844 dev_err(fe->dev,"ASoC: prepare FE %s failed\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01001845 fe->dai_link->name);
1846 goto out;
1847 }
1848
1849 /* run the stream event for each BE */
1850 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_START);
1851 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
1852
1853out:
1854 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
1855 mutex_unlock(&fe->card->mutex);
1856
1857 return ret;
1858}
1859
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01001860static int soc_pcm_ioctl(struct snd_pcm_substream *substream,
1861 unsigned int cmd, void *arg)
1862{
1863 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1864 struct snd_soc_platform *platform = rtd->platform;
1865
Mark Brownc5914b02013-10-30 17:47:39 -07001866 if (platform->driver->ops && platform->driver->ops->ioctl)
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01001867 return platform->driver->ops->ioctl(substream, cmd, arg);
1868 return snd_pcm_lib_ioctl(substream, cmd, arg);
1869}
1870
Liam Girdwood618dae12012-04-25 12:12:51 +01001871static int dpcm_run_update_shutdown(struct snd_soc_pcm_runtime *fe, int stream)
1872{
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001873 struct snd_pcm_substream *substream =
1874 snd_soc_dpcm_get_substream(fe, stream);
1875 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
Liam Girdwood618dae12012-04-25 12:12:51 +01001876 int err;
Liam Girdwood01d75842012-04-25 12:12:49 +01001877
Liam Girdwood103d84a2012-11-19 14:39:15 +00001878 dev_dbg(fe->dev, "ASoC: runtime %s close on FE %s\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01001879 stream ? "capture" : "playback", fe->dai_link->name);
1880
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001881 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
1882 /* call bespoke trigger - FE takes care of all BE triggers */
Liam Girdwood103d84a2012-11-19 14:39:15 +00001883 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd stop\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001884 fe->dai_link->name);
1885
1886 err = soc_pcm_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_STOP);
1887 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001888 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001889 } else {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001890 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd stop\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001891 fe->dai_link->name);
1892
1893 err = dpcm_be_dai_trigger(fe, stream, SNDRV_PCM_TRIGGER_STOP);
1894 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001895 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001896 }
Liam Girdwood618dae12012-04-25 12:12:51 +01001897
1898 err = dpcm_be_dai_hw_free(fe, stream);
1899 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001900 dev_err(fe->dev,"ASoC: hw_free FE failed %d\n", err);
Liam Girdwood618dae12012-04-25 12:12:51 +01001901
1902 err = dpcm_be_dai_shutdown(fe, stream);
1903 if (err < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00001904 dev_err(fe->dev,"ASoC: shutdown FE failed %d\n", err);
Liam Girdwood618dae12012-04-25 12:12:51 +01001905
1906 /* run the stream event for each BE */
1907 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
1908
1909 return 0;
1910}
1911
1912static int dpcm_run_update_startup(struct snd_soc_pcm_runtime *fe, int stream)
1913{
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001914 struct snd_pcm_substream *substream =
1915 snd_soc_dpcm_get_substream(fe, stream);
Liam Girdwood618dae12012-04-25 12:12:51 +01001916 struct snd_soc_dpcm *dpcm;
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001917 enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream];
Liam Girdwood618dae12012-04-25 12:12:51 +01001918 int ret;
1919
Liam Girdwood103d84a2012-11-19 14:39:15 +00001920 dev_dbg(fe->dev, "ASoC: runtime %s open on FE %s\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01001921 stream ? "capture" : "playback", fe->dai_link->name);
1922
1923 /* Only start the BE if the FE is ready */
1924 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_FREE ||
1925 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE)
1926 return -EINVAL;
1927
1928 /* startup must always be called for new BEs */
1929 ret = dpcm_be_dai_startup(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03001930 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01001931 goto disconnect;
Liam Girdwood618dae12012-04-25 12:12:51 +01001932
1933 /* keep going if FE state is > open */
1934 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_OPEN)
1935 return 0;
1936
1937 ret = dpcm_be_dai_hw_params(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03001938 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01001939 goto close;
Liam Girdwood618dae12012-04-25 12:12:51 +01001940
1941 /* keep going if FE state is > hw_params */
1942 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_PARAMS)
1943 return 0;
1944
1945
1946 ret = dpcm_be_dai_prepare(fe, stream);
Dan Carpenterfffc0ca2013-01-10 11:59:57 +03001947 if (ret < 0)
Liam Girdwood618dae12012-04-25 12:12:51 +01001948 goto hw_free;
Liam Girdwood618dae12012-04-25 12:12:51 +01001949
1950 /* run the stream event for each BE */
1951 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP);
1952
1953 /* keep going if FE state is > prepare */
1954 if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_PREPARE ||
1955 fe->dpcm[stream].state == SND_SOC_DPCM_STATE_STOP)
1956 return 0;
1957
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001958 if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) {
1959 /* call trigger on the frontend - FE takes care of all BE triggers */
Liam Girdwood103d84a2012-11-19 14:39:15 +00001960 dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd start\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001961 fe->dai_link->name);
Liam Girdwood618dae12012-04-25 12:12:51 +01001962
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001963 ret = soc_pcm_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_START);
1964 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001965 dev_err(fe->dev,"ASoC: bespoke trigger FE failed %d\n", ret);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001966 goto hw_free;
1967 }
1968 } else {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001969 dev_dbg(fe->dev, "ASoC: trigger FE %s cmd start\n",
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001970 fe->dai_link->name);
1971
1972 ret = dpcm_be_dai_trigger(fe, stream,
1973 SNDRV_PCM_TRIGGER_START);
1974 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00001975 dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret);
Liam Girdwood07bf84a2012-04-25 12:12:52 +01001976 goto hw_free;
1977 }
Liam Girdwood618dae12012-04-25 12:12:51 +01001978 }
1979
1980 return 0;
1981
1982hw_free:
1983 dpcm_be_dai_hw_free(fe, stream);
1984close:
1985 dpcm_be_dai_shutdown(fe, stream);
1986disconnect:
1987 /* disconnect any non started BEs */
1988 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
1989 struct snd_soc_pcm_runtime *be = dpcm->be;
1990 if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START)
1991 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
1992 }
1993
1994 return ret;
1995}
1996
1997static int dpcm_run_new_update(struct snd_soc_pcm_runtime *fe, int stream)
1998{
1999 int ret;
2000
2001 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
2002 ret = dpcm_run_update_startup(fe, stream);
2003 if (ret < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002004 dev_err(fe->dev, "ASoC: failed to startup some BEs\n");
Liam Girdwood618dae12012-04-25 12:12:51 +01002005 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
2006
2007 return ret;
2008}
2009
2010static int dpcm_run_old_update(struct snd_soc_pcm_runtime *fe, int stream)
2011{
2012 int ret;
2013
2014 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE;
2015 ret = dpcm_run_update_shutdown(fe, stream);
2016 if (ret < 0)
Liam Girdwood103d84a2012-11-19 14:39:15 +00002017 dev_err(fe->dev, "ASoC: failed to shutdown some BEs\n");
Liam Girdwood618dae12012-04-25 12:12:51 +01002018 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
2019
2020 return ret;
2021}
2022
2023/* Called by DAPM mixer/mux changes to update audio routing between PCMs and
2024 * any DAI links.
2025 */
Lars-Peter Clausenc3f48ae2013-07-24 15:27:36 +02002026int soc_dpcm_runtime_update(struct snd_soc_card *card)
Liam Girdwood618dae12012-04-25 12:12:51 +01002027{
Liam Girdwood618dae12012-04-25 12:12:51 +01002028 int i, old, new, paths;
2029
Liam Girdwood618dae12012-04-25 12:12:51 +01002030 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2031 for (i = 0; i < card->num_rtd; i++) {
2032 struct snd_soc_dapm_widget_list *list;
2033 struct snd_soc_pcm_runtime *fe = &card->rtd[i];
2034
2035 /* make sure link is FE */
2036 if (!fe->dai_link->dynamic)
2037 continue;
2038
2039 /* only check active links */
2040 if (!fe->cpu_dai->active)
2041 continue;
2042
2043 /* DAPM sync will call this to update DSP paths */
Liam Girdwood103d84a2012-11-19 14:39:15 +00002044 dev_dbg(fe->dev, "ASoC: DPCM runtime update for FE %s\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002045 fe->dai_link->name);
2046
2047 /* skip if FE doesn't have playback capability */
2048 if (!fe->cpu_dai->driver->playback.channels_min)
2049 goto capture;
2050
2051 paths = dpcm_path_get(fe, SNDRV_PCM_STREAM_PLAYBACK, &list);
2052 if (paths < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002053 dev_warn(fe->dev, "ASoC: %s no valid %s path\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002054 fe->dai_link->name, "playback");
2055 mutex_unlock(&card->mutex);
2056 return paths;
2057 }
2058
2059 /* update any new playback paths */
2060 new = dpcm_process_paths(fe, SNDRV_PCM_STREAM_PLAYBACK, &list, 1);
2061 if (new) {
2062 dpcm_run_new_update(fe, SNDRV_PCM_STREAM_PLAYBACK);
2063 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_PLAYBACK);
2064 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_PLAYBACK);
2065 }
2066
2067 /* update any old playback paths */
2068 old = dpcm_process_paths(fe, SNDRV_PCM_STREAM_PLAYBACK, &list, 0);
2069 if (old) {
2070 dpcm_run_old_update(fe, SNDRV_PCM_STREAM_PLAYBACK);
2071 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_PLAYBACK);
2072 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_PLAYBACK);
2073 }
2074
2075capture:
2076 /* skip if FE doesn't have capture capability */
2077 if (!fe->cpu_dai->driver->capture.channels_min)
2078 continue;
2079
2080 paths = dpcm_path_get(fe, SNDRV_PCM_STREAM_CAPTURE, &list);
2081 if (paths < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002082 dev_warn(fe->dev, "ASoC: %s no valid %s path\n",
Liam Girdwood618dae12012-04-25 12:12:51 +01002083 fe->dai_link->name, "capture");
2084 mutex_unlock(&card->mutex);
2085 return paths;
2086 }
2087
2088 /* update any new capture paths */
2089 new = dpcm_process_paths(fe, SNDRV_PCM_STREAM_CAPTURE, &list, 1);
2090 if (new) {
2091 dpcm_run_new_update(fe, SNDRV_PCM_STREAM_CAPTURE);
2092 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_CAPTURE);
2093 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_CAPTURE);
2094 }
2095
2096 /* update any old capture paths */
2097 old = dpcm_process_paths(fe, SNDRV_PCM_STREAM_CAPTURE, &list, 0);
2098 if (old) {
2099 dpcm_run_old_update(fe, SNDRV_PCM_STREAM_CAPTURE);
2100 dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_CAPTURE);
2101 dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_CAPTURE);
2102 }
2103
2104 dpcm_path_put(&list);
2105 }
2106
2107 mutex_unlock(&card->mutex);
2108 return 0;
2109}
Liam Girdwood01d75842012-04-25 12:12:49 +01002110int soc_dpcm_be_digital_mute(struct snd_soc_pcm_runtime *fe, int mute)
2111{
2112 struct snd_soc_dpcm *dpcm;
2113 struct list_head *clients =
2114 &fe->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients;
2115
2116 list_for_each_entry(dpcm, clients, list_be) {
2117
2118 struct snd_soc_pcm_runtime *be = dpcm->be;
2119 struct snd_soc_dai *dai = be->codec_dai;
2120 struct snd_soc_dai_driver *drv = dai->driver;
2121
2122 if (be->dai_link->ignore_suspend)
2123 continue;
2124
Liam Girdwood103d84a2012-11-19 14:39:15 +00002125 dev_dbg(be->dev, "ASoC: BE digital mute %s\n", be->dai_link->name);
Liam Girdwood01d75842012-04-25 12:12:49 +01002126
Mark Brownc5914b02013-10-30 17:47:39 -07002127 if (drv->ops && drv->ops->digital_mute && dai->playback_active)
2128 drv->ops->digital_mute(dai, mute);
Liam Girdwood01d75842012-04-25 12:12:49 +01002129 }
2130
2131 return 0;
2132}
2133
Mark Brown45c0a182012-05-09 21:46:27 +01002134static int dpcm_fe_dai_open(struct snd_pcm_substream *fe_substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002135{
2136 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
2137 struct snd_soc_dpcm *dpcm;
2138 struct snd_soc_dapm_widget_list *list;
2139 int ret;
2140 int stream = fe_substream->stream;
2141
2142 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2143 fe->dpcm[stream].runtime = fe_substream->runtime;
2144
2145 if (dpcm_path_get(fe, stream, &list) <= 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002146 dev_dbg(fe->dev, "ASoC: %s no valid %s route\n",
Liam Girdwood01d75842012-04-25 12:12:49 +01002147 fe->dai_link->name, stream ? "capture" : "playback");
Liam Girdwood01d75842012-04-25 12:12:49 +01002148 }
2149
2150 /* calculate valid and active FE <-> BE dpcms */
2151 dpcm_process_paths(fe, stream, &list, 1);
2152
2153 ret = dpcm_fe_dai_startup(fe_substream);
2154 if (ret < 0) {
2155 /* clean up all links */
2156 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
2157 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2158
2159 dpcm_be_disconnect(fe, stream);
2160 fe->dpcm[stream].runtime = NULL;
2161 }
2162
2163 dpcm_clear_pending_state(fe, stream);
2164 dpcm_path_put(&list);
2165 mutex_unlock(&fe->card->mutex);
2166 return ret;
2167}
2168
Mark Brown45c0a182012-05-09 21:46:27 +01002169static int dpcm_fe_dai_close(struct snd_pcm_substream *fe_substream)
Liam Girdwood01d75842012-04-25 12:12:49 +01002170{
2171 struct snd_soc_pcm_runtime *fe = fe_substream->private_data;
2172 struct snd_soc_dpcm *dpcm;
2173 int stream = fe_substream->stream, ret;
2174
2175 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
2176 ret = dpcm_fe_dai_shutdown(fe_substream);
2177
2178 /* mark FE's links ready to prune */
2179 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
2180 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
2181
2182 dpcm_be_disconnect(fe, stream);
2183
2184 fe->dpcm[stream].runtime = NULL;
2185 mutex_unlock(&fe->card->mutex);
2186 return ret;
2187}
2188
Liam Girdwoodddee6272011-06-09 14:45:53 +01002189/* create a new pcm */
2190int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
2191{
Liam Girdwoodddee6272011-06-09 14:45:53 +01002192 struct snd_soc_platform *platform = rtd->platform;
2193 struct snd_soc_dai *codec_dai = rtd->codec_dai;
2194 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2195 struct snd_pcm *pcm;
2196 char new_name[64];
2197 int ret = 0, playback = 0, capture = 0;
2198
Liam Girdwood01d75842012-04-25 12:12:49 +01002199 if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm) {
Liam Girdwood1e9de422014-01-07 17:51:42 +00002200 playback = rtd->dai_link->dpcm_playback;
2201 capture = rtd->dai_link->dpcm_capture;
Liam Girdwood01d75842012-04-25 12:12:49 +01002202 } else {
Mark Brown05679092013-06-01 23:13:53 +01002203 if (codec_dai->driver->playback.channels_min &&
2204 cpu_dai->driver->playback.channels_min)
Liam Girdwood01d75842012-04-25 12:12:49 +01002205 playback = 1;
Mark Brown05679092013-06-01 23:13:53 +01002206 if (codec_dai->driver->capture.channels_min &&
2207 cpu_dai->driver->capture.channels_min)
Liam Girdwood01d75842012-04-25 12:12:49 +01002208 capture = 1;
2209 }
Sangsu Parka5002312012-01-02 17:15:10 +09002210
Fabio Estevamd6bead02013-08-29 10:32:13 -03002211 if (rtd->dai_link->playback_only) {
2212 playback = 1;
2213 capture = 0;
2214 }
2215
2216 if (rtd->dai_link->capture_only) {
2217 playback = 0;
2218 capture = 1;
2219 }
2220
Liam Girdwood01d75842012-04-25 12:12:49 +01002221 /* create the PCM */
2222 if (rtd->dai_link->no_pcm) {
2223 snprintf(new_name, sizeof(new_name), "(%s)",
2224 rtd->dai_link->stream_name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002225
Liam Girdwood01d75842012-04-25 12:12:49 +01002226 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
2227 playback, capture, &pcm);
2228 } else {
2229 if (rtd->dai_link->dynamic)
2230 snprintf(new_name, sizeof(new_name), "%s (*)",
2231 rtd->dai_link->stream_name);
2232 else
2233 snprintf(new_name, sizeof(new_name), "%s %s-%d",
2234 rtd->dai_link->stream_name, codec_dai->name, num);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002235
Liam Girdwood01d75842012-04-25 12:12:49 +01002236 ret = snd_pcm_new(rtd->card->snd_card, new_name, num, playback,
2237 capture, &pcm);
2238 }
Liam Girdwoodddee6272011-06-09 14:45:53 +01002239 if (ret < 0) {
Liam Girdwood103d84a2012-11-19 14:39:15 +00002240 dev_err(rtd->card->dev, "ASoC: can't create pcm for %s\n",
Liam Girdwood5cb9b742012-07-06 16:54:52 +01002241 rtd->dai_link->name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002242 return ret;
2243 }
Liam Girdwood103d84a2012-11-19 14:39:15 +00002244 dev_dbg(rtd->card->dev, "ASoC: registered pcm #%d %s\n",num, new_name);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002245
2246 /* DAPM dai link stream work */
2247 INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work);
2248
2249 rtd->pcm = pcm;
2250 pcm->private_data = rtd;
Liam Girdwood01d75842012-04-25 12:12:49 +01002251
2252 if (rtd->dai_link->no_pcm) {
2253 if (playback)
2254 pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd;
2255 if (capture)
2256 pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd;
2257 goto out;
2258 }
2259
2260 /* ASoC PCM operations */
2261 if (rtd->dai_link->dynamic) {
2262 rtd->ops.open = dpcm_fe_dai_open;
2263 rtd->ops.hw_params = dpcm_fe_dai_hw_params;
2264 rtd->ops.prepare = dpcm_fe_dai_prepare;
2265 rtd->ops.trigger = dpcm_fe_dai_trigger;
2266 rtd->ops.hw_free = dpcm_fe_dai_hw_free;
2267 rtd->ops.close = dpcm_fe_dai_close;
2268 rtd->ops.pointer = soc_pcm_pointer;
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01002269 rtd->ops.ioctl = soc_pcm_ioctl;
Liam Girdwood01d75842012-04-25 12:12:49 +01002270 } else {
2271 rtd->ops.open = soc_pcm_open;
2272 rtd->ops.hw_params = soc_pcm_hw_params;
2273 rtd->ops.prepare = soc_pcm_prepare;
2274 rtd->ops.trigger = soc_pcm_trigger;
2275 rtd->ops.hw_free = soc_pcm_hw_free;
2276 rtd->ops.close = soc_pcm_close;
2277 rtd->ops.pointer = soc_pcm_pointer;
Liam Girdwoodbe3f3f22012-04-26 16:16:10 +01002278 rtd->ops.ioctl = soc_pcm_ioctl;
Liam Girdwood01d75842012-04-25 12:12:49 +01002279 }
2280
Liam Girdwoodddee6272011-06-09 14:45:53 +01002281 if (platform->driver->ops) {
Liam Girdwood01d75842012-04-25 12:12:49 +01002282 rtd->ops.ack = platform->driver->ops->ack;
2283 rtd->ops.copy = platform->driver->ops->copy;
2284 rtd->ops.silence = platform->driver->ops->silence;
2285 rtd->ops.page = platform->driver->ops->page;
2286 rtd->ops.mmap = platform->driver->ops->mmap;
Liam Girdwoodddee6272011-06-09 14:45:53 +01002287 }
2288
2289 if (playback)
Liam Girdwood01d75842012-04-25 12:12:49 +01002290 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &rtd->ops);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002291
2292 if (capture)
Liam Girdwood01d75842012-04-25 12:12:49 +01002293 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &rtd->ops);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002294
2295 if (platform->driver->pcm_new) {
2296 ret = platform->driver->pcm_new(rtd);
2297 if (ret < 0) {
Mark Brownb1bc7b32012-09-26 14:25:17 +01002298 dev_err(platform->dev,
2299 "ASoC: pcm constructor failed: %d\n",
2300 ret);
Liam Girdwoodddee6272011-06-09 14:45:53 +01002301 return ret;
2302 }
2303 }
2304
2305 pcm->private_free = platform->driver->pcm_free;
Liam Girdwood01d75842012-04-25 12:12:49 +01002306out:
Jarkko Nikula7cc302d2013-09-30 17:08:15 +03002307 dev_info(rtd->card->dev, "%s <-> %s mapping ok\n", codec_dai->name,
Liam Girdwoodddee6272011-06-09 14:45:53 +01002308 cpu_dai->name);
2309 return ret;
2310}
Liam Girdwood01d75842012-04-25 12:12:49 +01002311
2312/* is the current PCM operation for this FE ? */
2313int snd_soc_dpcm_fe_can_update(struct snd_soc_pcm_runtime *fe, int stream)
2314{
2315 if (fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE)
2316 return 1;
2317 return 0;
2318}
2319EXPORT_SYMBOL_GPL(snd_soc_dpcm_fe_can_update);
2320
2321/* is the current PCM operation for this BE ? */
2322int snd_soc_dpcm_be_can_update(struct snd_soc_pcm_runtime *fe,
2323 struct snd_soc_pcm_runtime *be, int stream)
2324{
2325 if ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE) ||
2326 ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_BE) &&
2327 be->dpcm[stream].runtime_update))
2328 return 1;
2329 return 0;
2330}
2331EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_can_update);
2332
2333/* get the substream for this BE */
2334struct snd_pcm_substream *
2335 snd_soc_dpcm_get_substream(struct snd_soc_pcm_runtime *be, int stream)
2336{
2337 return be->pcm->streams[stream].substream;
2338}
2339EXPORT_SYMBOL_GPL(snd_soc_dpcm_get_substream);
2340
2341/* get the BE runtime state */
2342enum snd_soc_dpcm_state
2343 snd_soc_dpcm_be_get_state(struct snd_soc_pcm_runtime *be, int stream)
2344{
2345 return be->dpcm[stream].state;
2346}
2347EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_get_state);
2348
2349/* set the BE runtime state */
2350void snd_soc_dpcm_be_set_state(struct snd_soc_pcm_runtime *be,
2351 int stream, enum snd_soc_dpcm_state state)
2352{
2353 be->dpcm[stream].state = state;
2354}
2355EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_set_state);
2356
2357/*
2358 * We can only hw_free, stop, pause or suspend a BE DAI if any of it's FE
2359 * are not running, paused or suspended for the specified stream direction.
2360 */
2361int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime *fe,
2362 struct snd_soc_pcm_runtime *be, int stream)
2363{
2364 struct snd_soc_dpcm *dpcm;
2365 int state;
2366
2367 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
2368
2369 if (dpcm->fe == fe)
2370 continue;
2371
2372 state = dpcm->fe->dpcm[stream].state;
2373 if (state == SND_SOC_DPCM_STATE_START ||
2374 state == SND_SOC_DPCM_STATE_PAUSED ||
2375 state == SND_SOC_DPCM_STATE_SUSPEND)
2376 return 0;
2377 }
2378
2379 /* it's safe to free/stop this BE DAI */
2380 return 1;
2381}
2382EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_free_stop);
2383
2384/*
2385 * We can only change hw params a BE DAI if any of it's FE are not prepared,
2386 * running, paused or suspended for the specified stream direction.
2387 */
2388int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime *fe,
2389 struct snd_soc_pcm_runtime *be, int stream)
2390{
2391 struct snd_soc_dpcm *dpcm;
2392 int state;
2393
2394 list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) {
2395
2396 if (dpcm->fe == fe)
2397 continue;
2398
2399 state = dpcm->fe->dpcm[stream].state;
2400 if (state == SND_SOC_DPCM_STATE_START ||
2401 state == SND_SOC_DPCM_STATE_PAUSED ||
2402 state == SND_SOC_DPCM_STATE_SUSPEND ||
2403 state == SND_SOC_DPCM_STATE_PREPARE)
2404 return 0;
2405 }
2406
2407 /* it's safe to change hw_params */
2408 return 1;
2409}
2410EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_params);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002411
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002412int snd_soc_platform_trigger(struct snd_pcm_substream *substream,
2413 int cmd, struct snd_soc_platform *platform)
2414{
Mark Brownc5914b02013-10-30 17:47:39 -07002415 if (platform->driver->ops && platform->driver->ops->trigger)
Liam Girdwood07bf84a2012-04-25 12:12:52 +01002416 return platform->driver->ops->trigger(substream, cmd);
2417 return 0;
2418}
2419EXPORT_SYMBOL_GPL(snd_soc_platform_trigger);
2420
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002421#ifdef CONFIG_DEBUG_FS
2422static char *dpcm_state_string(enum snd_soc_dpcm_state state)
2423{
2424 switch (state) {
2425 case SND_SOC_DPCM_STATE_NEW:
2426 return "new";
2427 case SND_SOC_DPCM_STATE_OPEN:
2428 return "open";
2429 case SND_SOC_DPCM_STATE_HW_PARAMS:
2430 return "hw_params";
2431 case SND_SOC_DPCM_STATE_PREPARE:
2432 return "prepare";
2433 case SND_SOC_DPCM_STATE_START:
2434 return "start";
2435 case SND_SOC_DPCM_STATE_STOP:
2436 return "stop";
2437 case SND_SOC_DPCM_STATE_SUSPEND:
2438 return "suspend";
2439 case SND_SOC_DPCM_STATE_PAUSED:
2440 return "paused";
2441 case SND_SOC_DPCM_STATE_HW_FREE:
2442 return "hw_free";
2443 case SND_SOC_DPCM_STATE_CLOSE:
2444 return "close";
2445 }
2446
2447 return "unknown";
2448}
2449
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002450static ssize_t dpcm_show_state(struct snd_soc_pcm_runtime *fe,
2451 int stream, char *buf, size_t size)
2452{
2453 struct snd_pcm_hw_params *params = &fe->dpcm[stream].hw_params;
2454 struct snd_soc_dpcm *dpcm;
2455 ssize_t offset = 0;
2456
2457 /* FE state */
2458 offset += snprintf(buf + offset, size - offset,
2459 "[%s - %s]\n", fe->dai_link->name,
2460 stream ? "Capture" : "Playback");
2461
2462 offset += snprintf(buf + offset, size - offset, "State: %s\n",
2463 dpcm_state_string(fe->dpcm[stream].state));
2464
2465 if ((fe->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
2466 (fe->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
2467 offset += snprintf(buf + offset, size - offset,
2468 "Hardware Params: "
2469 "Format = %s, Channels = %d, Rate = %d\n",
2470 snd_pcm_format_name(params_format(params)),
2471 params_channels(params),
2472 params_rate(params));
2473
2474 /* BEs state */
2475 offset += snprintf(buf + offset, size - offset, "Backends:\n");
2476
2477 if (list_empty(&fe->dpcm[stream].be_clients)) {
2478 offset += snprintf(buf + offset, size - offset,
2479 " No active DSP links\n");
2480 goto out;
2481 }
2482
2483 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) {
2484 struct snd_soc_pcm_runtime *be = dpcm->be;
2485 params = &dpcm->hw_params;
2486
2487 offset += snprintf(buf + offset, size - offset,
2488 "- %s\n", be->dai_link->name);
2489
2490 offset += snprintf(buf + offset, size - offset,
2491 " State: %s\n",
2492 dpcm_state_string(be->dpcm[stream].state));
2493
2494 if ((be->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) &&
2495 (be->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP))
2496 offset += snprintf(buf + offset, size - offset,
2497 " Hardware Params: "
2498 "Format = %s, Channels = %d, Rate = %d\n",
2499 snd_pcm_format_name(params_format(params)),
2500 params_channels(params),
2501 params_rate(params));
2502 }
2503
2504out:
2505 return offset;
2506}
2507
2508static ssize_t dpcm_state_read_file(struct file *file, char __user *user_buf,
2509 size_t count, loff_t *ppos)
2510{
2511 struct snd_soc_pcm_runtime *fe = file->private_data;
2512 ssize_t out_count = PAGE_SIZE, offset = 0, ret = 0;
2513 char *buf;
2514
2515 buf = kmalloc(out_count, GFP_KERNEL);
2516 if (!buf)
2517 return -ENOMEM;
2518
2519 if (fe->cpu_dai->driver->playback.channels_min)
2520 offset += dpcm_show_state(fe, SNDRV_PCM_STREAM_PLAYBACK,
2521 buf + offset, out_count - offset);
2522
2523 if (fe->cpu_dai->driver->capture.channels_min)
2524 offset += dpcm_show_state(fe, SNDRV_PCM_STREAM_CAPTURE,
2525 buf + offset, out_count - offset);
2526
Liam Girdwoodf57b8482012-04-27 11:33:46 +01002527 ret = simple_read_from_buffer(user_buf, count, ppos, buf, offset);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002528
Liam Girdwoodf57b8482012-04-27 11:33:46 +01002529 kfree(buf);
2530 return ret;
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002531}
2532
2533static const struct file_operations dpcm_state_fops = {
Liam Girdwoodf57b8482012-04-27 11:33:46 +01002534 .open = simple_open,
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002535 .read = dpcm_state_read_file,
2536 .llseek = default_llseek,
2537};
2538
2539int soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime *rtd)
2540{
Mark Brownb3bba9a2012-05-08 10:33:47 +01002541 if (!rtd->dai_link)
2542 return 0;
2543
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002544 rtd->debugfs_dpcm_root = debugfs_create_dir(rtd->dai_link->name,
2545 rtd->card->debugfs_card_root);
2546 if (!rtd->debugfs_dpcm_root) {
2547 dev_dbg(rtd->dev,
2548 "ASoC: Failed to create dpcm debugfs directory %s\n",
2549 rtd->dai_link->name);
2550 return -EINVAL;
2551 }
2552
Liam Girdwoodf57b8482012-04-27 11:33:46 +01002553 rtd->debugfs_dpcm_state = debugfs_create_file("state", 0444,
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01002554 rtd->debugfs_dpcm_root,
2555 rtd, &dpcm_state_fops);
2556
2557 return 0;
2558}
2559#endif