1ed517582SKuninori Morimoto // SPDX-License-Identifier: GPL-2.0+ 2ed517582SKuninori Morimoto // 3ed517582SKuninori Morimoto // soc-pcm.c -- ALSA SoC PCM 4ed517582SKuninori Morimoto // 5ed517582SKuninori Morimoto // Copyright 2005 Wolfson Microelectronics PLC. 6ed517582SKuninori Morimoto // Copyright 2005 Openedhand Ltd. 7ed517582SKuninori Morimoto // Copyright (C) 2010 Slimlogic Ltd. 8ed517582SKuninori Morimoto // Copyright (C) 2010 Texas Instruments Inc. 9ed517582SKuninori Morimoto // 10ed517582SKuninori Morimoto // Authors: Liam Girdwood <lrg@ti.com> 11ed517582SKuninori Morimoto // Mark Brown <broonie@opensource.wolfsonmicro.com> 12ddee627cSLiam Girdwood 13ddee627cSLiam Girdwood #include <linux/kernel.h> 14ddee627cSLiam Girdwood #include <linux/init.h> 15ddee627cSLiam Girdwood #include <linux/delay.h> 16988e8cc4SNicolin Chen #include <linux/pinctrl/consumer.h> 17d6652ef8SMark Brown #include <linux/pm_runtime.h> 18ddee627cSLiam Girdwood #include <linux/slab.h> 19ddee627cSLiam Girdwood #include <linux/workqueue.h> 2001d7584cSLiam Girdwood #include <linux/export.h> 21f86dcef8SLiam Girdwood #include <linux/debugfs.h> 22ddee627cSLiam Girdwood #include <sound/core.h> 23ddee627cSLiam Girdwood #include <sound/pcm.h> 24ddee627cSLiam Girdwood #include <sound/pcm_params.h> 25ddee627cSLiam Girdwood #include <sound/soc.h> 2601d7584cSLiam Girdwood #include <sound/soc-dpcm.h> 27ddee627cSLiam Girdwood #include <sound/initval.h> 28ddee627cSLiam Girdwood 2901d7584cSLiam Girdwood #define DPCM_MAX_BE_USERS 8 3001d7584cSLiam Girdwood 31cde79035SRicard Wanderlof /* 32cde79035SRicard Wanderlof * snd_soc_dai_stream_valid() - check if a DAI supports the given stream 33cde79035SRicard Wanderlof * 34cde79035SRicard Wanderlof * Returns true if the DAI supports the indicated stream type. 35cde79035SRicard Wanderlof */ 36cde79035SRicard Wanderlof static bool snd_soc_dai_stream_valid(struct snd_soc_dai *dai, int stream) 37cde79035SRicard Wanderlof { 38cde79035SRicard Wanderlof struct snd_soc_pcm_stream *codec_stream; 39cde79035SRicard Wanderlof 40cde79035SRicard Wanderlof if (stream == SNDRV_PCM_STREAM_PLAYBACK) 41cde79035SRicard Wanderlof codec_stream = &dai->driver->playback; 42cde79035SRicard Wanderlof else 43cde79035SRicard Wanderlof codec_stream = &dai->driver->capture; 44cde79035SRicard Wanderlof 45cde79035SRicard Wanderlof /* If the codec specifies any rate at all, it supports the stream. */ 46cde79035SRicard Wanderlof return codec_stream->rates; 47cde79035SRicard Wanderlof } 48cde79035SRicard Wanderlof 4990996f43SLars-Peter Clausen /** 5024894b76SLars-Peter Clausen * snd_soc_runtime_activate() - Increment active count for PCM runtime components 5124894b76SLars-Peter Clausen * @rtd: ASoC PCM runtime that is activated 5224894b76SLars-Peter Clausen * @stream: Direction of the PCM stream 5324894b76SLars-Peter Clausen * 5424894b76SLars-Peter Clausen * Increments the active count for all the DAIs and components attached to a PCM 5524894b76SLars-Peter Clausen * runtime. Should typically be called when a stream is opened. 5624894b76SLars-Peter Clausen * 5724894b76SLars-Peter Clausen * Must be called with the rtd->pcm_mutex being held 5824894b76SLars-Peter Clausen */ 5924894b76SLars-Peter Clausen void snd_soc_runtime_activate(struct snd_soc_pcm_runtime *rtd, int stream) 6024894b76SLars-Peter Clausen { 6124894b76SLars-Peter Clausen struct snd_soc_dai *cpu_dai = rtd->cpu_dai; 622e5894d7SBenoit Cousson int i; 6324894b76SLars-Peter Clausen 6424894b76SLars-Peter Clausen lockdep_assert_held(&rtd->pcm_mutex); 6524894b76SLars-Peter Clausen 6624894b76SLars-Peter Clausen if (stream == SNDRV_PCM_STREAM_PLAYBACK) { 6724894b76SLars-Peter Clausen cpu_dai->playback_active++; 682e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) 692e5894d7SBenoit Cousson rtd->codec_dais[i]->playback_active++; 7024894b76SLars-Peter Clausen } else { 7124894b76SLars-Peter Clausen cpu_dai->capture_active++; 722e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) 732e5894d7SBenoit Cousson rtd->codec_dais[i]->capture_active++; 7424894b76SLars-Peter Clausen } 7524894b76SLars-Peter Clausen 7624894b76SLars-Peter Clausen cpu_dai->active++; 77cdde4ccbSLars-Peter Clausen cpu_dai->component->active++; 782e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) { 792e5894d7SBenoit Cousson rtd->codec_dais[i]->active++; 802e5894d7SBenoit Cousson rtd->codec_dais[i]->component->active++; 812e5894d7SBenoit Cousson } 8224894b76SLars-Peter Clausen } 8324894b76SLars-Peter Clausen 8424894b76SLars-Peter Clausen /** 8524894b76SLars-Peter Clausen * snd_soc_runtime_deactivate() - Decrement active count for PCM runtime components 8624894b76SLars-Peter Clausen * @rtd: ASoC PCM runtime that is deactivated 8724894b76SLars-Peter Clausen * @stream: Direction of the PCM stream 8824894b76SLars-Peter Clausen * 8924894b76SLars-Peter Clausen * Decrements the active count for all the DAIs and components attached to a PCM 9024894b76SLars-Peter Clausen * runtime. Should typically be called when a stream is closed. 9124894b76SLars-Peter Clausen * 9224894b76SLars-Peter Clausen * Must be called with the rtd->pcm_mutex being held 9324894b76SLars-Peter Clausen */ 9424894b76SLars-Peter Clausen void snd_soc_runtime_deactivate(struct snd_soc_pcm_runtime *rtd, int stream) 9524894b76SLars-Peter Clausen { 9624894b76SLars-Peter Clausen struct snd_soc_dai *cpu_dai = rtd->cpu_dai; 972e5894d7SBenoit Cousson int i; 9824894b76SLars-Peter Clausen 9924894b76SLars-Peter Clausen lockdep_assert_held(&rtd->pcm_mutex); 10024894b76SLars-Peter Clausen 10124894b76SLars-Peter Clausen if (stream == SNDRV_PCM_STREAM_PLAYBACK) { 10224894b76SLars-Peter Clausen cpu_dai->playback_active--; 1032e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) 1042e5894d7SBenoit Cousson rtd->codec_dais[i]->playback_active--; 10524894b76SLars-Peter Clausen } else { 10624894b76SLars-Peter Clausen cpu_dai->capture_active--; 1072e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) 1082e5894d7SBenoit Cousson rtd->codec_dais[i]->capture_active--; 10924894b76SLars-Peter Clausen } 11024894b76SLars-Peter Clausen 11124894b76SLars-Peter Clausen cpu_dai->active--; 112cdde4ccbSLars-Peter Clausen cpu_dai->component->active--; 1132e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) { 1142e5894d7SBenoit Cousson rtd->codec_dais[i]->component->active--; 1152e5894d7SBenoit Cousson rtd->codec_dais[i]->active--; 1162e5894d7SBenoit Cousson } 11724894b76SLars-Peter Clausen } 11824894b76SLars-Peter Clausen 11924894b76SLars-Peter Clausen /** 120208a1589SLars-Peter Clausen * snd_soc_runtime_ignore_pmdown_time() - Check whether to ignore the power down delay 121208a1589SLars-Peter Clausen * @rtd: The ASoC PCM runtime that should be checked. 122208a1589SLars-Peter Clausen * 123208a1589SLars-Peter Clausen * This function checks whether the power down delay should be ignored for a 124208a1589SLars-Peter Clausen * specific PCM runtime. Returns true if the delay is 0, if it the DAI link has 125208a1589SLars-Peter Clausen * been configured to ignore the delay, or if none of the components benefits 126208a1589SLars-Peter Clausen * from having the delay. 127208a1589SLars-Peter Clausen */ 128208a1589SLars-Peter Clausen bool snd_soc_runtime_ignore_pmdown_time(struct snd_soc_pcm_runtime *rtd) 129208a1589SLars-Peter Clausen { 130fbb16563SKuninori Morimoto struct snd_soc_rtdcom_list *rtdcom; 131fbb16563SKuninori Morimoto struct snd_soc_component *component; 1322e5894d7SBenoit Cousson bool ignore = true; 1332e5894d7SBenoit Cousson 134208a1589SLars-Peter Clausen if (!rtd->pmdown_time || rtd->dai_link->ignore_pmdown_time) 135208a1589SLars-Peter Clausen return true; 136208a1589SLars-Peter Clausen 137fbb16563SKuninori Morimoto for_each_rtdcom(rtd, rtdcom) { 138fbb16563SKuninori Morimoto component = rtdcom->component; 139fbb16563SKuninori Morimoto 14072c38184SKuninori Morimoto ignore &= !component->driver->use_pmdown_time; 141fbb16563SKuninori Morimoto } 142fbb16563SKuninori Morimoto 143fbb16563SKuninori Morimoto return ignore; 144208a1589SLars-Peter Clausen } 145208a1589SLars-Peter Clausen 146208a1589SLars-Peter Clausen /** 14790996f43SLars-Peter Clausen * snd_soc_set_runtime_hwparams - set the runtime hardware parameters 14890996f43SLars-Peter Clausen * @substream: the pcm substream 14990996f43SLars-Peter Clausen * @hw: the hardware parameters 15090996f43SLars-Peter Clausen * 15190996f43SLars-Peter Clausen * Sets the substream runtime hardware parameters. 15290996f43SLars-Peter Clausen */ 15390996f43SLars-Peter Clausen int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream, 15490996f43SLars-Peter Clausen const struct snd_pcm_hardware *hw) 15590996f43SLars-Peter Clausen { 15690996f43SLars-Peter Clausen struct snd_pcm_runtime *runtime = substream->runtime; 15790996f43SLars-Peter Clausen runtime->hw.info = hw->info; 15890996f43SLars-Peter Clausen runtime->hw.formats = hw->formats; 15990996f43SLars-Peter Clausen runtime->hw.period_bytes_min = hw->period_bytes_min; 16090996f43SLars-Peter Clausen runtime->hw.period_bytes_max = hw->period_bytes_max; 16190996f43SLars-Peter Clausen runtime->hw.periods_min = hw->periods_min; 16290996f43SLars-Peter Clausen runtime->hw.periods_max = hw->periods_max; 16390996f43SLars-Peter Clausen runtime->hw.buffer_bytes_max = hw->buffer_bytes_max; 16490996f43SLars-Peter Clausen runtime->hw.fifo_size = hw->fifo_size; 16590996f43SLars-Peter Clausen return 0; 16690996f43SLars-Peter Clausen } 16790996f43SLars-Peter Clausen EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams); 16890996f43SLars-Peter Clausen 16901d7584cSLiam Girdwood /* DPCM stream event, send event to FE and all active BEs. */ 17023607025SLiam Girdwood int dpcm_dapm_stream_event(struct snd_soc_pcm_runtime *fe, int dir, 17101d7584cSLiam Girdwood int event) 17201d7584cSLiam Girdwood { 17301d7584cSLiam Girdwood struct snd_soc_dpcm *dpcm; 17401d7584cSLiam Girdwood 17501d7584cSLiam Girdwood list_for_each_entry(dpcm, &fe->dpcm[dir].be_clients, list_be) { 17601d7584cSLiam Girdwood 17701d7584cSLiam Girdwood struct snd_soc_pcm_runtime *be = dpcm->be; 17801d7584cSLiam Girdwood 179103d84a3SLiam Girdwood dev_dbg(be->dev, "ASoC: BE %s event %d dir %d\n", 18001d7584cSLiam Girdwood be->dai_link->name, event, dir); 18101d7584cSLiam Girdwood 182b1cd2e34SBanajit Goswami if ((event == SND_SOC_DAPM_STREAM_STOP) && 183b1cd2e34SBanajit Goswami (be->dpcm[dir].users >= 1)) 184b1cd2e34SBanajit Goswami continue; 185b1cd2e34SBanajit Goswami 18601d7584cSLiam Girdwood snd_soc_dapm_stream_event(be, dir, event); 18701d7584cSLiam Girdwood } 18801d7584cSLiam Girdwood 18901d7584cSLiam Girdwood snd_soc_dapm_stream_event(fe, dir, event); 19001d7584cSLiam Girdwood 19101d7584cSLiam Girdwood return 0; 19201d7584cSLiam Girdwood } 19301d7584cSLiam Girdwood 19417841020SDong Aisheng static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream, 19517841020SDong Aisheng struct snd_soc_dai *soc_dai) 196ddee627cSLiam Girdwood { 197ddee627cSLiam Girdwood struct snd_soc_pcm_runtime *rtd = substream->private_data; 198ddee627cSLiam Girdwood int ret; 199ddee627cSLiam Girdwood 2003635bf09SNicolin Chen if (soc_dai->rate && (soc_dai->driver->symmetric_rates || 2013635bf09SNicolin Chen rtd->dai_link->symmetric_rates)) { 2023635bf09SNicolin Chen dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %dHz rate\n", 2033635bf09SNicolin Chen soc_dai->rate); 204ddee627cSLiam Girdwood 2054dcdd43bSLars-Peter Clausen ret = snd_pcm_hw_constraint_single(substream->runtime, 206ddee627cSLiam Girdwood SNDRV_PCM_HW_PARAM_RATE, 2074dcdd43bSLars-Peter Clausen soc_dai->rate); 208ddee627cSLiam Girdwood if (ret < 0) { 20917841020SDong Aisheng dev_err(soc_dai->dev, 2103635bf09SNicolin Chen "ASoC: Unable to apply rate constraint: %d\n", 211103d84a3SLiam Girdwood ret); 212ddee627cSLiam Girdwood return ret; 213ddee627cSLiam Girdwood } 2143635bf09SNicolin Chen } 2153635bf09SNicolin Chen 2163635bf09SNicolin Chen if (soc_dai->channels && (soc_dai->driver->symmetric_channels || 2173635bf09SNicolin Chen rtd->dai_link->symmetric_channels)) { 2183635bf09SNicolin Chen dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %d channel(s)\n", 2193635bf09SNicolin Chen soc_dai->channels); 2203635bf09SNicolin Chen 2214dcdd43bSLars-Peter Clausen ret = snd_pcm_hw_constraint_single(substream->runtime, 2223635bf09SNicolin Chen SNDRV_PCM_HW_PARAM_CHANNELS, 2233635bf09SNicolin Chen soc_dai->channels); 2243635bf09SNicolin Chen if (ret < 0) { 2253635bf09SNicolin Chen dev_err(soc_dai->dev, 2263635bf09SNicolin Chen "ASoC: Unable to apply channel symmetry constraint: %d\n", 2273635bf09SNicolin Chen ret); 2283635bf09SNicolin Chen return ret; 2293635bf09SNicolin Chen } 2303635bf09SNicolin Chen } 2313635bf09SNicolin Chen 2323635bf09SNicolin Chen if (soc_dai->sample_bits && (soc_dai->driver->symmetric_samplebits || 2333635bf09SNicolin Chen rtd->dai_link->symmetric_samplebits)) { 2343635bf09SNicolin Chen dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %d sample bits\n", 2353635bf09SNicolin Chen soc_dai->sample_bits); 2363635bf09SNicolin Chen 2374dcdd43bSLars-Peter Clausen ret = snd_pcm_hw_constraint_single(substream->runtime, 2383635bf09SNicolin Chen SNDRV_PCM_HW_PARAM_SAMPLE_BITS, 2393635bf09SNicolin Chen soc_dai->sample_bits); 2403635bf09SNicolin Chen if (ret < 0) { 2413635bf09SNicolin Chen dev_err(soc_dai->dev, 2423635bf09SNicolin Chen "ASoC: Unable to apply sample bits symmetry constraint: %d\n", 2433635bf09SNicolin Chen ret); 2443635bf09SNicolin Chen return ret; 2453635bf09SNicolin Chen } 2463635bf09SNicolin Chen } 247ddee627cSLiam Girdwood 248ddee627cSLiam Girdwood return 0; 249ddee627cSLiam Girdwood } 250ddee627cSLiam Girdwood 2513635bf09SNicolin Chen static int soc_pcm_params_symmetry(struct snd_pcm_substream *substream, 2523635bf09SNicolin Chen struct snd_pcm_hw_params *params) 2533635bf09SNicolin Chen { 2543635bf09SNicolin Chen struct snd_soc_pcm_runtime *rtd = substream->private_data; 2553635bf09SNicolin Chen struct snd_soc_dai *cpu_dai = rtd->cpu_dai; 2562e5894d7SBenoit Cousson unsigned int rate, channels, sample_bits, symmetry, i; 2573635bf09SNicolin Chen 2583635bf09SNicolin Chen rate = params_rate(params); 2593635bf09SNicolin Chen channels = params_channels(params); 2603635bf09SNicolin Chen sample_bits = snd_pcm_format_physical_width(params_format(params)); 2613635bf09SNicolin Chen 2623635bf09SNicolin Chen /* reject unmatched parameters when applying symmetry */ 2633635bf09SNicolin Chen symmetry = cpu_dai->driver->symmetric_rates || 2643635bf09SNicolin Chen rtd->dai_link->symmetric_rates; 2652e5894d7SBenoit Cousson 2662e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) 2672e5894d7SBenoit Cousson symmetry |= rtd->codec_dais[i]->driver->symmetric_rates; 2682e5894d7SBenoit Cousson 2693635bf09SNicolin Chen if (symmetry && cpu_dai->rate && cpu_dai->rate != rate) { 2703635bf09SNicolin Chen dev_err(rtd->dev, "ASoC: unmatched rate symmetry: %d - %d\n", 2713635bf09SNicolin Chen cpu_dai->rate, rate); 2723635bf09SNicolin Chen return -EINVAL; 2733635bf09SNicolin Chen } 2743635bf09SNicolin Chen 2753635bf09SNicolin Chen symmetry = cpu_dai->driver->symmetric_channels || 2763635bf09SNicolin Chen rtd->dai_link->symmetric_channels; 2772e5894d7SBenoit Cousson 2782e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) 2792e5894d7SBenoit Cousson symmetry |= rtd->codec_dais[i]->driver->symmetric_channels; 2802e5894d7SBenoit Cousson 2813635bf09SNicolin Chen if (symmetry && cpu_dai->channels && cpu_dai->channels != channels) { 2823635bf09SNicolin Chen dev_err(rtd->dev, "ASoC: unmatched channel symmetry: %d - %d\n", 2833635bf09SNicolin Chen cpu_dai->channels, channels); 2843635bf09SNicolin Chen return -EINVAL; 2853635bf09SNicolin Chen } 2863635bf09SNicolin Chen 2873635bf09SNicolin Chen symmetry = cpu_dai->driver->symmetric_samplebits || 2883635bf09SNicolin Chen rtd->dai_link->symmetric_samplebits; 2892e5894d7SBenoit Cousson 2902e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) 2912e5894d7SBenoit Cousson symmetry |= rtd->codec_dais[i]->driver->symmetric_samplebits; 2922e5894d7SBenoit Cousson 2933635bf09SNicolin Chen if (symmetry && cpu_dai->sample_bits && cpu_dai->sample_bits != sample_bits) { 2943635bf09SNicolin Chen dev_err(rtd->dev, "ASoC: unmatched sample bits symmetry: %d - %d\n", 2953635bf09SNicolin Chen cpu_dai->sample_bits, sample_bits); 2963635bf09SNicolin Chen return -EINVAL; 2973635bf09SNicolin Chen } 298ddee627cSLiam Girdwood 299ddee627cSLiam Girdwood return 0; 300ddee627cSLiam Girdwood } 301ddee627cSLiam Girdwood 30262e5f676SLars-Peter Clausen static bool soc_pcm_has_symmetry(struct snd_pcm_substream *substream) 30362e5f676SLars-Peter Clausen { 30462e5f676SLars-Peter Clausen struct snd_soc_pcm_runtime *rtd = substream->private_data; 30562e5f676SLars-Peter Clausen struct snd_soc_dai_driver *cpu_driver = rtd->cpu_dai->driver; 30662e5f676SLars-Peter Clausen struct snd_soc_dai_link *link = rtd->dai_link; 3072e5894d7SBenoit Cousson unsigned int symmetry, i; 30862e5f676SLars-Peter Clausen 3092e5894d7SBenoit Cousson symmetry = cpu_driver->symmetric_rates || link->symmetric_rates || 3102e5894d7SBenoit Cousson cpu_driver->symmetric_channels || link->symmetric_channels || 3112e5894d7SBenoit Cousson cpu_driver->symmetric_samplebits || link->symmetric_samplebits; 3122e5894d7SBenoit Cousson 3132e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) 3142e5894d7SBenoit Cousson symmetry = symmetry || 3152e5894d7SBenoit Cousson rtd->codec_dais[i]->driver->symmetric_rates || 3162e5894d7SBenoit Cousson rtd->codec_dais[i]->driver->symmetric_channels || 3172e5894d7SBenoit Cousson rtd->codec_dais[i]->driver->symmetric_samplebits; 3182e5894d7SBenoit Cousson 3192e5894d7SBenoit Cousson return symmetry; 32062e5f676SLars-Peter Clausen } 32162e5f676SLars-Peter Clausen 3222e5894d7SBenoit Cousson static void soc_pcm_set_msb(struct snd_pcm_substream *substream, int bits) 32358ba9b25SMark Brown { 3242e5894d7SBenoit Cousson struct snd_soc_pcm_runtime *rtd = substream->private_data; 325c6068d3aSTakashi Iwai int ret; 32658ba9b25SMark Brown 32758ba9b25SMark Brown if (!bits) 32858ba9b25SMark Brown return; 32958ba9b25SMark Brown 3300e2a3751SLars-Peter Clausen ret = snd_pcm_hw_constraint_msbits(substream->runtime, 0, 0, bits); 33158ba9b25SMark Brown if (ret != 0) 3320e2a3751SLars-Peter Clausen dev_warn(rtd->dev, "ASoC: Failed to set MSB %d: %d\n", 3330e2a3751SLars-Peter Clausen bits, ret); 33458ba9b25SMark Brown } 33558ba9b25SMark Brown 336c8dd1fecSBenoit Cousson static void soc_pcm_apply_msb(struct snd_pcm_substream *substream) 337bd477c31SLars-Peter Clausen { 338c8dd1fecSBenoit Cousson struct snd_soc_pcm_runtime *rtd = substream->private_data; 339c8dd1fecSBenoit Cousson struct snd_soc_dai *cpu_dai = rtd->cpu_dai; 3402e5894d7SBenoit Cousson struct snd_soc_dai *codec_dai; 3412e5894d7SBenoit Cousson int i; 342c8dd1fecSBenoit Cousson unsigned int bits = 0, cpu_bits; 343c8dd1fecSBenoit Cousson 344c8dd1fecSBenoit Cousson if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { 3452e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) { 3462e5894d7SBenoit Cousson codec_dai = rtd->codec_dais[i]; 3472e5894d7SBenoit Cousson if (codec_dai->driver->playback.sig_bits == 0) { 3482e5894d7SBenoit Cousson bits = 0; 3492e5894d7SBenoit Cousson break; 3502e5894d7SBenoit Cousson } 3512e5894d7SBenoit Cousson bits = max(codec_dai->driver->playback.sig_bits, bits); 3522e5894d7SBenoit Cousson } 353c8dd1fecSBenoit Cousson cpu_bits = cpu_dai->driver->playback.sig_bits; 354c8dd1fecSBenoit Cousson } else { 3552e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) { 3562e5894d7SBenoit Cousson codec_dai = rtd->codec_dais[i]; 3575e63dfccSDaniel Mack if (codec_dai->driver->capture.sig_bits == 0) { 3582e5894d7SBenoit Cousson bits = 0; 3592e5894d7SBenoit Cousson break; 3602e5894d7SBenoit Cousson } 3612e5894d7SBenoit Cousson bits = max(codec_dai->driver->capture.sig_bits, bits); 3622e5894d7SBenoit Cousson } 363c8dd1fecSBenoit Cousson cpu_bits = cpu_dai->driver->capture.sig_bits; 364c8dd1fecSBenoit Cousson } 365c8dd1fecSBenoit Cousson 3662e5894d7SBenoit Cousson soc_pcm_set_msb(substream, bits); 3672e5894d7SBenoit Cousson soc_pcm_set_msb(substream, cpu_bits); 368c8dd1fecSBenoit Cousson } 369c8dd1fecSBenoit Cousson 3702e5894d7SBenoit Cousson static void soc_pcm_init_runtime_hw(struct snd_pcm_substream *substream) 371bd477c31SLars-Peter Clausen { 3722e5894d7SBenoit Cousson struct snd_pcm_runtime *runtime = substream->runtime; 37378e45c99SLars-Peter Clausen struct snd_pcm_hardware *hw = &runtime->hw; 3742e5894d7SBenoit Cousson struct snd_soc_pcm_runtime *rtd = substream->private_data; 3752e5894d7SBenoit Cousson struct snd_soc_dai_driver *cpu_dai_drv = rtd->cpu_dai->driver; 3762e5894d7SBenoit Cousson struct snd_soc_dai_driver *codec_dai_drv; 3772e5894d7SBenoit Cousson struct snd_soc_pcm_stream *codec_stream; 3782e5894d7SBenoit Cousson struct snd_soc_pcm_stream *cpu_stream; 3792e5894d7SBenoit Cousson unsigned int chan_min = 0, chan_max = UINT_MAX; 3802e5894d7SBenoit Cousson unsigned int rate_min = 0, rate_max = UINT_MAX; 3812e5894d7SBenoit Cousson unsigned int rates = UINT_MAX; 3822e5894d7SBenoit Cousson u64 formats = ULLONG_MAX; 3832e5894d7SBenoit Cousson int i; 38478e45c99SLars-Peter Clausen 3852e5894d7SBenoit Cousson if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) 3862e5894d7SBenoit Cousson cpu_stream = &cpu_dai_drv->playback; 38716d7ea91SLars-Peter Clausen else 3882e5894d7SBenoit Cousson cpu_stream = &cpu_dai_drv->capture; 38978e45c99SLars-Peter Clausen 3902e5894d7SBenoit Cousson /* first calculate min/max only for CODECs in the DAI link */ 3912e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) { 392cde79035SRicard Wanderlof 393cde79035SRicard Wanderlof /* 394cde79035SRicard Wanderlof * Skip CODECs which don't support the current stream type. 395cde79035SRicard Wanderlof * Otherwise, since the rate, channel, and format values will 396cde79035SRicard Wanderlof * zero in that case, we would have no usable settings left, 397cde79035SRicard Wanderlof * causing the resulting setup to fail. 398cde79035SRicard Wanderlof * At least one CODEC should match, otherwise we should have 399cde79035SRicard Wanderlof * bailed out on a higher level, since there would be no 400cde79035SRicard Wanderlof * CODEC to support the transfer direction in that case. 401cde79035SRicard Wanderlof */ 402cde79035SRicard Wanderlof if (!snd_soc_dai_stream_valid(rtd->codec_dais[i], 403cde79035SRicard Wanderlof substream->stream)) 404cde79035SRicard Wanderlof continue; 405cde79035SRicard Wanderlof 4062e5894d7SBenoit Cousson codec_dai_drv = rtd->codec_dais[i]->driver; 4072e5894d7SBenoit Cousson if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) 4082e5894d7SBenoit Cousson codec_stream = &codec_dai_drv->playback; 4092e5894d7SBenoit Cousson else 4102e5894d7SBenoit Cousson codec_stream = &codec_dai_drv->capture; 4112e5894d7SBenoit Cousson chan_min = max(chan_min, codec_stream->channels_min); 4122e5894d7SBenoit Cousson chan_max = min(chan_max, codec_stream->channels_max); 4132e5894d7SBenoit Cousson rate_min = max(rate_min, codec_stream->rate_min); 4142e5894d7SBenoit Cousson rate_max = min_not_zero(rate_max, codec_stream->rate_max); 4152e5894d7SBenoit Cousson formats &= codec_stream->formats; 4162e5894d7SBenoit Cousson rates = snd_pcm_rate_mask_intersect(codec_stream->rates, rates); 4172e5894d7SBenoit Cousson } 4182e5894d7SBenoit Cousson 4192e5894d7SBenoit Cousson /* 4202e5894d7SBenoit Cousson * chan min/max cannot be enforced if there are multiple CODEC DAIs 4212e5894d7SBenoit Cousson * connected to a single CPU DAI, use CPU DAI's directly and let 4222e5894d7SBenoit Cousson * channel allocation be fixed up later 4232e5894d7SBenoit Cousson */ 4242e5894d7SBenoit Cousson if (rtd->num_codecs > 1) { 4252e5894d7SBenoit Cousson chan_min = cpu_stream->channels_min; 4262e5894d7SBenoit Cousson chan_max = cpu_stream->channels_max; 4272e5894d7SBenoit Cousson } 4282e5894d7SBenoit Cousson 4292e5894d7SBenoit Cousson hw->channels_min = max(chan_min, cpu_stream->channels_min); 4302e5894d7SBenoit Cousson hw->channels_max = min(chan_max, cpu_stream->channels_max); 4312e5894d7SBenoit Cousson if (hw->formats) 4322e5894d7SBenoit Cousson hw->formats &= formats & cpu_stream->formats; 4332e5894d7SBenoit Cousson else 4342e5894d7SBenoit Cousson hw->formats = formats & cpu_stream->formats; 4352e5894d7SBenoit Cousson hw->rates = snd_pcm_rate_mask_intersect(rates, cpu_stream->rates); 43678e45c99SLars-Peter Clausen 43778e45c99SLars-Peter Clausen snd_pcm_limit_hw_rates(runtime); 43878e45c99SLars-Peter Clausen 43978e45c99SLars-Peter Clausen hw->rate_min = max(hw->rate_min, cpu_stream->rate_min); 4402e5894d7SBenoit Cousson hw->rate_min = max(hw->rate_min, rate_min); 44178e45c99SLars-Peter Clausen hw->rate_max = min_not_zero(hw->rate_max, cpu_stream->rate_max); 4422e5894d7SBenoit Cousson hw->rate_max = min_not_zero(hw->rate_max, rate_max); 443bd477c31SLars-Peter Clausen } 444bd477c31SLars-Peter Clausen 445244e2936SCharles Keepax static int soc_pcm_components_close(struct snd_pcm_substream *substream, 446244e2936SCharles Keepax struct snd_soc_component *last) 447244e2936SCharles Keepax { 448244e2936SCharles Keepax struct snd_soc_pcm_runtime *rtd = substream->private_data; 449244e2936SCharles Keepax struct snd_soc_rtdcom_list *rtdcom; 450244e2936SCharles Keepax struct snd_soc_component *component; 451244e2936SCharles Keepax 452244e2936SCharles Keepax for_each_rtdcom(rtd, rtdcom) { 453244e2936SCharles Keepax component = rtdcom->component; 454244e2936SCharles Keepax 455244e2936SCharles Keepax if (component == last) 456244e2936SCharles Keepax break; 457244e2936SCharles Keepax 458244e2936SCharles Keepax if (!component->driver->ops || 459244e2936SCharles Keepax !component->driver->ops->close) 460244e2936SCharles Keepax continue; 461244e2936SCharles Keepax 462244e2936SCharles Keepax component->driver->ops->close(substream); 463244e2936SCharles Keepax } 464244e2936SCharles Keepax 465244e2936SCharles Keepax return 0; 466244e2936SCharles Keepax } 467244e2936SCharles Keepax 46858ba9b25SMark Brown /* 469ddee627cSLiam Girdwood * Called by ALSA when a PCM substream is opened, the runtime->hw record is 470ddee627cSLiam Girdwood * then initialized and any private data can be allocated. This also calls 471ef050becSCharles Keepax * startup for the cpu DAI, component, machine and codec DAI. 472ddee627cSLiam Girdwood */ 473ddee627cSLiam Girdwood static int soc_pcm_open(struct snd_pcm_substream *substream) 474ddee627cSLiam Girdwood { 475ddee627cSLiam Girdwood struct snd_soc_pcm_runtime *rtd = substream->private_data; 476ddee627cSLiam Girdwood struct snd_pcm_runtime *runtime = substream->runtime; 47790be711eSKuninori Morimoto struct snd_soc_component *component; 47890be711eSKuninori Morimoto struct snd_soc_rtdcom_list *rtdcom; 479ddee627cSLiam Girdwood struct snd_soc_dai *cpu_dai = rtd->cpu_dai; 4802e5894d7SBenoit Cousson struct snd_soc_dai *codec_dai; 4812e5894d7SBenoit Cousson const char *codec_dai_name = "multicodec"; 482244e2936SCharles Keepax int i, ret = 0; 483ddee627cSLiam Girdwood 484988e8cc4SNicolin Chen pinctrl_pm_select_default_state(cpu_dai->dev); 4852e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) 4862e5894d7SBenoit Cousson pinctrl_pm_select_default_state(rtd->codec_dais[i]->dev); 48790be711eSKuninori Morimoto 48890be711eSKuninori Morimoto for_each_rtdcom(rtd, rtdcom) { 48990be711eSKuninori Morimoto component = rtdcom->component; 49090be711eSKuninori Morimoto 49190be711eSKuninori Morimoto pm_runtime_get_sync(component->dev); 49290be711eSKuninori Morimoto } 493d6652ef8SMark Brown 494b8c0dab9SLiam Girdwood mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass); 495ddee627cSLiam Girdwood 496ddee627cSLiam Girdwood /* startup the audio subsystem */ 4979900a422SKuninori Morimoto if (cpu_dai->driver->ops->startup) { 498ddee627cSLiam Girdwood ret = cpu_dai->driver->ops->startup(substream, cpu_dai); 499ddee627cSLiam Girdwood if (ret < 0) { 500103d84a3SLiam Girdwood dev_err(cpu_dai->dev, "ASoC: can't open interface" 501103d84a3SLiam Girdwood " %s: %d\n", cpu_dai->name, ret); 502ddee627cSLiam Girdwood goto out; 503ddee627cSLiam Girdwood } 504ddee627cSLiam Girdwood } 505ddee627cSLiam Girdwood 506b8135864SKuninori Morimoto for_each_rtdcom(rtd, rtdcom) { 507b8135864SKuninori Morimoto component = rtdcom->component; 508b8135864SKuninori Morimoto 509b8135864SKuninori Morimoto if (!component->driver->ops || 510b8135864SKuninori Morimoto !component->driver->ops->open) 511b8135864SKuninori Morimoto continue; 512b8135864SKuninori Morimoto 513244e2936SCharles Keepax ret = component->driver->ops->open(substream); 514244e2936SCharles Keepax if (ret < 0) { 515b8135864SKuninori Morimoto dev_err(component->dev, 516b8135864SKuninori Morimoto "ASoC: can't open component %s: %d\n", 517244e2936SCharles Keepax component->name, ret); 518b8135864SKuninori Morimoto goto component_err; 519244e2936SCharles Keepax } 520244e2936SCharles Keepax } 521244e2936SCharles Keepax component = NULL; 522b8135864SKuninori Morimoto 5232e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) { 5242e5894d7SBenoit Cousson codec_dai = rtd->codec_dais[i]; 5259900a422SKuninori Morimoto if (codec_dai->driver->ops->startup) { 5262e5894d7SBenoit Cousson ret = codec_dai->driver->ops->startup(substream, 5272e5894d7SBenoit Cousson codec_dai); 528ddee627cSLiam Girdwood if (ret < 0) { 5292e5894d7SBenoit Cousson dev_err(codec_dai->dev, 5302e5894d7SBenoit Cousson "ASoC: can't open codec %s: %d\n", 5312e5894d7SBenoit Cousson codec_dai->name, ret); 532ddee627cSLiam Girdwood goto codec_dai_err; 533ddee627cSLiam Girdwood } 534ddee627cSLiam Girdwood } 535ddee627cSLiam Girdwood 5362e5894d7SBenoit Cousson if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) 5372e5894d7SBenoit Cousson codec_dai->tx_mask = 0; 5382e5894d7SBenoit Cousson else 5392e5894d7SBenoit Cousson codec_dai->rx_mask = 0; 5402e5894d7SBenoit Cousson } 5412e5894d7SBenoit Cousson 54275ab9eb6SKuninori Morimoto if (rtd->dai_link->ops->startup) { 543ddee627cSLiam Girdwood ret = rtd->dai_link->ops->startup(substream); 544ddee627cSLiam Girdwood if (ret < 0) { 545103d84a3SLiam Girdwood pr_err("ASoC: %s startup failed: %d\n", 54625bfe662SMark Brown rtd->dai_link->name, ret); 547ddee627cSLiam Girdwood goto machine_err; 548ddee627cSLiam Girdwood } 549ddee627cSLiam Girdwood } 550ddee627cSLiam Girdwood 55101d7584cSLiam Girdwood /* Dynamic PCM DAI links compat checks use dynamic capabilities */ 55201d7584cSLiam Girdwood if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm) 55301d7584cSLiam Girdwood goto dynamic; 55401d7584cSLiam Girdwood 555ddee627cSLiam Girdwood /* Check that the codec and cpu DAIs are compatible */ 5562e5894d7SBenoit Cousson soc_pcm_init_runtime_hw(substream); 5572e5894d7SBenoit Cousson 5582e5894d7SBenoit Cousson if (rtd->num_codecs == 1) 5592e5894d7SBenoit Cousson codec_dai_name = rtd->codec_dai->name; 560ddee627cSLiam Girdwood 56162e5f676SLars-Peter Clausen if (soc_pcm_has_symmetry(substream)) 56262e5f676SLars-Peter Clausen runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX; 56362e5f676SLars-Peter Clausen 564ddee627cSLiam Girdwood ret = -EINVAL; 565ddee627cSLiam Girdwood if (!runtime->hw.rates) { 566103d84a3SLiam Girdwood printk(KERN_ERR "ASoC: %s <-> %s No matching rates\n", 5672e5894d7SBenoit Cousson codec_dai_name, cpu_dai->name); 568ddee627cSLiam Girdwood goto config_err; 569ddee627cSLiam Girdwood } 570ddee627cSLiam Girdwood if (!runtime->hw.formats) { 571103d84a3SLiam Girdwood printk(KERN_ERR "ASoC: %s <-> %s No matching formats\n", 5722e5894d7SBenoit Cousson codec_dai_name, cpu_dai->name); 573ddee627cSLiam Girdwood goto config_err; 574ddee627cSLiam Girdwood } 575ddee627cSLiam Girdwood if (!runtime->hw.channels_min || !runtime->hw.channels_max || 576ddee627cSLiam Girdwood runtime->hw.channels_min > runtime->hw.channels_max) { 577103d84a3SLiam Girdwood printk(KERN_ERR "ASoC: %s <-> %s No matching channels\n", 5782e5894d7SBenoit Cousson codec_dai_name, cpu_dai->name); 579ddee627cSLiam Girdwood goto config_err; 580ddee627cSLiam Girdwood } 581ddee627cSLiam Girdwood 582c8dd1fecSBenoit Cousson soc_pcm_apply_msb(substream); 58358ba9b25SMark Brown 584ddee627cSLiam Girdwood /* Symmetry only applies if we've already got an active stream. */ 58517841020SDong Aisheng if (cpu_dai->active) { 58617841020SDong Aisheng ret = soc_pcm_apply_symmetry(substream, cpu_dai); 58717841020SDong Aisheng if (ret != 0) 58817841020SDong Aisheng goto config_err; 58917841020SDong Aisheng } 59017841020SDong Aisheng 5912e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) { 5922e5894d7SBenoit Cousson if (rtd->codec_dais[i]->active) { 5932e5894d7SBenoit Cousson ret = soc_pcm_apply_symmetry(substream, 5942e5894d7SBenoit Cousson rtd->codec_dais[i]); 595ddee627cSLiam Girdwood if (ret != 0) 596ddee627cSLiam Girdwood goto config_err; 597ddee627cSLiam Girdwood } 5982e5894d7SBenoit Cousson } 599ddee627cSLiam Girdwood 600103d84a3SLiam Girdwood pr_debug("ASoC: %s <-> %s info:\n", 6012e5894d7SBenoit Cousson codec_dai_name, cpu_dai->name); 602103d84a3SLiam Girdwood pr_debug("ASoC: rate mask 0x%x\n", runtime->hw.rates); 603103d84a3SLiam Girdwood pr_debug("ASoC: min ch %d max ch %d\n", runtime->hw.channels_min, 604ddee627cSLiam Girdwood runtime->hw.channels_max); 605103d84a3SLiam Girdwood pr_debug("ASoC: min rate %d max rate %d\n", runtime->hw.rate_min, 606ddee627cSLiam Girdwood runtime->hw.rate_max); 607ddee627cSLiam Girdwood 60801d7584cSLiam Girdwood dynamic: 60924894b76SLars-Peter Clausen 61024894b76SLars-Peter Clausen snd_soc_runtime_activate(rtd, substream->stream); 61124894b76SLars-Peter Clausen 612b8c0dab9SLiam Girdwood mutex_unlock(&rtd->pcm_mutex); 613ddee627cSLiam Girdwood return 0; 614ddee627cSLiam Girdwood 615ddee627cSLiam Girdwood config_err: 61675ab9eb6SKuninori Morimoto if (rtd->dai_link->ops->shutdown) 617ddee627cSLiam Girdwood rtd->dai_link->ops->shutdown(substream); 618ddee627cSLiam Girdwood 619ddee627cSLiam Girdwood machine_err: 6202e5894d7SBenoit Cousson i = rtd->num_codecs; 621ddee627cSLiam Girdwood 622ddee627cSLiam Girdwood codec_dai_err: 6232e5894d7SBenoit Cousson while (--i >= 0) { 6242e5894d7SBenoit Cousson codec_dai = rtd->codec_dais[i]; 6252e5894d7SBenoit Cousson if (codec_dai->driver->ops->shutdown) 6262e5894d7SBenoit Cousson codec_dai->driver->ops->shutdown(substream, codec_dai); 6272e5894d7SBenoit Cousson } 6282e5894d7SBenoit Cousson 629b8135864SKuninori Morimoto component_err: 630244e2936SCharles Keepax soc_pcm_components_close(substream, component); 631b8135864SKuninori Morimoto 632ddee627cSLiam Girdwood if (cpu_dai->driver->ops->shutdown) 633ddee627cSLiam Girdwood cpu_dai->driver->ops->shutdown(substream, cpu_dai); 634ddee627cSLiam Girdwood out: 635b8c0dab9SLiam Girdwood mutex_unlock(&rtd->pcm_mutex); 636d6652ef8SMark Brown 63790be711eSKuninori Morimoto for_each_rtdcom(rtd, rtdcom) { 63890be711eSKuninori Morimoto component = rtdcom->component; 63990be711eSKuninori Morimoto 64090be711eSKuninori Morimoto pm_runtime_mark_last_busy(component->dev); 64190be711eSKuninori Morimoto pm_runtime_put_autosuspend(component->dev); 6423f809783SSanyog Kale } 6433f809783SSanyog Kale 6442e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) { 6452e5894d7SBenoit Cousson if (!rtd->codec_dais[i]->active) 6462e5894d7SBenoit Cousson pinctrl_pm_select_sleep_state(rtd->codec_dais[i]->dev); 6472e5894d7SBenoit Cousson } 648988e8cc4SNicolin Chen if (!cpu_dai->active) 649988e8cc4SNicolin Chen pinctrl_pm_select_sleep_state(cpu_dai->dev); 650d6652ef8SMark Brown 651ddee627cSLiam Girdwood return ret; 652ddee627cSLiam Girdwood } 653ddee627cSLiam Girdwood 654ddee627cSLiam Girdwood /* 655ddee627cSLiam Girdwood * Power down the audio subsystem pmdown_time msecs after close is called. 656ddee627cSLiam Girdwood * This is to ensure there are no pops or clicks in between any music tracks 657ddee627cSLiam Girdwood * due to DAPM power cycling. 658ddee627cSLiam Girdwood */ 659ddee627cSLiam Girdwood static void close_delayed_work(struct work_struct *work) 660ddee627cSLiam Girdwood { 661ddee627cSLiam Girdwood struct snd_soc_pcm_runtime *rtd = 662ddee627cSLiam Girdwood container_of(work, struct snd_soc_pcm_runtime, delayed_work.work); 6632e5894d7SBenoit Cousson struct snd_soc_dai *codec_dai = rtd->codec_dais[0]; 664ddee627cSLiam Girdwood 665b8c0dab9SLiam Girdwood mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass); 666ddee627cSLiam Girdwood 667103d84a3SLiam Girdwood dev_dbg(rtd->dev, "ASoC: pop wq checking: %s status: %s waiting: %s\n", 668ddee627cSLiam Girdwood codec_dai->driver->playback.stream_name, 669ddee627cSLiam Girdwood codec_dai->playback_active ? "active" : "inactive", 6709bffb1fbSMisael Lopez Cruz rtd->pop_wait ? "yes" : "no"); 671ddee627cSLiam Girdwood 672ddee627cSLiam Girdwood /* are we waiting on this codec DAI stream */ 6739bffb1fbSMisael Lopez Cruz if (rtd->pop_wait == 1) { 6749bffb1fbSMisael Lopez Cruz rtd->pop_wait = 0; 6757bd3a6f3SMark Brown snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_PLAYBACK, 676d9b0951bSLiam Girdwood SND_SOC_DAPM_STREAM_STOP); 677ddee627cSLiam Girdwood } 678ddee627cSLiam Girdwood 679b8c0dab9SLiam Girdwood mutex_unlock(&rtd->pcm_mutex); 680ddee627cSLiam Girdwood } 681ddee627cSLiam Girdwood 682ddee627cSLiam Girdwood /* 683ddee627cSLiam Girdwood * Called by ALSA when a PCM substream is closed. Private data can be 684ef050becSCharles Keepax * freed here. The cpu DAI, codec DAI, machine and components are also 685ddee627cSLiam Girdwood * shutdown. 686ddee627cSLiam Girdwood */ 68791d5e6b4SLiam Girdwood static int soc_pcm_close(struct snd_pcm_substream *substream) 688ddee627cSLiam Girdwood { 689ddee627cSLiam Girdwood struct snd_soc_pcm_runtime *rtd = substream->private_data; 69090be711eSKuninori Morimoto struct snd_soc_component *component; 69190be711eSKuninori Morimoto struct snd_soc_rtdcom_list *rtdcom; 692ddee627cSLiam Girdwood struct snd_soc_dai *cpu_dai = rtd->cpu_dai; 6932e5894d7SBenoit Cousson struct snd_soc_dai *codec_dai; 6942e5894d7SBenoit Cousson int i; 695ddee627cSLiam Girdwood 696b8c0dab9SLiam Girdwood mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass); 697ddee627cSLiam Girdwood 69824894b76SLars-Peter Clausen snd_soc_runtime_deactivate(rtd, substream->stream); 699ddee627cSLiam Girdwood 70017841020SDong Aisheng /* clear the corresponding DAIs rate when inactive */ 70117841020SDong Aisheng if (!cpu_dai->active) 70217841020SDong Aisheng cpu_dai->rate = 0; 70317841020SDong Aisheng 7042e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) { 7052e5894d7SBenoit Cousson codec_dai = rtd->codec_dais[i]; 70617841020SDong Aisheng if (!codec_dai->active) 70717841020SDong Aisheng codec_dai->rate = 0; 7082e5894d7SBenoit Cousson } 70925b76791SSascha Hauer 710ae11601bSRamesh Babu snd_soc_dai_digital_mute(cpu_dai, 1, substream->stream); 711ae11601bSRamesh Babu 712ddee627cSLiam Girdwood if (cpu_dai->driver->ops->shutdown) 713ddee627cSLiam Girdwood cpu_dai->driver->ops->shutdown(substream, cpu_dai); 714ddee627cSLiam Girdwood 7152e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) { 7162e5894d7SBenoit Cousson codec_dai = rtd->codec_dais[i]; 717ddee627cSLiam Girdwood if (codec_dai->driver->ops->shutdown) 718ddee627cSLiam Girdwood codec_dai->driver->ops->shutdown(substream, codec_dai); 7192e5894d7SBenoit Cousson } 720ddee627cSLiam Girdwood 72175ab9eb6SKuninori Morimoto if (rtd->dai_link->ops->shutdown) 722ddee627cSLiam Girdwood rtd->dai_link->ops->shutdown(substream); 723ddee627cSLiam Girdwood 724244e2936SCharles Keepax soc_pcm_components_close(substream, NULL); 725b8135864SKuninori Morimoto 726ddee627cSLiam Girdwood if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { 727208a1589SLars-Peter Clausen if (snd_soc_runtime_ignore_pmdown_time(rtd)) { 7281d69c5c5SPeter Ujfalusi /* powered down playback stream now */ 7291d69c5c5SPeter Ujfalusi snd_soc_dapm_stream_event(rtd, 7307bd3a6f3SMark Brown SNDRV_PCM_STREAM_PLAYBACK, 7311d69c5c5SPeter Ujfalusi SND_SOC_DAPM_STREAM_STOP); 7321d69c5c5SPeter Ujfalusi } else { 733ddee627cSLiam Girdwood /* start delayed pop wq here for playback streams */ 7349bffb1fbSMisael Lopez Cruz rtd->pop_wait = 1; 735d4e1a73aSMark Brown queue_delayed_work(system_power_efficient_wq, 736d4e1a73aSMark Brown &rtd->delayed_work, 737ddee627cSLiam Girdwood msecs_to_jiffies(rtd->pmdown_time)); 7381d69c5c5SPeter Ujfalusi } 739ddee627cSLiam Girdwood } else { 740ddee627cSLiam Girdwood /* capture streams can be powered down now */ 7417bd3a6f3SMark Brown snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_CAPTURE, 742d9b0951bSLiam Girdwood SND_SOC_DAPM_STREAM_STOP); 743ddee627cSLiam Girdwood } 744ddee627cSLiam Girdwood 745b8c0dab9SLiam Girdwood mutex_unlock(&rtd->pcm_mutex); 746d6652ef8SMark Brown 74790be711eSKuninori Morimoto for_each_rtdcom(rtd, rtdcom) { 74890be711eSKuninori Morimoto component = rtdcom->component; 7493f809783SSanyog Kale 75090be711eSKuninori Morimoto pm_runtime_mark_last_busy(component->dev); 75190be711eSKuninori Morimoto pm_runtime_put_autosuspend(component->dev); 7523f809783SSanyog Kale } 7533f809783SSanyog Kale 7542e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) { 7552e5894d7SBenoit Cousson if (!rtd->codec_dais[i]->active) 7562e5894d7SBenoit Cousson pinctrl_pm_select_sleep_state(rtd->codec_dais[i]->dev); 7572e5894d7SBenoit Cousson } 758988e8cc4SNicolin Chen if (!cpu_dai->active) 759988e8cc4SNicolin Chen pinctrl_pm_select_sleep_state(cpu_dai->dev); 760d6652ef8SMark Brown 761ddee627cSLiam Girdwood return 0; 762ddee627cSLiam Girdwood } 763ddee627cSLiam Girdwood 764ddee627cSLiam Girdwood /* 765ddee627cSLiam Girdwood * Called by ALSA when the PCM substream is prepared, can set format, sample 766ddee627cSLiam Girdwood * rate, etc. This function is non atomic and can be called multiple times, 767ddee627cSLiam Girdwood * it can refer to the runtime info. 768ddee627cSLiam Girdwood */ 769ddee627cSLiam Girdwood static int soc_pcm_prepare(struct snd_pcm_substream *substream) 770ddee627cSLiam Girdwood { 771ddee627cSLiam Girdwood struct snd_soc_pcm_runtime *rtd = substream->private_data; 772b8135864SKuninori Morimoto struct snd_soc_component *component; 773b8135864SKuninori Morimoto struct snd_soc_rtdcom_list *rtdcom; 774ddee627cSLiam Girdwood struct snd_soc_dai *cpu_dai = rtd->cpu_dai; 7752e5894d7SBenoit Cousson struct snd_soc_dai *codec_dai; 7762e5894d7SBenoit Cousson int i, ret = 0; 777ddee627cSLiam Girdwood 778b8c0dab9SLiam Girdwood mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass); 779ddee627cSLiam Girdwood 78075ab9eb6SKuninori Morimoto if (rtd->dai_link->ops->prepare) { 781ddee627cSLiam Girdwood ret = rtd->dai_link->ops->prepare(substream); 782ddee627cSLiam Girdwood if (ret < 0) { 783103d84a3SLiam Girdwood dev_err(rtd->card->dev, "ASoC: machine prepare error:" 784103d84a3SLiam Girdwood " %d\n", ret); 785ddee627cSLiam Girdwood goto out; 786ddee627cSLiam Girdwood } 787ddee627cSLiam Girdwood } 788ddee627cSLiam Girdwood 789b8135864SKuninori Morimoto for_each_rtdcom(rtd, rtdcom) { 790b8135864SKuninori Morimoto component = rtdcom->component; 791b8135864SKuninori Morimoto 792b8135864SKuninori Morimoto if (!component->driver->ops || 793b8135864SKuninori Morimoto !component->driver->ops->prepare) 794b8135864SKuninori Morimoto continue; 795b8135864SKuninori Morimoto 796b8135864SKuninori Morimoto ret = component->driver->ops->prepare(substream); 797b8135864SKuninori Morimoto if (ret < 0) { 798b8135864SKuninori Morimoto dev_err(component->dev, 799b8135864SKuninori Morimoto "ASoC: platform prepare error: %d\n", ret); 800b8135864SKuninori Morimoto goto out; 801b8135864SKuninori Morimoto } 802b8135864SKuninori Morimoto } 803b8135864SKuninori Morimoto 8042e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) { 8052e5894d7SBenoit Cousson codec_dai = rtd->codec_dais[i]; 8069900a422SKuninori Morimoto if (codec_dai->driver->ops->prepare) { 8072e5894d7SBenoit Cousson ret = codec_dai->driver->ops->prepare(substream, 8082e5894d7SBenoit Cousson codec_dai); 809ddee627cSLiam Girdwood if (ret < 0) { 8102e5894d7SBenoit Cousson dev_err(codec_dai->dev, 81190cc7f1cSJarkko Nikula "ASoC: codec DAI prepare error: %d\n", 81290cc7f1cSJarkko Nikula ret); 813ddee627cSLiam Girdwood goto out; 814ddee627cSLiam Girdwood } 815ddee627cSLiam Girdwood } 8162e5894d7SBenoit Cousson } 817ddee627cSLiam Girdwood 8189900a422SKuninori Morimoto if (cpu_dai->driver->ops->prepare) { 819ddee627cSLiam Girdwood ret = cpu_dai->driver->ops->prepare(substream, cpu_dai); 820ddee627cSLiam Girdwood if (ret < 0) { 82190cc7f1cSJarkko Nikula dev_err(cpu_dai->dev, 82290cc7f1cSJarkko Nikula "ASoC: cpu DAI prepare error: %d\n", ret); 823ddee627cSLiam Girdwood goto out; 824ddee627cSLiam Girdwood } 825ddee627cSLiam Girdwood } 826ddee627cSLiam Girdwood 827ddee627cSLiam Girdwood /* cancel any delayed stream shutdown that is pending */ 828ddee627cSLiam Girdwood if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK && 8299bffb1fbSMisael Lopez Cruz rtd->pop_wait) { 8309bffb1fbSMisael Lopez Cruz rtd->pop_wait = 0; 831ddee627cSLiam Girdwood cancel_delayed_work(&rtd->delayed_work); 832ddee627cSLiam Girdwood } 833ddee627cSLiam Girdwood 834d9b0951bSLiam Girdwood snd_soc_dapm_stream_event(rtd, substream->stream, 835ddee627cSLiam Girdwood SND_SOC_DAPM_STREAM_START); 836ddee627cSLiam Girdwood 8372e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) 8382e5894d7SBenoit Cousson snd_soc_dai_digital_mute(rtd->codec_dais[i], 0, 8392e5894d7SBenoit Cousson substream->stream); 840ae11601bSRamesh Babu snd_soc_dai_digital_mute(cpu_dai, 0, substream->stream); 841ddee627cSLiam Girdwood 842ddee627cSLiam Girdwood out: 843b8c0dab9SLiam Girdwood mutex_unlock(&rtd->pcm_mutex); 844ddee627cSLiam Girdwood return ret; 845ddee627cSLiam Girdwood } 846ddee627cSLiam Girdwood 8472e5894d7SBenoit Cousson static void soc_pcm_codec_params_fixup(struct snd_pcm_hw_params *params, 8482e5894d7SBenoit Cousson unsigned int mask) 8492e5894d7SBenoit Cousson { 8502e5894d7SBenoit Cousson struct snd_interval *interval; 8512e5894d7SBenoit Cousson int channels = hweight_long(mask); 8522e5894d7SBenoit Cousson 8532e5894d7SBenoit Cousson interval = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS); 8542e5894d7SBenoit Cousson interval->min = channels; 8552e5894d7SBenoit Cousson interval->max = channels; 8562e5894d7SBenoit Cousson } 8572e5894d7SBenoit Cousson 85893e6958aSBenoit Cousson int soc_dai_hw_params(struct snd_pcm_substream *substream, 85993e6958aSBenoit Cousson struct snd_pcm_hw_params *params, 86093e6958aSBenoit Cousson struct snd_soc_dai *dai) 86193e6958aSBenoit Cousson { 862a655de80SLiam Girdwood struct snd_soc_pcm_runtime *rtd = substream->private_data; 86393e6958aSBenoit Cousson int ret; 86493e6958aSBenoit Cousson 865a655de80SLiam Girdwood /* perform any topology hw_params fixups before DAI */ 866a655de80SLiam Girdwood if (rtd->dai_link->be_hw_params_fixup) { 867a655de80SLiam Girdwood ret = rtd->dai_link->be_hw_params_fixup(rtd, params); 868a655de80SLiam Girdwood if (ret < 0) { 869a655de80SLiam Girdwood dev_err(rtd->dev, 870a655de80SLiam Girdwood "ASoC: hw_params topology fixup failed %d\n", 871a655de80SLiam Girdwood ret); 872a655de80SLiam Girdwood return ret; 873a655de80SLiam Girdwood } 874a655de80SLiam Girdwood } 875a655de80SLiam Girdwood 8769900a422SKuninori Morimoto if (dai->driver->ops->hw_params) { 87793e6958aSBenoit Cousson ret = dai->driver->ops->hw_params(substream, params, dai); 87893e6958aSBenoit Cousson if (ret < 0) { 87993e6958aSBenoit Cousson dev_err(dai->dev, "ASoC: can't set %s hw params: %d\n", 88093e6958aSBenoit Cousson dai->name, ret); 88193e6958aSBenoit Cousson return ret; 88293e6958aSBenoit Cousson } 88393e6958aSBenoit Cousson } 88493e6958aSBenoit Cousson 88593e6958aSBenoit Cousson return 0; 88693e6958aSBenoit Cousson } 88793e6958aSBenoit Cousson 888244e2936SCharles Keepax static int soc_pcm_components_hw_free(struct snd_pcm_substream *substream, 889244e2936SCharles Keepax struct snd_soc_component *last) 890244e2936SCharles Keepax { 891244e2936SCharles Keepax struct snd_soc_pcm_runtime *rtd = substream->private_data; 892244e2936SCharles Keepax struct snd_soc_rtdcom_list *rtdcom; 893244e2936SCharles Keepax struct snd_soc_component *component; 894244e2936SCharles Keepax 895244e2936SCharles Keepax for_each_rtdcom(rtd, rtdcom) { 896244e2936SCharles Keepax component = rtdcom->component; 897244e2936SCharles Keepax 898244e2936SCharles Keepax if (component == last) 899244e2936SCharles Keepax break; 900244e2936SCharles Keepax 901244e2936SCharles Keepax if (!component->driver->ops || 902244e2936SCharles Keepax !component->driver->ops->hw_free) 903244e2936SCharles Keepax continue; 904244e2936SCharles Keepax 905244e2936SCharles Keepax component->driver->ops->hw_free(substream); 906244e2936SCharles Keepax } 907244e2936SCharles Keepax 908244e2936SCharles Keepax return 0; 909244e2936SCharles Keepax } 910244e2936SCharles Keepax 911ddee627cSLiam Girdwood /* 912ddee627cSLiam Girdwood * Called by ALSA when the hardware params are set by application. This 913ddee627cSLiam Girdwood * function can also be called multiple times and can allocate buffers 914ddee627cSLiam Girdwood * (using snd_pcm_lib_* ). It's non-atomic. 915ddee627cSLiam Girdwood */ 916ddee627cSLiam Girdwood static int soc_pcm_hw_params(struct snd_pcm_substream *substream, 917ddee627cSLiam Girdwood struct snd_pcm_hw_params *params) 918ddee627cSLiam Girdwood { 919ddee627cSLiam Girdwood struct snd_soc_pcm_runtime *rtd = substream->private_data; 920b8135864SKuninori Morimoto struct snd_soc_component *component; 921b8135864SKuninori Morimoto struct snd_soc_rtdcom_list *rtdcom; 922ddee627cSLiam Girdwood struct snd_soc_dai *cpu_dai = rtd->cpu_dai; 923244e2936SCharles Keepax int i, ret = 0; 924ddee627cSLiam Girdwood 925b8c0dab9SLiam Girdwood mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass); 92675ab9eb6SKuninori Morimoto if (rtd->dai_link->ops->hw_params) { 927ddee627cSLiam Girdwood ret = rtd->dai_link->ops->hw_params(substream, params); 928ddee627cSLiam Girdwood if (ret < 0) { 929103d84a3SLiam Girdwood dev_err(rtd->card->dev, "ASoC: machine hw_params" 930103d84a3SLiam Girdwood " failed: %d\n", ret); 931ddee627cSLiam Girdwood goto out; 932ddee627cSLiam Girdwood } 933ddee627cSLiam Girdwood } 934ddee627cSLiam Girdwood 9352e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) { 9362e5894d7SBenoit Cousson struct snd_soc_dai *codec_dai = rtd->codec_dais[i]; 9372e5894d7SBenoit Cousson struct snd_pcm_hw_params codec_params; 9382e5894d7SBenoit Cousson 939cde79035SRicard Wanderlof /* 940cde79035SRicard Wanderlof * Skip CODECs which don't support the current stream type, 941cde79035SRicard Wanderlof * the idea being that if a CODEC is not used for the currently 942cde79035SRicard Wanderlof * set up transfer direction, it should not need to be 943cde79035SRicard Wanderlof * configured, especially since the configuration used might 944cde79035SRicard Wanderlof * not even be supported by that CODEC. There may be cases 945cde79035SRicard Wanderlof * however where a CODEC needs to be set up although it is 946cde79035SRicard Wanderlof * actually not being used for the transfer, e.g. if a 947cde79035SRicard Wanderlof * capture-only CODEC is acting as an LRCLK and/or BCLK master 948cde79035SRicard Wanderlof * for the DAI link including a playback-only CODEC. 949cde79035SRicard Wanderlof * If this becomes necessary, we will have to augment the 950cde79035SRicard Wanderlof * machine driver setup with information on how to act, so 951cde79035SRicard Wanderlof * we can do the right thing here. 952cde79035SRicard Wanderlof */ 953cde79035SRicard Wanderlof if (!snd_soc_dai_stream_valid(codec_dai, substream->stream)) 954cde79035SRicard Wanderlof continue; 955cde79035SRicard Wanderlof 9562e5894d7SBenoit Cousson /* copy params for each codec */ 9572e5894d7SBenoit Cousson codec_params = *params; 9582e5894d7SBenoit Cousson 9592e5894d7SBenoit Cousson /* fixup params based on TDM slot masks */ 9602e5894d7SBenoit Cousson if (codec_dai->tx_mask) 9612e5894d7SBenoit Cousson soc_pcm_codec_params_fixup(&codec_params, 9622e5894d7SBenoit Cousson codec_dai->tx_mask); 9632e5894d7SBenoit Cousson if (codec_dai->rx_mask) 9642e5894d7SBenoit Cousson soc_pcm_codec_params_fixup(&codec_params, 9652e5894d7SBenoit Cousson codec_dai->rx_mask); 9662e5894d7SBenoit Cousson 96793e6958aSBenoit Cousson ret = soc_dai_hw_params(substream, &codec_params, codec_dai); 96893e6958aSBenoit Cousson if(ret < 0) 969ddee627cSLiam Girdwood goto codec_err; 970ddee627cSLiam Girdwood 9712e5894d7SBenoit Cousson codec_dai->rate = params_rate(&codec_params); 9722e5894d7SBenoit Cousson codec_dai->channels = params_channels(&codec_params); 9732e5894d7SBenoit Cousson codec_dai->sample_bits = snd_pcm_format_physical_width( 9742e5894d7SBenoit Cousson params_format(&codec_params)); 975ddee627cSLiam Girdwood } 976ddee627cSLiam Girdwood 97793e6958aSBenoit Cousson ret = soc_dai_hw_params(substream, params, cpu_dai); 97893e6958aSBenoit Cousson if (ret < 0) 979ddee627cSLiam Girdwood goto interface_err; 980ddee627cSLiam Girdwood 981b8135864SKuninori Morimoto for_each_rtdcom(rtd, rtdcom) { 982b8135864SKuninori Morimoto component = rtdcom->component; 983b8135864SKuninori Morimoto 984b8135864SKuninori Morimoto if (!component->driver->ops || 985b8135864SKuninori Morimoto !component->driver->ops->hw_params) 986b8135864SKuninori Morimoto continue; 987b8135864SKuninori Morimoto 988244e2936SCharles Keepax ret = component->driver->ops->hw_params(substream, params); 989244e2936SCharles Keepax if (ret < 0) { 990b8135864SKuninori Morimoto dev_err(component->dev, 991b8135864SKuninori Morimoto "ASoC: %s hw params failed: %d\n", 992244e2936SCharles Keepax component->name, ret); 993b8135864SKuninori Morimoto goto component_err; 994244e2936SCharles Keepax } 995244e2936SCharles Keepax } 996244e2936SCharles Keepax component = NULL; 997b8135864SKuninori Morimoto 9983635bf09SNicolin Chen /* store the parameters for each DAIs */ 99917841020SDong Aisheng cpu_dai->rate = params_rate(params); 10003635bf09SNicolin Chen cpu_dai->channels = params_channels(params); 10013635bf09SNicolin Chen cpu_dai->sample_bits = 10023635bf09SNicolin Chen snd_pcm_format_physical_width(params_format(params)); 10033635bf09SNicolin Chen 1004957ce0c6Sjiada wang ret = soc_pcm_params_symmetry(substream, params); 1005957ce0c6Sjiada wang if (ret) 1006b8135864SKuninori Morimoto goto component_err; 1007ddee627cSLiam Girdwood out: 1008b8c0dab9SLiam Girdwood mutex_unlock(&rtd->pcm_mutex); 1009ddee627cSLiam Girdwood return ret; 1010ddee627cSLiam Girdwood 1011b8135864SKuninori Morimoto component_err: 1012244e2936SCharles Keepax soc_pcm_components_hw_free(substream, component); 1013b8135864SKuninori Morimoto 10149900a422SKuninori Morimoto if (cpu_dai->driver->ops->hw_free) 1015ddee627cSLiam Girdwood cpu_dai->driver->ops->hw_free(substream, cpu_dai); 1016ddee627cSLiam Girdwood 1017ddee627cSLiam Girdwood interface_err: 10182e5894d7SBenoit Cousson i = rtd->num_codecs; 1019ddee627cSLiam Girdwood 1020ddee627cSLiam Girdwood codec_err: 10212e5894d7SBenoit Cousson while (--i >= 0) { 10222e5894d7SBenoit Cousson struct snd_soc_dai *codec_dai = rtd->codec_dais[i]; 10239900a422SKuninori Morimoto if (codec_dai->driver->ops->hw_free) 10242e5894d7SBenoit Cousson codec_dai->driver->ops->hw_free(substream, codec_dai); 10252e5894d7SBenoit Cousson codec_dai->rate = 0; 10262e5894d7SBenoit Cousson } 10272e5894d7SBenoit Cousson 102875ab9eb6SKuninori Morimoto if (rtd->dai_link->ops->hw_free) 1029ddee627cSLiam Girdwood rtd->dai_link->ops->hw_free(substream); 1030ddee627cSLiam Girdwood 1031b8c0dab9SLiam Girdwood mutex_unlock(&rtd->pcm_mutex); 1032ddee627cSLiam Girdwood return ret; 1033ddee627cSLiam Girdwood } 1034ddee627cSLiam Girdwood 1035ddee627cSLiam Girdwood /* 1036ddee627cSLiam Girdwood * Frees resources allocated by hw_params, can be called multiple times 1037ddee627cSLiam Girdwood */ 1038ddee627cSLiam Girdwood static int soc_pcm_hw_free(struct snd_pcm_substream *substream) 1039ddee627cSLiam Girdwood { 1040ddee627cSLiam Girdwood struct snd_soc_pcm_runtime *rtd = substream->private_data; 1041ddee627cSLiam Girdwood struct snd_soc_dai *cpu_dai = rtd->cpu_dai; 10422e5894d7SBenoit Cousson struct snd_soc_dai *codec_dai; 10437f62b6eeSNicolin Chen bool playback = substream->stream == SNDRV_PCM_STREAM_PLAYBACK; 10442e5894d7SBenoit Cousson int i; 1045ddee627cSLiam Girdwood 1046b8c0dab9SLiam Girdwood mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass); 1047ddee627cSLiam Girdwood 1048d3383420SNicolin Chen /* clear the corresponding DAIs parameters when going to be inactive */ 1049d3383420SNicolin Chen if (cpu_dai->active == 1) { 1050d3383420SNicolin Chen cpu_dai->rate = 0; 1051d3383420SNicolin Chen cpu_dai->channels = 0; 1052d3383420SNicolin Chen cpu_dai->sample_bits = 0; 1053d3383420SNicolin Chen } 1054d3383420SNicolin Chen 10552e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) { 10562e5894d7SBenoit Cousson codec_dai = rtd->codec_dais[i]; 1057d3383420SNicolin Chen if (codec_dai->active == 1) { 1058d3383420SNicolin Chen codec_dai->rate = 0; 1059d3383420SNicolin Chen codec_dai->channels = 0; 1060d3383420SNicolin Chen codec_dai->sample_bits = 0; 1061d3383420SNicolin Chen } 10622e5894d7SBenoit Cousson } 1063d3383420SNicolin Chen 1064ddee627cSLiam Girdwood /* apply codec digital mute */ 10652e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) { 10662e5894d7SBenoit Cousson if ((playback && rtd->codec_dais[i]->playback_active == 1) || 10672e5894d7SBenoit Cousson (!playback && rtd->codec_dais[i]->capture_active == 1)) 10682e5894d7SBenoit Cousson snd_soc_dai_digital_mute(rtd->codec_dais[i], 1, 10692e5894d7SBenoit Cousson substream->stream); 10702e5894d7SBenoit Cousson } 1071ddee627cSLiam Girdwood 1072ddee627cSLiam Girdwood /* free any machine hw params */ 107375ab9eb6SKuninori Morimoto if (rtd->dai_link->ops->hw_free) 1074ddee627cSLiam Girdwood rtd->dai_link->ops->hw_free(substream); 1075ddee627cSLiam Girdwood 1076b8135864SKuninori Morimoto /* free any component resources */ 1077244e2936SCharles Keepax soc_pcm_components_hw_free(substream, NULL); 1078b8135864SKuninori Morimoto 1079ddee627cSLiam Girdwood /* now free hw params for the DAIs */ 10802e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) { 10812e5894d7SBenoit Cousson codec_dai = rtd->codec_dais[i]; 10829900a422SKuninori Morimoto if (codec_dai->driver->ops->hw_free) 1083ddee627cSLiam Girdwood codec_dai->driver->ops->hw_free(substream, codec_dai); 10842e5894d7SBenoit Cousson } 1085ddee627cSLiam Girdwood 10869900a422SKuninori Morimoto if (cpu_dai->driver->ops->hw_free) 1087ddee627cSLiam Girdwood cpu_dai->driver->ops->hw_free(substream, cpu_dai); 1088ddee627cSLiam Girdwood 1089b8c0dab9SLiam Girdwood mutex_unlock(&rtd->pcm_mutex); 1090ddee627cSLiam Girdwood return 0; 1091ddee627cSLiam Girdwood } 1092ddee627cSLiam Girdwood 1093ddee627cSLiam Girdwood static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd) 1094ddee627cSLiam Girdwood { 1095ddee627cSLiam Girdwood struct snd_soc_pcm_runtime *rtd = substream->private_data; 1096b8135864SKuninori Morimoto struct snd_soc_component *component; 1097b8135864SKuninori Morimoto struct snd_soc_rtdcom_list *rtdcom; 1098ddee627cSLiam Girdwood struct snd_soc_dai *cpu_dai = rtd->cpu_dai; 10992e5894d7SBenoit Cousson struct snd_soc_dai *codec_dai; 11002e5894d7SBenoit Cousson int i, ret; 1101ddee627cSLiam Girdwood 11022e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) { 11032e5894d7SBenoit Cousson codec_dai = rtd->codec_dais[i]; 11049900a422SKuninori Morimoto if (codec_dai->driver->ops->trigger) { 11052e5894d7SBenoit Cousson ret = codec_dai->driver->ops->trigger(substream, 11062e5894d7SBenoit Cousson cmd, codec_dai); 1107ddee627cSLiam Girdwood if (ret < 0) 1108ddee627cSLiam Girdwood return ret; 1109ddee627cSLiam Girdwood } 11102e5894d7SBenoit Cousson } 1111ddee627cSLiam Girdwood 1112b8135864SKuninori Morimoto for_each_rtdcom(rtd, rtdcom) { 1113b8135864SKuninori Morimoto component = rtdcom->component; 1114b8135864SKuninori Morimoto 1115b8135864SKuninori Morimoto if (!component->driver->ops || 1116b8135864SKuninori Morimoto !component->driver->ops->trigger) 1117b8135864SKuninori Morimoto continue; 1118b8135864SKuninori Morimoto 1119b8135864SKuninori Morimoto ret = component->driver->ops->trigger(substream, cmd); 1120b8135864SKuninori Morimoto if (ret < 0) 1121b8135864SKuninori Morimoto return ret; 1122b8135864SKuninori Morimoto } 1123b8135864SKuninori Morimoto 11249900a422SKuninori Morimoto if (cpu_dai->driver->ops->trigger) { 1125ddee627cSLiam Girdwood ret = cpu_dai->driver->ops->trigger(substream, cmd, cpu_dai); 1126ddee627cSLiam Girdwood if (ret < 0) 1127ddee627cSLiam Girdwood return ret; 1128ddee627cSLiam Girdwood } 11294792b0dbSJarkko Nikula 113075ab9eb6SKuninori Morimoto if (rtd->dai_link->ops->trigger) { 11314792b0dbSJarkko Nikula ret = rtd->dai_link->ops->trigger(substream, cmd); 11324792b0dbSJarkko Nikula if (ret < 0) 11334792b0dbSJarkko Nikula return ret; 11344792b0dbSJarkko Nikula } 11354792b0dbSJarkko Nikula 1136ddee627cSLiam Girdwood return 0; 1137ddee627cSLiam Girdwood } 1138ddee627cSLiam Girdwood 113945c0a188SMark Brown static int soc_pcm_bespoke_trigger(struct snd_pcm_substream *substream, 114045c0a188SMark Brown int cmd) 114107bf84aaSLiam Girdwood { 114207bf84aaSLiam Girdwood struct snd_soc_pcm_runtime *rtd = substream->private_data; 114307bf84aaSLiam Girdwood struct snd_soc_dai *cpu_dai = rtd->cpu_dai; 11442e5894d7SBenoit Cousson struct snd_soc_dai *codec_dai; 11452e5894d7SBenoit Cousson int i, ret; 114607bf84aaSLiam Girdwood 11472e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) { 11482e5894d7SBenoit Cousson codec_dai = rtd->codec_dais[i]; 11499900a422SKuninori Morimoto if (codec_dai->driver->ops->bespoke_trigger) { 11502e5894d7SBenoit Cousson ret = codec_dai->driver->ops->bespoke_trigger(substream, 11512e5894d7SBenoit Cousson cmd, codec_dai); 115207bf84aaSLiam Girdwood if (ret < 0) 115307bf84aaSLiam Girdwood return ret; 115407bf84aaSLiam Girdwood } 11552e5894d7SBenoit Cousson } 115607bf84aaSLiam Girdwood 11579900a422SKuninori Morimoto if (cpu_dai->driver->ops->bespoke_trigger) { 115807bf84aaSLiam Girdwood ret = cpu_dai->driver->ops->bespoke_trigger(substream, cmd, cpu_dai); 115907bf84aaSLiam Girdwood if (ret < 0) 116007bf84aaSLiam Girdwood return ret; 116107bf84aaSLiam Girdwood } 116207bf84aaSLiam Girdwood return 0; 116307bf84aaSLiam Girdwood } 1164ddee627cSLiam Girdwood /* 1165ddee627cSLiam Girdwood * soc level wrapper for pointer callback 1166ef050becSCharles Keepax * If cpu_dai, codec_dai, component driver has the delay callback, then 1167ddee627cSLiam Girdwood * the runtime->delay will be updated accordingly. 1168ddee627cSLiam Girdwood */ 1169ddee627cSLiam Girdwood static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream) 1170ddee627cSLiam Girdwood { 1171ddee627cSLiam Girdwood struct snd_soc_pcm_runtime *rtd = substream->private_data; 1172b8135864SKuninori Morimoto struct snd_soc_component *component; 1173b8135864SKuninori Morimoto struct snd_soc_rtdcom_list *rtdcom; 1174ddee627cSLiam Girdwood struct snd_soc_dai *cpu_dai = rtd->cpu_dai; 11752e5894d7SBenoit Cousson struct snd_soc_dai *codec_dai; 1176ddee627cSLiam Girdwood struct snd_pcm_runtime *runtime = substream->runtime; 1177ddee627cSLiam Girdwood snd_pcm_uframes_t offset = 0; 1178ddee627cSLiam Girdwood snd_pcm_sframes_t delay = 0; 11792e5894d7SBenoit Cousson snd_pcm_sframes_t codec_delay = 0; 11802e5894d7SBenoit Cousson int i; 1181ddee627cSLiam Girdwood 11829fb4c2bfSAkshu Agrawal /* clearing the previous total delay */ 11839fb4c2bfSAkshu Agrawal runtime->delay = 0; 11849fb4c2bfSAkshu Agrawal 1185b8135864SKuninori Morimoto for_each_rtdcom(rtd, rtdcom) { 1186b8135864SKuninori Morimoto component = rtdcom->component; 1187b8135864SKuninori Morimoto 1188b8135864SKuninori Morimoto if (!component->driver->ops || 1189b8135864SKuninori Morimoto !component->driver->ops->pointer) 1190b8135864SKuninori Morimoto continue; 1191b8135864SKuninori Morimoto 1192b8135864SKuninori Morimoto /* FIXME: use 1st pointer */ 1193b8135864SKuninori Morimoto offset = component->driver->ops->pointer(substream); 1194b8135864SKuninori Morimoto break; 1195b8135864SKuninori Morimoto } 11969fb4c2bfSAkshu Agrawal /* base delay if assigned in pointer callback */ 11979fb4c2bfSAkshu Agrawal delay = runtime->delay; 1198b8135864SKuninori Morimoto 11999900a422SKuninori Morimoto if (cpu_dai->driver->ops->delay) 1200ddee627cSLiam Girdwood delay += cpu_dai->driver->ops->delay(substream, cpu_dai); 1201ddee627cSLiam Girdwood 12022e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) { 12032e5894d7SBenoit Cousson codec_dai = rtd->codec_dais[i]; 12049900a422SKuninori Morimoto if (codec_dai->driver->ops->delay) 12052e5894d7SBenoit Cousson codec_delay = max(codec_delay, 12062e5894d7SBenoit Cousson codec_dai->driver->ops->delay(substream, 12072e5894d7SBenoit Cousson codec_dai)); 12082e5894d7SBenoit Cousson } 12092e5894d7SBenoit Cousson delay += codec_delay; 1210ddee627cSLiam Girdwood 1211ddee627cSLiam Girdwood runtime->delay = delay; 1212ddee627cSLiam Girdwood 1213ddee627cSLiam Girdwood return offset; 1214ddee627cSLiam Girdwood } 1215ddee627cSLiam Girdwood 121601d7584cSLiam Girdwood /* connect a FE and BE */ 121701d7584cSLiam Girdwood static int dpcm_be_connect(struct snd_soc_pcm_runtime *fe, 121801d7584cSLiam Girdwood struct snd_soc_pcm_runtime *be, int stream) 121901d7584cSLiam Girdwood { 122001d7584cSLiam Girdwood struct snd_soc_dpcm *dpcm; 122101d7584cSLiam Girdwood 122201d7584cSLiam Girdwood /* only add new dpcms */ 122301d7584cSLiam Girdwood list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) { 122401d7584cSLiam Girdwood if (dpcm->be == be && dpcm->fe == fe) 122501d7584cSLiam Girdwood return 0; 122601d7584cSLiam Girdwood } 122701d7584cSLiam Girdwood 122801d7584cSLiam Girdwood dpcm = kzalloc(sizeof(struct snd_soc_dpcm), GFP_KERNEL); 122901d7584cSLiam Girdwood if (!dpcm) 123001d7584cSLiam Girdwood return -ENOMEM; 123101d7584cSLiam Girdwood 123201d7584cSLiam Girdwood dpcm->be = be; 123301d7584cSLiam Girdwood dpcm->fe = fe; 123401d7584cSLiam Girdwood be->dpcm[stream].runtime = fe->dpcm[stream].runtime; 123501d7584cSLiam Girdwood dpcm->state = SND_SOC_DPCM_LINK_STATE_NEW; 123601d7584cSLiam Girdwood list_add(&dpcm->list_be, &fe->dpcm[stream].be_clients); 123701d7584cSLiam Girdwood list_add(&dpcm->list_fe, &be->dpcm[stream].fe_clients); 123801d7584cSLiam Girdwood 123901d7584cSLiam Girdwood dev_dbg(fe->dev, "connected new DPCM %s path %s %s %s\n", 124001d7584cSLiam Girdwood stream ? "capture" : "playback", fe->dai_link->name, 124101d7584cSLiam Girdwood stream ? "<-" : "->", be->dai_link->name); 124201d7584cSLiam Girdwood 1243f86dcef8SLiam Girdwood #ifdef CONFIG_DEBUG_FS 12446553bf06SLars-Peter Clausen if (fe->debugfs_dpcm_root) 1245f86dcef8SLiam Girdwood dpcm->debugfs_state = debugfs_create_u32(be->dai_link->name, 0644, 1246f86dcef8SLiam Girdwood fe->debugfs_dpcm_root, &dpcm->state); 1247f86dcef8SLiam Girdwood #endif 124801d7584cSLiam Girdwood return 1; 124901d7584cSLiam Girdwood } 125001d7584cSLiam Girdwood 125101d7584cSLiam Girdwood /* reparent a BE onto another FE */ 125201d7584cSLiam Girdwood static void dpcm_be_reparent(struct snd_soc_pcm_runtime *fe, 125301d7584cSLiam Girdwood struct snd_soc_pcm_runtime *be, int stream) 125401d7584cSLiam Girdwood { 125501d7584cSLiam Girdwood struct snd_soc_dpcm *dpcm; 125601d7584cSLiam Girdwood struct snd_pcm_substream *fe_substream, *be_substream; 125701d7584cSLiam Girdwood 125801d7584cSLiam Girdwood /* reparent if BE is connected to other FEs */ 125901d7584cSLiam Girdwood if (!be->dpcm[stream].users) 126001d7584cSLiam Girdwood return; 126101d7584cSLiam Girdwood 126201d7584cSLiam Girdwood be_substream = snd_soc_dpcm_get_substream(be, stream); 126301d7584cSLiam Girdwood 126401d7584cSLiam Girdwood list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) { 126501d7584cSLiam Girdwood if (dpcm->fe == fe) 126601d7584cSLiam Girdwood continue; 126701d7584cSLiam Girdwood 126801d7584cSLiam Girdwood dev_dbg(fe->dev, "reparent %s path %s %s %s\n", 126901d7584cSLiam Girdwood stream ? "capture" : "playback", 127001d7584cSLiam Girdwood dpcm->fe->dai_link->name, 127101d7584cSLiam Girdwood stream ? "<-" : "->", dpcm->be->dai_link->name); 127201d7584cSLiam Girdwood 127301d7584cSLiam Girdwood fe_substream = snd_soc_dpcm_get_substream(dpcm->fe, stream); 127401d7584cSLiam Girdwood be_substream->runtime = fe_substream->runtime; 127501d7584cSLiam Girdwood break; 127601d7584cSLiam Girdwood } 127701d7584cSLiam Girdwood } 127801d7584cSLiam Girdwood 127901d7584cSLiam Girdwood /* disconnect a BE and FE */ 128023607025SLiam Girdwood void dpcm_be_disconnect(struct snd_soc_pcm_runtime *fe, int stream) 128101d7584cSLiam Girdwood { 128201d7584cSLiam Girdwood struct snd_soc_dpcm *dpcm, *d; 128301d7584cSLiam Girdwood 128401d7584cSLiam Girdwood list_for_each_entry_safe(dpcm, d, &fe->dpcm[stream].be_clients, list_be) { 1285103d84a3SLiam Girdwood dev_dbg(fe->dev, "ASoC: BE %s disconnect check for %s\n", 128601d7584cSLiam Girdwood stream ? "capture" : "playback", 128701d7584cSLiam Girdwood dpcm->be->dai_link->name); 128801d7584cSLiam Girdwood 128901d7584cSLiam Girdwood if (dpcm->state != SND_SOC_DPCM_LINK_STATE_FREE) 129001d7584cSLiam Girdwood continue; 129101d7584cSLiam Girdwood 129201d7584cSLiam Girdwood dev_dbg(fe->dev, "freed DSP %s path %s %s %s\n", 129301d7584cSLiam Girdwood stream ? "capture" : "playback", fe->dai_link->name, 129401d7584cSLiam Girdwood stream ? "<-" : "->", dpcm->be->dai_link->name); 129501d7584cSLiam Girdwood 129601d7584cSLiam Girdwood /* BEs still alive need new FE */ 129701d7584cSLiam Girdwood dpcm_be_reparent(fe, dpcm->be, stream); 129801d7584cSLiam Girdwood 1299f86dcef8SLiam Girdwood #ifdef CONFIG_DEBUG_FS 1300f86dcef8SLiam Girdwood debugfs_remove(dpcm->debugfs_state); 1301f86dcef8SLiam Girdwood #endif 130201d7584cSLiam Girdwood list_del(&dpcm->list_be); 130301d7584cSLiam Girdwood list_del(&dpcm->list_fe); 130401d7584cSLiam Girdwood kfree(dpcm); 130501d7584cSLiam Girdwood } 130601d7584cSLiam Girdwood } 130701d7584cSLiam Girdwood 130801d7584cSLiam Girdwood /* get BE for DAI widget and stream */ 130901d7584cSLiam Girdwood static struct snd_soc_pcm_runtime *dpcm_get_be(struct snd_soc_card *card, 131001d7584cSLiam Girdwood struct snd_soc_dapm_widget *widget, int stream) 131101d7584cSLiam Girdwood { 131201d7584cSLiam Girdwood struct snd_soc_pcm_runtime *be; 13131a497983SMengdong Lin int i; 131401d7584cSLiam Girdwood 13153c146465SLiam Girdwood dev_dbg(card->dev, "ASoC: find BE for widget %s\n", widget->name); 13163c146465SLiam Girdwood 131701d7584cSLiam Girdwood if (stream == SNDRV_PCM_STREAM_PLAYBACK) { 13181a497983SMengdong Lin list_for_each_entry(be, &card->rtd_list, list) { 131901d7584cSLiam Girdwood 132035ea0655SLiam Girdwood if (!be->dai_link->no_pcm) 132135ea0655SLiam Girdwood continue; 132235ea0655SLiam Girdwood 13233c146465SLiam Girdwood dev_dbg(card->dev, "ASoC: try BE : %s\n", 13243c146465SLiam Girdwood be->cpu_dai->playback_widget ? 13253c146465SLiam Girdwood be->cpu_dai->playback_widget->name : "(not set)"); 13263c146465SLiam Girdwood 13272e5894d7SBenoit Cousson if (be->cpu_dai->playback_widget == widget) 132801d7584cSLiam Girdwood return be; 13292e5894d7SBenoit Cousson 13301a497983SMengdong Lin for (i = 0; i < be->num_codecs; i++) { 13311a497983SMengdong Lin struct snd_soc_dai *dai = be->codec_dais[i]; 13322e5894d7SBenoit Cousson if (dai->playback_widget == widget) 13332e5894d7SBenoit Cousson return be; 13342e5894d7SBenoit Cousson } 133501d7584cSLiam Girdwood } 133601d7584cSLiam Girdwood } else { 133701d7584cSLiam Girdwood 13381a497983SMengdong Lin list_for_each_entry(be, &card->rtd_list, list) { 133901d7584cSLiam Girdwood 134035ea0655SLiam Girdwood if (!be->dai_link->no_pcm) 134135ea0655SLiam Girdwood continue; 134235ea0655SLiam Girdwood 13433c146465SLiam Girdwood dev_dbg(card->dev, "ASoC: try BE %s\n", 13443c146465SLiam Girdwood be->cpu_dai->capture_widget ? 13453c146465SLiam Girdwood be->cpu_dai->capture_widget->name : "(not set)"); 13463c146465SLiam Girdwood 13472e5894d7SBenoit Cousson if (be->cpu_dai->capture_widget == widget) 134801d7584cSLiam Girdwood return be; 13492e5894d7SBenoit Cousson 13501a497983SMengdong Lin for (i = 0; i < be->num_codecs; i++) { 13511a497983SMengdong Lin struct snd_soc_dai *dai = be->codec_dais[i]; 13522e5894d7SBenoit Cousson if (dai->capture_widget == widget) 13532e5894d7SBenoit Cousson return be; 13542e5894d7SBenoit Cousson } 135501d7584cSLiam Girdwood } 135601d7584cSLiam Girdwood } 135701d7584cSLiam Girdwood 13583c146465SLiam Girdwood /* dai link name and stream name set correctly ? */ 1359103d84a3SLiam Girdwood dev_err(card->dev, "ASoC: can't get %s BE for %s\n", 136001d7584cSLiam Girdwood stream ? "capture" : "playback", widget->name); 136101d7584cSLiam Girdwood return NULL; 136201d7584cSLiam Girdwood } 136301d7584cSLiam Girdwood 136401d7584cSLiam Girdwood static inline struct snd_soc_dapm_widget * 136537018610SBenoit Cousson dai_get_widget(struct snd_soc_dai *dai, int stream) 136601d7584cSLiam Girdwood { 136701d7584cSLiam Girdwood if (stream == SNDRV_PCM_STREAM_PLAYBACK) 136837018610SBenoit Cousson return dai->playback_widget; 136901d7584cSLiam Girdwood else 137037018610SBenoit Cousson return dai->capture_widget; 137101d7584cSLiam Girdwood } 137201d7584cSLiam Girdwood 137301d7584cSLiam Girdwood static int widget_in_list(struct snd_soc_dapm_widget_list *list, 137401d7584cSLiam Girdwood struct snd_soc_dapm_widget *widget) 137501d7584cSLiam Girdwood { 137601d7584cSLiam Girdwood int i; 137701d7584cSLiam Girdwood 137801d7584cSLiam Girdwood for (i = 0; i < list->num_widgets; i++) { 137901d7584cSLiam Girdwood if (widget == list->widgets[i]) 138001d7584cSLiam Girdwood return 1; 138101d7584cSLiam Girdwood } 138201d7584cSLiam Girdwood 138301d7584cSLiam Girdwood return 0; 138401d7584cSLiam Girdwood } 138501d7584cSLiam Girdwood 13865fdd022cSPiotr Stankiewicz static bool dpcm_end_walk_at_be(struct snd_soc_dapm_widget *widget, 13875fdd022cSPiotr Stankiewicz enum snd_soc_dapm_direction dir) 13885fdd022cSPiotr Stankiewicz { 13895fdd022cSPiotr Stankiewicz struct snd_soc_card *card = widget->dapm->card; 13905fdd022cSPiotr Stankiewicz struct snd_soc_pcm_runtime *rtd; 13915fdd022cSPiotr Stankiewicz int i; 13925fdd022cSPiotr Stankiewicz 13935fdd022cSPiotr Stankiewicz if (dir == SND_SOC_DAPM_DIR_OUT) { 13945fdd022cSPiotr Stankiewicz list_for_each_entry(rtd, &card->rtd_list, list) { 13955fdd022cSPiotr Stankiewicz if (!rtd->dai_link->no_pcm) 13965fdd022cSPiotr Stankiewicz continue; 13975fdd022cSPiotr Stankiewicz 13985fdd022cSPiotr Stankiewicz if (rtd->cpu_dai->playback_widget == widget) 13995fdd022cSPiotr Stankiewicz return true; 14005fdd022cSPiotr Stankiewicz 14015fdd022cSPiotr Stankiewicz for (i = 0; i < rtd->num_codecs; ++i) { 14025fdd022cSPiotr Stankiewicz struct snd_soc_dai *dai = rtd->codec_dais[i]; 14035fdd022cSPiotr Stankiewicz if (dai->playback_widget == widget) 14045fdd022cSPiotr Stankiewicz return true; 14055fdd022cSPiotr Stankiewicz } 14065fdd022cSPiotr Stankiewicz } 14075fdd022cSPiotr Stankiewicz } else { /* SND_SOC_DAPM_DIR_IN */ 14085fdd022cSPiotr Stankiewicz list_for_each_entry(rtd, &card->rtd_list, list) { 14095fdd022cSPiotr Stankiewicz if (!rtd->dai_link->no_pcm) 14105fdd022cSPiotr Stankiewicz continue; 14115fdd022cSPiotr Stankiewicz 14125fdd022cSPiotr Stankiewicz if (rtd->cpu_dai->capture_widget == widget) 14135fdd022cSPiotr Stankiewicz return true; 14145fdd022cSPiotr Stankiewicz 14155fdd022cSPiotr Stankiewicz for (i = 0; i < rtd->num_codecs; ++i) { 14165fdd022cSPiotr Stankiewicz struct snd_soc_dai *dai = rtd->codec_dais[i]; 14175fdd022cSPiotr Stankiewicz if (dai->capture_widget == widget) 14185fdd022cSPiotr Stankiewicz return true; 14195fdd022cSPiotr Stankiewicz } 14205fdd022cSPiotr Stankiewicz } 14215fdd022cSPiotr Stankiewicz } 14225fdd022cSPiotr Stankiewicz 14235fdd022cSPiotr Stankiewicz return false; 14245fdd022cSPiotr Stankiewicz } 14255fdd022cSPiotr Stankiewicz 142623607025SLiam Girdwood int dpcm_path_get(struct snd_soc_pcm_runtime *fe, 14271ce43acfSLars-Peter Clausen int stream, struct snd_soc_dapm_widget_list **list) 142801d7584cSLiam Girdwood { 142901d7584cSLiam Girdwood struct snd_soc_dai *cpu_dai = fe->cpu_dai; 143001d7584cSLiam Girdwood int paths; 143101d7584cSLiam Girdwood 143201d7584cSLiam Girdwood /* get number of valid DAI paths and their widgets */ 14336742064aSPiotr Stankiewicz paths = snd_soc_dapm_dai_get_connected_widgets(cpu_dai, stream, list, 14345fdd022cSPiotr Stankiewicz dpcm_end_walk_at_be); 143501d7584cSLiam Girdwood 1436103d84a3SLiam Girdwood dev_dbg(fe->dev, "ASoC: found %d audio %s paths\n", paths, 143701d7584cSLiam Girdwood stream ? "capture" : "playback"); 143801d7584cSLiam Girdwood 143901d7584cSLiam Girdwood return paths; 144001d7584cSLiam Girdwood } 144101d7584cSLiam Girdwood 144201d7584cSLiam Girdwood static int dpcm_prune_paths(struct snd_soc_pcm_runtime *fe, int stream, 144301d7584cSLiam Girdwood struct snd_soc_dapm_widget_list **list_) 144401d7584cSLiam Girdwood { 144501d7584cSLiam Girdwood struct snd_soc_dpcm *dpcm; 144601d7584cSLiam Girdwood struct snd_soc_dapm_widget_list *list = *list_; 144701d7584cSLiam Girdwood struct snd_soc_dapm_widget *widget; 144801d7584cSLiam Girdwood int prune = 0; 144901d7584cSLiam Girdwood 145001d7584cSLiam Girdwood /* Destroy any old FE <--> BE connections */ 145101d7584cSLiam Girdwood list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) { 14522e5894d7SBenoit Cousson unsigned int i; 145301d7584cSLiam Girdwood 145401d7584cSLiam Girdwood /* is there a valid CPU DAI widget for this BE */ 145537018610SBenoit Cousson widget = dai_get_widget(dpcm->be->cpu_dai, stream); 145601d7584cSLiam Girdwood 145701d7584cSLiam Girdwood /* prune the BE if it's no longer in our active list */ 145801d7584cSLiam Girdwood if (widget && widget_in_list(list, widget)) 145901d7584cSLiam Girdwood continue; 146001d7584cSLiam Girdwood 146101d7584cSLiam Girdwood /* is there a valid CODEC DAI widget for this BE */ 14622e5894d7SBenoit Cousson for (i = 0; i < dpcm->be->num_codecs; i++) { 14632e5894d7SBenoit Cousson struct snd_soc_dai *dai = dpcm->be->codec_dais[i]; 14642e5894d7SBenoit Cousson widget = dai_get_widget(dai, stream); 146501d7584cSLiam Girdwood 146601d7584cSLiam Girdwood /* prune the BE if it's no longer in our active list */ 146701d7584cSLiam Girdwood if (widget && widget_in_list(list, widget)) 146801d7584cSLiam Girdwood continue; 14692e5894d7SBenoit Cousson } 147001d7584cSLiam Girdwood 1471103d84a3SLiam Girdwood dev_dbg(fe->dev, "ASoC: pruning %s BE %s for %s\n", 147201d7584cSLiam Girdwood stream ? "capture" : "playback", 147301d7584cSLiam Girdwood dpcm->be->dai_link->name, fe->dai_link->name); 147401d7584cSLiam Girdwood dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE; 147501d7584cSLiam Girdwood dpcm->be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE; 147601d7584cSLiam Girdwood prune++; 147701d7584cSLiam Girdwood } 147801d7584cSLiam Girdwood 1479103d84a3SLiam Girdwood dev_dbg(fe->dev, "ASoC: found %d old BE paths for pruning\n", prune); 148001d7584cSLiam Girdwood return prune; 148101d7584cSLiam Girdwood } 148201d7584cSLiam Girdwood 148301d7584cSLiam Girdwood static int dpcm_add_paths(struct snd_soc_pcm_runtime *fe, int stream, 148401d7584cSLiam Girdwood struct snd_soc_dapm_widget_list **list_) 148501d7584cSLiam Girdwood { 148601d7584cSLiam Girdwood struct snd_soc_card *card = fe->card; 148701d7584cSLiam Girdwood struct snd_soc_dapm_widget_list *list = *list_; 148801d7584cSLiam Girdwood struct snd_soc_pcm_runtime *be; 148901d7584cSLiam Girdwood int i, new = 0, err; 149001d7584cSLiam Girdwood 149101d7584cSLiam Girdwood /* Create any new FE <--> BE connections */ 149201d7584cSLiam Girdwood for (i = 0; i < list->num_widgets; i++) { 149301d7584cSLiam Girdwood 14944616274dSMark Brown switch (list->widgets[i]->id) { 14954616274dSMark Brown case snd_soc_dapm_dai_in: 1496c5b8540dSKoro Chen if (stream != SNDRV_PCM_STREAM_PLAYBACK) 1497c5b8540dSKoro Chen continue; 1498c5b8540dSKoro Chen break; 14994616274dSMark Brown case snd_soc_dapm_dai_out: 1500c5b8540dSKoro Chen if (stream != SNDRV_PCM_STREAM_CAPTURE) 1501c5b8540dSKoro Chen continue; 15024616274dSMark Brown break; 15034616274dSMark Brown default: 150401d7584cSLiam Girdwood continue; 15054616274dSMark Brown } 150601d7584cSLiam Girdwood 150701d7584cSLiam Girdwood /* is there a valid BE rtd for this widget */ 150801d7584cSLiam Girdwood be = dpcm_get_be(card, list->widgets[i], stream); 150901d7584cSLiam Girdwood if (!be) { 1510103d84a3SLiam Girdwood dev_err(fe->dev, "ASoC: no BE found for %s\n", 151101d7584cSLiam Girdwood list->widgets[i]->name); 151201d7584cSLiam Girdwood continue; 151301d7584cSLiam Girdwood } 151401d7584cSLiam Girdwood 151501d7584cSLiam Girdwood /* make sure BE is a real BE */ 151601d7584cSLiam Girdwood if (!be->dai_link->no_pcm) 151701d7584cSLiam Girdwood continue; 151801d7584cSLiam Girdwood 151901d7584cSLiam Girdwood /* don't connect if FE is not running */ 152023607025SLiam Girdwood if (!fe->dpcm[stream].runtime && !fe->fe_compr) 152101d7584cSLiam Girdwood continue; 152201d7584cSLiam Girdwood 152301d7584cSLiam Girdwood /* newly connected FE and BE */ 152401d7584cSLiam Girdwood err = dpcm_be_connect(fe, be, stream); 152501d7584cSLiam Girdwood if (err < 0) { 1526103d84a3SLiam Girdwood dev_err(fe->dev, "ASoC: can't connect %s\n", 152701d7584cSLiam Girdwood list->widgets[i]->name); 152801d7584cSLiam Girdwood break; 152901d7584cSLiam Girdwood } else if (err == 0) /* already connected */ 153001d7584cSLiam Girdwood continue; 153101d7584cSLiam Girdwood 153201d7584cSLiam Girdwood /* new */ 153301d7584cSLiam Girdwood be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE; 153401d7584cSLiam Girdwood new++; 153501d7584cSLiam Girdwood } 153601d7584cSLiam Girdwood 1537103d84a3SLiam Girdwood dev_dbg(fe->dev, "ASoC: found %d new BE paths\n", new); 153801d7584cSLiam Girdwood return new; 153901d7584cSLiam Girdwood } 154001d7584cSLiam Girdwood 154101d7584cSLiam Girdwood /* 154201d7584cSLiam Girdwood * Find the corresponding BE DAIs that source or sink audio to this 154301d7584cSLiam Girdwood * FE substream. 154401d7584cSLiam Girdwood */ 154523607025SLiam Girdwood int dpcm_process_paths(struct snd_soc_pcm_runtime *fe, 154601d7584cSLiam Girdwood int stream, struct snd_soc_dapm_widget_list **list, int new) 154701d7584cSLiam Girdwood { 154801d7584cSLiam Girdwood if (new) 154901d7584cSLiam Girdwood return dpcm_add_paths(fe, stream, list); 155001d7584cSLiam Girdwood else 155101d7584cSLiam Girdwood return dpcm_prune_paths(fe, stream, list); 155201d7584cSLiam Girdwood } 155301d7584cSLiam Girdwood 155423607025SLiam Girdwood void dpcm_clear_pending_state(struct snd_soc_pcm_runtime *fe, int stream) 155501d7584cSLiam Girdwood { 155601d7584cSLiam Girdwood struct snd_soc_dpcm *dpcm; 155701d7584cSLiam Girdwood 155801d7584cSLiam Girdwood list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) 155901d7584cSLiam Girdwood dpcm->be->dpcm[stream].runtime_update = 156001d7584cSLiam Girdwood SND_SOC_DPCM_UPDATE_NO; 156101d7584cSLiam Girdwood } 156201d7584cSLiam Girdwood 156301d7584cSLiam Girdwood static void dpcm_be_dai_startup_unwind(struct snd_soc_pcm_runtime *fe, 156401d7584cSLiam Girdwood int stream) 156501d7584cSLiam Girdwood { 156601d7584cSLiam Girdwood struct snd_soc_dpcm *dpcm; 156701d7584cSLiam Girdwood 156801d7584cSLiam Girdwood /* disable any enabled and non active backends */ 156901d7584cSLiam Girdwood list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) { 157001d7584cSLiam Girdwood 157101d7584cSLiam Girdwood struct snd_soc_pcm_runtime *be = dpcm->be; 157201d7584cSLiam Girdwood struct snd_pcm_substream *be_substream = 157301d7584cSLiam Girdwood snd_soc_dpcm_get_substream(be, stream); 157401d7584cSLiam Girdwood 157501d7584cSLiam Girdwood if (be->dpcm[stream].users == 0) 1576103d84a3SLiam Girdwood dev_err(be->dev, "ASoC: no users %s at close - state %d\n", 157701d7584cSLiam Girdwood stream ? "capture" : "playback", 157801d7584cSLiam Girdwood be->dpcm[stream].state); 157901d7584cSLiam Girdwood 158001d7584cSLiam Girdwood if (--be->dpcm[stream].users != 0) 158101d7584cSLiam Girdwood continue; 158201d7584cSLiam Girdwood 158301d7584cSLiam Girdwood if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) 158401d7584cSLiam Girdwood continue; 158501d7584cSLiam Girdwood 158601d7584cSLiam Girdwood soc_pcm_close(be_substream); 158701d7584cSLiam Girdwood be_substream->runtime = NULL; 158801d7584cSLiam Girdwood be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE; 158901d7584cSLiam Girdwood } 159001d7584cSLiam Girdwood } 159101d7584cSLiam Girdwood 159223607025SLiam Girdwood int dpcm_be_dai_startup(struct snd_soc_pcm_runtime *fe, int stream) 159301d7584cSLiam Girdwood { 159401d7584cSLiam Girdwood struct snd_soc_dpcm *dpcm; 159501d7584cSLiam Girdwood int err, count = 0; 159601d7584cSLiam Girdwood 159701d7584cSLiam Girdwood /* only startup BE DAIs that are either sinks or sources to this FE DAI */ 159801d7584cSLiam Girdwood list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) { 159901d7584cSLiam Girdwood 160001d7584cSLiam Girdwood struct snd_soc_pcm_runtime *be = dpcm->be; 160101d7584cSLiam Girdwood struct snd_pcm_substream *be_substream = 160201d7584cSLiam Girdwood snd_soc_dpcm_get_substream(be, stream); 160301d7584cSLiam Girdwood 16042062b4c5SRussell King - ARM Linux if (!be_substream) { 16052062b4c5SRussell King - ARM Linux dev_err(be->dev, "ASoC: no backend %s stream\n", 16062062b4c5SRussell King - ARM Linux stream ? "capture" : "playback"); 16072062b4c5SRussell King - ARM Linux continue; 16082062b4c5SRussell King - ARM Linux } 16092062b4c5SRussell King - ARM Linux 161001d7584cSLiam Girdwood /* is this op for this BE ? */ 161101d7584cSLiam Girdwood if (!snd_soc_dpcm_be_can_update(fe, be, stream)) 161201d7584cSLiam Girdwood continue; 161301d7584cSLiam Girdwood 161401d7584cSLiam Girdwood /* first time the dpcm is open ? */ 161501d7584cSLiam Girdwood if (be->dpcm[stream].users == DPCM_MAX_BE_USERS) 1616103d84a3SLiam Girdwood dev_err(be->dev, "ASoC: too many users %s at open %d\n", 161701d7584cSLiam Girdwood stream ? "capture" : "playback", 161801d7584cSLiam Girdwood be->dpcm[stream].state); 161901d7584cSLiam Girdwood 162001d7584cSLiam Girdwood if (be->dpcm[stream].users++ != 0) 162101d7584cSLiam Girdwood continue; 162201d7584cSLiam Girdwood 162301d7584cSLiam Girdwood if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_NEW) && 162401d7584cSLiam Girdwood (be->dpcm[stream].state != SND_SOC_DPCM_STATE_CLOSE)) 162501d7584cSLiam Girdwood continue; 162601d7584cSLiam Girdwood 16272062b4c5SRussell King - ARM Linux dev_dbg(be->dev, "ASoC: open %s BE %s\n", 16282062b4c5SRussell King - ARM Linux stream ? "capture" : "playback", be->dai_link->name); 162901d7584cSLiam Girdwood 163001d7584cSLiam Girdwood be_substream->runtime = be->dpcm[stream].runtime; 163101d7584cSLiam Girdwood err = soc_pcm_open(be_substream); 163201d7584cSLiam Girdwood if (err < 0) { 1633103d84a3SLiam Girdwood dev_err(be->dev, "ASoC: BE open failed %d\n", err); 163401d7584cSLiam Girdwood be->dpcm[stream].users--; 163501d7584cSLiam Girdwood if (be->dpcm[stream].users < 0) 1636103d84a3SLiam Girdwood dev_err(be->dev, "ASoC: no users %s at unwind %d\n", 163701d7584cSLiam Girdwood stream ? "capture" : "playback", 163801d7584cSLiam Girdwood be->dpcm[stream].state); 163901d7584cSLiam Girdwood 164001d7584cSLiam Girdwood be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE; 164101d7584cSLiam Girdwood goto unwind; 164201d7584cSLiam Girdwood } 164301d7584cSLiam Girdwood 164401d7584cSLiam Girdwood be->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN; 164501d7584cSLiam Girdwood count++; 164601d7584cSLiam Girdwood } 164701d7584cSLiam Girdwood 164801d7584cSLiam Girdwood return count; 164901d7584cSLiam Girdwood 165001d7584cSLiam Girdwood unwind: 165101d7584cSLiam Girdwood /* disable any enabled and non active backends */ 165201d7584cSLiam Girdwood list_for_each_entry_continue_reverse(dpcm, &fe->dpcm[stream].be_clients, list_be) { 165301d7584cSLiam Girdwood struct snd_soc_pcm_runtime *be = dpcm->be; 165401d7584cSLiam Girdwood struct snd_pcm_substream *be_substream = 165501d7584cSLiam Girdwood snd_soc_dpcm_get_substream(be, stream); 165601d7584cSLiam Girdwood 165701d7584cSLiam Girdwood if (!snd_soc_dpcm_be_can_update(fe, be, stream)) 165801d7584cSLiam Girdwood continue; 165901d7584cSLiam Girdwood 166001d7584cSLiam Girdwood if (be->dpcm[stream].users == 0) 1661103d84a3SLiam Girdwood dev_err(be->dev, "ASoC: no users %s at close %d\n", 166201d7584cSLiam Girdwood stream ? "capture" : "playback", 166301d7584cSLiam Girdwood be->dpcm[stream].state); 166401d7584cSLiam Girdwood 166501d7584cSLiam Girdwood if (--be->dpcm[stream].users != 0) 166601d7584cSLiam Girdwood continue; 166701d7584cSLiam Girdwood 166801d7584cSLiam Girdwood if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) 166901d7584cSLiam Girdwood continue; 167001d7584cSLiam Girdwood 167101d7584cSLiam Girdwood soc_pcm_close(be_substream); 167201d7584cSLiam Girdwood be_substream->runtime = NULL; 167301d7584cSLiam Girdwood be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE; 167401d7584cSLiam Girdwood } 167501d7584cSLiam Girdwood 167601d7584cSLiam Girdwood return err; 167701d7584cSLiam Girdwood } 167801d7584cSLiam Girdwood 167908ae9b45SLars-Peter Clausen static void dpcm_init_runtime_hw(struct snd_pcm_runtime *runtime, 1680435ffb76SJerome Brunet struct snd_soc_pcm_stream *stream) 168108ae9b45SLars-Peter Clausen { 168208ae9b45SLars-Peter Clausen runtime->hw.rate_min = stream->rate_min; 1683*e33ffbd9SCharles Keepax runtime->hw.rate_max = min_not_zero(stream->rate_max, UINT_MAX); 168408ae9b45SLars-Peter Clausen runtime->hw.channels_min = stream->channels_min; 168508ae9b45SLars-Peter Clausen runtime->hw.channels_max = stream->channels_max; 1686002220a9SLars-Peter Clausen if (runtime->hw.formats) 1687435ffb76SJerome Brunet runtime->hw.formats &= stream->formats; 1688002220a9SLars-Peter Clausen else 1689435ffb76SJerome Brunet runtime->hw.formats = stream->formats; 169008ae9b45SLars-Peter Clausen runtime->hw.rates = stream->rates; 169108ae9b45SLars-Peter Clausen } 169208ae9b45SLars-Peter Clausen 1693435ffb76SJerome Brunet static void dpcm_runtime_merge_format(struct snd_pcm_substream *substream, 1694435ffb76SJerome Brunet u64 *formats) 1695b073ed4eSKuninori Morimoto { 1696b073ed4eSKuninori Morimoto struct snd_soc_pcm_runtime *fe = substream->private_data; 1697b073ed4eSKuninori Morimoto struct snd_soc_dpcm *dpcm; 1698b073ed4eSKuninori Morimoto int stream = substream->stream; 1699b073ed4eSKuninori Morimoto 1700b073ed4eSKuninori Morimoto if (!fe->dai_link->dpcm_merged_format) 1701435ffb76SJerome Brunet return; 1702b073ed4eSKuninori Morimoto 1703b073ed4eSKuninori Morimoto /* 1704b073ed4eSKuninori Morimoto * It returns merged BE codec format 1705b073ed4eSKuninori Morimoto * if FE want to use it (= dpcm_merged_format) 1706b073ed4eSKuninori Morimoto */ 1707b073ed4eSKuninori Morimoto 1708b073ed4eSKuninori Morimoto list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) { 1709b073ed4eSKuninori Morimoto struct snd_soc_pcm_runtime *be = dpcm->be; 1710b073ed4eSKuninori Morimoto struct snd_soc_dai_driver *codec_dai_drv; 1711b073ed4eSKuninori Morimoto struct snd_soc_pcm_stream *codec_stream; 1712b073ed4eSKuninori Morimoto int i; 1713b073ed4eSKuninori Morimoto 1714b073ed4eSKuninori Morimoto for (i = 0; i < be->num_codecs; i++) { 17154febced1SJerome Brunet /* 17164febced1SJerome Brunet * Skip CODECs which don't support the current stream 17174febced1SJerome Brunet * type. See soc_pcm_init_runtime_hw() for more details 17184febced1SJerome Brunet */ 17194febced1SJerome Brunet if (!snd_soc_dai_stream_valid(be->codec_dais[i], 17204febced1SJerome Brunet stream)) 17214febced1SJerome Brunet continue; 17224febced1SJerome Brunet 1723b073ed4eSKuninori Morimoto codec_dai_drv = be->codec_dais[i]->driver; 1724b073ed4eSKuninori Morimoto if (stream == SNDRV_PCM_STREAM_PLAYBACK) 1725b073ed4eSKuninori Morimoto codec_stream = &codec_dai_drv->playback; 1726b073ed4eSKuninori Morimoto else 1727b073ed4eSKuninori Morimoto codec_stream = &codec_dai_drv->capture; 1728b073ed4eSKuninori Morimoto 1729435ffb76SJerome Brunet *formats &= codec_stream->formats; 1730435ffb76SJerome Brunet } 1731b073ed4eSKuninori Morimoto } 1732b073ed4eSKuninori Morimoto } 1733b073ed4eSKuninori Morimoto 1734435ffb76SJerome Brunet static void dpcm_runtime_merge_chan(struct snd_pcm_substream *substream, 1735f4c277b8SJiada Wang unsigned int *channels_min, 1736f4c277b8SJiada Wang unsigned int *channels_max) 1737f4c277b8SJiada Wang { 1738f4c277b8SJiada Wang struct snd_soc_pcm_runtime *fe = substream->private_data; 1739f4c277b8SJiada Wang struct snd_soc_dpcm *dpcm; 1740f4c277b8SJiada Wang int stream = substream->stream; 1741f4c277b8SJiada Wang 1742f4c277b8SJiada Wang if (!fe->dai_link->dpcm_merged_chan) 1743f4c277b8SJiada Wang return; 1744f4c277b8SJiada Wang 1745f4c277b8SJiada Wang /* 1746f4c277b8SJiada Wang * It returns merged BE codec channel; 1747f4c277b8SJiada Wang * if FE want to use it (= dpcm_merged_chan) 1748f4c277b8SJiada Wang */ 1749f4c277b8SJiada Wang 1750f4c277b8SJiada Wang list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) { 1751f4c277b8SJiada Wang struct snd_soc_pcm_runtime *be = dpcm->be; 17524f2bd18bSJerome Brunet struct snd_soc_dai_driver *cpu_dai_drv = be->cpu_dai->driver; 1753f4c277b8SJiada Wang struct snd_soc_dai_driver *codec_dai_drv; 1754f4c277b8SJiada Wang struct snd_soc_pcm_stream *codec_stream; 17554f2bd18bSJerome Brunet struct snd_soc_pcm_stream *cpu_stream; 1756f4c277b8SJiada Wang 17574f2bd18bSJerome Brunet if (stream == SNDRV_PCM_STREAM_PLAYBACK) 17584f2bd18bSJerome Brunet cpu_stream = &cpu_dai_drv->playback; 17594f2bd18bSJerome Brunet else 17604f2bd18bSJerome Brunet cpu_stream = &cpu_dai_drv->capture; 17614f2bd18bSJerome Brunet 17624f2bd18bSJerome Brunet *channels_min = max(*channels_min, cpu_stream->channels_min); 17634f2bd18bSJerome Brunet *channels_max = min(*channels_max, cpu_stream->channels_max); 17644f2bd18bSJerome Brunet 17654f2bd18bSJerome Brunet /* 17664f2bd18bSJerome Brunet * chan min/max cannot be enforced if there are multiple CODEC 17674f2bd18bSJerome Brunet * DAIs connected to a single CPU DAI, use CPU DAI's directly 17684f2bd18bSJerome Brunet */ 17694f2bd18bSJerome Brunet if (be->num_codecs == 1) { 17704f2bd18bSJerome Brunet codec_dai_drv = be->codec_dais[0]->driver; 17714f2bd18bSJerome Brunet 1772f4c277b8SJiada Wang if (stream == SNDRV_PCM_STREAM_PLAYBACK) 1773f4c277b8SJiada Wang codec_stream = &codec_dai_drv->playback; 1774f4c277b8SJiada Wang else 1775f4c277b8SJiada Wang codec_stream = &codec_dai_drv->capture; 1776f4c277b8SJiada Wang 1777f4c277b8SJiada Wang *channels_min = max(*channels_min, 1778f4c277b8SJiada Wang codec_stream->channels_min); 1779f4c277b8SJiada Wang *channels_max = min(*channels_max, 1780f4c277b8SJiada Wang codec_stream->channels_max); 1781f4c277b8SJiada Wang } 1782f4c277b8SJiada Wang } 1783f4c277b8SJiada Wang } 1784f4c277b8SJiada Wang 1785baacd8d1SJerome Brunet static void dpcm_runtime_merge_rate(struct snd_pcm_substream *substream, 1786baacd8d1SJerome Brunet unsigned int *rates, 1787baacd8d1SJerome Brunet unsigned int *rate_min, 1788baacd8d1SJerome Brunet unsigned int *rate_max) 1789baacd8d1SJerome Brunet { 1790baacd8d1SJerome Brunet struct snd_soc_pcm_runtime *fe = substream->private_data; 1791baacd8d1SJerome Brunet struct snd_soc_dpcm *dpcm; 1792baacd8d1SJerome Brunet int stream = substream->stream; 1793baacd8d1SJerome Brunet 1794baacd8d1SJerome Brunet if (!fe->dai_link->dpcm_merged_rate) 1795baacd8d1SJerome Brunet return; 1796baacd8d1SJerome Brunet 1797baacd8d1SJerome Brunet /* 1798baacd8d1SJerome Brunet * It returns merged BE codec channel; 1799baacd8d1SJerome Brunet * if FE want to use it (= dpcm_merged_chan) 1800baacd8d1SJerome Brunet */ 1801baacd8d1SJerome Brunet 1802baacd8d1SJerome Brunet list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) { 1803baacd8d1SJerome Brunet struct snd_soc_pcm_runtime *be = dpcm->be; 1804baacd8d1SJerome Brunet struct snd_soc_dai_driver *cpu_dai_drv = be->cpu_dai->driver; 1805baacd8d1SJerome Brunet struct snd_soc_dai_driver *codec_dai_drv; 1806baacd8d1SJerome Brunet struct snd_soc_pcm_stream *codec_stream; 1807baacd8d1SJerome Brunet struct snd_soc_pcm_stream *cpu_stream; 1808baacd8d1SJerome Brunet int i; 1809baacd8d1SJerome Brunet 1810baacd8d1SJerome Brunet if (stream == SNDRV_PCM_STREAM_PLAYBACK) 1811baacd8d1SJerome Brunet cpu_stream = &cpu_dai_drv->playback; 1812baacd8d1SJerome Brunet else 1813baacd8d1SJerome Brunet cpu_stream = &cpu_dai_drv->capture; 1814baacd8d1SJerome Brunet 1815baacd8d1SJerome Brunet *rate_min = max(*rate_min, cpu_stream->rate_min); 1816baacd8d1SJerome Brunet *rate_max = min_not_zero(*rate_max, cpu_stream->rate_max); 1817baacd8d1SJerome Brunet *rates = snd_pcm_rate_mask_intersect(*rates, cpu_stream->rates); 1818baacd8d1SJerome Brunet 1819baacd8d1SJerome Brunet for (i = 0; i < be->num_codecs; i++) { 1820baacd8d1SJerome Brunet /* 1821baacd8d1SJerome Brunet * Skip CODECs which don't support the current stream 1822baacd8d1SJerome Brunet * type. See soc_pcm_init_runtime_hw() for more details 1823baacd8d1SJerome Brunet */ 1824baacd8d1SJerome Brunet if (!snd_soc_dai_stream_valid(be->codec_dais[i], 1825baacd8d1SJerome Brunet stream)) 1826baacd8d1SJerome Brunet continue; 1827baacd8d1SJerome Brunet 1828baacd8d1SJerome Brunet codec_dai_drv = be->codec_dais[i]->driver; 1829baacd8d1SJerome Brunet if (stream == SNDRV_PCM_STREAM_PLAYBACK) 1830baacd8d1SJerome Brunet codec_stream = &codec_dai_drv->playback; 1831baacd8d1SJerome Brunet else 1832baacd8d1SJerome Brunet codec_stream = &codec_dai_drv->capture; 1833baacd8d1SJerome Brunet 1834baacd8d1SJerome Brunet *rate_min = max(*rate_min, codec_stream->rate_min); 1835baacd8d1SJerome Brunet *rate_max = min_not_zero(*rate_max, 1836baacd8d1SJerome Brunet codec_stream->rate_max); 1837baacd8d1SJerome Brunet *rates = snd_pcm_rate_mask_intersect(*rates, 1838baacd8d1SJerome Brunet codec_stream->rates); 1839baacd8d1SJerome Brunet } 1840baacd8d1SJerome Brunet } 1841baacd8d1SJerome Brunet } 1842baacd8d1SJerome Brunet 184345c0a188SMark Brown static void dpcm_set_fe_runtime(struct snd_pcm_substream *substream) 184401d7584cSLiam Girdwood { 184501d7584cSLiam Girdwood struct snd_pcm_runtime *runtime = substream->runtime; 184601d7584cSLiam Girdwood struct snd_soc_pcm_runtime *rtd = substream->private_data; 184701d7584cSLiam Girdwood struct snd_soc_dai *cpu_dai = rtd->cpu_dai; 184801d7584cSLiam Girdwood struct snd_soc_dai_driver *cpu_dai_drv = cpu_dai->driver; 184901d7584cSLiam Girdwood 185008ae9b45SLars-Peter Clausen if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) 1851435ffb76SJerome Brunet dpcm_init_runtime_hw(runtime, &cpu_dai_drv->playback); 185208ae9b45SLars-Peter Clausen else 1853435ffb76SJerome Brunet dpcm_init_runtime_hw(runtime, &cpu_dai_drv->capture); 1854f4c277b8SJiada Wang 1855435ffb76SJerome Brunet dpcm_runtime_merge_format(substream, &runtime->hw.formats); 1856435ffb76SJerome Brunet dpcm_runtime_merge_chan(substream, &runtime->hw.channels_min, 1857435ffb76SJerome Brunet &runtime->hw.channels_max); 1858baacd8d1SJerome Brunet dpcm_runtime_merge_rate(substream, &runtime->hw.rates, 1859baacd8d1SJerome Brunet &runtime->hw.rate_min, &runtime->hw.rate_max); 186001d7584cSLiam Girdwood } 186101d7584cSLiam Girdwood 1862ea9d0d77STakashi Iwai static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd); 1863ea9d0d77STakashi Iwai 1864ea9d0d77STakashi Iwai /* Set FE's runtime_update state; the state is protected via PCM stream lock 1865ea9d0d77STakashi Iwai * for avoiding the race with trigger callback. 1866ea9d0d77STakashi Iwai * If the state is unset and a trigger is pending while the previous operation, 1867ea9d0d77STakashi Iwai * process the pending trigger action here. 1868ea9d0d77STakashi Iwai */ 1869ea9d0d77STakashi Iwai static void dpcm_set_fe_update_state(struct snd_soc_pcm_runtime *fe, 1870ea9d0d77STakashi Iwai int stream, enum snd_soc_dpcm_update state) 1871ea9d0d77STakashi Iwai { 1872ea9d0d77STakashi Iwai struct snd_pcm_substream *substream = 1873ea9d0d77STakashi Iwai snd_soc_dpcm_get_substream(fe, stream); 1874ea9d0d77STakashi Iwai 1875ea9d0d77STakashi Iwai snd_pcm_stream_lock_irq(substream); 1876ea9d0d77STakashi Iwai if (state == SND_SOC_DPCM_UPDATE_NO && fe->dpcm[stream].trigger_pending) { 1877ea9d0d77STakashi Iwai dpcm_fe_dai_do_trigger(substream, 1878ea9d0d77STakashi Iwai fe->dpcm[stream].trigger_pending - 1); 1879ea9d0d77STakashi Iwai fe->dpcm[stream].trigger_pending = 0; 1880ea9d0d77STakashi Iwai } 1881ea9d0d77STakashi Iwai fe->dpcm[stream].runtime_update = state; 1882ea9d0d77STakashi Iwai snd_pcm_stream_unlock_irq(substream); 1883ea9d0d77STakashi Iwai } 1884ea9d0d77STakashi Iwai 1885906c7d69SPC Liao static int dpcm_apply_symmetry(struct snd_pcm_substream *fe_substream, 1886906c7d69SPC Liao int stream) 1887906c7d69SPC Liao { 1888906c7d69SPC Liao struct snd_soc_dpcm *dpcm; 1889906c7d69SPC Liao struct snd_soc_pcm_runtime *fe = fe_substream->private_data; 1890906c7d69SPC Liao struct snd_soc_dai *fe_cpu_dai = fe->cpu_dai; 1891906c7d69SPC Liao int err; 1892906c7d69SPC Liao 1893906c7d69SPC Liao /* apply symmetry for FE */ 1894906c7d69SPC Liao if (soc_pcm_has_symmetry(fe_substream)) 1895906c7d69SPC Liao fe_substream->runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX; 1896906c7d69SPC Liao 1897906c7d69SPC Liao /* Symmetry only applies if we've got an active stream. */ 1898906c7d69SPC Liao if (fe_cpu_dai->active) { 1899906c7d69SPC Liao err = soc_pcm_apply_symmetry(fe_substream, fe_cpu_dai); 1900906c7d69SPC Liao if (err < 0) 1901906c7d69SPC Liao return err; 1902906c7d69SPC Liao } 1903906c7d69SPC Liao 1904906c7d69SPC Liao /* apply symmetry for BE */ 1905906c7d69SPC Liao list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) { 1906906c7d69SPC Liao struct snd_soc_pcm_runtime *be = dpcm->be; 1907906c7d69SPC Liao struct snd_pcm_substream *be_substream = 1908906c7d69SPC Liao snd_soc_dpcm_get_substream(be, stream); 1909906c7d69SPC Liao struct snd_soc_pcm_runtime *rtd = be_substream->private_data; 1910906c7d69SPC Liao int i; 1911906c7d69SPC Liao 1912f1176614SJeeja KP if (rtd->dai_link->be_hw_params_fixup) 1913f1176614SJeeja KP continue; 1914f1176614SJeeja KP 1915906c7d69SPC Liao if (soc_pcm_has_symmetry(be_substream)) 1916906c7d69SPC Liao be_substream->runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX; 1917906c7d69SPC Liao 1918906c7d69SPC Liao /* Symmetry only applies if we've got an active stream. */ 1919906c7d69SPC Liao if (rtd->cpu_dai->active) { 192099bcedbdSKai Chieh Chuang err = soc_pcm_apply_symmetry(fe_substream, 192199bcedbdSKai Chieh Chuang rtd->cpu_dai); 1922906c7d69SPC Liao if (err < 0) 1923906c7d69SPC Liao return err; 1924906c7d69SPC Liao } 1925906c7d69SPC Liao 1926906c7d69SPC Liao for (i = 0; i < rtd->num_codecs; i++) { 1927906c7d69SPC Liao if (rtd->codec_dais[i]->active) { 192899bcedbdSKai Chieh Chuang err = soc_pcm_apply_symmetry(fe_substream, 1929906c7d69SPC Liao rtd->codec_dais[i]); 1930906c7d69SPC Liao if (err < 0) 1931906c7d69SPC Liao return err; 1932906c7d69SPC Liao } 1933906c7d69SPC Liao } 1934906c7d69SPC Liao } 1935906c7d69SPC Liao 1936906c7d69SPC Liao return 0; 1937906c7d69SPC Liao } 1938906c7d69SPC Liao 193901d7584cSLiam Girdwood static int dpcm_fe_dai_startup(struct snd_pcm_substream *fe_substream) 194001d7584cSLiam Girdwood { 194101d7584cSLiam Girdwood struct snd_soc_pcm_runtime *fe = fe_substream->private_data; 194201d7584cSLiam Girdwood struct snd_pcm_runtime *runtime = fe_substream->runtime; 194301d7584cSLiam Girdwood int stream = fe_substream->stream, ret = 0; 194401d7584cSLiam Girdwood 1945ea9d0d77STakashi Iwai dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE); 194601d7584cSLiam Girdwood 194701d7584cSLiam Girdwood ret = dpcm_be_dai_startup(fe, fe_substream->stream); 194801d7584cSLiam Girdwood if (ret < 0) { 1949103d84a3SLiam Girdwood dev_err(fe->dev,"ASoC: failed to start some BEs %d\n", ret); 195001d7584cSLiam Girdwood goto be_err; 195101d7584cSLiam Girdwood } 195201d7584cSLiam Girdwood 1953103d84a3SLiam Girdwood dev_dbg(fe->dev, "ASoC: open FE %s\n", fe->dai_link->name); 195401d7584cSLiam Girdwood 195501d7584cSLiam Girdwood /* start the DAI frontend */ 195601d7584cSLiam Girdwood ret = soc_pcm_open(fe_substream); 195701d7584cSLiam Girdwood if (ret < 0) { 1958103d84a3SLiam Girdwood dev_err(fe->dev,"ASoC: failed to start FE %d\n", ret); 195901d7584cSLiam Girdwood goto unwind; 196001d7584cSLiam Girdwood } 196101d7584cSLiam Girdwood 196201d7584cSLiam Girdwood fe->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN; 196301d7584cSLiam Girdwood 196401d7584cSLiam Girdwood dpcm_set_fe_runtime(fe_substream); 196501d7584cSLiam Girdwood snd_pcm_limit_hw_rates(runtime); 196601d7584cSLiam Girdwood 1967906c7d69SPC Liao ret = dpcm_apply_symmetry(fe_substream, stream); 1968906c7d69SPC Liao if (ret < 0) { 1969906c7d69SPC Liao dev_err(fe->dev, "ASoC: failed to apply dpcm symmetry %d\n", 1970906c7d69SPC Liao ret); 1971906c7d69SPC Liao goto unwind; 1972906c7d69SPC Liao } 1973906c7d69SPC Liao 1974ea9d0d77STakashi Iwai dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); 197501d7584cSLiam Girdwood return 0; 197601d7584cSLiam Girdwood 197701d7584cSLiam Girdwood unwind: 197801d7584cSLiam Girdwood dpcm_be_dai_startup_unwind(fe, fe_substream->stream); 197901d7584cSLiam Girdwood be_err: 1980ea9d0d77STakashi Iwai dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); 198101d7584cSLiam Girdwood return ret; 198201d7584cSLiam Girdwood } 198301d7584cSLiam Girdwood 198423607025SLiam Girdwood int dpcm_be_dai_shutdown(struct snd_soc_pcm_runtime *fe, int stream) 198501d7584cSLiam Girdwood { 198601d7584cSLiam Girdwood struct snd_soc_dpcm *dpcm; 198701d7584cSLiam Girdwood 198801d7584cSLiam Girdwood /* only shutdown BEs that are either sinks or sources to this FE DAI */ 198901d7584cSLiam Girdwood list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) { 199001d7584cSLiam Girdwood 199101d7584cSLiam Girdwood struct snd_soc_pcm_runtime *be = dpcm->be; 199201d7584cSLiam Girdwood struct snd_pcm_substream *be_substream = 199301d7584cSLiam Girdwood snd_soc_dpcm_get_substream(be, stream); 199401d7584cSLiam Girdwood 199501d7584cSLiam Girdwood /* is this op for this BE ? */ 199601d7584cSLiam Girdwood if (!snd_soc_dpcm_be_can_update(fe, be, stream)) 199701d7584cSLiam Girdwood continue; 199801d7584cSLiam Girdwood 199901d7584cSLiam Girdwood if (be->dpcm[stream].users == 0) 2000103d84a3SLiam Girdwood dev_err(be->dev, "ASoC: no users %s at close - state %d\n", 200101d7584cSLiam Girdwood stream ? "capture" : "playback", 200201d7584cSLiam Girdwood be->dpcm[stream].state); 200301d7584cSLiam Girdwood 200401d7584cSLiam Girdwood if (--be->dpcm[stream].users != 0) 200501d7584cSLiam Girdwood continue; 200601d7584cSLiam Girdwood 200701d7584cSLiam Girdwood if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) && 20089c0ac70aSKai Chieh Chuang (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)) { 20099c0ac70aSKai Chieh Chuang soc_pcm_hw_free(be_substream); 20109c0ac70aSKai Chieh Chuang be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE; 20119c0ac70aSKai Chieh Chuang } 201201d7584cSLiam Girdwood 2013103d84a3SLiam Girdwood dev_dbg(be->dev, "ASoC: close BE %s\n", 201494d215ccS彭东林 be->dai_link->name); 201501d7584cSLiam Girdwood 201601d7584cSLiam Girdwood soc_pcm_close(be_substream); 201701d7584cSLiam Girdwood be_substream->runtime = NULL; 201801d7584cSLiam Girdwood 201901d7584cSLiam Girdwood be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE; 202001d7584cSLiam Girdwood } 202101d7584cSLiam Girdwood return 0; 202201d7584cSLiam Girdwood } 202301d7584cSLiam Girdwood 202401d7584cSLiam Girdwood static int dpcm_fe_dai_shutdown(struct snd_pcm_substream *substream) 202501d7584cSLiam Girdwood { 202601d7584cSLiam Girdwood struct snd_soc_pcm_runtime *fe = substream->private_data; 202701d7584cSLiam Girdwood int stream = substream->stream; 202801d7584cSLiam Girdwood 2029ea9d0d77STakashi Iwai dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE); 203001d7584cSLiam Girdwood 203101d7584cSLiam Girdwood /* shutdown the BEs */ 203201d7584cSLiam Girdwood dpcm_be_dai_shutdown(fe, substream->stream); 203301d7584cSLiam Girdwood 2034103d84a3SLiam Girdwood dev_dbg(fe->dev, "ASoC: close FE %s\n", fe->dai_link->name); 203501d7584cSLiam Girdwood 203601d7584cSLiam Girdwood /* now shutdown the frontend */ 203701d7584cSLiam Girdwood soc_pcm_close(substream); 203801d7584cSLiam Girdwood 203901d7584cSLiam Girdwood /* run the stream event for each BE */ 204001d7584cSLiam Girdwood dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP); 204101d7584cSLiam Girdwood 204201d7584cSLiam Girdwood fe->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE; 2043ea9d0d77STakashi Iwai dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); 204401d7584cSLiam Girdwood return 0; 204501d7584cSLiam Girdwood } 204601d7584cSLiam Girdwood 204723607025SLiam Girdwood int dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream) 204801d7584cSLiam Girdwood { 204901d7584cSLiam Girdwood struct snd_soc_dpcm *dpcm; 205001d7584cSLiam Girdwood 205101d7584cSLiam Girdwood /* only hw_params backends that are either sinks or sources 205201d7584cSLiam Girdwood * to this frontend DAI */ 205301d7584cSLiam Girdwood list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) { 205401d7584cSLiam Girdwood 205501d7584cSLiam Girdwood struct snd_soc_pcm_runtime *be = dpcm->be; 205601d7584cSLiam Girdwood struct snd_pcm_substream *be_substream = 205701d7584cSLiam Girdwood snd_soc_dpcm_get_substream(be, stream); 205801d7584cSLiam Girdwood 205901d7584cSLiam Girdwood /* is this op for this BE ? */ 206001d7584cSLiam Girdwood if (!snd_soc_dpcm_be_can_update(fe, be, stream)) 206101d7584cSLiam Girdwood continue; 206201d7584cSLiam Girdwood 206301d7584cSLiam Girdwood /* only free hw when no longer used - check all FEs */ 206401d7584cSLiam Girdwood if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream)) 206501d7584cSLiam Girdwood continue; 206601d7584cSLiam Girdwood 206736fba62cSQiao Zhou /* do not free hw if this BE is used by other FE */ 206836fba62cSQiao Zhou if (be->dpcm[stream].users > 1) 206936fba62cSQiao Zhou continue; 207036fba62cSQiao Zhou 207101d7584cSLiam Girdwood if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) && 207201d7584cSLiam Girdwood (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) && 207301d7584cSLiam Girdwood (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) && 207408b27848SPatrick Lai (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED) && 20755e82d2beSVinod Koul (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) && 20765e82d2beSVinod Koul (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND)) 207701d7584cSLiam Girdwood continue; 207801d7584cSLiam Girdwood 2079103d84a3SLiam Girdwood dev_dbg(be->dev, "ASoC: hw_free BE %s\n", 208094d215ccS彭东林 be->dai_link->name); 208101d7584cSLiam Girdwood 208201d7584cSLiam Girdwood soc_pcm_hw_free(be_substream); 208301d7584cSLiam Girdwood 208401d7584cSLiam Girdwood be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE; 208501d7584cSLiam Girdwood } 208601d7584cSLiam Girdwood 208701d7584cSLiam Girdwood return 0; 208801d7584cSLiam Girdwood } 208901d7584cSLiam Girdwood 209045c0a188SMark Brown static int dpcm_fe_dai_hw_free(struct snd_pcm_substream *substream) 209101d7584cSLiam Girdwood { 209201d7584cSLiam Girdwood struct snd_soc_pcm_runtime *fe = substream->private_data; 209301d7584cSLiam Girdwood int err, stream = substream->stream; 209401d7584cSLiam Girdwood 209501d7584cSLiam Girdwood mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME); 2096ea9d0d77STakashi Iwai dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE); 209701d7584cSLiam Girdwood 2098103d84a3SLiam Girdwood dev_dbg(fe->dev, "ASoC: hw_free FE %s\n", fe->dai_link->name); 209901d7584cSLiam Girdwood 210001d7584cSLiam Girdwood /* call hw_free on the frontend */ 210101d7584cSLiam Girdwood err = soc_pcm_hw_free(substream); 210201d7584cSLiam Girdwood if (err < 0) 2103103d84a3SLiam Girdwood dev_err(fe->dev,"ASoC: hw_free FE %s failed\n", 210401d7584cSLiam Girdwood fe->dai_link->name); 210501d7584cSLiam Girdwood 210601d7584cSLiam Girdwood /* only hw_params backends that are either sinks or sources 210701d7584cSLiam Girdwood * to this frontend DAI */ 210801d7584cSLiam Girdwood err = dpcm_be_dai_hw_free(fe, stream); 210901d7584cSLiam Girdwood 211001d7584cSLiam Girdwood fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE; 2111ea9d0d77STakashi Iwai dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); 211201d7584cSLiam Girdwood 211301d7584cSLiam Girdwood mutex_unlock(&fe->card->mutex); 211401d7584cSLiam Girdwood return 0; 211501d7584cSLiam Girdwood } 211601d7584cSLiam Girdwood 211723607025SLiam Girdwood int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime *fe, int stream) 211801d7584cSLiam Girdwood { 211901d7584cSLiam Girdwood struct snd_soc_dpcm *dpcm; 212001d7584cSLiam Girdwood int ret; 212101d7584cSLiam Girdwood 212201d7584cSLiam Girdwood list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) { 212301d7584cSLiam Girdwood 212401d7584cSLiam Girdwood struct snd_soc_pcm_runtime *be = dpcm->be; 212501d7584cSLiam Girdwood struct snd_pcm_substream *be_substream = 212601d7584cSLiam Girdwood snd_soc_dpcm_get_substream(be, stream); 212701d7584cSLiam Girdwood 212801d7584cSLiam Girdwood /* is this op for this BE ? */ 212901d7584cSLiam Girdwood if (!snd_soc_dpcm_be_can_update(fe, be, stream)) 213001d7584cSLiam Girdwood continue; 213101d7584cSLiam Girdwood 213201d7584cSLiam Girdwood /* copy params for each dpcm */ 213301d7584cSLiam Girdwood memcpy(&dpcm->hw_params, &fe->dpcm[stream].hw_params, 213401d7584cSLiam Girdwood sizeof(struct snd_pcm_hw_params)); 213501d7584cSLiam Girdwood 213601d7584cSLiam Girdwood /* perform any hw_params fixups */ 213701d7584cSLiam Girdwood if (be->dai_link->be_hw_params_fixup) { 213801d7584cSLiam Girdwood ret = be->dai_link->be_hw_params_fixup(be, 213901d7584cSLiam Girdwood &dpcm->hw_params); 214001d7584cSLiam Girdwood if (ret < 0) { 214101d7584cSLiam Girdwood dev_err(be->dev, 2142103d84a3SLiam Girdwood "ASoC: hw_params BE fixup failed %d\n", 214301d7584cSLiam Girdwood ret); 214401d7584cSLiam Girdwood goto unwind; 214501d7584cSLiam Girdwood } 214601d7584cSLiam Girdwood } 214701d7584cSLiam Girdwood 2148b0639bd2SKuninori Morimoto /* only allow hw_params() if no connected FEs are running */ 2149b0639bd2SKuninori Morimoto if (!snd_soc_dpcm_can_be_params(fe, be, stream)) 2150b0639bd2SKuninori Morimoto continue; 2151b0639bd2SKuninori Morimoto 2152b0639bd2SKuninori Morimoto if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) && 2153b0639bd2SKuninori Morimoto (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) && 2154b0639bd2SKuninori Morimoto (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE)) 2155b0639bd2SKuninori Morimoto continue; 2156b0639bd2SKuninori Morimoto 2157b0639bd2SKuninori Morimoto dev_dbg(be->dev, "ASoC: hw_params BE %s\n", 215894d215ccS彭东林 be->dai_link->name); 2159b0639bd2SKuninori Morimoto 216001d7584cSLiam Girdwood ret = soc_pcm_hw_params(be_substream, &dpcm->hw_params); 216101d7584cSLiam Girdwood if (ret < 0) { 216201d7584cSLiam Girdwood dev_err(dpcm->be->dev, 2163103d84a3SLiam Girdwood "ASoC: hw_params BE failed %d\n", ret); 216401d7584cSLiam Girdwood goto unwind; 216501d7584cSLiam Girdwood } 216601d7584cSLiam Girdwood 216701d7584cSLiam Girdwood be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS; 216801d7584cSLiam Girdwood } 216901d7584cSLiam Girdwood return 0; 217001d7584cSLiam Girdwood 217101d7584cSLiam Girdwood unwind: 217201d7584cSLiam Girdwood /* disable any enabled and non active backends */ 217301d7584cSLiam Girdwood list_for_each_entry_continue_reverse(dpcm, &fe->dpcm[stream].be_clients, list_be) { 217401d7584cSLiam Girdwood struct snd_soc_pcm_runtime *be = dpcm->be; 217501d7584cSLiam Girdwood struct snd_pcm_substream *be_substream = 217601d7584cSLiam Girdwood snd_soc_dpcm_get_substream(be, stream); 217701d7584cSLiam Girdwood 217801d7584cSLiam Girdwood if (!snd_soc_dpcm_be_can_update(fe, be, stream)) 217901d7584cSLiam Girdwood continue; 218001d7584cSLiam Girdwood 218101d7584cSLiam Girdwood /* only allow hw_free() if no connected FEs are running */ 218201d7584cSLiam Girdwood if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream)) 218301d7584cSLiam Girdwood continue; 218401d7584cSLiam Girdwood 218501d7584cSLiam Girdwood if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) && 218601d7584cSLiam Girdwood (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) && 218701d7584cSLiam Girdwood (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) && 218801d7584cSLiam Girdwood (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP)) 218901d7584cSLiam Girdwood continue; 219001d7584cSLiam Girdwood 219101d7584cSLiam Girdwood soc_pcm_hw_free(be_substream); 219201d7584cSLiam Girdwood } 219301d7584cSLiam Girdwood 219401d7584cSLiam Girdwood return ret; 219501d7584cSLiam Girdwood } 219601d7584cSLiam Girdwood 219745c0a188SMark Brown static int dpcm_fe_dai_hw_params(struct snd_pcm_substream *substream, 219801d7584cSLiam Girdwood struct snd_pcm_hw_params *params) 219901d7584cSLiam Girdwood { 220001d7584cSLiam Girdwood struct snd_soc_pcm_runtime *fe = substream->private_data; 220101d7584cSLiam Girdwood int ret, stream = substream->stream; 220201d7584cSLiam Girdwood 220301d7584cSLiam Girdwood mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME); 2204ea9d0d77STakashi Iwai dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE); 220501d7584cSLiam Girdwood 220601d7584cSLiam Girdwood memcpy(&fe->dpcm[substream->stream].hw_params, params, 220701d7584cSLiam Girdwood sizeof(struct snd_pcm_hw_params)); 220801d7584cSLiam Girdwood ret = dpcm_be_dai_hw_params(fe, substream->stream); 220901d7584cSLiam Girdwood if (ret < 0) { 2210103d84a3SLiam Girdwood dev_err(fe->dev,"ASoC: hw_params BE failed %d\n", ret); 221101d7584cSLiam Girdwood goto out; 221201d7584cSLiam Girdwood } 221301d7584cSLiam Girdwood 2214103d84a3SLiam Girdwood dev_dbg(fe->dev, "ASoC: hw_params FE %s rate %d chan %x fmt %d\n", 221501d7584cSLiam Girdwood fe->dai_link->name, params_rate(params), 221601d7584cSLiam Girdwood params_channels(params), params_format(params)); 221701d7584cSLiam Girdwood 221801d7584cSLiam Girdwood /* call hw_params on the frontend */ 221901d7584cSLiam Girdwood ret = soc_pcm_hw_params(substream, params); 222001d7584cSLiam Girdwood if (ret < 0) { 2221103d84a3SLiam Girdwood dev_err(fe->dev,"ASoC: hw_params FE failed %d\n", ret); 222201d7584cSLiam Girdwood dpcm_be_dai_hw_free(fe, stream); 222301d7584cSLiam Girdwood } else 222401d7584cSLiam Girdwood fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS; 222501d7584cSLiam Girdwood 222601d7584cSLiam Girdwood out: 2227ea9d0d77STakashi Iwai dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); 222801d7584cSLiam Girdwood mutex_unlock(&fe->card->mutex); 222901d7584cSLiam Girdwood return ret; 223001d7584cSLiam Girdwood } 223101d7584cSLiam Girdwood 223201d7584cSLiam Girdwood static int dpcm_do_trigger(struct snd_soc_dpcm *dpcm, 223301d7584cSLiam Girdwood struct snd_pcm_substream *substream, int cmd) 223401d7584cSLiam Girdwood { 223501d7584cSLiam Girdwood int ret; 223601d7584cSLiam Girdwood 2237103d84a3SLiam Girdwood dev_dbg(dpcm->be->dev, "ASoC: trigger BE %s cmd %d\n", 223894d215ccS彭东林 dpcm->be->dai_link->name, cmd); 223901d7584cSLiam Girdwood 224001d7584cSLiam Girdwood ret = soc_pcm_trigger(substream, cmd); 224101d7584cSLiam Girdwood if (ret < 0) 2242103d84a3SLiam Girdwood dev_err(dpcm->be->dev,"ASoC: trigger BE failed %d\n", ret); 224301d7584cSLiam Girdwood 224401d7584cSLiam Girdwood return ret; 224501d7584cSLiam Girdwood } 224601d7584cSLiam Girdwood 224723607025SLiam Girdwood int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime *fe, int stream, 224845c0a188SMark Brown int cmd) 224901d7584cSLiam Girdwood { 225001d7584cSLiam Girdwood struct snd_soc_dpcm *dpcm; 225101d7584cSLiam Girdwood int ret = 0; 225201d7584cSLiam Girdwood 225301d7584cSLiam Girdwood list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) { 225401d7584cSLiam Girdwood 225501d7584cSLiam Girdwood struct snd_soc_pcm_runtime *be = dpcm->be; 225601d7584cSLiam Girdwood struct snd_pcm_substream *be_substream = 225701d7584cSLiam Girdwood snd_soc_dpcm_get_substream(be, stream); 225801d7584cSLiam Girdwood 225901d7584cSLiam Girdwood /* is this op for this BE ? */ 226001d7584cSLiam Girdwood if (!snd_soc_dpcm_be_can_update(fe, be, stream)) 226101d7584cSLiam Girdwood continue; 226201d7584cSLiam Girdwood 226301d7584cSLiam Girdwood switch (cmd) { 226401d7584cSLiam Girdwood case SNDRV_PCM_TRIGGER_START: 226501d7584cSLiam Girdwood if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) && 226601d7584cSLiam Girdwood (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP)) 226701d7584cSLiam Girdwood continue; 226801d7584cSLiam Girdwood 226901d7584cSLiam Girdwood ret = dpcm_do_trigger(dpcm, be_substream, cmd); 227001d7584cSLiam Girdwood if (ret) 227101d7584cSLiam Girdwood return ret; 227201d7584cSLiam Girdwood 227301d7584cSLiam Girdwood be->dpcm[stream].state = SND_SOC_DPCM_STATE_START; 227401d7584cSLiam Girdwood break; 227501d7584cSLiam Girdwood case SNDRV_PCM_TRIGGER_RESUME: 227601d7584cSLiam Girdwood if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND)) 227701d7584cSLiam Girdwood continue; 227801d7584cSLiam Girdwood 227901d7584cSLiam Girdwood ret = dpcm_do_trigger(dpcm, be_substream, cmd); 228001d7584cSLiam Girdwood if (ret) 228101d7584cSLiam Girdwood return ret; 228201d7584cSLiam Girdwood 228301d7584cSLiam Girdwood be->dpcm[stream].state = SND_SOC_DPCM_STATE_START; 228401d7584cSLiam Girdwood break; 228501d7584cSLiam Girdwood case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: 228601d7584cSLiam Girdwood if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED)) 228701d7584cSLiam Girdwood continue; 228801d7584cSLiam Girdwood 228901d7584cSLiam Girdwood ret = dpcm_do_trigger(dpcm, be_substream, cmd); 229001d7584cSLiam Girdwood if (ret) 229101d7584cSLiam Girdwood return ret; 229201d7584cSLiam Girdwood 229301d7584cSLiam Girdwood be->dpcm[stream].state = SND_SOC_DPCM_STATE_START; 229401d7584cSLiam Girdwood break; 229501d7584cSLiam Girdwood case SNDRV_PCM_TRIGGER_STOP: 229601d7584cSLiam Girdwood if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START) 229701d7584cSLiam Girdwood continue; 229801d7584cSLiam Girdwood 229901d7584cSLiam Girdwood if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream)) 230001d7584cSLiam Girdwood continue; 230101d7584cSLiam Girdwood 230201d7584cSLiam Girdwood ret = dpcm_do_trigger(dpcm, be_substream, cmd); 230301d7584cSLiam Girdwood if (ret) 230401d7584cSLiam Girdwood return ret; 230501d7584cSLiam Girdwood 230601d7584cSLiam Girdwood be->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP; 230701d7584cSLiam Girdwood break; 230801d7584cSLiam Girdwood case SNDRV_PCM_TRIGGER_SUSPEND: 2309868a6ca8SNicolin Chen if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START) 231001d7584cSLiam Girdwood continue; 231101d7584cSLiam Girdwood 231201d7584cSLiam Girdwood if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream)) 231301d7584cSLiam Girdwood continue; 231401d7584cSLiam Girdwood 231501d7584cSLiam Girdwood ret = dpcm_do_trigger(dpcm, be_substream, cmd); 231601d7584cSLiam Girdwood if (ret) 231701d7584cSLiam Girdwood return ret; 231801d7584cSLiam Girdwood 231901d7584cSLiam Girdwood be->dpcm[stream].state = SND_SOC_DPCM_STATE_SUSPEND; 232001d7584cSLiam Girdwood break; 232101d7584cSLiam Girdwood case SNDRV_PCM_TRIGGER_PAUSE_PUSH: 232201d7584cSLiam Girdwood if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START) 232301d7584cSLiam Girdwood continue; 232401d7584cSLiam Girdwood 232501d7584cSLiam Girdwood if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream)) 232601d7584cSLiam Girdwood continue; 232701d7584cSLiam Girdwood 232801d7584cSLiam Girdwood ret = dpcm_do_trigger(dpcm, be_substream, cmd); 232901d7584cSLiam Girdwood if (ret) 233001d7584cSLiam Girdwood return ret; 233101d7584cSLiam Girdwood 233201d7584cSLiam Girdwood be->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED; 233301d7584cSLiam Girdwood break; 233401d7584cSLiam Girdwood } 233501d7584cSLiam Girdwood } 233601d7584cSLiam Girdwood 233701d7584cSLiam Girdwood return ret; 233801d7584cSLiam Girdwood } 233901d7584cSLiam Girdwood EXPORT_SYMBOL_GPL(dpcm_be_dai_trigger); 234001d7584cSLiam Girdwood 2341ea9d0d77STakashi Iwai static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd) 234201d7584cSLiam Girdwood { 234301d7584cSLiam Girdwood struct snd_soc_pcm_runtime *fe = substream->private_data; 234401d7584cSLiam Girdwood int stream = substream->stream, ret; 234501d7584cSLiam Girdwood enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream]; 234601d7584cSLiam Girdwood 234701d7584cSLiam Girdwood fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE; 234801d7584cSLiam Girdwood 234901d7584cSLiam Girdwood switch (trigger) { 235001d7584cSLiam Girdwood case SND_SOC_DPCM_TRIGGER_PRE: 235101d7584cSLiam Girdwood /* call trigger on the frontend before the backend. */ 235201d7584cSLiam Girdwood 2353103d84a3SLiam Girdwood dev_dbg(fe->dev, "ASoC: pre trigger FE %s cmd %d\n", 235401d7584cSLiam Girdwood fe->dai_link->name, cmd); 235501d7584cSLiam Girdwood 235601d7584cSLiam Girdwood ret = soc_pcm_trigger(substream, cmd); 235701d7584cSLiam Girdwood if (ret < 0) { 2358103d84a3SLiam Girdwood dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret); 235901d7584cSLiam Girdwood goto out; 236001d7584cSLiam Girdwood } 236101d7584cSLiam Girdwood 236201d7584cSLiam Girdwood ret = dpcm_be_dai_trigger(fe, substream->stream, cmd); 236301d7584cSLiam Girdwood break; 236401d7584cSLiam Girdwood case SND_SOC_DPCM_TRIGGER_POST: 236501d7584cSLiam Girdwood /* call trigger on the frontend after the backend. */ 236601d7584cSLiam Girdwood 236701d7584cSLiam Girdwood ret = dpcm_be_dai_trigger(fe, substream->stream, cmd); 236801d7584cSLiam Girdwood if (ret < 0) { 2369103d84a3SLiam Girdwood dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret); 237001d7584cSLiam Girdwood goto out; 237101d7584cSLiam Girdwood } 237201d7584cSLiam Girdwood 2373103d84a3SLiam Girdwood dev_dbg(fe->dev, "ASoC: post trigger FE %s cmd %d\n", 237401d7584cSLiam Girdwood fe->dai_link->name, cmd); 237501d7584cSLiam Girdwood 237601d7584cSLiam Girdwood ret = soc_pcm_trigger(substream, cmd); 237701d7584cSLiam Girdwood break; 237807bf84aaSLiam Girdwood case SND_SOC_DPCM_TRIGGER_BESPOKE: 237907bf84aaSLiam Girdwood /* bespoke trigger() - handles both FE and BEs */ 238007bf84aaSLiam Girdwood 2381103d84a3SLiam Girdwood dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd %d\n", 238207bf84aaSLiam Girdwood fe->dai_link->name, cmd); 238307bf84aaSLiam Girdwood 238407bf84aaSLiam Girdwood ret = soc_pcm_bespoke_trigger(substream, cmd); 238507bf84aaSLiam Girdwood if (ret < 0) { 2386103d84a3SLiam Girdwood dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret); 238707bf84aaSLiam Girdwood goto out; 238807bf84aaSLiam Girdwood } 238907bf84aaSLiam Girdwood break; 239001d7584cSLiam Girdwood default: 2391103d84a3SLiam Girdwood dev_err(fe->dev, "ASoC: invalid trigger cmd %d for %s\n", cmd, 239201d7584cSLiam Girdwood fe->dai_link->name); 239301d7584cSLiam Girdwood ret = -EINVAL; 239401d7584cSLiam Girdwood goto out; 239501d7584cSLiam Girdwood } 239601d7584cSLiam Girdwood 239701d7584cSLiam Girdwood switch (cmd) { 239801d7584cSLiam Girdwood case SNDRV_PCM_TRIGGER_START: 239901d7584cSLiam Girdwood case SNDRV_PCM_TRIGGER_RESUME: 240001d7584cSLiam Girdwood case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: 240101d7584cSLiam Girdwood fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START; 240201d7584cSLiam Girdwood break; 240301d7584cSLiam Girdwood case SNDRV_PCM_TRIGGER_STOP: 240401d7584cSLiam Girdwood case SNDRV_PCM_TRIGGER_SUSPEND: 240501d7584cSLiam Girdwood fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP; 240601d7584cSLiam Girdwood break; 24079f169b9fSPatrick Lai case SNDRV_PCM_TRIGGER_PAUSE_PUSH: 24089f169b9fSPatrick Lai fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED; 24099f169b9fSPatrick Lai break; 241001d7584cSLiam Girdwood } 241101d7584cSLiam Girdwood 241201d7584cSLiam Girdwood out: 241301d7584cSLiam Girdwood fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO; 241401d7584cSLiam Girdwood return ret; 241501d7584cSLiam Girdwood } 241601d7584cSLiam Girdwood 2417ea9d0d77STakashi Iwai static int dpcm_fe_dai_trigger(struct snd_pcm_substream *substream, int cmd) 2418ea9d0d77STakashi Iwai { 2419ea9d0d77STakashi Iwai struct snd_soc_pcm_runtime *fe = substream->private_data; 2420ea9d0d77STakashi Iwai int stream = substream->stream; 2421ea9d0d77STakashi Iwai 2422ea9d0d77STakashi Iwai /* if FE's runtime_update is already set, we're in race; 2423ea9d0d77STakashi Iwai * process this trigger later at exit 2424ea9d0d77STakashi Iwai */ 2425ea9d0d77STakashi Iwai if (fe->dpcm[stream].runtime_update != SND_SOC_DPCM_UPDATE_NO) { 2426ea9d0d77STakashi Iwai fe->dpcm[stream].trigger_pending = cmd + 1; 2427ea9d0d77STakashi Iwai return 0; /* delayed, assuming it's successful */ 2428ea9d0d77STakashi Iwai } 2429ea9d0d77STakashi Iwai 2430ea9d0d77STakashi Iwai /* we're alone, let's trigger */ 2431ea9d0d77STakashi Iwai return dpcm_fe_dai_do_trigger(substream, cmd); 2432ea9d0d77STakashi Iwai } 2433ea9d0d77STakashi Iwai 243423607025SLiam Girdwood int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime *fe, int stream) 243501d7584cSLiam Girdwood { 243601d7584cSLiam Girdwood struct snd_soc_dpcm *dpcm; 243701d7584cSLiam Girdwood int ret = 0; 243801d7584cSLiam Girdwood 243901d7584cSLiam Girdwood list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) { 244001d7584cSLiam Girdwood 244101d7584cSLiam Girdwood struct snd_soc_pcm_runtime *be = dpcm->be; 244201d7584cSLiam Girdwood struct snd_pcm_substream *be_substream = 244301d7584cSLiam Girdwood snd_soc_dpcm_get_substream(be, stream); 244401d7584cSLiam Girdwood 244501d7584cSLiam Girdwood /* is this op for this BE ? */ 244601d7584cSLiam Girdwood if (!snd_soc_dpcm_be_can_update(fe, be, stream)) 244701d7584cSLiam Girdwood continue; 244801d7584cSLiam Girdwood 244901d7584cSLiam Girdwood if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) && 245095f444dcSKoro Chen (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) && 245195f444dcSKoro Chen (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND)) 245201d7584cSLiam Girdwood continue; 245301d7584cSLiam Girdwood 2454103d84a3SLiam Girdwood dev_dbg(be->dev, "ASoC: prepare BE %s\n", 245594d215ccS彭东林 be->dai_link->name); 245601d7584cSLiam Girdwood 245701d7584cSLiam Girdwood ret = soc_pcm_prepare(be_substream); 245801d7584cSLiam Girdwood if (ret < 0) { 2459103d84a3SLiam Girdwood dev_err(be->dev, "ASoC: backend prepare failed %d\n", 246001d7584cSLiam Girdwood ret); 246101d7584cSLiam Girdwood break; 246201d7584cSLiam Girdwood } 246301d7584cSLiam Girdwood 246401d7584cSLiam Girdwood be->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE; 246501d7584cSLiam Girdwood } 246601d7584cSLiam Girdwood return ret; 246701d7584cSLiam Girdwood } 246801d7584cSLiam Girdwood 246945c0a188SMark Brown static int dpcm_fe_dai_prepare(struct snd_pcm_substream *substream) 247001d7584cSLiam Girdwood { 247101d7584cSLiam Girdwood struct snd_soc_pcm_runtime *fe = substream->private_data; 247201d7584cSLiam Girdwood int stream = substream->stream, ret = 0; 247301d7584cSLiam Girdwood 247401d7584cSLiam Girdwood mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME); 247501d7584cSLiam Girdwood 2476103d84a3SLiam Girdwood dev_dbg(fe->dev, "ASoC: prepare FE %s\n", fe->dai_link->name); 247701d7584cSLiam Girdwood 2478ea9d0d77STakashi Iwai dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE); 247901d7584cSLiam Girdwood 248001d7584cSLiam Girdwood /* there is no point preparing this FE if there are no BEs */ 248101d7584cSLiam Girdwood if (list_empty(&fe->dpcm[stream].be_clients)) { 2482103d84a3SLiam Girdwood dev_err(fe->dev, "ASoC: no backend DAIs enabled for %s\n", 248301d7584cSLiam Girdwood fe->dai_link->name); 248401d7584cSLiam Girdwood ret = -EINVAL; 248501d7584cSLiam Girdwood goto out; 248601d7584cSLiam Girdwood } 248701d7584cSLiam Girdwood 248801d7584cSLiam Girdwood ret = dpcm_be_dai_prepare(fe, substream->stream); 248901d7584cSLiam Girdwood if (ret < 0) 249001d7584cSLiam Girdwood goto out; 249101d7584cSLiam Girdwood 249201d7584cSLiam Girdwood /* call prepare on the frontend */ 249301d7584cSLiam Girdwood ret = soc_pcm_prepare(substream); 249401d7584cSLiam Girdwood if (ret < 0) { 2495103d84a3SLiam Girdwood dev_err(fe->dev,"ASoC: prepare FE %s failed\n", 249601d7584cSLiam Girdwood fe->dai_link->name); 249701d7584cSLiam Girdwood goto out; 249801d7584cSLiam Girdwood } 249901d7584cSLiam Girdwood 250001d7584cSLiam Girdwood /* run the stream event for each BE */ 250101d7584cSLiam Girdwood dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_START); 250201d7584cSLiam Girdwood fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE; 250301d7584cSLiam Girdwood 250401d7584cSLiam Girdwood out: 2505ea9d0d77STakashi Iwai dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); 250601d7584cSLiam Girdwood mutex_unlock(&fe->card->mutex); 250701d7584cSLiam Girdwood 250801d7584cSLiam Girdwood return ret; 250901d7584cSLiam Girdwood } 251001d7584cSLiam Girdwood 2511be3f3f2cSLiam Girdwood static int soc_pcm_ioctl(struct snd_pcm_substream *substream, 2512be3f3f2cSLiam Girdwood unsigned int cmd, void *arg) 2513be3f3f2cSLiam Girdwood { 2514be3f3f2cSLiam Girdwood struct snd_soc_pcm_runtime *rtd = substream->private_data; 2515b8135864SKuninori Morimoto struct snd_soc_component *component; 2516b8135864SKuninori Morimoto struct snd_soc_rtdcom_list *rtdcom; 2517be3f3f2cSLiam Girdwood 2518b8135864SKuninori Morimoto for_each_rtdcom(rtd, rtdcom) { 2519b8135864SKuninori Morimoto component = rtdcom->component; 2520b8135864SKuninori Morimoto 2521b8135864SKuninori Morimoto if (!component->driver->ops || 2522b8135864SKuninori Morimoto !component->driver->ops->ioctl) 2523b8135864SKuninori Morimoto continue; 2524b8135864SKuninori Morimoto 2525b8135864SKuninori Morimoto /* FIXME: use 1st ioctl */ 2526b8135864SKuninori Morimoto return component->driver->ops->ioctl(substream, cmd, arg); 2527b8135864SKuninori Morimoto } 2528b8135864SKuninori Morimoto 2529be3f3f2cSLiam Girdwood return snd_pcm_lib_ioctl(substream, cmd, arg); 2530be3f3f2cSLiam Girdwood } 2531be3f3f2cSLiam Girdwood 2532618dae11SLiam Girdwood static int dpcm_run_update_shutdown(struct snd_soc_pcm_runtime *fe, int stream) 2533618dae11SLiam Girdwood { 253407bf84aaSLiam Girdwood struct snd_pcm_substream *substream = 253507bf84aaSLiam Girdwood snd_soc_dpcm_get_substream(fe, stream); 253607bf84aaSLiam Girdwood enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream]; 2537618dae11SLiam Girdwood int err; 253801d7584cSLiam Girdwood 2539103d84a3SLiam Girdwood dev_dbg(fe->dev, "ASoC: runtime %s close on FE %s\n", 2540618dae11SLiam Girdwood stream ? "capture" : "playback", fe->dai_link->name); 2541618dae11SLiam Girdwood 254207bf84aaSLiam Girdwood if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) { 254307bf84aaSLiam Girdwood /* call bespoke trigger - FE takes care of all BE triggers */ 2544103d84a3SLiam Girdwood dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd stop\n", 254507bf84aaSLiam Girdwood fe->dai_link->name); 254607bf84aaSLiam Girdwood 254707bf84aaSLiam Girdwood err = soc_pcm_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_STOP); 254807bf84aaSLiam Girdwood if (err < 0) 2549103d84a3SLiam Girdwood dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err); 255007bf84aaSLiam Girdwood } else { 2551103d84a3SLiam Girdwood dev_dbg(fe->dev, "ASoC: trigger FE %s cmd stop\n", 255207bf84aaSLiam Girdwood fe->dai_link->name); 255307bf84aaSLiam Girdwood 2554618dae11SLiam Girdwood err = dpcm_be_dai_trigger(fe, stream, SNDRV_PCM_TRIGGER_STOP); 2555618dae11SLiam Girdwood if (err < 0) 2556103d84a3SLiam Girdwood dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err); 255707bf84aaSLiam Girdwood } 2558618dae11SLiam Girdwood 2559618dae11SLiam Girdwood err = dpcm_be_dai_hw_free(fe, stream); 2560618dae11SLiam Girdwood if (err < 0) 2561103d84a3SLiam Girdwood dev_err(fe->dev,"ASoC: hw_free FE failed %d\n", err); 2562618dae11SLiam Girdwood 2563618dae11SLiam Girdwood err = dpcm_be_dai_shutdown(fe, stream); 2564618dae11SLiam Girdwood if (err < 0) 2565103d84a3SLiam Girdwood dev_err(fe->dev,"ASoC: shutdown FE failed %d\n", err); 2566618dae11SLiam Girdwood 2567618dae11SLiam Girdwood /* run the stream event for each BE */ 2568618dae11SLiam Girdwood dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP); 2569618dae11SLiam Girdwood 2570618dae11SLiam Girdwood return 0; 2571618dae11SLiam Girdwood } 2572618dae11SLiam Girdwood 2573618dae11SLiam Girdwood static int dpcm_run_update_startup(struct snd_soc_pcm_runtime *fe, int stream) 2574618dae11SLiam Girdwood { 257507bf84aaSLiam Girdwood struct snd_pcm_substream *substream = 257607bf84aaSLiam Girdwood snd_soc_dpcm_get_substream(fe, stream); 2577618dae11SLiam Girdwood struct snd_soc_dpcm *dpcm; 257807bf84aaSLiam Girdwood enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream]; 2579618dae11SLiam Girdwood int ret; 2580618dae11SLiam Girdwood 2581103d84a3SLiam Girdwood dev_dbg(fe->dev, "ASoC: runtime %s open on FE %s\n", 2582618dae11SLiam Girdwood stream ? "capture" : "playback", fe->dai_link->name); 2583618dae11SLiam Girdwood 2584618dae11SLiam Girdwood /* Only start the BE if the FE is ready */ 2585618dae11SLiam Girdwood if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_FREE || 2586618dae11SLiam Girdwood fe->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE) 2587618dae11SLiam Girdwood return -EINVAL; 2588618dae11SLiam Girdwood 2589618dae11SLiam Girdwood /* startup must always be called for new BEs */ 2590618dae11SLiam Girdwood ret = dpcm_be_dai_startup(fe, stream); 2591fffc0ca2SDan Carpenter if (ret < 0) 2592618dae11SLiam Girdwood goto disconnect; 2593618dae11SLiam Girdwood 2594618dae11SLiam Girdwood /* keep going if FE state is > open */ 2595618dae11SLiam Girdwood if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_OPEN) 2596618dae11SLiam Girdwood return 0; 2597618dae11SLiam Girdwood 2598618dae11SLiam Girdwood ret = dpcm_be_dai_hw_params(fe, stream); 2599fffc0ca2SDan Carpenter if (ret < 0) 2600618dae11SLiam Girdwood goto close; 2601618dae11SLiam Girdwood 2602618dae11SLiam Girdwood /* keep going if FE state is > hw_params */ 2603618dae11SLiam Girdwood if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_PARAMS) 2604618dae11SLiam Girdwood return 0; 2605618dae11SLiam Girdwood 2606618dae11SLiam Girdwood 2607618dae11SLiam Girdwood ret = dpcm_be_dai_prepare(fe, stream); 2608fffc0ca2SDan Carpenter if (ret < 0) 2609618dae11SLiam Girdwood goto hw_free; 2610618dae11SLiam Girdwood 2611618dae11SLiam Girdwood /* run the stream event for each BE */ 2612618dae11SLiam Girdwood dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP); 2613618dae11SLiam Girdwood 2614618dae11SLiam Girdwood /* keep going if FE state is > prepare */ 2615618dae11SLiam Girdwood if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_PREPARE || 2616618dae11SLiam Girdwood fe->dpcm[stream].state == SND_SOC_DPCM_STATE_STOP) 2617618dae11SLiam Girdwood return 0; 2618618dae11SLiam Girdwood 261907bf84aaSLiam Girdwood if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) { 262007bf84aaSLiam Girdwood /* call trigger on the frontend - FE takes care of all BE triggers */ 2621103d84a3SLiam Girdwood dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd start\n", 262207bf84aaSLiam Girdwood fe->dai_link->name); 262307bf84aaSLiam Girdwood 262407bf84aaSLiam Girdwood ret = soc_pcm_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_START); 262507bf84aaSLiam Girdwood if (ret < 0) { 2626103d84a3SLiam Girdwood dev_err(fe->dev,"ASoC: bespoke trigger FE failed %d\n", ret); 262707bf84aaSLiam Girdwood goto hw_free; 262807bf84aaSLiam Girdwood } 262907bf84aaSLiam Girdwood } else { 2630103d84a3SLiam Girdwood dev_dbg(fe->dev, "ASoC: trigger FE %s cmd start\n", 2631618dae11SLiam Girdwood fe->dai_link->name); 2632618dae11SLiam Girdwood 2633618dae11SLiam Girdwood ret = dpcm_be_dai_trigger(fe, stream, 2634618dae11SLiam Girdwood SNDRV_PCM_TRIGGER_START); 2635618dae11SLiam Girdwood if (ret < 0) { 2636103d84a3SLiam Girdwood dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret); 2637618dae11SLiam Girdwood goto hw_free; 2638618dae11SLiam Girdwood } 263907bf84aaSLiam Girdwood } 2640618dae11SLiam Girdwood 2641618dae11SLiam Girdwood return 0; 2642618dae11SLiam Girdwood 2643618dae11SLiam Girdwood hw_free: 2644618dae11SLiam Girdwood dpcm_be_dai_hw_free(fe, stream); 2645618dae11SLiam Girdwood close: 2646618dae11SLiam Girdwood dpcm_be_dai_shutdown(fe, stream); 2647618dae11SLiam Girdwood disconnect: 2648618dae11SLiam Girdwood /* disconnect any non started BEs */ 2649618dae11SLiam Girdwood list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) { 2650618dae11SLiam Girdwood struct snd_soc_pcm_runtime *be = dpcm->be; 2651618dae11SLiam Girdwood if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START) 2652618dae11SLiam Girdwood dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE; 2653618dae11SLiam Girdwood } 2654618dae11SLiam Girdwood 2655618dae11SLiam Girdwood return ret; 2656618dae11SLiam Girdwood } 2657618dae11SLiam Girdwood 2658618dae11SLiam Girdwood static int dpcm_run_new_update(struct snd_soc_pcm_runtime *fe, int stream) 2659618dae11SLiam Girdwood { 2660618dae11SLiam Girdwood int ret; 2661618dae11SLiam Girdwood 2662ea9d0d77STakashi Iwai dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE); 2663618dae11SLiam Girdwood ret = dpcm_run_update_startup(fe, stream); 2664618dae11SLiam Girdwood if (ret < 0) 2665103d84a3SLiam Girdwood dev_err(fe->dev, "ASoC: failed to startup some BEs\n"); 2666ea9d0d77STakashi Iwai dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); 2667618dae11SLiam Girdwood 2668618dae11SLiam Girdwood return ret; 2669618dae11SLiam Girdwood } 2670618dae11SLiam Girdwood 2671618dae11SLiam Girdwood static int dpcm_run_old_update(struct snd_soc_pcm_runtime *fe, int stream) 2672618dae11SLiam Girdwood { 2673618dae11SLiam Girdwood int ret; 2674618dae11SLiam Girdwood 2675ea9d0d77STakashi Iwai dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE); 2676618dae11SLiam Girdwood ret = dpcm_run_update_shutdown(fe, stream); 2677618dae11SLiam Girdwood if (ret < 0) 2678103d84a3SLiam Girdwood dev_err(fe->dev, "ASoC: failed to shutdown some BEs\n"); 2679ea9d0d77STakashi Iwai dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); 2680618dae11SLiam Girdwood 2681618dae11SLiam Girdwood return ret; 2682618dae11SLiam Girdwood } 2683618dae11SLiam Girdwood 2684de15d7ffSJerome Brunet static int soc_dpcm_fe_runtime_update(struct snd_soc_pcm_runtime *fe, int new) 2685618dae11SLiam Girdwood { 2686618dae11SLiam Girdwood struct snd_soc_dapm_widget_list *list; 2687de15d7ffSJerome Brunet int count, paths; 2688618dae11SLiam Girdwood 2689618dae11SLiam Girdwood if (!fe->dai_link->dynamic) 2690de15d7ffSJerome Brunet return 0; 2691618dae11SLiam Girdwood 2692618dae11SLiam Girdwood /* only check active links */ 2693618dae11SLiam Girdwood if (!fe->cpu_dai->active) 2694de15d7ffSJerome Brunet return 0; 2695618dae11SLiam Girdwood 2696618dae11SLiam Girdwood /* DAPM sync will call this to update DSP paths */ 2697de15d7ffSJerome Brunet dev_dbg(fe->dev, "ASoC: DPCM %s runtime update for FE %s\n", 2698de15d7ffSJerome Brunet new ? "new" : "old", fe->dai_link->name); 2699618dae11SLiam Girdwood 2700618dae11SLiam Girdwood /* skip if FE doesn't have playback capability */ 2701de15d7ffSJerome Brunet if (!fe->cpu_dai->driver->playback.channels_min || 2702de15d7ffSJerome Brunet !fe->codec_dai->driver->playback.channels_min) 2703075207d2SQiao Zhou goto capture; 2704075207d2SQiao Zhou 2705075207d2SQiao Zhou /* skip if FE isn't currently playing */ 2706de15d7ffSJerome Brunet if (!fe->cpu_dai->playback_active || !fe->codec_dai->playback_active) 2707618dae11SLiam Girdwood goto capture; 2708618dae11SLiam Girdwood 2709618dae11SLiam Girdwood paths = dpcm_path_get(fe, SNDRV_PCM_STREAM_PLAYBACK, &list); 2710618dae11SLiam Girdwood if (paths < 0) { 2711103d84a3SLiam Girdwood dev_warn(fe->dev, "ASoC: %s no valid %s path\n", 2712618dae11SLiam Girdwood fe->dai_link->name, "playback"); 2713618dae11SLiam Girdwood return paths; 2714618dae11SLiam Girdwood } 2715618dae11SLiam Girdwood 2716de15d7ffSJerome Brunet /* update any playback paths */ 2717de15d7ffSJerome Brunet count = dpcm_process_paths(fe, SNDRV_PCM_STREAM_PLAYBACK, &list, new); 2718de15d7ffSJerome Brunet if (count) { 2719de15d7ffSJerome Brunet if (new) 2720618dae11SLiam Girdwood dpcm_run_new_update(fe, SNDRV_PCM_STREAM_PLAYBACK); 2721de15d7ffSJerome Brunet else 2722618dae11SLiam Girdwood dpcm_run_old_update(fe, SNDRV_PCM_STREAM_PLAYBACK); 2723de15d7ffSJerome Brunet 2724618dae11SLiam Girdwood dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_PLAYBACK); 2725618dae11SLiam Girdwood dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_PLAYBACK); 2726618dae11SLiam Girdwood } 2727618dae11SLiam Girdwood 27287ed9de76SQiao Zhou dpcm_path_put(&list); 2729de15d7ffSJerome Brunet 2730618dae11SLiam Girdwood capture: 2731618dae11SLiam Girdwood /* skip if FE doesn't have capture capability */ 2732de15d7ffSJerome Brunet if (!fe->cpu_dai->driver->capture.channels_min || 2733de15d7ffSJerome Brunet !fe->codec_dai->driver->capture.channels_min) 2734de15d7ffSJerome Brunet return 0; 2735075207d2SQiao Zhou 2736075207d2SQiao Zhou /* skip if FE isn't currently capturing */ 2737de15d7ffSJerome Brunet if (!fe->cpu_dai->capture_active || !fe->codec_dai->capture_active) 2738de15d7ffSJerome Brunet return 0; 2739618dae11SLiam Girdwood 2740618dae11SLiam Girdwood paths = dpcm_path_get(fe, SNDRV_PCM_STREAM_CAPTURE, &list); 2741618dae11SLiam Girdwood if (paths < 0) { 2742103d84a3SLiam Girdwood dev_warn(fe->dev, "ASoC: %s no valid %s path\n", 2743618dae11SLiam Girdwood fe->dai_link->name, "capture"); 2744618dae11SLiam Girdwood return paths; 2745618dae11SLiam Girdwood } 2746618dae11SLiam Girdwood 2747618dae11SLiam Girdwood /* update any old capture paths */ 2748de15d7ffSJerome Brunet count = dpcm_process_paths(fe, SNDRV_PCM_STREAM_CAPTURE, &list, new); 2749de15d7ffSJerome Brunet if (count) { 2750de15d7ffSJerome Brunet if (new) 2751de15d7ffSJerome Brunet dpcm_run_new_update(fe, SNDRV_PCM_STREAM_CAPTURE); 2752de15d7ffSJerome Brunet else 2753618dae11SLiam Girdwood dpcm_run_old_update(fe, SNDRV_PCM_STREAM_CAPTURE); 2754de15d7ffSJerome Brunet 2755618dae11SLiam Girdwood dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_CAPTURE); 2756618dae11SLiam Girdwood dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_CAPTURE); 2757618dae11SLiam Girdwood } 2758618dae11SLiam Girdwood 2759618dae11SLiam Girdwood dpcm_path_put(&list); 2760de15d7ffSJerome Brunet 2761de15d7ffSJerome Brunet return 0; 2762618dae11SLiam Girdwood } 2763618dae11SLiam Girdwood 2764de15d7ffSJerome Brunet /* Called by DAPM mixer/mux changes to update audio routing between PCMs and 2765de15d7ffSJerome Brunet * any DAI links. 2766de15d7ffSJerome Brunet */ 2767de15d7ffSJerome Brunet int soc_dpcm_runtime_update(struct snd_soc_card *card) 2768de15d7ffSJerome Brunet { 2769de15d7ffSJerome Brunet struct snd_soc_pcm_runtime *fe; 2770de15d7ffSJerome Brunet int ret = 0; 2771de15d7ffSJerome Brunet 2772de15d7ffSJerome Brunet mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_RUNTIME); 2773de15d7ffSJerome Brunet /* shutdown all old paths first */ 2774de15d7ffSJerome Brunet list_for_each_entry(fe, &card->rtd_list, list) { 2775de15d7ffSJerome Brunet ret = soc_dpcm_fe_runtime_update(fe, 0); 2776de15d7ffSJerome Brunet if (ret) 2777de15d7ffSJerome Brunet goto out; 2778de15d7ffSJerome Brunet } 2779de15d7ffSJerome Brunet 2780de15d7ffSJerome Brunet /* bring new paths up */ 2781de15d7ffSJerome Brunet list_for_each_entry(fe, &card->rtd_list, list) { 2782de15d7ffSJerome Brunet ret = soc_dpcm_fe_runtime_update(fe, 1); 2783de15d7ffSJerome Brunet if (ret) 2784de15d7ffSJerome Brunet goto out; 2785de15d7ffSJerome Brunet } 2786de15d7ffSJerome Brunet 2787de15d7ffSJerome Brunet out: 2788618dae11SLiam Girdwood mutex_unlock(&card->mutex); 2789de15d7ffSJerome Brunet return ret; 2790618dae11SLiam Girdwood } 279101d7584cSLiam Girdwood int soc_dpcm_be_digital_mute(struct snd_soc_pcm_runtime *fe, int mute) 279201d7584cSLiam Girdwood { 279301d7584cSLiam Girdwood struct snd_soc_dpcm *dpcm; 279401d7584cSLiam Girdwood struct list_head *clients = 279501d7584cSLiam Girdwood &fe->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients; 279601d7584cSLiam Girdwood 279701d7584cSLiam Girdwood list_for_each_entry(dpcm, clients, list_be) { 279801d7584cSLiam Girdwood 279901d7584cSLiam Girdwood struct snd_soc_pcm_runtime *be = dpcm->be; 28002e5894d7SBenoit Cousson int i; 280101d7584cSLiam Girdwood 280201d7584cSLiam Girdwood if (be->dai_link->ignore_suspend) 280301d7584cSLiam Girdwood continue; 280401d7584cSLiam Girdwood 28052e5894d7SBenoit Cousson for (i = 0; i < be->num_codecs; i++) { 28062e5894d7SBenoit Cousson struct snd_soc_dai *dai = be->codec_dais[i]; 28072e5894d7SBenoit Cousson struct snd_soc_dai_driver *drv = dai->driver; 280801d7584cSLiam Girdwood 28092e5894d7SBenoit Cousson dev_dbg(be->dev, "ASoC: BE digital mute %s\n", 28102e5894d7SBenoit Cousson be->dai_link->name); 28112e5894d7SBenoit Cousson 28122e5894d7SBenoit Cousson if (drv->ops && drv->ops->digital_mute && 28132e5894d7SBenoit Cousson dai->playback_active) 281401d7584cSLiam Girdwood drv->ops->digital_mute(dai, mute); 281501d7584cSLiam Girdwood } 28162e5894d7SBenoit Cousson } 281701d7584cSLiam Girdwood 281801d7584cSLiam Girdwood return 0; 281901d7584cSLiam Girdwood } 282001d7584cSLiam Girdwood 282145c0a188SMark Brown static int dpcm_fe_dai_open(struct snd_pcm_substream *fe_substream) 282201d7584cSLiam Girdwood { 282301d7584cSLiam Girdwood struct snd_soc_pcm_runtime *fe = fe_substream->private_data; 282401d7584cSLiam Girdwood struct snd_soc_dpcm *dpcm; 282501d7584cSLiam Girdwood struct snd_soc_dapm_widget_list *list; 282601d7584cSLiam Girdwood int ret; 282701d7584cSLiam Girdwood int stream = fe_substream->stream; 282801d7584cSLiam Girdwood 282901d7584cSLiam Girdwood mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME); 283001d7584cSLiam Girdwood fe->dpcm[stream].runtime = fe_substream->runtime; 283101d7584cSLiam Girdwood 28328f70e515SQiao Zhou ret = dpcm_path_get(fe, stream, &list); 28338f70e515SQiao Zhou if (ret < 0) { 28348f70e515SQiao Zhou mutex_unlock(&fe->card->mutex); 28358f70e515SQiao Zhou return ret; 28368f70e515SQiao Zhou } else if (ret == 0) { 2837103d84a3SLiam Girdwood dev_dbg(fe->dev, "ASoC: %s no valid %s route\n", 283801d7584cSLiam Girdwood fe->dai_link->name, stream ? "capture" : "playback"); 283901d7584cSLiam Girdwood } 284001d7584cSLiam Girdwood 284101d7584cSLiam Girdwood /* calculate valid and active FE <-> BE dpcms */ 284201d7584cSLiam Girdwood dpcm_process_paths(fe, stream, &list, 1); 284301d7584cSLiam Girdwood 284401d7584cSLiam Girdwood ret = dpcm_fe_dai_startup(fe_substream); 284501d7584cSLiam Girdwood if (ret < 0) { 284601d7584cSLiam Girdwood /* clean up all links */ 284701d7584cSLiam Girdwood list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) 284801d7584cSLiam Girdwood dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE; 284901d7584cSLiam Girdwood 285001d7584cSLiam Girdwood dpcm_be_disconnect(fe, stream); 285101d7584cSLiam Girdwood fe->dpcm[stream].runtime = NULL; 285201d7584cSLiam Girdwood } 285301d7584cSLiam Girdwood 285401d7584cSLiam Girdwood dpcm_clear_pending_state(fe, stream); 285501d7584cSLiam Girdwood dpcm_path_put(&list); 285601d7584cSLiam Girdwood mutex_unlock(&fe->card->mutex); 285701d7584cSLiam Girdwood return ret; 285801d7584cSLiam Girdwood } 285901d7584cSLiam Girdwood 286045c0a188SMark Brown static int dpcm_fe_dai_close(struct snd_pcm_substream *fe_substream) 286101d7584cSLiam Girdwood { 286201d7584cSLiam Girdwood struct snd_soc_pcm_runtime *fe = fe_substream->private_data; 286301d7584cSLiam Girdwood struct snd_soc_dpcm *dpcm; 286401d7584cSLiam Girdwood int stream = fe_substream->stream, ret; 286501d7584cSLiam Girdwood 286601d7584cSLiam Girdwood mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME); 286701d7584cSLiam Girdwood ret = dpcm_fe_dai_shutdown(fe_substream); 286801d7584cSLiam Girdwood 286901d7584cSLiam Girdwood /* mark FE's links ready to prune */ 287001d7584cSLiam Girdwood list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) 287101d7584cSLiam Girdwood dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE; 287201d7584cSLiam Girdwood 287301d7584cSLiam Girdwood dpcm_be_disconnect(fe, stream); 287401d7584cSLiam Girdwood 287501d7584cSLiam Girdwood fe->dpcm[stream].runtime = NULL; 287601d7584cSLiam Girdwood mutex_unlock(&fe->card->mutex); 287701d7584cSLiam Girdwood return ret; 287801d7584cSLiam Girdwood } 287901d7584cSLiam Girdwood 28805d61f0baSTakashi Iwai static void soc_pcm_private_free(struct snd_pcm *pcm) 28815d61f0baSTakashi Iwai { 28825d61f0baSTakashi Iwai struct snd_soc_pcm_runtime *rtd = pcm->private_data; 2883f523acebSKuninori Morimoto struct snd_soc_rtdcom_list *rtdcom; 2884f523acebSKuninori Morimoto struct snd_soc_component *component; 28855d61f0baSTakashi Iwai 28865d61f0baSTakashi Iwai /* need to sync the delayed work before releasing resources */ 28875d61f0baSTakashi Iwai flush_delayed_work(&rtd->delayed_work); 2888f30a4c31SKuninori Morimoto for_each_rtdcom(rtd, rtdcom) { 2889f523acebSKuninori Morimoto component = rtdcom->component; 2890f523acebSKuninori Morimoto 289111fb14f8SKuninori Morimoto if (component->driver->pcm_free) 289211fb14f8SKuninori Morimoto component->driver->pcm_free(pcm); 2893f523acebSKuninori Morimoto } 28945d61f0baSTakashi Iwai } 28955d61f0baSTakashi Iwai 2896b8135864SKuninori Morimoto static int soc_rtdcom_ack(struct snd_pcm_substream *substream) 2897b8135864SKuninori Morimoto { 2898b8135864SKuninori Morimoto struct snd_soc_pcm_runtime *rtd = substream->private_data; 2899b8135864SKuninori Morimoto struct snd_soc_rtdcom_list *rtdcom; 2900b8135864SKuninori Morimoto struct snd_soc_component *component; 2901b8135864SKuninori Morimoto 2902b8135864SKuninori Morimoto for_each_rtdcom(rtd, rtdcom) { 2903b8135864SKuninori Morimoto component = rtdcom->component; 2904b8135864SKuninori Morimoto 2905b8135864SKuninori Morimoto if (!component->driver->ops || 2906b8135864SKuninori Morimoto !component->driver->ops->ack) 2907b8135864SKuninori Morimoto continue; 2908b8135864SKuninori Morimoto 2909b8135864SKuninori Morimoto /* FIXME. it returns 1st ask now */ 2910b8135864SKuninori Morimoto return component->driver->ops->ack(substream); 2911b8135864SKuninori Morimoto } 2912b8135864SKuninori Morimoto 2913b8135864SKuninori Morimoto return -EINVAL; 2914b8135864SKuninori Morimoto } 2915b8135864SKuninori Morimoto 2916b8135864SKuninori Morimoto static int soc_rtdcom_copy_user(struct snd_pcm_substream *substream, int channel, 2917b8135864SKuninori Morimoto unsigned long pos, void __user *buf, 2918b8135864SKuninori Morimoto unsigned long bytes) 2919b8135864SKuninori Morimoto { 2920b8135864SKuninori Morimoto struct snd_soc_pcm_runtime *rtd = substream->private_data; 2921b8135864SKuninori Morimoto struct snd_soc_rtdcom_list *rtdcom; 2922b8135864SKuninori Morimoto struct snd_soc_component *component; 2923b8135864SKuninori Morimoto 2924b8135864SKuninori Morimoto for_each_rtdcom(rtd, rtdcom) { 2925b8135864SKuninori Morimoto component = rtdcom->component; 2926b8135864SKuninori Morimoto 2927b8135864SKuninori Morimoto if (!component->driver->ops || 2928b8135864SKuninori Morimoto !component->driver->ops->copy_user) 2929b8135864SKuninori Morimoto continue; 2930b8135864SKuninori Morimoto 2931b8135864SKuninori Morimoto /* FIXME. it returns 1st copy now */ 2932b8135864SKuninori Morimoto return component->driver->ops->copy_user(substream, channel, 2933b8135864SKuninori Morimoto pos, buf, bytes); 2934b8135864SKuninori Morimoto } 2935b8135864SKuninori Morimoto 2936b8135864SKuninori Morimoto return -EINVAL; 2937b8135864SKuninori Morimoto } 2938b8135864SKuninori Morimoto 2939b8135864SKuninori Morimoto static int soc_rtdcom_copy_kernel(struct snd_pcm_substream *substream, int channel, 2940b8135864SKuninori Morimoto unsigned long pos, void *buf, unsigned long bytes) 2941b8135864SKuninori Morimoto { 2942b8135864SKuninori Morimoto struct snd_soc_pcm_runtime *rtd = substream->private_data; 2943b8135864SKuninori Morimoto struct snd_soc_rtdcom_list *rtdcom; 2944b8135864SKuninori Morimoto struct snd_soc_component *component; 2945b8135864SKuninori Morimoto 2946b8135864SKuninori Morimoto for_each_rtdcom(rtd, rtdcom) { 2947b8135864SKuninori Morimoto component = rtdcom->component; 2948b8135864SKuninori Morimoto 2949b8135864SKuninori Morimoto if (!component->driver->ops || 2950b8135864SKuninori Morimoto !component->driver->ops->copy_kernel) 2951b8135864SKuninori Morimoto continue; 2952b8135864SKuninori Morimoto 2953b8135864SKuninori Morimoto /* FIXME. it returns 1st copy now */ 2954b8135864SKuninori Morimoto return component->driver->ops->copy_kernel(substream, channel, 2955b8135864SKuninori Morimoto pos, buf, bytes); 2956b8135864SKuninori Morimoto } 2957b8135864SKuninori Morimoto 2958b8135864SKuninori Morimoto return -EINVAL; 2959b8135864SKuninori Morimoto } 2960b8135864SKuninori Morimoto 2961b8135864SKuninori Morimoto static int soc_rtdcom_fill_silence(struct snd_pcm_substream *substream, int channel, 2962b8135864SKuninori Morimoto unsigned long pos, unsigned long bytes) 2963b8135864SKuninori Morimoto { 2964b8135864SKuninori Morimoto struct snd_soc_pcm_runtime *rtd = substream->private_data; 2965b8135864SKuninori Morimoto struct snd_soc_rtdcom_list *rtdcom; 2966b8135864SKuninori Morimoto struct snd_soc_component *component; 2967b8135864SKuninori Morimoto 2968b8135864SKuninori Morimoto for_each_rtdcom(rtd, rtdcom) { 2969b8135864SKuninori Morimoto component = rtdcom->component; 2970b8135864SKuninori Morimoto 2971b8135864SKuninori Morimoto if (!component->driver->ops || 2972b8135864SKuninori Morimoto !component->driver->ops->fill_silence) 2973b8135864SKuninori Morimoto continue; 2974b8135864SKuninori Morimoto 2975b8135864SKuninori Morimoto /* FIXME. it returns 1st silence now */ 2976b8135864SKuninori Morimoto return component->driver->ops->fill_silence(substream, channel, 2977b8135864SKuninori Morimoto pos, bytes); 2978b8135864SKuninori Morimoto } 2979b8135864SKuninori Morimoto 2980b8135864SKuninori Morimoto return -EINVAL; 2981b8135864SKuninori Morimoto } 2982b8135864SKuninori Morimoto 2983b8135864SKuninori Morimoto static struct page *soc_rtdcom_page(struct snd_pcm_substream *substream, 2984b8135864SKuninori Morimoto unsigned long offset) 2985b8135864SKuninori Morimoto { 2986b8135864SKuninori Morimoto struct snd_soc_pcm_runtime *rtd = substream->private_data; 2987b8135864SKuninori Morimoto struct snd_soc_rtdcom_list *rtdcom; 2988b8135864SKuninori Morimoto struct snd_soc_component *component; 2989b8135864SKuninori Morimoto struct page *page; 2990b8135864SKuninori Morimoto 2991b8135864SKuninori Morimoto for_each_rtdcom(rtd, rtdcom) { 2992b8135864SKuninori Morimoto component = rtdcom->component; 2993b8135864SKuninori Morimoto 2994b8135864SKuninori Morimoto if (!component->driver->ops || 2995b8135864SKuninori Morimoto !component->driver->ops->page) 2996b8135864SKuninori Morimoto continue; 2997b8135864SKuninori Morimoto 2998b8135864SKuninori Morimoto /* FIXME. it returns 1st page now */ 2999b8135864SKuninori Morimoto page = component->driver->ops->page(substream, offset); 3000b8135864SKuninori Morimoto if (page) 3001b8135864SKuninori Morimoto return page; 3002b8135864SKuninori Morimoto } 3003b8135864SKuninori Morimoto 3004b8135864SKuninori Morimoto return NULL; 3005b8135864SKuninori Morimoto } 3006b8135864SKuninori Morimoto 3007b8135864SKuninori Morimoto static int soc_rtdcom_mmap(struct snd_pcm_substream *substream, 3008b8135864SKuninori Morimoto struct vm_area_struct *vma) 3009b8135864SKuninori Morimoto { 3010b8135864SKuninori Morimoto struct snd_soc_pcm_runtime *rtd = substream->private_data; 3011b8135864SKuninori Morimoto struct snd_soc_rtdcom_list *rtdcom; 3012b8135864SKuninori Morimoto struct snd_soc_component *component; 3013b8135864SKuninori Morimoto 3014b8135864SKuninori Morimoto for_each_rtdcom(rtd, rtdcom) { 3015b8135864SKuninori Morimoto component = rtdcom->component; 3016b8135864SKuninori Morimoto 3017b8135864SKuninori Morimoto if (!component->driver->ops || 3018b8135864SKuninori Morimoto !component->driver->ops->mmap) 3019b8135864SKuninori Morimoto continue; 3020b8135864SKuninori Morimoto 3021b8135864SKuninori Morimoto /* FIXME. it returns 1st mmap now */ 3022b8135864SKuninori Morimoto return component->driver->ops->mmap(substream, vma); 3023b8135864SKuninori Morimoto } 3024b8135864SKuninori Morimoto 3025b8135864SKuninori Morimoto return -EINVAL; 3026b8135864SKuninori Morimoto } 3027b8135864SKuninori Morimoto 3028ddee627cSLiam Girdwood /* create a new pcm */ 3029ddee627cSLiam Girdwood int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num) 3030ddee627cSLiam Girdwood { 30312e5894d7SBenoit Cousson struct snd_soc_dai *codec_dai; 3032ddee627cSLiam Girdwood struct snd_soc_dai *cpu_dai = rtd->cpu_dai; 3033f523acebSKuninori Morimoto struct snd_soc_component *component; 3034f523acebSKuninori Morimoto struct snd_soc_rtdcom_list *rtdcom; 3035ddee627cSLiam Girdwood struct snd_pcm *pcm; 3036ddee627cSLiam Girdwood char new_name[64]; 3037ddee627cSLiam Girdwood int ret = 0, playback = 0, capture = 0; 30382e5894d7SBenoit Cousson int i; 3039ddee627cSLiam Girdwood 304001d7584cSLiam Girdwood if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm) { 30411e9de42fSLiam Girdwood playback = rtd->dai_link->dpcm_playback; 30421e9de42fSLiam Girdwood capture = rtd->dai_link->dpcm_capture; 304301d7584cSLiam Girdwood } else { 30442e5894d7SBenoit Cousson for (i = 0; i < rtd->num_codecs; i++) { 30452e5894d7SBenoit Cousson codec_dai = rtd->codec_dais[i]; 30462e5894d7SBenoit Cousson if (codec_dai->driver->playback.channels_min) 3047ddee627cSLiam Girdwood playback = 1; 30482e5894d7SBenoit Cousson if (codec_dai->driver->capture.channels_min) 3049ddee627cSLiam Girdwood capture = 1; 305001d7584cSLiam Girdwood } 3051ddee627cSLiam Girdwood 30522e5894d7SBenoit Cousson capture = capture && cpu_dai->driver->capture.channels_min; 30532e5894d7SBenoit Cousson playback = playback && cpu_dai->driver->playback.channels_min; 30542e5894d7SBenoit Cousson } 30552e5894d7SBenoit Cousson 3056d6bead02SFabio Estevam if (rtd->dai_link->playback_only) { 3057d6bead02SFabio Estevam playback = 1; 3058d6bead02SFabio Estevam capture = 0; 3059d6bead02SFabio Estevam } 3060d6bead02SFabio Estevam 3061d6bead02SFabio Estevam if (rtd->dai_link->capture_only) { 3062d6bead02SFabio Estevam playback = 0; 3063d6bead02SFabio Estevam capture = 1; 3064d6bead02SFabio Estevam } 3065d6bead02SFabio Estevam 306601d7584cSLiam Girdwood /* create the PCM */ 306701d7584cSLiam Girdwood if (rtd->dai_link->no_pcm) { 306801d7584cSLiam Girdwood snprintf(new_name, sizeof(new_name), "(%s)", 306901d7584cSLiam Girdwood rtd->dai_link->stream_name); 307001d7584cSLiam Girdwood 307101d7584cSLiam Girdwood ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num, 307201d7584cSLiam Girdwood playback, capture, &pcm); 307301d7584cSLiam Girdwood } else { 307401d7584cSLiam Girdwood if (rtd->dai_link->dynamic) 307501d7584cSLiam Girdwood snprintf(new_name, sizeof(new_name), "%s (*)", 307601d7584cSLiam Girdwood rtd->dai_link->stream_name); 307701d7584cSLiam Girdwood else 307801d7584cSLiam Girdwood snprintf(new_name, sizeof(new_name), "%s %s-%d", 30792e5894d7SBenoit Cousson rtd->dai_link->stream_name, 30802e5894d7SBenoit Cousson (rtd->num_codecs > 1) ? 30812e5894d7SBenoit Cousson "multicodec" : rtd->codec_dai->name, num); 308201d7584cSLiam Girdwood 308301d7584cSLiam Girdwood ret = snd_pcm_new(rtd->card->snd_card, new_name, num, playback, 308401d7584cSLiam Girdwood capture, &pcm); 308501d7584cSLiam Girdwood } 3086ddee627cSLiam Girdwood if (ret < 0) { 3087103d84a3SLiam Girdwood dev_err(rtd->card->dev, "ASoC: can't create pcm for %s\n", 30885cb9b748SLiam Girdwood rtd->dai_link->name); 3089ddee627cSLiam Girdwood return ret; 3090ddee627cSLiam Girdwood } 3091103d84a3SLiam Girdwood dev_dbg(rtd->card->dev, "ASoC: registered pcm #%d %s\n",num, new_name); 3092ddee627cSLiam Girdwood 3093ddee627cSLiam Girdwood /* DAPM dai link stream work */ 3094ddee627cSLiam Girdwood INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work); 3095ddee627cSLiam Girdwood 309648c7699fSVinod Koul pcm->nonatomic = rtd->dai_link->nonatomic; 3097ddee627cSLiam Girdwood rtd->pcm = pcm; 3098ddee627cSLiam Girdwood pcm->private_data = rtd; 309901d7584cSLiam Girdwood 310001d7584cSLiam Girdwood if (rtd->dai_link->no_pcm) { 310101d7584cSLiam Girdwood if (playback) 310201d7584cSLiam Girdwood pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd; 310301d7584cSLiam Girdwood if (capture) 310401d7584cSLiam Girdwood pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd; 310501d7584cSLiam Girdwood goto out; 310601d7584cSLiam Girdwood } 310701d7584cSLiam Girdwood 310801d7584cSLiam Girdwood /* ASoC PCM operations */ 310901d7584cSLiam Girdwood if (rtd->dai_link->dynamic) { 311001d7584cSLiam Girdwood rtd->ops.open = dpcm_fe_dai_open; 311101d7584cSLiam Girdwood rtd->ops.hw_params = dpcm_fe_dai_hw_params; 311201d7584cSLiam Girdwood rtd->ops.prepare = dpcm_fe_dai_prepare; 311301d7584cSLiam Girdwood rtd->ops.trigger = dpcm_fe_dai_trigger; 311401d7584cSLiam Girdwood rtd->ops.hw_free = dpcm_fe_dai_hw_free; 311501d7584cSLiam Girdwood rtd->ops.close = dpcm_fe_dai_close; 311601d7584cSLiam Girdwood rtd->ops.pointer = soc_pcm_pointer; 3117be3f3f2cSLiam Girdwood rtd->ops.ioctl = soc_pcm_ioctl; 311801d7584cSLiam Girdwood } else { 311901d7584cSLiam Girdwood rtd->ops.open = soc_pcm_open; 312001d7584cSLiam Girdwood rtd->ops.hw_params = soc_pcm_hw_params; 312101d7584cSLiam Girdwood rtd->ops.prepare = soc_pcm_prepare; 312201d7584cSLiam Girdwood rtd->ops.trigger = soc_pcm_trigger; 312301d7584cSLiam Girdwood rtd->ops.hw_free = soc_pcm_hw_free; 312401d7584cSLiam Girdwood rtd->ops.close = soc_pcm_close; 312501d7584cSLiam Girdwood rtd->ops.pointer = soc_pcm_pointer; 3126be3f3f2cSLiam Girdwood rtd->ops.ioctl = soc_pcm_ioctl; 312701d7584cSLiam Girdwood } 312801d7584cSLiam Girdwood 3129b8135864SKuninori Morimoto for_each_rtdcom(rtd, rtdcom) { 3130b8135864SKuninori Morimoto const struct snd_pcm_ops *ops = rtdcom->component->driver->ops; 3131b8135864SKuninori Morimoto 3132b8135864SKuninori Morimoto if (!ops) 3133b8135864SKuninori Morimoto continue; 3134b8135864SKuninori Morimoto 3135b8135864SKuninori Morimoto if (ops->ack) 3136b8135864SKuninori Morimoto rtd->ops.ack = soc_rtdcom_ack; 3137b8135864SKuninori Morimoto if (ops->copy_user) 3138b8135864SKuninori Morimoto rtd->ops.copy_user = soc_rtdcom_copy_user; 3139b8135864SKuninori Morimoto if (ops->copy_kernel) 3140b8135864SKuninori Morimoto rtd->ops.copy_kernel = soc_rtdcom_copy_kernel; 3141b8135864SKuninori Morimoto if (ops->fill_silence) 3142b8135864SKuninori Morimoto rtd->ops.fill_silence = soc_rtdcom_fill_silence; 3143b8135864SKuninori Morimoto if (ops->page) 3144b8135864SKuninori Morimoto rtd->ops.page = soc_rtdcom_page; 3145b8135864SKuninori Morimoto if (ops->mmap) 3146b8135864SKuninori Morimoto rtd->ops.mmap = soc_rtdcom_mmap; 3147b8135864SKuninori Morimoto } 3148b8135864SKuninori Morimoto 3149ddee627cSLiam Girdwood if (playback) 315001d7584cSLiam Girdwood snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &rtd->ops); 3151ddee627cSLiam Girdwood 3152ddee627cSLiam Girdwood if (capture) 315301d7584cSLiam Girdwood snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &rtd->ops); 3154ddee627cSLiam Girdwood 3155f523acebSKuninori Morimoto for_each_rtdcom(rtd, rtdcom) { 3156f523acebSKuninori Morimoto component = rtdcom->component; 3157f523acebSKuninori Morimoto 315811fb14f8SKuninori Morimoto if (!component->driver->pcm_new) 3159f523acebSKuninori Morimoto continue; 3160f523acebSKuninori Morimoto 316111fb14f8SKuninori Morimoto ret = component->driver->pcm_new(rtd); 3162ddee627cSLiam Girdwood if (ret < 0) { 3163f523acebSKuninori Morimoto dev_err(component->dev, 3164b1bc7b3cSMark Brown "ASoC: pcm constructor failed: %d\n", 3165b1bc7b3cSMark Brown ret); 3166ddee627cSLiam Girdwood return ret; 3167ddee627cSLiam Girdwood } 3168ddee627cSLiam Girdwood } 3169c641e5b2SJohan Hovold 31705d61f0baSTakashi Iwai pcm->private_free = soc_pcm_private_free; 317101d7584cSLiam Girdwood out: 31722e5894d7SBenoit Cousson dev_info(rtd->card->dev, "%s <-> %s mapping ok\n", 31732e5894d7SBenoit Cousson (rtd->num_codecs > 1) ? "multicodec" : rtd->codec_dai->name, 3174ddee627cSLiam Girdwood cpu_dai->name); 3175ddee627cSLiam Girdwood return ret; 3176ddee627cSLiam Girdwood } 317701d7584cSLiam Girdwood 317801d7584cSLiam Girdwood /* is the current PCM operation for this FE ? */ 317901d7584cSLiam Girdwood int snd_soc_dpcm_fe_can_update(struct snd_soc_pcm_runtime *fe, int stream) 318001d7584cSLiam Girdwood { 318101d7584cSLiam Girdwood if (fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE) 318201d7584cSLiam Girdwood return 1; 318301d7584cSLiam Girdwood return 0; 318401d7584cSLiam Girdwood } 318501d7584cSLiam Girdwood EXPORT_SYMBOL_GPL(snd_soc_dpcm_fe_can_update); 318601d7584cSLiam Girdwood 318701d7584cSLiam Girdwood /* is the current PCM operation for this BE ? */ 318801d7584cSLiam Girdwood int snd_soc_dpcm_be_can_update(struct snd_soc_pcm_runtime *fe, 318901d7584cSLiam Girdwood struct snd_soc_pcm_runtime *be, int stream) 319001d7584cSLiam Girdwood { 319101d7584cSLiam Girdwood if ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE) || 319201d7584cSLiam Girdwood ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_BE) && 319301d7584cSLiam Girdwood be->dpcm[stream].runtime_update)) 319401d7584cSLiam Girdwood return 1; 319501d7584cSLiam Girdwood return 0; 319601d7584cSLiam Girdwood } 319701d7584cSLiam Girdwood EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_can_update); 319801d7584cSLiam Girdwood 319901d7584cSLiam Girdwood /* get the substream for this BE */ 320001d7584cSLiam Girdwood struct snd_pcm_substream * 320101d7584cSLiam Girdwood snd_soc_dpcm_get_substream(struct snd_soc_pcm_runtime *be, int stream) 320201d7584cSLiam Girdwood { 320301d7584cSLiam Girdwood return be->pcm->streams[stream].substream; 320401d7584cSLiam Girdwood } 320501d7584cSLiam Girdwood EXPORT_SYMBOL_GPL(snd_soc_dpcm_get_substream); 320601d7584cSLiam Girdwood 320701d7584cSLiam Girdwood /* get the BE runtime state */ 320801d7584cSLiam Girdwood enum snd_soc_dpcm_state 320901d7584cSLiam Girdwood snd_soc_dpcm_be_get_state(struct snd_soc_pcm_runtime *be, int stream) 321001d7584cSLiam Girdwood { 321101d7584cSLiam Girdwood return be->dpcm[stream].state; 321201d7584cSLiam Girdwood } 321301d7584cSLiam Girdwood EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_get_state); 321401d7584cSLiam Girdwood 321501d7584cSLiam Girdwood /* set the BE runtime state */ 321601d7584cSLiam Girdwood void snd_soc_dpcm_be_set_state(struct snd_soc_pcm_runtime *be, 321701d7584cSLiam Girdwood int stream, enum snd_soc_dpcm_state state) 321801d7584cSLiam Girdwood { 321901d7584cSLiam Girdwood be->dpcm[stream].state = state; 322001d7584cSLiam Girdwood } 322101d7584cSLiam Girdwood EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_set_state); 322201d7584cSLiam Girdwood 322301d7584cSLiam Girdwood /* 322401d7584cSLiam Girdwood * We can only hw_free, stop, pause or suspend a BE DAI if any of it's FE 322501d7584cSLiam Girdwood * are not running, paused or suspended for the specified stream direction. 322601d7584cSLiam Girdwood */ 322701d7584cSLiam Girdwood int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime *fe, 322801d7584cSLiam Girdwood struct snd_soc_pcm_runtime *be, int stream) 322901d7584cSLiam Girdwood { 323001d7584cSLiam Girdwood struct snd_soc_dpcm *dpcm; 323101d7584cSLiam Girdwood int state; 323201d7584cSLiam Girdwood 323301d7584cSLiam Girdwood list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) { 323401d7584cSLiam Girdwood 323501d7584cSLiam Girdwood if (dpcm->fe == fe) 323601d7584cSLiam Girdwood continue; 323701d7584cSLiam Girdwood 323801d7584cSLiam Girdwood state = dpcm->fe->dpcm[stream].state; 323901d7584cSLiam Girdwood if (state == SND_SOC_DPCM_STATE_START || 324001d7584cSLiam Girdwood state == SND_SOC_DPCM_STATE_PAUSED || 324101d7584cSLiam Girdwood state == SND_SOC_DPCM_STATE_SUSPEND) 324201d7584cSLiam Girdwood return 0; 324301d7584cSLiam Girdwood } 324401d7584cSLiam Girdwood 324501d7584cSLiam Girdwood /* it's safe to free/stop this BE DAI */ 324601d7584cSLiam Girdwood return 1; 324701d7584cSLiam Girdwood } 324801d7584cSLiam Girdwood EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_free_stop); 324901d7584cSLiam Girdwood 325001d7584cSLiam Girdwood /* 325101d7584cSLiam Girdwood * We can only change hw params a BE DAI if any of it's FE are not prepared, 325201d7584cSLiam Girdwood * running, paused or suspended for the specified stream direction. 325301d7584cSLiam Girdwood */ 325401d7584cSLiam Girdwood int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime *fe, 325501d7584cSLiam Girdwood struct snd_soc_pcm_runtime *be, int stream) 325601d7584cSLiam Girdwood { 325701d7584cSLiam Girdwood struct snd_soc_dpcm *dpcm; 325801d7584cSLiam Girdwood int state; 325901d7584cSLiam Girdwood 326001d7584cSLiam Girdwood list_for_each_entry(dpcm, &be->dpcm[stream].fe_clients, list_fe) { 326101d7584cSLiam Girdwood 326201d7584cSLiam Girdwood if (dpcm->fe == fe) 326301d7584cSLiam Girdwood continue; 326401d7584cSLiam Girdwood 326501d7584cSLiam Girdwood state = dpcm->fe->dpcm[stream].state; 326601d7584cSLiam Girdwood if (state == SND_SOC_DPCM_STATE_START || 326701d7584cSLiam Girdwood state == SND_SOC_DPCM_STATE_PAUSED || 326801d7584cSLiam Girdwood state == SND_SOC_DPCM_STATE_SUSPEND || 326901d7584cSLiam Girdwood state == SND_SOC_DPCM_STATE_PREPARE) 327001d7584cSLiam Girdwood return 0; 327101d7584cSLiam Girdwood } 327201d7584cSLiam Girdwood 327301d7584cSLiam Girdwood /* it's safe to change hw_params */ 327401d7584cSLiam Girdwood return 1; 327501d7584cSLiam Girdwood } 327601d7584cSLiam Girdwood EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_params); 3277f86dcef8SLiam Girdwood 3278f86dcef8SLiam Girdwood #ifdef CONFIG_DEBUG_FS 327985280141SLars-Peter Clausen static const char *dpcm_state_string(enum snd_soc_dpcm_state state) 3280f86dcef8SLiam Girdwood { 3281f86dcef8SLiam Girdwood switch (state) { 3282f86dcef8SLiam Girdwood case SND_SOC_DPCM_STATE_NEW: 3283f86dcef8SLiam Girdwood return "new"; 3284f86dcef8SLiam Girdwood case SND_SOC_DPCM_STATE_OPEN: 3285f86dcef8SLiam Girdwood return "open"; 3286f86dcef8SLiam Girdwood case SND_SOC_DPCM_STATE_HW_PARAMS: 3287f86dcef8SLiam Girdwood return "hw_params"; 3288f86dcef8SLiam Girdwood case SND_SOC_DPCM_STATE_PREPARE: 3289f86dcef8SLiam Girdwood return "prepare"; 3290f86dcef8SLiam Girdwood case SND_SOC_DPCM_STATE_START: 3291f86dcef8SLiam Girdwood return "start"; 3292f86dcef8SLiam Girdwood case SND_SOC_DPCM_STATE_STOP: 3293f86dcef8SLiam Girdwood return "stop"; 3294f86dcef8SLiam Girdwood case SND_SOC_DPCM_STATE_SUSPEND: 3295f86dcef8SLiam Girdwood return "suspend"; 3296f86dcef8SLiam Girdwood case SND_SOC_DPCM_STATE_PAUSED: 3297f86dcef8SLiam Girdwood return "paused"; 3298f86dcef8SLiam Girdwood case SND_SOC_DPCM_STATE_HW_FREE: 3299f86dcef8SLiam Girdwood return "hw_free"; 3300f86dcef8SLiam Girdwood case SND_SOC_DPCM_STATE_CLOSE: 3301f86dcef8SLiam Girdwood return "close"; 3302f86dcef8SLiam Girdwood } 3303f86dcef8SLiam Girdwood 3304f86dcef8SLiam Girdwood return "unknown"; 3305f86dcef8SLiam Girdwood } 3306f86dcef8SLiam Girdwood 3307f86dcef8SLiam Girdwood static ssize_t dpcm_show_state(struct snd_soc_pcm_runtime *fe, 3308f86dcef8SLiam Girdwood int stream, char *buf, size_t size) 3309f86dcef8SLiam Girdwood { 3310f86dcef8SLiam Girdwood struct snd_pcm_hw_params *params = &fe->dpcm[stream].hw_params; 3311f86dcef8SLiam Girdwood struct snd_soc_dpcm *dpcm; 3312f86dcef8SLiam Girdwood ssize_t offset = 0; 3313f86dcef8SLiam Girdwood 3314f86dcef8SLiam Girdwood /* FE state */ 3315f86dcef8SLiam Girdwood offset += snprintf(buf + offset, size - offset, 3316f86dcef8SLiam Girdwood "[%s - %s]\n", fe->dai_link->name, 3317f86dcef8SLiam Girdwood stream ? "Capture" : "Playback"); 3318f86dcef8SLiam Girdwood 3319f86dcef8SLiam Girdwood offset += snprintf(buf + offset, size - offset, "State: %s\n", 3320f86dcef8SLiam Girdwood dpcm_state_string(fe->dpcm[stream].state)); 3321f86dcef8SLiam Girdwood 3322f86dcef8SLiam Girdwood if ((fe->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) && 3323f86dcef8SLiam Girdwood (fe->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP)) 3324f86dcef8SLiam Girdwood offset += snprintf(buf + offset, size - offset, 3325f86dcef8SLiam Girdwood "Hardware Params: " 3326f86dcef8SLiam Girdwood "Format = %s, Channels = %d, Rate = %d\n", 3327f86dcef8SLiam Girdwood snd_pcm_format_name(params_format(params)), 3328f86dcef8SLiam Girdwood params_channels(params), 3329f86dcef8SLiam Girdwood params_rate(params)); 3330f86dcef8SLiam Girdwood 3331f86dcef8SLiam Girdwood /* BEs state */ 3332f86dcef8SLiam Girdwood offset += snprintf(buf + offset, size - offset, "Backends:\n"); 3333f86dcef8SLiam Girdwood 3334f86dcef8SLiam Girdwood if (list_empty(&fe->dpcm[stream].be_clients)) { 3335f86dcef8SLiam Girdwood offset += snprintf(buf + offset, size - offset, 3336f86dcef8SLiam Girdwood " No active DSP links\n"); 3337f86dcef8SLiam Girdwood goto out; 3338f86dcef8SLiam Girdwood } 3339f86dcef8SLiam Girdwood 3340f86dcef8SLiam Girdwood list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be) { 3341f86dcef8SLiam Girdwood struct snd_soc_pcm_runtime *be = dpcm->be; 3342f86dcef8SLiam Girdwood params = &dpcm->hw_params; 3343f86dcef8SLiam Girdwood 3344f86dcef8SLiam Girdwood offset += snprintf(buf + offset, size - offset, 3345f86dcef8SLiam Girdwood "- %s\n", be->dai_link->name); 3346f86dcef8SLiam Girdwood 3347f86dcef8SLiam Girdwood offset += snprintf(buf + offset, size - offset, 3348f86dcef8SLiam Girdwood " State: %s\n", 3349f86dcef8SLiam Girdwood dpcm_state_string(be->dpcm[stream].state)); 3350f86dcef8SLiam Girdwood 3351f86dcef8SLiam Girdwood if ((be->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) && 3352f86dcef8SLiam Girdwood (be->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP)) 3353f86dcef8SLiam Girdwood offset += snprintf(buf + offset, size - offset, 3354f86dcef8SLiam Girdwood " Hardware Params: " 3355f86dcef8SLiam Girdwood "Format = %s, Channels = %d, Rate = %d\n", 3356f86dcef8SLiam Girdwood snd_pcm_format_name(params_format(params)), 3357f86dcef8SLiam Girdwood params_channels(params), 3358f86dcef8SLiam Girdwood params_rate(params)); 3359f86dcef8SLiam Girdwood } 3360f86dcef8SLiam Girdwood 3361f86dcef8SLiam Girdwood out: 3362f86dcef8SLiam Girdwood return offset; 3363f86dcef8SLiam Girdwood } 3364f86dcef8SLiam Girdwood 3365f86dcef8SLiam Girdwood static ssize_t dpcm_state_read_file(struct file *file, char __user *user_buf, 3366f86dcef8SLiam Girdwood size_t count, loff_t *ppos) 3367f86dcef8SLiam Girdwood { 3368f86dcef8SLiam Girdwood struct snd_soc_pcm_runtime *fe = file->private_data; 3369f86dcef8SLiam Girdwood ssize_t out_count = PAGE_SIZE, offset = 0, ret = 0; 3370f86dcef8SLiam Girdwood char *buf; 3371f86dcef8SLiam Girdwood 3372f86dcef8SLiam Girdwood buf = kmalloc(out_count, GFP_KERNEL); 3373f86dcef8SLiam Girdwood if (!buf) 3374f86dcef8SLiam Girdwood return -ENOMEM; 3375f86dcef8SLiam Girdwood 3376f86dcef8SLiam Girdwood if (fe->cpu_dai->driver->playback.channels_min) 3377f86dcef8SLiam Girdwood offset += dpcm_show_state(fe, SNDRV_PCM_STREAM_PLAYBACK, 3378f86dcef8SLiam Girdwood buf + offset, out_count - offset); 3379f86dcef8SLiam Girdwood 3380f86dcef8SLiam Girdwood if (fe->cpu_dai->driver->capture.channels_min) 3381f86dcef8SLiam Girdwood offset += dpcm_show_state(fe, SNDRV_PCM_STREAM_CAPTURE, 3382f86dcef8SLiam Girdwood buf + offset, out_count - offset); 3383f86dcef8SLiam Girdwood 3384f86dcef8SLiam Girdwood ret = simple_read_from_buffer(user_buf, count, ppos, buf, offset); 3385f86dcef8SLiam Girdwood 3386f86dcef8SLiam Girdwood kfree(buf); 3387f86dcef8SLiam Girdwood return ret; 3388f86dcef8SLiam Girdwood } 3389f86dcef8SLiam Girdwood 3390f86dcef8SLiam Girdwood static const struct file_operations dpcm_state_fops = { 3391f57b8488SLiam Girdwood .open = simple_open, 3392f86dcef8SLiam Girdwood .read = dpcm_state_read_file, 3393f86dcef8SLiam Girdwood .llseek = default_llseek, 3394f86dcef8SLiam Girdwood }; 3395f86dcef8SLiam Girdwood 33962e55b90aSLars-Peter Clausen void soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime *rtd) 3397f86dcef8SLiam Girdwood { 3398b3bba9a1SMark Brown if (!rtd->dai_link) 33992e55b90aSLars-Peter Clausen return; 3400b3bba9a1SMark Brown 34016553bf06SLars-Peter Clausen if (!rtd->card->debugfs_card_root) 34026553bf06SLars-Peter Clausen return; 3403f86dcef8SLiam Girdwood 3404f86dcef8SLiam Girdwood rtd->debugfs_dpcm_root = debugfs_create_dir(rtd->dai_link->name, 3405f86dcef8SLiam Girdwood rtd->card->debugfs_card_root); 3406f86dcef8SLiam Girdwood if (!rtd->debugfs_dpcm_root) { 3407f86dcef8SLiam Girdwood dev_dbg(rtd->dev, 3408f86dcef8SLiam Girdwood "ASoC: Failed to create dpcm debugfs directory %s\n", 3409f86dcef8SLiam Girdwood rtd->dai_link->name); 34102e55b90aSLars-Peter Clausen return; 3411f86dcef8SLiam Girdwood } 3412f86dcef8SLiam Girdwood 3413f1e3f409SFabio Estevam debugfs_create_file("state", 0444, rtd->debugfs_dpcm_root, 3414f86dcef8SLiam Girdwood rtd, &dpcm_state_fops); 3415f86dcef8SLiam Girdwood } 3416f86dcef8SLiam Girdwood #endif 3417