Kuninori Morimoto | ed51758 | 2018-07-02 06:22:44 +0000 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | // |
| 3 | // soc-pcm.c -- ALSA SoC PCM |
| 4 | // |
| 5 | // Copyright 2005 Wolfson Microelectronics PLC. |
| 6 | // Copyright 2005 Openedhand Ltd. |
| 7 | // Copyright (C) 2010 Slimlogic Ltd. |
| 8 | // Copyright (C) 2010 Texas Instruments Inc. |
| 9 | // |
| 10 | // Authors: Liam Girdwood <lrg@ti.com> |
| 11 | // Mark Brown <broonie@opensource.wolfsonmicro.com> |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 12 | |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/init.h> |
| 15 | #include <linux/delay.h> |
Nicolin Chen | 988e8cc | 2013-11-04 14:57:31 +0800 | [diff] [blame] | 16 | #include <linux/pinctrl/consumer.h> |
Mark Brown | d6652ef | 2011-12-03 20:14:31 +0000 | [diff] [blame] | 17 | #include <linux/pm_runtime.h> |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 18 | #include <linux/slab.h> |
| 19 | #include <linux/workqueue.h> |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 20 | #include <linux/export.h> |
Liam Girdwood | f86dcef | 2012-04-25 12:12:50 +0100 | [diff] [blame] | 21 | #include <linux/debugfs.h> |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 22 | #include <sound/core.h> |
| 23 | #include <sound/pcm.h> |
| 24 | #include <sound/pcm_params.h> |
| 25 | #include <sound/soc.h> |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 26 | #include <sound/soc-dpcm.h> |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 27 | #include <sound/initval.h> |
| 28 | |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 29 | #define DPCM_MAX_BE_USERS 8 |
| 30 | |
Lars-Peter Clausen | 90996f4 | 2013-05-14 11:05:30 +0200 | [diff] [blame] | 31 | /** |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 32 | * snd_soc_runtime_activate() - Increment active count for PCM runtime components |
| 33 | * @rtd: ASoC PCM runtime that is activated |
| 34 | * @stream: Direction of the PCM stream |
| 35 | * |
| 36 | * Increments the active count for all the DAIs and components attached to a PCM |
| 37 | * runtime. Should typically be called when a stream is opened. |
| 38 | * |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 39 | * Must be called with the rtd->card->pcm_mutex being held |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 40 | */ |
| 41 | void snd_soc_runtime_activate(struct snd_soc_pcm_runtime *rtd, int stream) |
| 42 | { |
| 43 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 44 | struct snd_soc_dai *codec_dai; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 45 | int i; |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 46 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 47 | lockdep_assert_held(&rtd->card->pcm_mutex); |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 48 | |
| 49 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) { |
| 50 | cpu_dai->playback_active++; |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 51 | for_each_rtd_codec_dai(rtd, i, codec_dai) |
| 52 | codec_dai->playback_active++; |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 53 | } else { |
| 54 | cpu_dai->capture_active++; |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 55 | for_each_rtd_codec_dai(rtd, i, codec_dai) |
| 56 | codec_dai->capture_active++; |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | cpu_dai->active++; |
Lars-Peter Clausen | cdde4cc | 2014-03-05 13:17:47 +0100 | [diff] [blame] | 60 | cpu_dai->component->active++; |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 61 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
| 62 | codec_dai->active++; |
| 63 | codec_dai->component->active++; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 64 | } |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | /** |
| 68 | * snd_soc_runtime_deactivate() - Decrement active count for PCM runtime components |
| 69 | * @rtd: ASoC PCM runtime that is deactivated |
| 70 | * @stream: Direction of the PCM stream |
| 71 | * |
| 72 | * Decrements the active count for all the DAIs and components attached to a PCM |
| 73 | * runtime. Should typically be called when a stream is closed. |
| 74 | * |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 75 | * Must be called with the rtd->card->pcm_mutex being held |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 76 | */ |
| 77 | void snd_soc_runtime_deactivate(struct snd_soc_pcm_runtime *rtd, int stream) |
| 78 | { |
| 79 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 80 | struct snd_soc_dai *codec_dai; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 81 | int i; |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 82 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 83 | lockdep_assert_held(&rtd->card->pcm_mutex); |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 84 | |
| 85 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) { |
| 86 | cpu_dai->playback_active--; |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 87 | for_each_rtd_codec_dai(rtd, i, codec_dai) |
| 88 | codec_dai->playback_active--; |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 89 | } else { |
| 90 | cpu_dai->capture_active--; |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 91 | for_each_rtd_codec_dai(rtd, i, codec_dai) |
| 92 | codec_dai->capture_active--; |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | cpu_dai->active--; |
Lars-Peter Clausen | cdde4cc | 2014-03-05 13:17:47 +0100 | [diff] [blame] | 96 | cpu_dai->component->active--; |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 97 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
| 98 | codec_dai->component->active--; |
| 99 | codec_dai->active--; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 100 | } |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | /** |
Lars-Peter Clausen | 208a158 | 2014-03-05 13:17:42 +0100 | [diff] [blame] | 104 | * snd_soc_runtime_ignore_pmdown_time() - Check whether to ignore the power down delay |
| 105 | * @rtd: The ASoC PCM runtime that should be checked. |
| 106 | * |
| 107 | * This function checks whether the power down delay should be ignored for a |
| 108 | * specific PCM runtime. Returns true if the delay is 0, if it the DAI link has |
| 109 | * been configured to ignore the delay, or if none of the components benefits |
| 110 | * from having the delay. |
| 111 | */ |
| 112 | bool snd_soc_runtime_ignore_pmdown_time(struct snd_soc_pcm_runtime *rtd) |
| 113 | { |
Kuninori Morimoto | fbb1656 | 2017-10-11 01:38:08 +0000 | [diff] [blame] | 114 | struct snd_soc_rtdcom_list *rtdcom; |
| 115 | struct snd_soc_component *component; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 116 | bool ignore = true; |
| 117 | |
Lars-Peter Clausen | 208a158 | 2014-03-05 13:17:42 +0100 | [diff] [blame] | 118 | if (!rtd->pmdown_time || rtd->dai_link->ignore_pmdown_time) |
| 119 | return true; |
| 120 | |
Kuninori Morimoto | 2b544dd | 2019-10-15 12:59:31 +0900 | [diff] [blame] | 121 | for_each_rtd_components(rtd, rtdcom, component) |
Kuninori Morimoto | 72c3818 | 2018-01-19 05:21:19 +0000 | [diff] [blame] | 122 | ignore &= !component->driver->use_pmdown_time; |
Kuninori Morimoto | fbb1656 | 2017-10-11 01:38:08 +0000 | [diff] [blame] | 123 | |
Kuninori Morimoto | fbb1656 | 2017-10-11 01:38:08 +0000 | [diff] [blame] | 124 | return ignore; |
Lars-Peter Clausen | 208a158 | 2014-03-05 13:17:42 +0100 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | /** |
Lars-Peter Clausen | 90996f4 | 2013-05-14 11:05:30 +0200 | [diff] [blame] | 128 | * snd_soc_set_runtime_hwparams - set the runtime hardware parameters |
| 129 | * @substream: the pcm substream |
| 130 | * @hw: the hardware parameters |
| 131 | * |
| 132 | * Sets the substream runtime hardware parameters. |
| 133 | */ |
| 134 | int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream, |
| 135 | const struct snd_pcm_hardware *hw) |
| 136 | { |
| 137 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 138 | runtime->hw.info = hw->info; |
| 139 | runtime->hw.formats = hw->formats; |
| 140 | runtime->hw.period_bytes_min = hw->period_bytes_min; |
| 141 | runtime->hw.period_bytes_max = hw->period_bytes_max; |
| 142 | runtime->hw.periods_min = hw->periods_min; |
| 143 | runtime->hw.periods_max = hw->periods_max; |
| 144 | runtime->hw.buffer_bytes_max = hw->buffer_bytes_max; |
| 145 | runtime->hw.fifo_size = hw->fifo_size; |
| 146 | return 0; |
| 147 | } |
| 148 | EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams); |
| 149 | |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 150 | /* DPCM stream event, send event to FE and all active BEs. */ |
Liam Girdwood | 2360702 | 2014-01-17 17:03:55 +0000 | [diff] [blame] | 151 | int dpcm_dapm_stream_event(struct snd_soc_pcm_runtime *fe, int dir, |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 152 | int event) |
| 153 | { |
| 154 | struct snd_soc_dpcm *dpcm; |
| 155 | |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 156 | for_each_dpcm_be(fe, dir, dpcm) { |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 157 | |
| 158 | struct snd_soc_pcm_runtime *be = dpcm->be; |
| 159 | |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 160 | dev_dbg(be->dev, "ASoC: BE %s event %d dir %d\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 161 | be->dai_link->name, event, dir); |
| 162 | |
Banajit Goswami | b1cd2e3 | 2017-07-14 23:15:05 -0700 | [diff] [blame] | 163 | if ((event == SND_SOC_DAPM_STREAM_STOP) && |
| 164 | (be->dpcm[dir].users >= 1)) |
| 165 | continue; |
| 166 | |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 167 | snd_soc_dapm_stream_event(be, dir, event); |
| 168 | } |
| 169 | |
| 170 | snd_soc_dapm_stream_event(fe, dir, event); |
| 171 | |
| 172 | return 0; |
| 173 | } |
| 174 | |
Dong Aisheng | 1784102 | 2011-08-29 17:15:14 +0800 | [diff] [blame] | 175 | static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream, |
| 176 | struct snd_soc_dai *soc_dai) |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 177 | { |
| 178 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 179 | int ret; |
| 180 | |
Nicolin Chen | 3635bf0 | 2013-11-13 18:56:24 +0800 | [diff] [blame] | 181 | if (soc_dai->rate && (soc_dai->driver->symmetric_rates || |
| 182 | rtd->dai_link->symmetric_rates)) { |
| 183 | dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %dHz rate\n", |
| 184 | soc_dai->rate); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 185 | |
Lars-Peter Clausen | 4dcdd43 | 2015-10-18 15:39:28 +0200 | [diff] [blame] | 186 | ret = snd_pcm_hw_constraint_single(substream->runtime, |
Nicolin Chen | 3635bf0 | 2013-11-13 18:56:24 +0800 | [diff] [blame] | 187 | SNDRV_PCM_HW_PARAM_RATE, |
Lars-Peter Clausen | 4dcdd43 | 2015-10-18 15:39:28 +0200 | [diff] [blame] | 188 | soc_dai->rate); |
Nicolin Chen | 3635bf0 | 2013-11-13 18:56:24 +0800 | [diff] [blame] | 189 | if (ret < 0) { |
| 190 | dev_err(soc_dai->dev, |
| 191 | "ASoC: Unable to apply rate constraint: %d\n", |
| 192 | ret); |
| 193 | return ret; |
| 194 | } |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 195 | } |
| 196 | |
Nicolin Chen | 3635bf0 | 2013-11-13 18:56:24 +0800 | [diff] [blame] | 197 | if (soc_dai->channels && (soc_dai->driver->symmetric_channels || |
| 198 | rtd->dai_link->symmetric_channels)) { |
| 199 | dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %d channel(s)\n", |
| 200 | soc_dai->channels); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 201 | |
Lars-Peter Clausen | 4dcdd43 | 2015-10-18 15:39:28 +0200 | [diff] [blame] | 202 | ret = snd_pcm_hw_constraint_single(substream->runtime, |
Nicolin Chen | 3635bf0 | 2013-11-13 18:56:24 +0800 | [diff] [blame] | 203 | SNDRV_PCM_HW_PARAM_CHANNELS, |
Nicolin Chen | 3635bf0 | 2013-11-13 18:56:24 +0800 | [diff] [blame] | 204 | soc_dai->channels); |
| 205 | if (ret < 0) { |
| 206 | dev_err(soc_dai->dev, |
| 207 | "ASoC: Unable to apply channel symmetry constraint: %d\n", |
| 208 | ret); |
| 209 | return ret; |
| 210 | } |
| 211 | } |
| 212 | |
| 213 | if (soc_dai->sample_bits && (soc_dai->driver->symmetric_samplebits || |
| 214 | rtd->dai_link->symmetric_samplebits)) { |
| 215 | dev_dbg(soc_dai->dev, "ASoC: Symmetry forces %d sample bits\n", |
| 216 | soc_dai->sample_bits); |
| 217 | |
Lars-Peter Clausen | 4dcdd43 | 2015-10-18 15:39:28 +0200 | [diff] [blame] | 218 | ret = snd_pcm_hw_constraint_single(substream->runtime, |
Nicolin Chen | 3635bf0 | 2013-11-13 18:56:24 +0800 | [diff] [blame] | 219 | SNDRV_PCM_HW_PARAM_SAMPLE_BITS, |
Nicolin Chen | 3635bf0 | 2013-11-13 18:56:24 +0800 | [diff] [blame] | 220 | soc_dai->sample_bits); |
| 221 | if (ret < 0) { |
| 222 | dev_err(soc_dai->dev, |
| 223 | "ASoC: Unable to apply sample bits symmetry constraint: %d\n", |
| 224 | ret); |
| 225 | return ret; |
| 226 | } |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | return 0; |
| 230 | } |
| 231 | |
Nicolin Chen | 3635bf0 | 2013-11-13 18:56:24 +0800 | [diff] [blame] | 232 | static int soc_pcm_params_symmetry(struct snd_pcm_substream *substream, |
| 233 | struct snd_pcm_hw_params *params) |
| 234 | { |
| 235 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 236 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 237 | struct snd_soc_dai *codec_dai; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 238 | unsigned int rate, channels, sample_bits, symmetry, i; |
Nicolin Chen | 3635bf0 | 2013-11-13 18:56:24 +0800 | [diff] [blame] | 239 | |
| 240 | rate = params_rate(params); |
| 241 | channels = params_channels(params); |
| 242 | sample_bits = snd_pcm_format_physical_width(params_format(params)); |
| 243 | |
| 244 | /* reject unmatched parameters when applying symmetry */ |
| 245 | symmetry = cpu_dai->driver->symmetric_rates || |
Nicolin Chen | 3635bf0 | 2013-11-13 18:56:24 +0800 | [diff] [blame] | 246 | rtd->dai_link->symmetric_rates; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 247 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 248 | for_each_rtd_codec_dai(rtd, i, codec_dai) |
| 249 | symmetry |= codec_dai->driver->symmetric_rates; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 250 | |
Nicolin Chen | 3635bf0 | 2013-11-13 18:56:24 +0800 | [diff] [blame] | 251 | if (symmetry && cpu_dai->rate && cpu_dai->rate != rate) { |
| 252 | dev_err(rtd->dev, "ASoC: unmatched rate symmetry: %d - %d\n", |
| 253 | cpu_dai->rate, rate); |
| 254 | return -EINVAL; |
| 255 | } |
| 256 | |
| 257 | symmetry = cpu_dai->driver->symmetric_channels || |
Nicolin Chen | 3635bf0 | 2013-11-13 18:56:24 +0800 | [diff] [blame] | 258 | rtd->dai_link->symmetric_channels; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 259 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 260 | for_each_rtd_codec_dai(rtd, i, codec_dai) |
| 261 | symmetry |= codec_dai->driver->symmetric_channels; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 262 | |
Nicolin Chen | 3635bf0 | 2013-11-13 18:56:24 +0800 | [diff] [blame] | 263 | if (symmetry && cpu_dai->channels && cpu_dai->channels != channels) { |
| 264 | dev_err(rtd->dev, "ASoC: unmatched channel symmetry: %d - %d\n", |
| 265 | cpu_dai->channels, channels); |
| 266 | return -EINVAL; |
| 267 | } |
| 268 | |
| 269 | symmetry = cpu_dai->driver->symmetric_samplebits || |
Nicolin Chen | 3635bf0 | 2013-11-13 18:56:24 +0800 | [diff] [blame] | 270 | rtd->dai_link->symmetric_samplebits; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 271 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 272 | for_each_rtd_codec_dai(rtd, i, codec_dai) |
| 273 | symmetry |= codec_dai->driver->symmetric_samplebits; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 274 | |
Nicolin Chen | 3635bf0 | 2013-11-13 18:56:24 +0800 | [diff] [blame] | 275 | if (symmetry && cpu_dai->sample_bits && cpu_dai->sample_bits != sample_bits) { |
| 276 | dev_err(rtd->dev, "ASoC: unmatched sample bits symmetry: %d - %d\n", |
| 277 | cpu_dai->sample_bits, sample_bits); |
| 278 | return -EINVAL; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | return 0; |
| 282 | } |
| 283 | |
Lars-Peter Clausen | 62e5f67 | 2013-11-30 17:38:58 +0100 | [diff] [blame] | 284 | static bool soc_pcm_has_symmetry(struct snd_pcm_substream *substream) |
| 285 | { |
| 286 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 287 | struct snd_soc_dai_driver *cpu_driver = rtd->cpu_dai->driver; |
Lars-Peter Clausen | 62e5f67 | 2013-11-30 17:38:58 +0100 | [diff] [blame] | 288 | struct snd_soc_dai_link *link = rtd->dai_link; |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 289 | struct snd_soc_dai *codec_dai; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 290 | unsigned int symmetry, i; |
Lars-Peter Clausen | 62e5f67 | 2013-11-30 17:38:58 +0100 | [diff] [blame] | 291 | |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 292 | symmetry = cpu_driver->symmetric_rates || link->symmetric_rates || |
| 293 | cpu_driver->symmetric_channels || link->symmetric_channels || |
| 294 | cpu_driver->symmetric_samplebits || link->symmetric_samplebits; |
| 295 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 296 | for_each_rtd_codec_dai(rtd, i, codec_dai) |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 297 | symmetry = symmetry || |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 298 | codec_dai->driver->symmetric_rates || |
| 299 | codec_dai->driver->symmetric_channels || |
| 300 | codec_dai->driver->symmetric_samplebits; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 301 | |
| 302 | return symmetry; |
Lars-Peter Clausen | 62e5f67 | 2013-11-30 17:38:58 +0100 | [diff] [blame] | 303 | } |
| 304 | |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 305 | static void soc_pcm_set_msb(struct snd_pcm_substream *substream, int bits) |
Mark Brown | 58ba9b2 | 2012-01-16 18:38:51 +0000 | [diff] [blame] | 306 | { |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 307 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Takashi Iwai | c6068d3 | 2014-12-31 17:10:34 +0100 | [diff] [blame] | 308 | int ret; |
Mark Brown | 58ba9b2 | 2012-01-16 18:38:51 +0000 | [diff] [blame] | 309 | |
| 310 | if (!bits) |
| 311 | return; |
| 312 | |
Lars-Peter Clausen | 0e2a375 | 2014-12-29 18:43:38 +0100 | [diff] [blame] | 313 | ret = snd_pcm_hw_constraint_msbits(substream->runtime, 0, 0, bits); |
| 314 | if (ret != 0) |
| 315 | dev_warn(rtd->dev, "ASoC: Failed to set MSB %d: %d\n", |
| 316 | bits, ret); |
Mark Brown | 58ba9b2 | 2012-01-16 18:38:51 +0000 | [diff] [blame] | 317 | } |
| 318 | |
Benoit Cousson | c8dd1fe | 2014-07-01 09:47:55 +0200 | [diff] [blame] | 319 | static void soc_pcm_apply_msb(struct snd_pcm_substream *substream) |
Lars-Peter Clausen | bd477c3 | 2013-05-14 11:05:31 +0200 | [diff] [blame] | 320 | { |
Benoit Cousson | c8dd1fe | 2014-07-01 09:47:55 +0200 | [diff] [blame] | 321 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 322 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 323 | struct snd_soc_dai *codec_dai; |
| 324 | int i; |
Benoit Cousson | c8dd1fe | 2014-07-01 09:47:55 +0200 | [diff] [blame] | 325 | unsigned int bits = 0, cpu_bits; |
| 326 | |
| 327 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 328 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 329 | if (codec_dai->driver->playback.sig_bits == 0) { |
| 330 | bits = 0; |
| 331 | break; |
| 332 | } |
| 333 | bits = max(codec_dai->driver->playback.sig_bits, bits); |
| 334 | } |
Benoit Cousson | c8dd1fe | 2014-07-01 09:47:55 +0200 | [diff] [blame] | 335 | cpu_bits = cpu_dai->driver->playback.sig_bits; |
| 336 | } else { |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 337 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
Daniel Mack | 5e63dfc | 2014-10-07 14:33:46 +0200 | [diff] [blame] | 338 | if (codec_dai->driver->capture.sig_bits == 0) { |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 339 | bits = 0; |
| 340 | break; |
| 341 | } |
| 342 | bits = max(codec_dai->driver->capture.sig_bits, bits); |
| 343 | } |
Benoit Cousson | c8dd1fe | 2014-07-01 09:47:55 +0200 | [diff] [blame] | 344 | cpu_bits = cpu_dai->driver->capture.sig_bits; |
| 345 | } |
| 346 | |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 347 | soc_pcm_set_msb(substream, bits); |
| 348 | soc_pcm_set_msb(substream, cpu_bits); |
Benoit Cousson | c8dd1fe | 2014-07-01 09:47:55 +0200 | [diff] [blame] | 349 | } |
| 350 | |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 351 | static void soc_pcm_init_runtime_hw(struct snd_pcm_substream *substream) |
Lars-Peter Clausen | bd477c3 | 2013-05-14 11:05:31 +0200 | [diff] [blame] | 352 | { |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 353 | struct snd_pcm_runtime *runtime = substream->runtime; |
Lars-Peter Clausen | 78e45c9 | 2013-11-27 09:58:18 +0100 | [diff] [blame] | 354 | struct snd_pcm_hardware *hw = &runtime->hw; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 355 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 356 | struct snd_soc_dai *codec_dai; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 357 | struct snd_soc_dai_driver *cpu_dai_drv = rtd->cpu_dai->driver; |
| 358 | struct snd_soc_dai_driver *codec_dai_drv; |
| 359 | struct snd_soc_pcm_stream *codec_stream; |
| 360 | struct snd_soc_pcm_stream *cpu_stream; |
| 361 | unsigned int chan_min = 0, chan_max = UINT_MAX; |
| 362 | unsigned int rate_min = 0, rate_max = UINT_MAX; |
| 363 | unsigned int rates = UINT_MAX; |
| 364 | u64 formats = ULLONG_MAX; |
| 365 | int i; |
Lars-Peter Clausen | 78e45c9 | 2013-11-27 09:58:18 +0100 | [diff] [blame] | 366 | |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 367 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 368 | cpu_stream = &cpu_dai_drv->playback; |
Lars-Peter Clausen | 16d7ea9 | 2014-01-06 14:19:16 +0100 | [diff] [blame] | 369 | else |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 370 | cpu_stream = &cpu_dai_drv->capture; |
Lars-Peter Clausen | 78e45c9 | 2013-11-27 09:58:18 +0100 | [diff] [blame] | 371 | |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 372 | /* first calculate min/max only for CODECs in the DAI link */ |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 373 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
Ricard Wanderlof | cde7903 | 2015-08-24 14:16:51 +0200 | [diff] [blame] | 374 | |
| 375 | /* |
| 376 | * Skip CODECs which don't support the current stream type. |
| 377 | * Otherwise, since the rate, channel, and format values will |
| 378 | * zero in that case, we would have no usable settings left, |
| 379 | * causing the resulting setup to fail. |
| 380 | * At least one CODEC should match, otherwise we should have |
| 381 | * bailed out on a higher level, since there would be no |
| 382 | * CODEC to support the transfer direction in that case. |
| 383 | */ |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 384 | if (!snd_soc_dai_stream_valid(codec_dai, |
Ricard Wanderlof | cde7903 | 2015-08-24 14:16:51 +0200 | [diff] [blame] | 385 | substream->stream)) |
| 386 | continue; |
| 387 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 388 | codec_dai_drv = codec_dai->driver; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 389 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 390 | codec_stream = &codec_dai_drv->playback; |
| 391 | else |
| 392 | codec_stream = &codec_dai_drv->capture; |
| 393 | chan_min = max(chan_min, codec_stream->channels_min); |
| 394 | chan_max = min(chan_max, codec_stream->channels_max); |
| 395 | rate_min = max(rate_min, codec_stream->rate_min); |
| 396 | rate_max = min_not_zero(rate_max, codec_stream->rate_max); |
| 397 | formats &= codec_stream->formats; |
| 398 | rates = snd_pcm_rate_mask_intersect(codec_stream->rates, rates); |
| 399 | } |
| 400 | |
| 401 | /* |
| 402 | * chan min/max cannot be enforced if there are multiple CODEC DAIs |
| 403 | * connected to a single CPU DAI, use CPU DAI's directly and let |
| 404 | * channel allocation be fixed up later |
| 405 | */ |
| 406 | if (rtd->num_codecs > 1) { |
| 407 | chan_min = cpu_stream->channels_min; |
| 408 | chan_max = cpu_stream->channels_max; |
| 409 | } |
| 410 | |
| 411 | hw->channels_min = max(chan_min, cpu_stream->channels_min); |
| 412 | hw->channels_max = min(chan_max, cpu_stream->channels_max); |
| 413 | if (hw->formats) |
| 414 | hw->formats &= formats & cpu_stream->formats; |
| 415 | else |
| 416 | hw->formats = formats & cpu_stream->formats; |
| 417 | hw->rates = snd_pcm_rate_mask_intersect(rates, cpu_stream->rates); |
Lars-Peter Clausen | 78e45c9 | 2013-11-27 09:58:18 +0100 | [diff] [blame] | 418 | |
| 419 | snd_pcm_limit_hw_rates(runtime); |
| 420 | |
| 421 | hw->rate_min = max(hw->rate_min, cpu_stream->rate_min); |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 422 | hw->rate_min = max(hw->rate_min, rate_min); |
Lars-Peter Clausen | 78e45c9 | 2013-11-27 09:58:18 +0100 | [diff] [blame] | 423 | hw->rate_max = min_not_zero(hw->rate_max, cpu_stream->rate_max); |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 424 | hw->rate_max = min_not_zero(hw->rate_max, rate_max); |
Lars-Peter Clausen | bd477c3 | 2013-05-14 11:05:31 +0200 | [diff] [blame] | 425 | } |
| 426 | |
Kuninori Morimoto | e7ecfdb | 2019-05-13 16:08:33 +0900 | [diff] [blame] | 427 | static int soc_pcm_components_open(struct snd_pcm_substream *substream, |
| 428 | struct snd_soc_component **last) |
| 429 | { |
| 430 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 431 | struct snd_soc_rtdcom_list *rtdcom; |
| 432 | struct snd_soc_component *component; |
| 433 | int ret = 0; |
| 434 | |
Kuninori Morimoto | 2b544dd | 2019-10-15 12:59:31 +0900 | [diff] [blame] | 435 | for_each_rtd_components(rtd, rtdcom, component) { |
Kuninori Morimoto | e7ecfdb | 2019-05-13 16:08:33 +0900 | [diff] [blame] | 436 | *last = component; |
| 437 | |
Kuninori Morimoto | 4a81e8f | 2019-07-26 13:49:54 +0900 | [diff] [blame] | 438 | ret = snd_soc_component_module_get_when_open(component); |
| 439 | if (ret < 0) { |
Kuninori Morimoto | e7ecfdb | 2019-05-13 16:08:33 +0900 | [diff] [blame] | 440 | dev_err(component->dev, |
| 441 | "ASoC: can't get module %s\n", |
| 442 | component->name); |
Kuninori Morimoto | 4a81e8f | 2019-07-26 13:49:54 +0900 | [diff] [blame] | 443 | return ret; |
Kuninori Morimoto | e7ecfdb | 2019-05-13 16:08:33 +0900 | [diff] [blame] | 444 | } |
| 445 | |
Kuninori Morimoto | ae2f484 | 2019-07-26 13:50:01 +0900 | [diff] [blame] | 446 | ret = snd_soc_component_open(component, substream); |
Kuninori Morimoto | e7ecfdb | 2019-05-13 16:08:33 +0900 | [diff] [blame] | 447 | if (ret < 0) { |
| 448 | dev_err(component->dev, |
| 449 | "ASoC: can't open component %s: %d\n", |
| 450 | component->name, ret); |
| 451 | return ret; |
| 452 | } |
| 453 | } |
| 454 | *last = NULL; |
| 455 | return 0; |
| 456 | } |
| 457 | |
Charles Keepax | 244e293 | 2018-06-19 16:22:09 +0100 | [diff] [blame] | 458 | static int soc_pcm_components_close(struct snd_pcm_substream *substream, |
| 459 | struct snd_soc_component *last) |
| 460 | { |
| 461 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 462 | struct snd_soc_rtdcom_list *rtdcom; |
| 463 | struct snd_soc_component *component; |
Kuninori Morimoto | 3672beb | 2019-07-26 13:50:07 +0900 | [diff] [blame] | 464 | int ret = 0; |
Charles Keepax | 244e293 | 2018-06-19 16:22:09 +0100 | [diff] [blame] | 465 | |
Kuninori Morimoto | 2b544dd | 2019-10-15 12:59:31 +0900 | [diff] [blame] | 466 | for_each_rtd_components(rtd, rtdcom, component) { |
Charles Keepax | 244e293 | 2018-06-19 16:22:09 +0100 | [diff] [blame] | 467 | if (component == last) |
| 468 | break; |
| 469 | |
Kuninori Morimoto | 3672beb | 2019-07-26 13:50:07 +0900 | [diff] [blame] | 470 | ret |= snd_soc_component_close(component, substream); |
Kuninori Morimoto | 4a81e8f | 2019-07-26 13:49:54 +0900 | [diff] [blame] | 471 | snd_soc_component_module_put_when_close(component); |
Charles Keepax | 244e293 | 2018-06-19 16:22:09 +0100 | [diff] [blame] | 472 | } |
| 473 | |
Kuninori Morimoto | 3672beb | 2019-07-26 13:50:07 +0900 | [diff] [blame] | 474 | return ret; |
Charles Keepax | 244e293 | 2018-06-19 16:22:09 +0100 | [diff] [blame] | 475 | } |
| 476 | |
Mark Brown | 58ba9b2 | 2012-01-16 18:38:51 +0000 | [diff] [blame] | 477 | /* |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 478 | * Called by ALSA when a PCM substream is opened, the runtime->hw record is |
| 479 | * then initialized and any private data can be allocated. This also calls |
Charles Keepax | ef050be | 2018-04-24 16:39:02 +0100 | [diff] [blame] | 480 | * startup for the cpu DAI, component, machine and codec DAI. |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 481 | */ |
| 482 | static int soc_pcm_open(struct snd_pcm_substream *substream) |
| 483 | { |
| 484 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 485 | struct snd_pcm_runtime *runtime = substream->runtime; |
Kuninori Morimoto | 90be711 | 2017-08-08 06:18:10 +0000 | [diff] [blame] | 486 | struct snd_soc_component *component; |
| 487 | struct snd_soc_rtdcom_list *rtdcom; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 488 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 489 | struct snd_soc_dai *codec_dai; |
| 490 | const char *codec_dai_name = "multicodec"; |
Charles Keepax | 244e293 | 2018-06-19 16:22:09 +0100 | [diff] [blame] | 491 | int i, ret = 0; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 492 | |
Nicolin Chen | 988e8cc | 2013-11-04 14:57:31 +0800 | [diff] [blame] | 493 | pinctrl_pm_select_default_state(cpu_dai->dev); |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 494 | for_each_rtd_codec_dai(rtd, i, codec_dai) |
| 495 | pinctrl_pm_select_default_state(codec_dai->dev); |
Kuninori Morimoto | 90be711 | 2017-08-08 06:18:10 +0000 | [diff] [blame] | 496 | |
Kuninori Morimoto | 2b544dd | 2019-10-15 12:59:31 +0900 | [diff] [blame] | 497 | for_each_rtd_components(rtd, rtdcom, component) { |
Kuninori Morimoto | 90be711 | 2017-08-08 06:18:10 +0000 | [diff] [blame] | 498 | pm_runtime_get_sync(component->dev); |
| 499 | } |
Mark Brown | d6652ef | 2011-12-03 20:14:31 +0000 | [diff] [blame] | 500 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 501 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 502 | |
| 503 | /* startup the audio subsystem */ |
Kuninori Morimoto | 5a52a04 | 2019-07-22 10:33:32 +0900 | [diff] [blame] | 504 | ret = snd_soc_dai_startup(cpu_dai, substream); |
| 505 | if (ret < 0) { |
| 506 | dev_err(cpu_dai->dev, "ASoC: can't open interface %s: %d\n", |
| 507 | cpu_dai->name, ret); |
| 508 | goto out; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 509 | } |
| 510 | |
Kuninori Morimoto | e7ecfdb | 2019-05-13 16:08:33 +0900 | [diff] [blame] | 511 | ret = soc_pcm_components_open(substream, &component); |
| 512 | if (ret < 0) |
| 513 | goto component_err; |
Kuninori Morimoto | b813586 | 2017-10-11 01:37:23 +0000 | [diff] [blame] | 514 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 515 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
Kuninori Morimoto | 5a52a04 | 2019-07-22 10:33:32 +0900 | [diff] [blame] | 516 | ret = snd_soc_dai_startup(codec_dai, substream); |
| 517 | if (ret < 0) { |
| 518 | dev_err(codec_dai->dev, |
| 519 | "ASoC: can't open codec %s: %d\n", |
| 520 | codec_dai->name, ret); |
| 521 | goto codec_dai_err; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 522 | } |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 523 | |
| 524 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 525 | codec_dai->tx_mask = 0; |
| 526 | else |
| 527 | codec_dai->rx_mask = 0; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 528 | } |
| 529 | |
Kuninori Morimoto | 75ab9eb | 2017-09-26 00:40:42 +0000 | [diff] [blame] | 530 | if (rtd->dai_link->ops->startup) { |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 531 | ret = rtd->dai_link->ops->startup(substream); |
| 532 | if (ret < 0) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 533 | pr_err("ASoC: %s startup failed: %d\n", |
Mark Brown | 25bfe66 | 2012-02-01 21:30:32 +0000 | [diff] [blame] | 534 | rtd->dai_link->name, ret); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 535 | goto machine_err; |
| 536 | } |
| 537 | } |
| 538 | |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 539 | /* Dynamic PCM DAI links compat checks use dynamic capabilities */ |
| 540 | if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm) |
| 541 | goto dynamic; |
| 542 | |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 543 | /* Check that the codec and cpu DAIs are compatible */ |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 544 | soc_pcm_init_runtime_hw(substream); |
| 545 | |
| 546 | if (rtd->num_codecs == 1) |
| 547 | codec_dai_name = rtd->codec_dai->name; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 548 | |
Lars-Peter Clausen | 62e5f67 | 2013-11-30 17:38:58 +0100 | [diff] [blame] | 549 | if (soc_pcm_has_symmetry(substream)) |
| 550 | runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX; |
| 551 | |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 552 | ret = -EINVAL; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 553 | if (!runtime->hw.rates) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 554 | printk(KERN_ERR "ASoC: %s <-> %s No matching rates\n", |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 555 | codec_dai_name, cpu_dai->name); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 556 | goto config_err; |
| 557 | } |
| 558 | if (!runtime->hw.formats) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 559 | printk(KERN_ERR "ASoC: %s <-> %s No matching formats\n", |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 560 | codec_dai_name, cpu_dai->name); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 561 | goto config_err; |
| 562 | } |
| 563 | if (!runtime->hw.channels_min || !runtime->hw.channels_max || |
| 564 | runtime->hw.channels_min > runtime->hw.channels_max) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 565 | printk(KERN_ERR "ASoC: %s <-> %s No matching channels\n", |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 566 | codec_dai_name, cpu_dai->name); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 567 | goto config_err; |
| 568 | } |
| 569 | |
Benoit Cousson | c8dd1fe | 2014-07-01 09:47:55 +0200 | [diff] [blame] | 570 | soc_pcm_apply_msb(substream); |
Mark Brown | 58ba9b2 | 2012-01-16 18:38:51 +0000 | [diff] [blame] | 571 | |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 572 | /* Symmetry only applies if we've already got an active stream. */ |
Dong Aisheng | 1784102 | 2011-08-29 17:15:14 +0800 | [diff] [blame] | 573 | if (cpu_dai->active) { |
| 574 | ret = soc_pcm_apply_symmetry(substream, cpu_dai); |
| 575 | if (ret != 0) |
| 576 | goto config_err; |
| 577 | } |
| 578 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 579 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
| 580 | if (codec_dai->active) { |
| 581 | ret = soc_pcm_apply_symmetry(substream, codec_dai); |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 582 | if (ret != 0) |
| 583 | goto config_err; |
| 584 | } |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 585 | } |
| 586 | |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 587 | pr_debug("ASoC: %s <-> %s info:\n", |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 588 | codec_dai_name, cpu_dai->name); |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 589 | pr_debug("ASoC: rate mask 0x%x\n", runtime->hw.rates); |
| 590 | pr_debug("ASoC: min ch %d max ch %d\n", runtime->hw.channels_min, |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 591 | runtime->hw.channels_max); |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 592 | pr_debug("ASoC: min rate %d max rate %d\n", runtime->hw.rate_min, |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 593 | runtime->hw.rate_max); |
| 594 | |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 595 | dynamic: |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 596 | |
| 597 | snd_soc_runtime_activate(rtd, substream->stream); |
| 598 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 599 | mutex_unlock(&rtd->card->pcm_mutex); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 600 | return 0; |
| 601 | |
| 602 | config_err: |
Kuninori Morimoto | 75ab9eb | 2017-09-26 00:40:42 +0000 | [diff] [blame] | 603 | if (rtd->dai_link->ops->shutdown) |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 604 | rtd->dai_link->ops->shutdown(substream); |
| 605 | |
| 606 | machine_err: |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 607 | i = rtd->num_codecs; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 608 | |
| 609 | codec_dai_err: |
Kuninori Morimoto | 330fcb5 | 2019-07-22 10:33:39 +0900 | [diff] [blame] | 610 | for_each_rtd_codec_dai_rollback(rtd, i, codec_dai) |
| 611 | snd_soc_dai_shutdown(codec_dai, substream); |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 612 | |
Kuninori Morimoto | b813586 | 2017-10-11 01:37:23 +0000 | [diff] [blame] | 613 | component_err: |
Charles Keepax | 244e293 | 2018-06-19 16:22:09 +0100 | [diff] [blame] | 614 | soc_pcm_components_close(substream, component); |
Kuninori Morimoto | e7ecfdb | 2019-05-13 16:08:33 +0900 | [diff] [blame] | 615 | |
Kuninori Morimoto | 330fcb5 | 2019-07-22 10:33:39 +0900 | [diff] [blame] | 616 | snd_soc_dai_shutdown(cpu_dai, substream); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 617 | out: |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 618 | mutex_unlock(&rtd->card->pcm_mutex); |
Mark Brown | d6652ef | 2011-12-03 20:14:31 +0000 | [diff] [blame] | 619 | |
Kuninori Morimoto | 2b544dd | 2019-10-15 12:59:31 +0900 | [diff] [blame] | 620 | for_each_rtd_components(rtd, rtdcom, component) { |
Kuninori Morimoto | 90be711 | 2017-08-08 06:18:10 +0000 | [diff] [blame] | 621 | pm_runtime_mark_last_busy(component->dev); |
| 622 | pm_runtime_put_autosuspend(component->dev); |
Sanyog Kale | 3f80978 | 2016-01-05 17:14:49 +0530 | [diff] [blame] | 623 | } |
| 624 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 625 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
| 626 | if (!codec_dai->active) |
| 627 | pinctrl_pm_select_sleep_state(codec_dai->dev); |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 628 | } |
Nicolin Chen | 988e8cc | 2013-11-04 14:57:31 +0800 | [diff] [blame] | 629 | if (!cpu_dai->active) |
| 630 | pinctrl_pm_select_sleep_state(cpu_dai->dev); |
Mark Brown | d6652ef | 2011-12-03 20:14:31 +0000 | [diff] [blame] | 631 | |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 632 | return ret; |
| 633 | } |
| 634 | |
| 635 | /* |
| 636 | * Power down the audio subsystem pmdown_time msecs after close is called. |
| 637 | * This is to ensure there are no pops or clicks in between any music tracks |
| 638 | * due to DAPM power cycling. |
| 639 | */ |
Curtis Malainey | 4bf2e38 | 2019-12-03 09:30:07 -0800 | [diff] [blame^] | 640 | static void close_delayed_work(struct snd_soc_pcm_runtime *rtd) |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 641 | { |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 642 | struct snd_soc_dai *codec_dai = rtd->codec_dais[0]; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 643 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 644 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 645 | |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 646 | dev_dbg(rtd->dev, "ASoC: pop wq checking: %s status: %s waiting: %s\n", |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 647 | codec_dai->driver->playback.stream_name, |
| 648 | codec_dai->playback_active ? "active" : "inactive", |
Misael Lopez Cruz | 9bffb1f | 2012-12-13 12:23:05 -0600 | [diff] [blame] | 649 | rtd->pop_wait ? "yes" : "no"); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 650 | |
| 651 | /* are we waiting on this codec DAI stream */ |
Misael Lopez Cruz | 9bffb1f | 2012-12-13 12:23:05 -0600 | [diff] [blame] | 652 | if (rtd->pop_wait == 1) { |
| 653 | rtd->pop_wait = 0; |
Mark Brown | 7bd3a6f | 2012-02-16 15:03:27 -0800 | [diff] [blame] | 654 | snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_PLAYBACK, |
Liam Girdwood | d9b0951 | 2012-03-07 16:32:59 +0000 | [diff] [blame] | 655 | SND_SOC_DAPM_STREAM_STOP); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 656 | } |
| 657 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 658 | mutex_unlock(&rtd->card->pcm_mutex); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 659 | } |
| 660 | |
Curtis Malainey | 4bf2e38 | 2019-12-03 09:30:07 -0800 | [diff] [blame^] | 661 | static void codec2codec_close_delayed_work(struct snd_soc_pcm_runtime *rtd) |
Jerome Brunet | a342031 | 2019-07-25 18:59:47 +0200 | [diff] [blame] | 662 | { |
| 663 | /* |
| 664 | * Currently nothing to do for c2c links |
| 665 | * Since c2c links are internal nodes in the DAPM graph and |
| 666 | * don't interface with the outside world or application layer |
| 667 | * we don't have to do any special handling on close. |
| 668 | */ |
| 669 | } |
| 670 | |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 671 | /* |
| 672 | * Called by ALSA when a PCM substream is closed. Private data can be |
Charles Keepax | ef050be | 2018-04-24 16:39:02 +0100 | [diff] [blame] | 673 | * freed here. The cpu DAI, codec DAI, machine and components are also |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 674 | * shutdown. |
| 675 | */ |
Liam Girdwood | 91d5e6b | 2011-06-09 17:04:59 +0100 | [diff] [blame] | 676 | static int soc_pcm_close(struct snd_pcm_substream *substream) |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 677 | { |
| 678 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Kuninori Morimoto | 90be711 | 2017-08-08 06:18:10 +0000 | [diff] [blame] | 679 | struct snd_soc_component *component; |
| 680 | struct snd_soc_rtdcom_list *rtdcom; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 681 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 682 | struct snd_soc_dai *codec_dai; |
| 683 | int i; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 684 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 685 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 686 | |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 687 | snd_soc_runtime_deactivate(rtd, substream->stream); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 688 | |
Dong Aisheng | 1784102 | 2011-08-29 17:15:14 +0800 | [diff] [blame] | 689 | /* clear the corresponding DAIs rate when inactive */ |
| 690 | if (!cpu_dai->active) |
| 691 | cpu_dai->rate = 0; |
| 692 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 693 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 694 | if (!codec_dai->active) |
| 695 | codec_dai->rate = 0; |
| 696 | } |
Sascha Hauer | 25b7679 | 2011-08-17 09:20:01 +0200 | [diff] [blame] | 697 | |
Ramesh Babu | ae11601 | 2014-10-15 12:34:59 +0530 | [diff] [blame] | 698 | snd_soc_dai_digital_mute(cpu_dai, 1, substream->stream); |
| 699 | |
Kuninori Morimoto | 330fcb5 | 2019-07-22 10:33:39 +0900 | [diff] [blame] | 700 | snd_soc_dai_shutdown(cpu_dai, substream); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 701 | |
Kuninori Morimoto | 330fcb5 | 2019-07-22 10:33:39 +0900 | [diff] [blame] | 702 | for_each_rtd_codec_dai(rtd, i, codec_dai) |
| 703 | snd_soc_dai_shutdown(codec_dai, substream); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 704 | |
Kuninori Morimoto | 75ab9eb | 2017-09-26 00:40:42 +0000 | [diff] [blame] | 705 | if (rtd->dai_link->ops->shutdown) |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 706 | rtd->dai_link->ops->shutdown(substream); |
| 707 | |
Charles Keepax | 244e293 | 2018-06-19 16:22:09 +0100 | [diff] [blame] | 708 | soc_pcm_components_close(substream, NULL); |
Kuninori Morimoto | b813586 | 2017-10-11 01:37:23 +0000 | [diff] [blame] | 709 | |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 710 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
Lars-Peter Clausen | 208a158 | 2014-03-05 13:17:42 +0100 | [diff] [blame] | 711 | if (snd_soc_runtime_ignore_pmdown_time(rtd)) { |
Peter Ujfalusi | 1d69c5c | 2011-10-14 14:43:33 +0300 | [diff] [blame] | 712 | /* powered down playback stream now */ |
| 713 | snd_soc_dapm_stream_event(rtd, |
Mark Brown | 7bd3a6f | 2012-02-16 15:03:27 -0800 | [diff] [blame] | 714 | SNDRV_PCM_STREAM_PLAYBACK, |
Mark Brown | 7bd3a6f | 2012-02-16 15:03:27 -0800 | [diff] [blame] | 715 | SND_SOC_DAPM_STREAM_STOP); |
Peter Ujfalusi | 1d69c5c | 2011-10-14 14:43:33 +0300 | [diff] [blame] | 716 | } else { |
| 717 | /* start delayed pop wq here for playback streams */ |
Misael Lopez Cruz | 9bffb1f | 2012-12-13 12:23:05 -0600 | [diff] [blame] | 718 | rtd->pop_wait = 1; |
Mark Brown | d4e1a73 | 2013-07-18 11:52:17 +0100 | [diff] [blame] | 719 | queue_delayed_work(system_power_efficient_wq, |
| 720 | &rtd->delayed_work, |
| 721 | msecs_to_jiffies(rtd->pmdown_time)); |
Peter Ujfalusi | 1d69c5c | 2011-10-14 14:43:33 +0300 | [diff] [blame] | 722 | } |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 723 | } else { |
| 724 | /* capture streams can be powered down now */ |
Mark Brown | 7bd3a6f | 2012-02-16 15:03:27 -0800 | [diff] [blame] | 725 | snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_CAPTURE, |
Liam Girdwood | d9b0951 | 2012-03-07 16:32:59 +0000 | [diff] [blame] | 726 | SND_SOC_DAPM_STREAM_STOP); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 727 | } |
| 728 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 729 | mutex_unlock(&rtd->card->pcm_mutex); |
Mark Brown | d6652ef | 2011-12-03 20:14:31 +0000 | [diff] [blame] | 730 | |
Kuninori Morimoto | 2b544dd | 2019-10-15 12:59:31 +0900 | [diff] [blame] | 731 | for_each_rtd_components(rtd, rtdcom, component) { |
Kuninori Morimoto | 90be711 | 2017-08-08 06:18:10 +0000 | [diff] [blame] | 732 | pm_runtime_mark_last_busy(component->dev); |
| 733 | pm_runtime_put_autosuspend(component->dev); |
Sanyog Kale | 3f80978 | 2016-01-05 17:14:49 +0530 | [diff] [blame] | 734 | } |
| 735 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 736 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
| 737 | if (!codec_dai->active) |
| 738 | pinctrl_pm_select_sleep_state(codec_dai->dev); |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 739 | } |
Nicolin Chen | 988e8cc | 2013-11-04 14:57:31 +0800 | [diff] [blame] | 740 | if (!cpu_dai->active) |
| 741 | pinctrl_pm_select_sleep_state(cpu_dai->dev); |
Mark Brown | d6652ef | 2011-12-03 20:14:31 +0000 | [diff] [blame] | 742 | |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 743 | return 0; |
| 744 | } |
| 745 | |
| 746 | /* |
| 747 | * Called by ALSA when the PCM substream is prepared, can set format, sample |
| 748 | * rate, etc. This function is non atomic and can be called multiple times, |
| 749 | * it can refer to the runtime info. |
| 750 | */ |
| 751 | static int soc_pcm_prepare(struct snd_pcm_substream *substream) |
| 752 | { |
| 753 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Kuninori Morimoto | b813586 | 2017-10-11 01:37:23 +0000 | [diff] [blame] | 754 | struct snd_soc_component *component; |
| 755 | struct snd_soc_rtdcom_list *rtdcom; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 756 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 757 | struct snd_soc_dai *codec_dai; |
| 758 | int i, ret = 0; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 759 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 760 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 761 | |
Kuninori Morimoto | 75ab9eb | 2017-09-26 00:40:42 +0000 | [diff] [blame] | 762 | if (rtd->dai_link->ops->prepare) { |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 763 | ret = rtd->dai_link->ops->prepare(substream); |
| 764 | if (ret < 0) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 765 | dev_err(rtd->card->dev, "ASoC: machine prepare error:" |
| 766 | " %d\n", ret); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 767 | goto out; |
| 768 | } |
| 769 | } |
| 770 | |
Kuninori Morimoto | 2b544dd | 2019-10-15 12:59:31 +0900 | [diff] [blame] | 771 | for_each_rtd_components(rtd, rtdcom, component) { |
Kuninori Morimoto | 6d53723 | 2019-07-26 13:50:13 +0900 | [diff] [blame] | 772 | ret = snd_soc_component_prepare(component, substream); |
Kuninori Morimoto | b813586 | 2017-10-11 01:37:23 +0000 | [diff] [blame] | 773 | if (ret < 0) { |
| 774 | dev_err(component->dev, |
| 775 | "ASoC: platform prepare error: %d\n", ret); |
| 776 | goto out; |
| 777 | } |
| 778 | } |
| 779 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 780 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
Kuninori Morimoto | 4beb8e1 | 2019-07-22 10:33:45 +0900 | [diff] [blame] | 781 | ret = snd_soc_dai_prepare(codec_dai, substream); |
| 782 | if (ret < 0) { |
| 783 | dev_err(codec_dai->dev, |
| 784 | "ASoC: codec DAI prepare error: %d\n", |
| 785 | ret); |
| 786 | goto out; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 787 | } |
| 788 | } |
| 789 | |
Kuninori Morimoto | 4beb8e1 | 2019-07-22 10:33:45 +0900 | [diff] [blame] | 790 | ret = snd_soc_dai_prepare(cpu_dai, substream); |
| 791 | if (ret < 0) { |
| 792 | dev_err(cpu_dai->dev, |
| 793 | "ASoC: cpu DAI prepare error: %d\n", ret); |
| 794 | goto out; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 795 | } |
| 796 | |
| 797 | /* cancel any delayed stream shutdown that is pending */ |
| 798 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK && |
Misael Lopez Cruz | 9bffb1f | 2012-12-13 12:23:05 -0600 | [diff] [blame] | 799 | rtd->pop_wait) { |
| 800 | rtd->pop_wait = 0; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 801 | cancel_delayed_work(&rtd->delayed_work); |
| 802 | } |
| 803 | |
Liam Girdwood | d9b0951 | 2012-03-07 16:32:59 +0000 | [diff] [blame] | 804 | snd_soc_dapm_stream_event(rtd, substream->stream, |
| 805 | SND_SOC_DAPM_STREAM_START); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 806 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 807 | for_each_rtd_codec_dai(rtd, i, codec_dai) |
| 808 | snd_soc_dai_digital_mute(codec_dai, 0, |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 809 | substream->stream); |
Ramesh Babu | ae11601 | 2014-10-15 12:34:59 +0530 | [diff] [blame] | 810 | snd_soc_dai_digital_mute(cpu_dai, 0, substream->stream); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 811 | |
| 812 | out: |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 813 | mutex_unlock(&rtd->card->pcm_mutex); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 814 | return ret; |
| 815 | } |
| 816 | |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 817 | static void soc_pcm_codec_params_fixup(struct snd_pcm_hw_params *params, |
| 818 | unsigned int mask) |
| 819 | { |
| 820 | struct snd_interval *interval; |
| 821 | int channels = hweight_long(mask); |
| 822 | |
| 823 | interval = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS); |
| 824 | interval->min = channels; |
| 825 | interval->max = channels; |
| 826 | } |
| 827 | |
Charles Keepax | 244e293 | 2018-06-19 16:22:09 +0100 | [diff] [blame] | 828 | static int soc_pcm_components_hw_free(struct snd_pcm_substream *substream, |
| 829 | struct snd_soc_component *last) |
| 830 | { |
| 831 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 832 | struct snd_soc_rtdcom_list *rtdcom; |
| 833 | struct snd_soc_component *component; |
Kuninori Morimoto | eae7136 | 2019-07-26 13:50:24 +0900 | [diff] [blame] | 834 | int ret = 0; |
Charles Keepax | 244e293 | 2018-06-19 16:22:09 +0100 | [diff] [blame] | 835 | |
Kuninori Morimoto | 2b544dd | 2019-10-15 12:59:31 +0900 | [diff] [blame] | 836 | for_each_rtd_components(rtd, rtdcom, component) { |
Charles Keepax | 244e293 | 2018-06-19 16:22:09 +0100 | [diff] [blame] | 837 | if (component == last) |
| 838 | break; |
| 839 | |
Kuninori Morimoto | eae7136 | 2019-07-26 13:50:24 +0900 | [diff] [blame] | 840 | ret |= snd_soc_component_hw_free(component, substream); |
Charles Keepax | 244e293 | 2018-06-19 16:22:09 +0100 | [diff] [blame] | 841 | } |
| 842 | |
Kuninori Morimoto | eae7136 | 2019-07-26 13:50:24 +0900 | [diff] [blame] | 843 | return ret; |
Charles Keepax | 244e293 | 2018-06-19 16:22:09 +0100 | [diff] [blame] | 844 | } |
| 845 | |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 846 | /* |
| 847 | * Called by ALSA when the hardware params are set by application. This |
| 848 | * function can also be called multiple times and can allocate buffers |
| 849 | * (using snd_pcm_lib_* ). It's non-atomic. |
| 850 | */ |
| 851 | static int soc_pcm_hw_params(struct snd_pcm_substream *substream, |
| 852 | struct snd_pcm_hw_params *params) |
| 853 | { |
| 854 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Kuninori Morimoto | b813586 | 2017-10-11 01:37:23 +0000 | [diff] [blame] | 855 | struct snd_soc_component *component; |
| 856 | struct snd_soc_rtdcom_list *rtdcom; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 857 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 858 | struct snd_soc_dai *codec_dai; |
Charles Keepax | 244e293 | 2018-06-19 16:22:09 +0100 | [diff] [blame] | 859 | int i, ret = 0; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 860 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 861 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Shengjiu Wang | 5cca595 | 2019-11-12 18:46:42 +0800 | [diff] [blame] | 862 | |
| 863 | ret = soc_pcm_params_symmetry(substream, params); |
| 864 | if (ret) |
| 865 | goto out; |
| 866 | |
Kuninori Morimoto | 75ab9eb | 2017-09-26 00:40:42 +0000 | [diff] [blame] | 867 | if (rtd->dai_link->ops->hw_params) { |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 868 | ret = rtd->dai_link->ops->hw_params(substream, params); |
| 869 | if (ret < 0) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 870 | dev_err(rtd->card->dev, "ASoC: machine hw_params" |
| 871 | " failed: %d\n", ret); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 872 | goto out; |
| 873 | } |
| 874 | } |
| 875 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 876 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 877 | struct snd_pcm_hw_params codec_params; |
| 878 | |
Ricard Wanderlof | cde7903 | 2015-08-24 14:16:51 +0200 | [diff] [blame] | 879 | /* |
| 880 | * Skip CODECs which don't support the current stream type, |
| 881 | * the idea being that if a CODEC is not used for the currently |
| 882 | * set up transfer direction, it should not need to be |
| 883 | * configured, especially since the configuration used might |
| 884 | * not even be supported by that CODEC. There may be cases |
| 885 | * however where a CODEC needs to be set up although it is |
| 886 | * actually not being used for the transfer, e.g. if a |
| 887 | * capture-only CODEC is acting as an LRCLK and/or BCLK master |
| 888 | * for the DAI link including a playback-only CODEC. |
| 889 | * If this becomes necessary, we will have to augment the |
| 890 | * machine driver setup with information on how to act, so |
| 891 | * we can do the right thing here. |
| 892 | */ |
| 893 | if (!snd_soc_dai_stream_valid(codec_dai, substream->stream)) |
| 894 | continue; |
| 895 | |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 896 | /* copy params for each codec */ |
| 897 | codec_params = *params; |
| 898 | |
| 899 | /* fixup params based on TDM slot masks */ |
Rander Wang | 570f18b | 2019-03-08 16:38:57 +0800 | [diff] [blame] | 900 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK && |
| 901 | codec_dai->tx_mask) |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 902 | soc_pcm_codec_params_fixup(&codec_params, |
| 903 | codec_dai->tx_mask); |
Rander Wang | 570f18b | 2019-03-08 16:38:57 +0800 | [diff] [blame] | 904 | |
| 905 | if (substream->stream == SNDRV_PCM_STREAM_CAPTURE && |
| 906 | codec_dai->rx_mask) |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 907 | soc_pcm_codec_params_fixup(&codec_params, |
| 908 | codec_dai->rx_mask); |
| 909 | |
Kuninori Morimoto | aa6166c | 2019-07-22 10:33:04 +0900 | [diff] [blame] | 910 | ret = snd_soc_dai_hw_params(codec_dai, substream, |
| 911 | &codec_params); |
Benoit Cousson | 93e6958 | 2014-07-08 23:19:38 +0200 | [diff] [blame] | 912 | if(ret < 0) |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 913 | goto codec_err; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 914 | |
| 915 | codec_dai->rate = params_rate(&codec_params); |
| 916 | codec_dai->channels = params_channels(&codec_params); |
| 917 | codec_dai->sample_bits = snd_pcm_format_physical_width( |
| 918 | params_format(&codec_params)); |
Charles Keepax | 078a85f | 2019-01-31 13:30:18 +0000 | [diff] [blame] | 919 | |
| 920 | snd_soc_dapm_update_dai(substream, &codec_params, codec_dai); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 921 | } |
| 922 | |
Kuninori Morimoto | aa6166c | 2019-07-22 10:33:04 +0900 | [diff] [blame] | 923 | ret = snd_soc_dai_hw_params(cpu_dai, substream, params); |
Benoit Cousson | 93e6958 | 2014-07-08 23:19:38 +0200 | [diff] [blame] | 924 | if (ret < 0) |
| 925 | goto interface_err; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 926 | |
Kuninori Morimoto | ca58221d | 2019-05-13 16:07:43 +0900 | [diff] [blame] | 927 | /* store the parameters for each DAIs */ |
| 928 | cpu_dai->rate = params_rate(params); |
| 929 | cpu_dai->channels = params_channels(params); |
| 930 | cpu_dai->sample_bits = |
| 931 | snd_pcm_format_physical_width(params_format(params)); |
| 932 | |
| 933 | snd_soc_dapm_update_dai(substream, params, cpu_dai); |
| 934 | |
Kuninori Morimoto | 2b544dd | 2019-10-15 12:59:31 +0900 | [diff] [blame] | 935 | for_each_rtd_components(rtd, rtdcom, component) { |
Kuninori Morimoto | 245c539 | 2019-07-26 13:50:19 +0900 | [diff] [blame] | 936 | ret = snd_soc_component_hw_params(component, substream, params); |
Charles Keepax | 244e293 | 2018-06-19 16:22:09 +0100 | [diff] [blame] | 937 | if (ret < 0) { |
Kuninori Morimoto | b813586 | 2017-10-11 01:37:23 +0000 | [diff] [blame] | 938 | dev_err(component->dev, |
| 939 | "ASoC: %s hw params failed: %d\n", |
Charles Keepax | 244e293 | 2018-06-19 16:22:09 +0100 | [diff] [blame] | 940 | component->name, ret); |
| 941 | goto component_err; |
Kuninori Morimoto | b813586 | 2017-10-11 01:37:23 +0000 | [diff] [blame] | 942 | } |
| 943 | } |
Charles Keepax | 244e293 | 2018-06-19 16:22:09 +0100 | [diff] [blame] | 944 | component = NULL; |
Kuninori Morimoto | b813586 | 2017-10-11 01:37:23 +0000 | [diff] [blame] | 945 | |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 946 | out: |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 947 | mutex_unlock(&rtd->card->pcm_mutex); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 948 | return ret; |
| 949 | |
Kuninori Morimoto | b813586 | 2017-10-11 01:37:23 +0000 | [diff] [blame] | 950 | component_err: |
Charles Keepax | 244e293 | 2018-06-19 16:22:09 +0100 | [diff] [blame] | 951 | soc_pcm_components_hw_free(substream, component); |
Kuninori Morimoto | b813586 | 2017-10-11 01:37:23 +0000 | [diff] [blame] | 952 | |
Kuninori Morimoto | 846faae | 2019-07-22 10:33:19 +0900 | [diff] [blame] | 953 | snd_soc_dai_hw_free(cpu_dai, substream); |
Kuninori Morimoto | 2371abd | 2019-05-13 16:07:52 +0900 | [diff] [blame] | 954 | cpu_dai->rate = 0; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 955 | |
| 956 | interface_err: |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 957 | i = rtd->num_codecs; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 958 | |
| 959 | codec_err: |
Kuninori Morimoto | 6d11b12 | 2018-09-18 01:28:30 +0000 | [diff] [blame] | 960 | for_each_rtd_codec_dai_rollback(rtd, i, codec_dai) { |
Jerome Brunet | f47b9ad | 2019-04-29 11:47:50 +0200 | [diff] [blame] | 961 | if (!snd_soc_dai_stream_valid(codec_dai, substream->stream)) |
| 962 | continue; |
| 963 | |
Kuninori Morimoto | 846faae | 2019-07-22 10:33:19 +0900 | [diff] [blame] | 964 | snd_soc_dai_hw_free(codec_dai, substream); |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 965 | codec_dai->rate = 0; |
| 966 | } |
| 967 | |
Kuninori Morimoto | 75ab9eb | 2017-09-26 00:40:42 +0000 | [diff] [blame] | 968 | if (rtd->dai_link->ops->hw_free) |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 969 | rtd->dai_link->ops->hw_free(substream); |
| 970 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 971 | mutex_unlock(&rtd->card->pcm_mutex); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 972 | return ret; |
| 973 | } |
| 974 | |
| 975 | /* |
| 976 | * Frees resources allocated by hw_params, can be called multiple times |
| 977 | */ |
| 978 | static int soc_pcm_hw_free(struct snd_pcm_substream *substream) |
| 979 | { |
| 980 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 981 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 982 | struct snd_soc_dai *codec_dai; |
Nicolin Chen | 7f62b6e | 2013-12-04 11:18:36 +0800 | [diff] [blame] | 983 | bool playback = substream->stream == SNDRV_PCM_STREAM_PLAYBACK; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 984 | int i; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 985 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 986 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 987 | |
Nicolin Chen | d338342 | 2013-11-20 18:37:09 +0800 | [diff] [blame] | 988 | /* clear the corresponding DAIs parameters when going to be inactive */ |
| 989 | if (cpu_dai->active == 1) { |
| 990 | cpu_dai->rate = 0; |
| 991 | cpu_dai->channels = 0; |
| 992 | cpu_dai->sample_bits = 0; |
| 993 | } |
| 994 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 995 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 996 | if (codec_dai->active == 1) { |
| 997 | codec_dai->rate = 0; |
| 998 | codec_dai->channels = 0; |
| 999 | codec_dai->sample_bits = 0; |
| 1000 | } |
Nicolin Chen | d338342 | 2013-11-20 18:37:09 +0800 | [diff] [blame] | 1001 | } |
| 1002 | |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 1003 | /* apply codec digital mute */ |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 1004 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
| 1005 | if ((playback && codec_dai->playback_active == 1) || |
| 1006 | (!playback && codec_dai->capture_active == 1)) |
| 1007 | snd_soc_dai_digital_mute(codec_dai, 1, |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 1008 | substream->stream); |
| 1009 | } |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 1010 | |
| 1011 | /* free any machine hw params */ |
Kuninori Morimoto | 75ab9eb | 2017-09-26 00:40:42 +0000 | [diff] [blame] | 1012 | if (rtd->dai_link->ops->hw_free) |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 1013 | rtd->dai_link->ops->hw_free(substream); |
| 1014 | |
Kuninori Morimoto | b813586 | 2017-10-11 01:37:23 +0000 | [diff] [blame] | 1015 | /* free any component resources */ |
Charles Keepax | 244e293 | 2018-06-19 16:22:09 +0100 | [diff] [blame] | 1016 | soc_pcm_components_hw_free(substream, NULL); |
Kuninori Morimoto | b813586 | 2017-10-11 01:37:23 +0000 | [diff] [blame] | 1017 | |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 1018 | /* now free hw params for the DAIs */ |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 1019 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
Jerome Brunet | f47b9ad | 2019-04-29 11:47:50 +0200 | [diff] [blame] | 1020 | if (!snd_soc_dai_stream_valid(codec_dai, substream->stream)) |
| 1021 | continue; |
| 1022 | |
Kuninori Morimoto | 846faae | 2019-07-22 10:33:19 +0900 | [diff] [blame] | 1023 | snd_soc_dai_hw_free(codec_dai, substream); |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 1024 | } |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 1025 | |
Kuninori Morimoto | 846faae | 2019-07-22 10:33:19 +0900 | [diff] [blame] | 1026 | snd_soc_dai_hw_free(cpu_dai, substream); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 1027 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 1028 | mutex_unlock(&rtd->card->pcm_mutex); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 1029 | return 0; |
| 1030 | } |
| 1031 | |
Peter Ujfalusi | 4378f1f | 2019-09-27 10:16:46 +0300 | [diff] [blame] | 1032 | static int soc_pcm_trigger_start(struct snd_pcm_substream *substream, int cmd) |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 1033 | { |
| 1034 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Kuninori Morimoto | b813586 | 2017-10-11 01:37:23 +0000 | [diff] [blame] | 1035 | struct snd_soc_component *component; |
| 1036 | struct snd_soc_rtdcom_list *rtdcom; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 1037 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 1038 | struct snd_soc_dai *codec_dai; |
| 1039 | int i, ret; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 1040 | |
Peter Ujfalusi | 4378f1f | 2019-09-27 10:16:46 +0300 | [diff] [blame] | 1041 | if (rtd->dai_link->ops->trigger) { |
| 1042 | ret = rtd->dai_link->ops->trigger(substream, cmd); |
Kuninori Morimoto | 95aef35 | 2019-07-22 10:33:51 +0900 | [diff] [blame] | 1043 | if (ret < 0) |
| 1044 | return ret; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 1045 | } |
| 1046 | |
Kuninori Morimoto | 2b544dd | 2019-10-15 12:59:31 +0900 | [diff] [blame] | 1047 | for_each_rtd_components(rtd, rtdcom, component) { |
Kuninori Morimoto | 5693d50 | 2019-07-26 13:50:29 +0900 | [diff] [blame] | 1048 | ret = snd_soc_component_trigger(component, substream, cmd); |
Kuninori Morimoto | b813586 | 2017-10-11 01:37:23 +0000 | [diff] [blame] | 1049 | if (ret < 0) |
| 1050 | return ret; |
| 1051 | } |
| 1052 | |
Dan Carpenter | 901e822 | 2019-09-23 17:22:57 +0300 | [diff] [blame] | 1053 | ret = snd_soc_dai_trigger(cpu_dai, substream, cmd); |
Kuninori Morimoto | 95aef35 | 2019-07-22 10:33:51 +0900 | [diff] [blame] | 1054 | if (ret < 0) |
| 1055 | return ret; |
Jarkko Nikula | 4792b0d | 2014-04-28 14:17:52 +0200 | [diff] [blame] | 1056 | |
Peter Ujfalusi | 4378f1f | 2019-09-27 10:16:46 +0300 | [diff] [blame] | 1057 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
| 1058 | ret = snd_soc_dai_trigger(codec_dai, substream, cmd); |
| 1059 | if (ret < 0) |
| 1060 | return ret; |
| 1061 | } |
| 1062 | |
| 1063 | return 0; |
| 1064 | } |
| 1065 | |
| 1066 | static int soc_pcm_trigger_stop(struct snd_pcm_substream *substream, int cmd) |
| 1067 | { |
| 1068 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 1069 | struct snd_soc_component *component; |
| 1070 | struct snd_soc_rtdcom_list *rtdcom; |
| 1071 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
| 1072 | struct snd_soc_dai *codec_dai; |
| 1073 | int i, ret; |
| 1074 | |
| 1075 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
| 1076 | ret = snd_soc_dai_trigger(codec_dai, substream, cmd); |
| 1077 | if (ret < 0) |
| 1078 | return ret; |
| 1079 | } |
| 1080 | |
| 1081 | ret = snd_soc_dai_trigger(cpu_dai, substream, cmd); |
| 1082 | if (ret < 0) |
| 1083 | return ret; |
| 1084 | |
Kuninori Morimoto | 2b544dd | 2019-10-15 12:59:31 +0900 | [diff] [blame] | 1085 | for_each_rtd_components(rtd, rtdcom, component) { |
Peter Ujfalusi | 4378f1f | 2019-09-27 10:16:46 +0300 | [diff] [blame] | 1086 | ret = snd_soc_component_trigger(component, substream, cmd); |
| 1087 | if (ret < 0) |
| 1088 | return ret; |
| 1089 | } |
| 1090 | |
Kuninori Morimoto | 75ab9eb | 2017-09-26 00:40:42 +0000 | [diff] [blame] | 1091 | if (rtd->dai_link->ops->trigger) { |
Jarkko Nikula | 4792b0d | 2014-04-28 14:17:52 +0200 | [diff] [blame] | 1092 | ret = rtd->dai_link->ops->trigger(substream, cmd); |
| 1093 | if (ret < 0) |
| 1094 | return ret; |
| 1095 | } |
| 1096 | |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 1097 | return 0; |
| 1098 | } |
| 1099 | |
Peter Ujfalusi | 4378f1f | 2019-09-27 10:16:46 +0300 | [diff] [blame] | 1100 | static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd) |
| 1101 | { |
| 1102 | int ret; |
| 1103 | |
| 1104 | switch (cmd) { |
| 1105 | case SNDRV_PCM_TRIGGER_START: |
| 1106 | case SNDRV_PCM_TRIGGER_RESUME: |
| 1107 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: |
| 1108 | ret = soc_pcm_trigger_start(substream, cmd); |
| 1109 | break; |
| 1110 | case SNDRV_PCM_TRIGGER_STOP: |
| 1111 | case SNDRV_PCM_TRIGGER_SUSPEND: |
| 1112 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: |
| 1113 | ret = soc_pcm_trigger_stop(substream, cmd); |
| 1114 | break; |
| 1115 | default: |
| 1116 | return -EINVAL; |
| 1117 | } |
| 1118 | |
| 1119 | return ret; |
| 1120 | } |
| 1121 | |
Mark Brown | 45c0a18 | 2012-05-09 21:46:27 +0100 | [diff] [blame] | 1122 | static int soc_pcm_bespoke_trigger(struct snd_pcm_substream *substream, |
| 1123 | int cmd) |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 1124 | { |
| 1125 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 1126 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 1127 | struct snd_soc_dai *codec_dai; |
| 1128 | int i, ret; |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 1129 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 1130 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
Kuninori Morimoto | 5c0769af | 2019-07-22 10:33:56 +0900 | [diff] [blame] | 1131 | ret = snd_soc_dai_bespoke_trigger(codec_dai, substream, cmd); |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 1132 | if (ret < 0) |
| 1133 | return ret; |
| 1134 | } |
Kuninori Morimoto | 5c0769af | 2019-07-22 10:33:56 +0900 | [diff] [blame] | 1135 | |
Dan Carpenter | 901e822 | 2019-09-23 17:22:57 +0300 | [diff] [blame] | 1136 | ret = snd_soc_dai_bespoke_trigger(cpu_dai, substream, cmd); |
Kuninori Morimoto | 5c0769af | 2019-07-22 10:33:56 +0900 | [diff] [blame] | 1137 | if (ret < 0) |
| 1138 | return ret; |
| 1139 | |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 1140 | return 0; |
| 1141 | } |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 1142 | /* |
| 1143 | * soc level wrapper for pointer callback |
Charles Keepax | ef050be | 2018-04-24 16:39:02 +0100 | [diff] [blame] | 1144 | * If cpu_dai, codec_dai, component driver has the delay callback, then |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 1145 | * the runtime->delay will be updated accordingly. |
| 1146 | */ |
| 1147 | static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream) |
| 1148 | { |
| 1149 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 1150 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 1151 | struct snd_soc_dai *codec_dai; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 1152 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 1153 | snd_pcm_uframes_t offset = 0; |
| 1154 | snd_pcm_sframes_t delay = 0; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 1155 | snd_pcm_sframes_t codec_delay = 0; |
| 1156 | int i; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 1157 | |
Akshu Agrawal | 9fb4c2bf | 2018-08-01 15:37:33 +0530 | [diff] [blame] | 1158 | /* clearing the previous total delay */ |
| 1159 | runtime->delay = 0; |
| 1160 | |
Kuninori Morimoto | 0035e25 | 2019-07-26 13:51:47 +0900 | [diff] [blame] | 1161 | offset = snd_soc_pcm_component_pointer(substream); |
Kuninori Morimoto | b813586 | 2017-10-11 01:37:23 +0000 | [diff] [blame] | 1162 | |
Akshu Agrawal | 9fb4c2bf | 2018-08-01 15:37:33 +0530 | [diff] [blame] | 1163 | /* base delay if assigned in pointer callback */ |
| 1164 | delay = runtime->delay; |
Kuninori Morimoto | b813586 | 2017-10-11 01:37:23 +0000 | [diff] [blame] | 1165 | |
Kuninori Morimoto | 1dea80d | 2019-07-22 10:34:09 +0900 | [diff] [blame] | 1166 | delay += snd_soc_dai_delay(cpu_dai, substream); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 1167 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 1168 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
Kuninori Morimoto | 1dea80d | 2019-07-22 10:34:09 +0900 | [diff] [blame] | 1169 | codec_delay = max(codec_delay, |
| 1170 | snd_soc_dai_delay(codec_dai, substream)); |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 1171 | } |
| 1172 | delay += codec_delay; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 1173 | |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 1174 | runtime->delay = delay; |
| 1175 | |
| 1176 | return offset; |
| 1177 | } |
| 1178 | |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1179 | /* connect a FE and BE */ |
| 1180 | static int dpcm_be_connect(struct snd_soc_pcm_runtime *fe, |
| 1181 | struct snd_soc_pcm_runtime *be, int stream) |
| 1182 | { |
| 1183 | struct snd_soc_dpcm *dpcm; |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 1184 | unsigned long flags; |
Takashi Iwai | bd0b609 | 2019-11-07 14:48:33 +0100 | [diff] [blame] | 1185 | #ifdef CONFIG_DEBUG_FS |
Hans de Goede | 0632fa0 | 2019-10-05 23:22:02 +0200 | [diff] [blame] | 1186 | char *name; |
Takashi Iwai | bd0b609 | 2019-11-07 14:48:33 +0100 | [diff] [blame] | 1187 | #endif |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1188 | |
| 1189 | /* only add new dpcms */ |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 1190 | for_each_dpcm_be(fe, stream, dpcm) { |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1191 | if (dpcm->be == be && dpcm->fe == fe) |
| 1192 | return 0; |
| 1193 | } |
| 1194 | |
| 1195 | dpcm = kzalloc(sizeof(struct snd_soc_dpcm), GFP_KERNEL); |
| 1196 | if (!dpcm) |
| 1197 | return -ENOMEM; |
| 1198 | |
| 1199 | dpcm->be = be; |
| 1200 | dpcm->fe = fe; |
| 1201 | be->dpcm[stream].runtime = fe->dpcm[stream].runtime; |
| 1202 | dpcm->state = SND_SOC_DPCM_LINK_STATE_NEW; |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 1203 | spin_lock_irqsave(&fe->card->dpcm_lock, flags); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1204 | list_add(&dpcm->list_be, &fe->dpcm[stream].be_clients); |
| 1205 | list_add(&dpcm->list_fe, &be->dpcm[stream].fe_clients); |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 1206 | spin_unlock_irqrestore(&fe->card->dpcm_lock, flags); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1207 | |
Jarkko Nikula | 7cc302d | 2013-09-30 17:08:15 +0300 | [diff] [blame] | 1208 | dev_dbg(fe->dev, "connected new DPCM %s path %s %s %s\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1209 | stream ? "capture" : "playback", fe->dai_link->name, |
| 1210 | stream ? "<-" : "->", be->dai_link->name); |
| 1211 | |
Liam Girdwood | f86dcef | 2012-04-25 12:12:50 +0100 | [diff] [blame] | 1212 | #ifdef CONFIG_DEBUG_FS |
Hans de Goede | 0632fa0 | 2019-10-05 23:22:02 +0200 | [diff] [blame] | 1213 | name = kasprintf(GFP_KERNEL, "%s:%s", be->dai_link->name, |
| 1214 | stream ? "capture" : "playback"); |
| 1215 | if (name) { |
| 1216 | dpcm->debugfs_state = debugfs_create_dir(name, |
| 1217 | fe->debugfs_dpcm_root); |
| 1218 | debugfs_create_u32("state", 0644, dpcm->debugfs_state, |
| 1219 | &dpcm->state); |
| 1220 | kfree(name); |
| 1221 | } |
Liam Girdwood | f86dcef | 2012-04-25 12:12:50 +0100 | [diff] [blame] | 1222 | #endif |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1223 | return 1; |
| 1224 | } |
| 1225 | |
| 1226 | /* reparent a BE onto another FE */ |
| 1227 | static void dpcm_be_reparent(struct snd_soc_pcm_runtime *fe, |
| 1228 | struct snd_soc_pcm_runtime *be, int stream) |
| 1229 | { |
| 1230 | struct snd_soc_dpcm *dpcm; |
| 1231 | struct snd_pcm_substream *fe_substream, *be_substream; |
| 1232 | |
| 1233 | /* reparent if BE is connected to other FEs */ |
| 1234 | if (!be->dpcm[stream].users) |
| 1235 | return; |
| 1236 | |
| 1237 | be_substream = snd_soc_dpcm_get_substream(be, stream); |
| 1238 | |
Kuninori Morimoto | d2e24d6 | 2018-09-18 01:30:54 +0000 | [diff] [blame] | 1239 | for_each_dpcm_fe(be, stream, dpcm) { |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1240 | if (dpcm->fe == fe) |
| 1241 | continue; |
| 1242 | |
Jarkko Nikula | 7cc302d | 2013-09-30 17:08:15 +0300 | [diff] [blame] | 1243 | dev_dbg(fe->dev, "reparent %s path %s %s %s\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1244 | stream ? "capture" : "playback", |
| 1245 | dpcm->fe->dai_link->name, |
| 1246 | stream ? "<-" : "->", dpcm->be->dai_link->name); |
| 1247 | |
| 1248 | fe_substream = snd_soc_dpcm_get_substream(dpcm->fe, stream); |
| 1249 | be_substream->runtime = fe_substream->runtime; |
| 1250 | break; |
| 1251 | } |
| 1252 | } |
| 1253 | |
| 1254 | /* disconnect a BE and FE */ |
Liam Girdwood | 2360702 | 2014-01-17 17:03:55 +0000 | [diff] [blame] | 1255 | void dpcm_be_disconnect(struct snd_soc_pcm_runtime *fe, int stream) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1256 | { |
| 1257 | struct snd_soc_dpcm *dpcm, *d; |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 1258 | unsigned long flags; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1259 | |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 1260 | for_each_dpcm_be_safe(fe, stream, dpcm, d) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 1261 | dev_dbg(fe->dev, "ASoC: BE %s disconnect check for %s\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1262 | stream ? "capture" : "playback", |
| 1263 | dpcm->be->dai_link->name); |
| 1264 | |
| 1265 | if (dpcm->state != SND_SOC_DPCM_LINK_STATE_FREE) |
| 1266 | continue; |
| 1267 | |
Jarkko Nikula | 7cc302d | 2013-09-30 17:08:15 +0300 | [diff] [blame] | 1268 | dev_dbg(fe->dev, "freed DSP %s path %s %s %s\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1269 | stream ? "capture" : "playback", fe->dai_link->name, |
| 1270 | stream ? "<-" : "->", dpcm->be->dai_link->name); |
| 1271 | |
| 1272 | /* BEs still alive need new FE */ |
| 1273 | dpcm_be_reparent(fe, dpcm->be, stream); |
| 1274 | |
Liam Girdwood | f86dcef | 2012-04-25 12:12:50 +0100 | [diff] [blame] | 1275 | #ifdef CONFIG_DEBUG_FS |
Greg Kroah-Hartman | fee531d | 2019-07-31 15:17:15 +0200 | [diff] [blame] | 1276 | debugfs_remove_recursive(dpcm->debugfs_state); |
Liam Girdwood | f86dcef | 2012-04-25 12:12:50 +0100 | [diff] [blame] | 1277 | #endif |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 1278 | spin_lock_irqsave(&fe->card->dpcm_lock, flags); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1279 | list_del(&dpcm->list_be); |
| 1280 | list_del(&dpcm->list_fe); |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 1281 | spin_unlock_irqrestore(&fe->card->dpcm_lock, flags); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1282 | kfree(dpcm); |
| 1283 | } |
| 1284 | } |
| 1285 | |
| 1286 | /* get BE for DAI widget and stream */ |
| 1287 | static struct snd_soc_pcm_runtime *dpcm_get_be(struct snd_soc_card *card, |
| 1288 | struct snd_soc_dapm_widget *widget, int stream) |
| 1289 | { |
| 1290 | struct snd_soc_pcm_runtime *be; |
Kuninori Morimoto | 7afecb3 | 2018-09-18 01:28:04 +0000 | [diff] [blame] | 1291 | struct snd_soc_dai *dai; |
Mengdong Lin | 1a49798 | 2015-11-18 02:34:11 -0500 | [diff] [blame] | 1292 | int i; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1293 | |
Liam Girdwood | 3c14646 | 2018-03-14 20:43:51 +0000 | [diff] [blame] | 1294 | dev_dbg(card->dev, "ASoC: find BE for widget %s\n", widget->name); |
| 1295 | |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1296 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) { |
Kuninori Morimoto | bcb1fd1 | 2018-09-18 01:29:35 +0000 | [diff] [blame] | 1297 | for_each_card_rtds(card, be) { |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1298 | |
Liam Girdwood | 35ea065 | 2012-06-05 19:26:59 +0100 | [diff] [blame] | 1299 | if (!be->dai_link->no_pcm) |
| 1300 | continue; |
| 1301 | |
Liam Girdwood | 3c14646 | 2018-03-14 20:43:51 +0000 | [diff] [blame] | 1302 | dev_dbg(card->dev, "ASoC: try BE : %s\n", |
| 1303 | be->cpu_dai->playback_widget ? |
| 1304 | be->cpu_dai->playback_widget->name : "(not set)"); |
| 1305 | |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 1306 | if (be->cpu_dai->playback_widget == widget) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1307 | return be; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 1308 | |
Kuninori Morimoto | 7afecb3 | 2018-09-18 01:28:04 +0000 | [diff] [blame] | 1309 | for_each_rtd_codec_dai(be, i, dai) { |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 1310 | if (dai->playback_widget == widget) |
| 1311 | return be; |
| 1312 | } |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1313 | } |
| 1314 | } else { |
| 1315 | |
Kuninori Morimoto | bcb1fd1 | 2018-09-18 01:29:35 +0000 | [diff] [blame] | 1316 | for_each_card_rtds(card, be) { |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1317 | |
Liam Girdwood | 35ea065 | 2012-06-05 19:26:59 +0100 | [diff] [blame] | 1318 | if (!be->dai_link->no_pcm) |
| 1319 | continue; |
| 1320 | |
Liam Girdwood | 3c14646 | 2018-03-14 20:43:51 +0000 | [diff] [blame] | 1321 | dev_dbg(card->dev, "ASoC: try BE %s\n", |
| 1322 | be->cpu_dai->capture_widget ? |
| 1323 | be->cpu_dai->capture_widget->name : "(not set)"); |
| 1324 | |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 1325 | if (be->cpu_dai->capture_widget == widget) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1326 | return be; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 1327 | |
Kuninori Morimoto | 7afecb3 | 2018-09-18 01:28:04 +0000 | [diff] [blame] | 1328 | for_each_rtd_codec_dai(be, i, dai) { |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 1329 | if (dai->capture_widget == widget) |
| 1330 | return be; |
| 1331 | } |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1332 | } |
| 1333 | } |
| 1334 | |
Liam Girdwood | 3c14646 | 2018-03-14 20:43:51 +0000 | [diff] [blame] | 1335 | /* dai link name and stream name set correctly ? */ |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 1336 | dev_err(card->dev, "ASoC: can't get %s BE for %s\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1337 | stream ? "capture" : "playback", widget->name); |
| 1338 | return NULL; |
| 1339 | } |
| 1340 | |
| 1341 | static inline struct snd_soc_dapm_widget * |
Benoit Cousson | 3701861 | 2014-04-24 14:01:45 +0200 | [diff] [blame] | 1342 | dai_get_widget(struct snd_soc_dai *dai, int stream) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1343 | { |
| 1344 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) |
Benoit Cousson | 3701861 | 2014-04-24 14:01:45 +0200 | [diff] [blame] | 1345 | return dai->playback_widget; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1346 | else |
Benoit Cousson | 3701861 | 2014-04-24 14:01:45 +0200 | [diff] [blame] | 1347 | return dai->capture_widget; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1348 | } |
| 1349 | |
| 1350 | static int widget_in_list(struct snd_soc_dapm_widget_list *list, |
| 1351 | struct snd_soc_dapm_widget *widget) |
| 1352 | { |
| 1353 | int i; |
| 1354 | |
| 1355 | for (i = 0; i < list->num_widgets; i++) { |
| 1356 | if (widget == list->widgets[i]) |
| 1357 | return 1; |
| 1358 | } |
| 1359 | |
| 1360 | return 0; |
| 1361 | } |
| 1362 | |
Piotr Stankiewicz | 5fdd022 | 2016-05-13 17:03:56 +0100 | [diff] [blame] | 1363 | static bool dpcm_end_walk_at_be(struct snd_soc_dapm_widget *widget, |
| 1364 | enum snd_soc_dapm_direction dir) |
| 1365 | { |
| 1366 | struct snd_soc_card *card = widget->dapm->card; |
| 1367 | struct snd_soc_pcm_runtime *rtd; |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 1368 | struct snd_soc_dai *dai; |
Piotr Stankiewicz | 5fdd022 | 2016-05-13 17:03:56 +0100 | [diff] [blame] | 1369 | int i; |
| 1370 | |
| 1371 | if (dir == SND_SOC_DAPM_DIR_OUT) { |
Kuninori Morimoto | bcb1fd1 | 2018-09-18 01:29:35 +0000 | [diff] [blame] | 1372 | for_each_card_rtds(card, rtd) { |
Piotr Stankiewicz | 5fdd022 | 2016-05-13 17:03:56 +0100 | [diff] [blame] | 1373 | if (!rtd->dai_link->no_pcm) |
| 1374 | continue; |
| 1375 | |
| 1376 | if (rtd->cpu_dai->playback_widget == widget) |
| 1377 | return true; |
| 1378 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 1379 | for_each_rtd_codec_dai(rtd, i, dai) { |
Piotr Stankiewicz | 5fdd022 | 2016-05-13 17:03:56 +0100 | [diff] [blame] | 1380 | if (dai->playback_widget == widget) |
| 1381 | return true; |
| 1382 | } |
| 1383 | } |
| 1384 | } else { /* SND_SOC_DAPM_DIR_IN */ |
Kuninori Morimoto | bcb1fd1 | 2018-09-18 01:29:35 +0000 | [diff] [blame] | 1385 | for_each_card_rtds(card, rtd) { |
Piotr Stankiewicz | 5fdd022 | 2016-05-13 17:03:56 +0100 | [diff] [blame] | 1386 | if (!rtd->dai_link->no_pcm) |
| 1387 | continue; |
| 1388 | |
| 1389 | if (rtd->cpu_dai->capture_widget == widget) |
| 1390 | return true; |
| 1391 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 1392 | for_each_rtd_codec_dai(rtd, i, dai) { |
Piotr Stankiewicz | 5fdd022 | 2016-05-13 17:03:56 +0100 | [diff] [blame] | 1393 | if (dai->capture_widget == widget) |
| 1394 | return true; |
| 1395 | } |
| 1396 | } |
| 1397 | } |
| 1398 | |
| 1399 | return false; |
| 1400 | } |
| 1401 | |
Liam Girdwood | 2360702 | 2014-01-17 17:03:55 +0000 | [diff] [blame] | 1402 | int dpcm_path_get(struct snd_soc_pcm_runtime *fe, |
Lars-Peter Clausen | 1ce43ac | 2015-07-26 19:04:59 +0200 | [diff] [blame] | 1403 | int stream, struct snd_soc_dapm_widget_list **list) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1404 | { |
| 1405 | struct snd_soc_dai *cpu_dai = fe->cpu_dai; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1406 | int paths; |
| 1407 | |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1408 | /* get number of valid DAI paths and their widgets */ |
Piotr Stankiewicz | 6742064 | 2016-05-13 17:03:55 +0100 | [diff] [blame] | 1409 | paths = snd_soc_dapm_dai_get_connected_widgets(cpu_dai, stream, list, |
Piotr Stankiewicz | 5fdd022 | 2016-05-13 17:03:56 +0100 | [diff] [blame] | 1410 | dpcm_end_walk_at_be); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1411 | |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 1412 | dev_dbg(fe->dev, "ASoC: found %d audio %s paths\n", paths, |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1413 | stream ? "capture" : "playback"); |
| 1414 | |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1415 | return paths; |
| 1416 | } |
| 1417 | |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1418 | static int dpcm_prune_paths(struct snd_soc_pcm_runtime *fe, int stream, |
| 1419 | struct snd_soc_dapm_widget_list **list_) |
| 1420 | { |
| 1421 | struct snd_soc_dpcm *dpcm; |
| 1422 | struct snd_soc_dapm_widget_list *list = *list_; |
| 1423 | struct snd_soc_dapm_widget *widget; |
Kuninori Morimoto | 7afecb3 | 2018-09-18 01:28:04 +0000 | [diff] [blame] | 1424 | struct snd_soc_dai *dai; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1425 | int prune = 0; |
Kuninori Morimoto | bed646d | 2019-10-15 12:59:38 +0900 | [diff] [blame] | 1426 | int do_prune; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1427 | |
| 1428 | /* Destroy any old FE <--> BE connections */ |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 1429 | for_each_dpcm_be(fe, stream, dpcm) { |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 1430 | unsigned int i; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1431 | |
| 1432 | /* is there a valid CPU DAI widget for this BE */ |
Benoit Cousson | 3701861 | 2014-04-24 14:01:45 +0200 | [diff] [blame] | 1433 | widget = dai_get_widget(dpcm->be->cpu_dai, stream); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1434 | |
| 1435 | /* prune the BE if it's no longer in our active list */ |
| 1436 | if (widget && widget_in_list(list, widget)) |
| 1437 | continue; |
| 1438 | |
| 1439 | /* is there a valid CODEC DAI widget for this BE */ |
Kuninori Morimoto | bed646d | 2019-10-15 12:59:38 +0900 | [diff] [blame] | 1440 | do_prune = 1; |
Kuninori Morimoto | 7afecb3 | 2018-09-18 01:28:04 +0000 | [diff] [blame] | 1441 | for_each_rtd_codec_dai(dpcm->be, i, dai) { |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 1442 | widget = dai_get_widget(dai, stream); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1443 | |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 1444 | /* prune the BE if it's no longer in our active list */ |
| 1445 | if (widget && widget_in_list(list, widget)) |
Kuninori Morimoto | bed646d | 2019-10-15 12:59:38 +0900 | [diff] [blame] | 1446 | do_prune = 0; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 1447 | } |
Kuninori Morimoto | bed646d | 2019-10-15 12:59:38 +0900 | [diff] [blame] | 1448 | if (!do_prune) |
| 1449 | continue; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1450 | |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 1451 | dev_dbg(fe->dev, "ASoC: pruning %s BE %s for %s\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1452 | stream ? "capture" : "playback", |
| 1453 | dpcm->be->dai_link->name, fe->dai_link->name); |
| 1454 | dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE; |
| 1455 | dpcm->be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE; |
| 1456 | prune++; |
| 1457 | } |
| 1458 | |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 1459 | dev_dbg(fe->dev, "ASoC: found %d old BE paths for pruning\n", prune); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1460 | return prune; |
| 1461 | } |
| 1462 | |
| 1463 | static int dpcm_add_paths(struct snd_soc_pcm_runtime *fe, int stream, |
| 1464 | struct snd_soc_dapm_widget_list **list_) |
| 1465 | { |
| 1466 | struct snd_soc_card *card = fe->card; |
| 1467 | struct snd_soc_dapm_widget_list *list = *list_; |
| 1468 | struct snd_soc_pcm_runtime *be; |
| 1469 | int i, new = 0, err; |
| 1470 | |
| 1471 | /* Create any new FE <--> BE connections */ |
| 1472 | for (i = 0; i < list->num_widgets; i++) { |
| 1473 | |
Mark Brown | 4616274 | 2013-06-05 19:36:11 +0100 | [diff] [blame] | 1474 | switch (list->widgets[i]->id) { |
| 1475 | case snd_soc_dapm_dai_in: |
Koro Chen | c5b8540 | 2015-07-06 10:02:10 +0800 | [diff] [blame] | 1476 | if (stream != SNDRV_PCM_STREAM_PLAYBACK) |
| 1477 | continue; |
| 1478 | break; |
Mark Brown | 4616274 | 2013-06-05 19:36:11 +0100 | [diff] [blame] | 1479 | case snd_soc_dapm_dai_out: |
Koro Chen | c5b8540 | 2015-07-06 10:02:10 +0800 | [diff] [blame] | 1480 | if (stream != SNDRV_PCM_STREAM_CAPTURE) |
| 1481 | continue; |
Mark Brown | 4616274 | 2013-06-05 19:36:11 +0100 | [diff] [blame] | 1482 | break; |
| 1483 | default: |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1484 | continue; |
Mark Brown | 4616274 | 2013-06-05 19:36:11 +0100 | [diff] [blame] | 1485 | } |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1486 | |
| 1487 | /* is there a valid BE rtd for this widget */ |
| 1488 | be = dpcm_get_be(card, list->widgets[i], stream); |
| 1489 | if (!be) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 1490 | dev_err(fe->dev, "ASoC: no BE found for %s\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1491 | list->widgets[i]->name); |
| 1492 | continue; |
| 1493 | } |
| 1494 | |
| 1495 | /* make sure BE is a real BE */ |
| 1496 | if (!be->dai_link->no_pcm) |
| 1497 | continue; |
| 1498 | |
| 1499 | /* don't connect if FE is not running */ |
Liam Girdwood | 2360702 | 2014-01-17 17:03:55 +0000 | [diff] [blame] | 1500 | if (!fe->dpcm[stream].runtime && !fe->fe_compr) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1501 | continue; |
| 1502 | |
| 1503 | /* newly connected FE and BE */ |
| 1504 | err = dpcm_be_connect(fe, be, stream); |
| 1505 | if (err < 0) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 1506 | dev_err(fe->dev, "ASoC: can't connect %s\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1507 | list->widgets[i]->name); |
| 1508 | break; |
| 1509 | } else if (err == 0) /* already connected */ |
| 1510 | continue; |
| 1511 | |
| 1512 | /* new */ |
| 1513 | be->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_BE; |
| 1514 | new++; |
| 1515 | } |
| 1516 | |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 1517 | dev_dbg(fe->dev, "ASoC: found %d new BE paths\n", new); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1518 | return new; |
| 1519 | } |
| 1520 | |
| 1521 | /* |
| 1522 | * Find the corresponding BE DAIs that source or sink audio to this |
| 1523 | * FE substream. |
| 1524 | */ |
Liam Girdwood | 2360702 | 2014-01-17 17:03:55 +0000 | [diff] [blame] | 1525 | int dpcm_process_paths(struct snd_soc_pcm_runtime *fe, |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1526 | int stream, struct snd_soc_dapm_widget_list **list, int new) |
| 1527 | { |
| 1528 | if (new) |
| 1529 | return dpcm_add_paths(fe, stream, list); |
| 1530 | else |
| 1531 | return dpcm_prune_paths(fe, stream, list); |
| 1532 | } |
| 1533 | |
Liam Girdwood | 2360702 | 2014-01-17 17:03:55 +0000 | [diff] [blame] | 1534 | void dpcm_clear_pending_state(struct snd_soc_pcm_runtime *fe, int stream) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1535 | { |
| 1536 | struct snd_soc_dpcm *dpcm; |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 1537 | unsigned long flags; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1538 | |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 1539 | spin_lock_irqsave(&fe->card->dpcm_lock, flags); |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 1540 | for_each_dpcm_be(fe, stream, dpcm) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1541 | dpcm->be->dpcm[stream].runtime_update = |
| 1542 | SND_SOC_DPCM_UPDATE_NO; |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 1543 | spin_unlock_irqrestore(&fe->card->dpcm_lock, flags); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1544 | } |
| 1545 | |
| 1546 | static void dpcm_be_dai_startup_unwind(struct snd_soc_pcm_runtime *fe, |
| 1547 | int stream) |
| 1548 | { |
| 1549 | struct snd_soc_dpcm *dpcm; |
| 1550 | |
| 1551 | /* disable any enabled and non active backends */ |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 1552 | for_each_dpcm_be(fe, stream, dpcm) { |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1553 | |
| 1554 | struct snd_soc_pcm_runtime *be = dpcm->be; |
| 1555 | struct snd_pcm_substream *be_substream = |
| 1556 | snd_soc_dpcm_get_substream(be, stream); |
| 1557 | |
| 1558 | if (be->dpcm[stream].users == 0) |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 1559 | dev_err(be->dev, "ASoC: no users %s at close - state %d\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1560 | stream ? "capture" : "playback", |
| 1561 | be->dpcm[stream].state); |
| 1562 | |
| 1563 | if (--be->dpcm[stream].users != 0) |
| 1564 | continue; |
| 1565 | |
| 1566 | if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) |
| 1567 | continue; |
| 1568 | |
| 1569 | soc_pcm_close(be_substream); |
| 1570 | be_substream->runtime = NULL; |
| 1571 | be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE; |
| 1572 | } |
| 1573 | } |
| 1574 | |
Liam Girdwood | 2360702 | 2014-01-17 17:03:55 +0000 | [diff] [blame] | 1575 | int dpcm_be_dai_startup(struct snd_soc_pcm_runtime *fe, int stream) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1576 | { |
| 1577 | struct snd_soc_dpcm *dpcm; |
| 1578 | int err, count = 0; |
| 1579 | |
| 1580 | /* only startup BE DAIs that are either sinks or sources to this FE DAI */ |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 1581 | for_each_dpcm_be(fe, stream, dpcm) { |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1582 | |
| 1583 | struct snd_soc_pcm_runtime *be = dpcm->be; |
| 1584 | struct snd_pcm_substream *be_substream = |
| 1585 | snd_soc_dpcm_get_substream(be, stream); |
| 1586 | |
Russell King - ARM Linux | 2062b4c | 2013-10-31 15:09:20 +0000 | [diff] [blame] | 1587 | if (!be_substream) { |
| 1588 | dev_err(be->dev, "ASoC: no backend %s stream\n", |
| 1589 | stream ? "capture" : "playback"); |
| 1590 | continue; |
| 1591 | } |
| 1592 | |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1593 | /* is this op for this BE ? */ |
| 1594 | if (!snd_soc_dpcm_be_can_update(fe, be, stream)) |
| 1595 | continue; |
| 1596 | |
| 1597 | /* first time the dpcm is open ? */ |
| 1598 | if (be->dpcm[stream].users == DPCM_MAX_BE_USERS) |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 1599 | dev_err(be->dev, "ASoC: too many users %s at open %d\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1600 | stream ? "capture" : "playback", |
| 1601 | be->dpcm[stream].state); |
| 1602 | |
| 1603 | if (be->dpcm[stream].users++ != 0) |
| 1604 | continue; |
| 1605 | |
| 1606 | if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_NEW) && |
| 1607 | (be->dpcm[stream].state != SND_SOC_DPCM_STATE_CLOSE)) |
| 1608 | continue; |
| 1609 | |
Russell King - ARM Linux | 2062b4c | 2013-10-31 15:09:20 +0000 | [diff] [blame] | 1610 | dev_dbg(be->dev, "ASoC: open %s BE %s\n", |
| 1611 | stream ? "capture" : "playback", be->dai_link->name); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1612 | |
| 1613 | be_substream->runtime = be->dpcm[stream].runtime; |
| 1614 | err = soc_pcm_open(be_substream); |
| 1615 | if (err < 0) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 1616 | dev_err(be->dev, "ASoC: BE open failed %d\n", err); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1617 | be->dpcm[stream].users--; |
| 1618 | if (be->dpcm[stream].users < 0) |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 1619 | dev_err(be->dev, "ASoC: no users %s at unwind %d\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1620 | stream ? "capture" : "playback", |
| 1621 | be->dpcm[stream].state); |
| 1622 | |
| 1623 | be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE; |
| 1624 | goto unwind; |
| 1625 | } |
| 1626 | |
| 1627 | be->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN; |
| 1628 | count++; |
| 1629 | } |
| 1630 | |
| 1631 | return count; |
| 1632 | |
| 1633 | unwind: |
| 1634 | /* disable any enabled and non active backends */ |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 1635 | for_each_dpcm_be_rollback(fe, stream, dpcm) { |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1636 | struct snd_soc_pcm_runtime *be = dpcm->be; |
| 1637 | struct snd_pcm_substream *be_substream = |
| 1638 | snd_soc_dpcm_get_substream(be, stream); |
| 1639 | |
| 1640 | if (!snd_soc_dpcm_be_can_update(fe, be, stream)) |
| 1641 | continue; |
| 1642 | |
| 1643 | if (be->dpcm[stream].users == 0) |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 1644 | dev_err(be->dev, "ASoC: no users %s at close %d\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1645 | stream ? "capture" : "playback", |
| 1646 | be->dpcm[stream].state); |
| 1647 | |
| 1648 | if (--be->dpcm[stream].users != 0) |
| 1649 | continue; |
| 1650 | |
| 1651 | if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) |
| 1652 | continue; |
| 1653 | |
| 1654 | soc_pcm_close(be_substream); |
| 1655 | be_substream->runtime = NULL; |
| 1656 | be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE; |
| 1657 | } |
| 1658 | |
| 1659 | return err; |
| 1660 | } |
| 1661 | |
Lars-Peter Clausen | 08ae9b4 | 2014-01-06 14:19:06 +0100 | [diff] [blame] | 1662 | static void dpcm_init_runtime_hw(struct snd_pcm_runtime *runtime, |
Jerome Brunet | 435ffb7 | 2018-07-05 12:13:48 +0200 | [diff] [blame] | 1663 | struct snd_soc_pcm_stream *stream) |
Lars-Peter Clausen | 08ae9b4 | 2014-01-06 14:19:06 +0100 | [diff] [blame] | 1664 | { |
| 1665 | runtime->hw.rate_min = stream->rate_min; |
Charles Keepax | e33ffbd9c | 2018-08-27 14:26:47 +0100 | [diff] [blame] | 1666 | runtime->hw.rate_max = min_not_zero(stream->rate_max, UINT_MAX); |
Lars-Peter Clausen | 08ae9b4 | 2014-01-06 14:19:06 +0100 | [diff] [blame] | 1667 | runtime->hw.channels_min = stream->channels_min; |
| 1668 | runtime->hw.channels_max = stream->channels_max; |
Lars-Peter Clausen | 002220a | 2014-01-06 14:19:07 +0100 | [diff] [blame] | 1669 | if (runtime->hw.formats) |
Jerome Brunet | 435ffb7 | 2018-07-05 12:13:48 +0200 | [diff] [blame] | 1670 | runtime->hw.formats &= stream->formats; |
Lars-Peter Clausen | 002220a | 2014-01-06 14:19:07 +0100 | [diff] [blame] | 1671 | else |
Jerome Brunet | 435ffb7 | 2018-07-05 12:13:48 +0200 | [diff] [blame] | 1672 | runtime->hw.formats = stream->formats; |
Lars-Peter Clausen | 08ae9b4 | 2014-01-06 14:19:06 +0100 | [diff] [blame] | 1673 | runtime->hw.rates = stream->rates; |
| 1674 | } |
| 1675 | |
Jerome Brunet | 435ffb7 | 2018-07-05 12:13:48 +0200 | [diff] [blame] | 1676 | static void dpcm_runtime_merge_format(struct snd_pcm_substream *substream, |
| 1677 | u64 *formats) |
Kuninori Morimoto | b073ed4 | 2015-05-12 02:03:33 +0000 | [diff] [blame] | 1678 | { |
| 1679 | struct snd_soc_pcm_runtime *fe = substream->private_data; |
| 1680 | struct snd_soc_dpcm *dpcm; |
Kuninori Morimoto | 7afecb3 | 2018-09-18 01:28:04 +0000 | [diff] [blame] | 1681 | struct snd_soc_dai *dai; |
Kuninori Morimoto | b073ed4 | 2015-05-12 02:03:33 +0000 | [diff] [blame] | 1682 | int stream = substream->stream; |
| 1683 | |
| 1684 | if (!fe->dai_link->dpcm_merged_format) |
Jerome Brunet | 435ffb7 | 2018-07-05 12:13:48 +0200 | [diff] [blame] | 1685 | return; |
Kuninori Morimoto | b073ed4 | 2015-05-12 02:03:33 +0000 | [diff] [blame] | 1686 | |
| 1687 | /* |
| 1688 | * It returns merged BE codec format |
| 1689 | * if FE want to use it (= dpcm_merged_format) |
| 1690 | */ |
| 1691 | |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 1692 | for_each_dpcm_be(fe, stream, dpcm) { |
Kuninori Morimoto | b073ed4 | 2015-05-12 02:03:33 +0000 | [diff] [blame] | 1693 | struct snd_soc_pcm_runtime *be = dpcm->be; |
| 1694 | struct snd_soc_dai_driver *codec_dai_drv; |
| 1695 | struct snd_soc_pcm_stream *codec_stream; |
| 1696 | int i; |
| 1697 | |
Kuninori Morimoto | 7afecb3 | 2018-09-18 01:28:04 +0000 | [diff] [blame] | 1698 | for_each_rtd_codec_dai(be, i, dai) { |
Jerome Brunet | 4febced | 2018-06-27 17:36:38 +0200 | [diff] [blame] | 1699 | /* |
| 1700 | * Skip CODECs which don't support the current stream |
| 1701 | * type. See soc_pcm_init_runtime_hw() for more details |
| 1702 | */ |
Kuninori Morimoto | 7afecb3 | 2018-09-18 01:28:04 +0000 | [diff] [blame] | 1703 | if (!snd_soc_dai_stream_valid(dai, stream)) |
Jerome Brunet | 4febced | 2018-06-27 17:36:38 +0200 | [diff] [blame] | 1704 | continue; |
| 1705 | |
Kuninori Morimoto | 7afecb3 | 2018-09-18 01:28:04 +0000 | [diff] [blame] | 1706 | codec_dai_drv = dai->driver; |
Kuninori Morimoto | b073ed4 | 2015-05-12 02:03:33 +0000 | [diff] [blame] | 1707 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 1708 | codec_stream = &codec_dai_drv->playback; |
| 1709 | else |
| 1710 | codec_stream = &codec_dai_drv->capture; |
| 1711 | |
Jerome Brunet | 435ffb7 | 2018-07-05 12:13:48 +0200 | [diff] [blame] | 1712 | *formats &= codec_stream->formats; |
Kuninori Morimoto | b073ed4 | 2015-05-12 02:03:33 +0000 | [diff] [blame] | 1713 | } |
| 1714 | } |
Kuninori Morimoto | b073ed4 | 2015-05-12 02:03:33 +0000 | [diff] [blame] | 1715 | } |
| 1716 | |
Jerome Brunet | 435ffb7 | 2018-07-05 12:13:48 +0200 | [diff] [blame] | 1717 | static void dpcm_runtime_merge_chan(struct snd_pcm_substream *substream, |
| 1718 | unsigned int *channels_min, |
| 1719 | unsigned int *channels_max) |
Jiada Wang | f4c277b | 2018-06-20 18:25:20 +0900 | [diff] [blame] | 1720 | { |
| 1721 | struct snd_soc_pcm_runtime *fe = substream->private_data; |
| 1722 | struct snd_soc_dpcm *dpcm; |
| 1723 | int stream = substream->stream; |
| 1724 | |
| 1725 | if (!fe->dai_link->dpcm_merged_chan) |
| 1726 | return; |
| 1727 | |
Jiada Wang | f4c277b | 2018-06-20 18:25:20 +0900 | [diff] [blame] | 1728 | /* |
| 1729 | * It returns merged BE codec channel; |
| 1730 | * if FE want to use it (= dpcm_merged_chan) |
| 1731 | */ |
| 1732 | |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 1733 | for_each_dpcm_be(fe, stream, dpcm) { |
Jiada Wang | f4c277b | 2018-06-20 18:25:20 +0900 | [diff] [blame] | 1734 | struct snd_soc_pcm_runtime *be = dpcm->be; |
Jerome Brunet | 4f2bd18 | 2018-06-27 11:48:18 +0200 | [diff] [blame] | 1735 | struct snd_soc_dai_driver *cpu_dai_drv = be->cpu_dai->driver; |
Jiada Wang | f4c277b | 2018-06-20 18:25:20 +0900 | [diff] [blame] | 1736 | struct snd_soc_dai_driver *codec_dai_drv; |
| 1737 | struct snd_soc_pcm_stream *codec_stream; |
Jerome Brunet | 4f2bd18 | 2018-06-27 11:48:18 +0200 | [diff] [blame] | 1738 | struct snd_soc_pcm_stream *cpu_stream; |
Jiada Wang | f4c277b | 2018-06-20 18:25:20 +0900 | [diff] [blame] | 1739 | |
Jerome Brunet | 4f2bd18 | 2018-06-27 11:48:18 +0200 | [diff] [blame] | 1740 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 1741 | cpu_stream = &cpu_dai_drv->playback; |
| 1742 | else |
| 1743 | cpu_stream = &cpu_dai_drv->capture; |
| 1744 | |
| 1745 | *channels_min = max(*channels_min, cpu_stream->channels_min); |
| 1746 | *channels_max = min(*channels_max, cpu_stream->channels_max); |
| 1747 | |
| 1748 | /* |
| 1749 | * chan min/max cannot be enforced if there are multiple CODEC |
| 1750 | * DAIs connected to a single CPU DAI, use CPU DAI's directly |
| 1751 | */ |
| 1752 | if (be->num_codecs == 1) { |
| 1753 | codec_dai_drv = be->codec_dais[0]->driver; |
| 1754 | |
Jiada Wang | f4c277b | 2018-06-20 18:25:20 +0900 | [diff] [blame] | 1755 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 1756 | codec_stream = &codec_dai_drv->playback; |
| 1757 | else |
| 1758 | codec_stream = &codec_dai_drv->capture; |
| 1759 | |
| 1760 | *channels_min = max(*channels_min, |
| 1761 | codec_stream->channels_min); |
| 1762 | *channels_max = min(*channels_max, |
| 1763 | codec_stream->channels_max); |
| 1764 | } |
| 1765 | } |
| 1766 | } |
| 1767 | |
Jerome Brunet | baacd8d | 2018-07-05 12:13:49 +0200 | [diff] [blame] | 1768 | static void dpcm_runtime_merge_rate(struct snd_pcm_substream *substream, |
| 1769 | unsigned int *rates, |
| 1770 | unsigned int *rate_min, |
| 1771 | unsigned int *rate_max) |
| 1772 | { |
| 1773 | struct snd_soc_pcm_runtime *fe = substream->private_data; |
| 1774 | struct snd_soc_dpcm *dpcm; |
| 1775 | int stream = substream->stream; |
| 1776 | |
| 1777 | if (!fe->dai_link->dpcm_merged_rate) |
| 1778 | return; |
| 1779 | |
| 1780 | /* |
| 1781 | * It returns merged BE codec channel; |
| 1782 | * if FE want to use it (= dpcm_merged_chan) |
| 1783 | */ |
| 1784 | |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 1785 | for_each_dpcm_be(fe, stream, dpcm) { |
Jerome Brunet | baacd8d | 2018-07-05 12:13:49 +0200 | [diff] [blame] | 1786 | struct snd_soc_pcm_runtime *be = dpcm->be; |
| 1787 | struct snd_soc_dai_driver *cpu_dai_drv = be->cpu_dai->driver; |
| 1788 | struct snd_soc_dai_driver *codec_dai_drv; |
| 1789 | struct snd_soc_pcm_stream *codec_stream; |
| 1790 | struct snd_soc_pcm_stream *cpu_stream; |
Kuninori Morimoto | 7afecb3 | 2018-09-18 01:28:04 +0000 | [diff] [blame] | 1791 | struct snd_soc_dai *dai; |
Jerome Brunet | baacd8d | 2018-07-05 12:13:49 +0200 | [diff] [blame] | 1792 | int i; |
| 1793 | |
| 1794 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 1795 | cpu_stream = &cpu_dai_drv->playback; |
| 1796 | else |
| 1797 | cpu_stream = &cpu_dai_drv->capture; |
| 1798 | |
| 1799 | *rate_min = max(*rate_min, cpu_stream->rate_min); |
| 1800 | *rate_max = min_not_zero(*rate_max, cpu_stream->rate_max); |
| 1801 | *rates = snd_pcm_rate_mask_intersect(*rates, cpu_stream->rates); |
| 1802 | |
Kuninori Morimoto | 7afecb3 | 2018-09-18 01:28:04 +0000 | [diff] [blame] | 1803 | for_each_rtd_codec_dai(be, i, dai) { |
Jerome Brunet | baacd8d | 2018-07-05 12:13:49 +0200 | [diff] [blame] | 1804 | /* |
| 1805 | * Skip CODECs which don't support the current stream |
| 1806 | * type. See soc_pcm_init_runtime_hw() for more details |
| 1807 | */ |
Kuninori Morimoto | 7afecb3 | 2018-09-18 01:28:04 +0000 | [diff] [blame] | 1808 | if (!snd_soc_dai_stream_valid(dai, stream)) |
Jerome Brunet | baacd8d | 2018-07-05 12:13:49 +0200 | [diff] [blame] | 1809 | continue; |
| 1810 | |
Kuninori Morimoto | 7afecb3 | 2018-09-18 01:28:04 +0000 | [diff] [blame] | 1811 | codec_dai_drv = dai->driver; |
Jerome Brunet | baacd8d | 2018-07-05 12:13:49 +0200 | [diff] [blame] | 1812 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 1813 | codec_stream = &codec_dai_drv->playback; |
| 1814 | else |
| 1815 | codec_stream = &codec_dai_drv->capture; |
| 1816 | |
| 1817 | *rate_min = max(*rate_min, codec_stream->rate_min); |
| 1818 | *rate_max = min_not_zero(*rate_max, |
| 1819 | codec_stream->rate_max); |
| 1820 | *rates = snd_pcm_rate_mask_intersect(*rates, |
| 1821 | codec_stream->rates); |
| 1822 | } |
| 1823 | } |
| 1824 | } |
| 1825 | |
Mark Brown | 45c0a18 | 2012-05-09 21:46:27 +0100 | [diff] [blame] | 1826 | static void dpcm_set_fe_runtime(struct snd_pcm_substream *substream) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1827 | { |
| 1828 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 1829 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 1830 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
| 1831 | struct snd_soc_dai_driver *cpu_dai_drv = cpu_dai->driver; |
| 1832 | |
Lars-Peter Clausen | 08ae9b4 | 2014-01-06 14:19:06 +0100 | [diff] [blame] | 1833 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
Jerome Brunet | 435ffb7 | 2018-07-05 12:13:48 +0200 | [diff] [blame] | 1834 | dpcm_init_runtime_hw(runtime, &cpu_dai_drv->playback); |
Lars-Peter Clausen | 08ae9b4 | 2014-01-06 14:19:06 +0100 | [diff] [blame] | 1835 | else |
Jerome Brunet | 435ffb7 | 2018-07-05 12:13:48 +0200 | [diff] [blame] | 1836 | dpcm_init_runtime_hw(runtime, &cpu_dai_drv->capture); |
Jiada Wang | f4c277b | 2018-06-20 18:25:20 +0900 | [diff] [blame] | 1837 | |
Jerome Brunet | 435ffb7 | 2018-07-05 12:13:48 +0200 | [diff] [blame] | 1838 | dpcm_runtime_merge_format(substream, &runtime->hw.formats); |
| 1839 | dpcm_runtime_merge_chan(substream, &runtime->hw.channels_min, |
| 1840 | &runtime->hw.channels_max); |
Jerome Brunet | baacd8d | 2018-07-05 12:13:49 +0200 | [diff] [blame] | 1841 | dpcm_runtime_merge_rate(substream, &runtime->hw.rates, |
| 1842 | &runtime->hw.rate_min, &runtime->hw.rate_max); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1843 | } |
| 1844 | |
Takashi Iwai | ea9d0d7 | 2014-11-04 16:52:28 +0100 | [diff] [blame] | 1845 | static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd); |
| 1846 | |
| 1847 | /* Set FE's runtime_update state; the state is protected via PCM stream lock |
| 1848 | * for avoiding the race with trigger callback. |
| 1849 | * If the state is unset and a trigger is pending while the previous operation, |
| 1850 | * process the pending trigger action here. |
| 1851 | */ |
| 1852 | static void dpcm_set_fe_update_state(struct snd_soc_pcm_runtime *fe, |
| 1853 | int stream, enum snd_soc_dpcm_update state) |
| 1854 | { |
| 1855 | struct snd_pcm_substream *substream = |
| 1856 | snd_soc_dpcm_get_substream(fe, stream); |
| 1857 | |
| 1858 | snd_pcm_stream_lock_irq(substream); |
| 1859 | if (state == SND_SOC_DPCM_UPDATE_NO && fe->dpcm[stream].trigger_pending) { |
| 1860 | dpcm_fe_dai_do_trigger(substream, |
| 1861 | fe->dpcm[stream].trigger_pending - 1); |
| 1862 | fe->dpcm[stream].trigger_pending = 0; |
| 1863 | } |
| 1864 | fe->dpcm[stream].runtime_update = state; |
| 1865 | snd_pcm_stream_unlock_irq(substream); |
| 1866 | } |
| 1867 | |
PC Liao | 906c7d6 | 2015-12-11 11:33:51 +0800 | [diff] [blame] | 1868 | static int dpcm_apply_symmetry(struct snd_pcm_substream *fe_substream, |
| 1869 | int stream) |
| 1870 | { |
| 1871 | struct snd_soc_dpcm *dpcm; |
| 1872 | struct snd_soc_pcm_runtime *fe = fe_substream->private_data; |
| 1873 | struct snd_soc_dai *fe_cpu_dai = fe->cpu_dai; |
| 1874 | int err; |
| 1875 | |
| 1876 | /* apply symmetry for FE */ |
| 1877 | if (soc_pcm_has_symmetry(fe_substream)) |
| 1878 | fe_substream->runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX; |
| 1879 | |
| 1880 | /* Symmetry only applies if we've got an active stream. */ |
| 1881 | if (fe_cpu_dai->active) { |
| 1882 | err = soc_pcm_apply_symmetry(fe_substream, fe_cpu_dai); |
| 1883 | if (err < 0) |
| 1884 | return err; |
| 1885 | } |
| 1886 | |
| 1887 | /* apply symmetry for BE */ |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 1888 | for_each_dpcm_be(fe, stream, dpcm) { |
PC Liao | 906c7d6 | 2015-12-11 11:33:51 +0800 | [diff] [blame] | 1889 | struct snd_soc_pcm_runtime *be = dpcm->be; |
| 1890 | struct snd_pcm_substream *be_substream = |
| 1891 | snd_soc_dpcm_get_substream(be, stream); |
Jerome Brunet | 6246f28 | 2019-04-01 15:03:54 +0200 | [diff] [blame] | 1892 | struct snd_soc_pcm_runtime *rtd; |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 1893 | struct snd_soc_dai *codec_dai; |
PC Liao | 906c7d6 | 2015-12-11 11:33:51 +0800 | [diff] [blame] | 1894 | int i; |
| 1895 | |
Jerome Brunet | 6246f28 | 2019-04-01 15:03:54 +0200 | [diff] [blame] | 1896 | /* A backend may not have the requested substream */ |
| 1897 | if (!be_substream) |
| 1898 | continue; |
| 1899 | |
| 1900 | rtd = be_substream->private_data; |
Jeeja KP | f117661 | 2016-09-06 14:17:55 +0530 | [diff] [blame] | 1901 | if (rtd->dai_link->be_hw_params_fixup) |
| 1902 | continue; |
| 1903 | |
PC Liao | 906c7d6 | 2015-12-11 11:33:51 +0800 | [diff] [blame] | 1904 | if (soc_pcm_has_symmetry(be_substream)) |
| 1905 | be_substream->runtime->hw.info |= SNDRV_PCM_INFO_JOINT_DUPLEX; |
| 1906 | |
| 1907 | /* Symmetry only applies if we've got an active stream. */ |
| 1908 | if (rtd->cpu_dai->active) { |
Kai Chieh Chuang | 99bcedb | 2018-05-28 10:18:19 +0800 | [diff] [blame] | 1909 | err = soc_pcm_apply_symmetry(fe_substream, |
| 1910 | rtd->cpu_dai); |
PC Liao | 906c7d6 | 2015-12-11 11:33:51 +0800 | [diff] [blame] | 1911 | if (err < 0) |
| 1912 | return err; |
| 1913 | } |
| 1914 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 1915 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
| 1916 | if (codec_dai->active) { |
Kai Chieh Chuang | 99bcedb | 2018-05-28 10:18:19 +0800 | [diff] [blame] | 1917 | err = soc_pcm_apply_symmetry(fe_substream, |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 1918 | codec_dai); |
PC Liao | 906c7d6 | 2015-12-11 11:33:51 +0800 | [diff] [blame] | 1919 | if (err < 0) |
| 1920 | return err; |
| 1921 | } |
| 1922 | } |
| 1923 | } |
| 1924 | |
| 1925 | return 0; |
| 1926 | } |
| 1927 | |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1928 | static int dpcm_fe_dai_startup(struct snd_pcm_substream *fe_substream) |
| 1929 | { |
| 1930 | struct snd_soc_pcm_runtime *fe = fe_substream->private_data; |
| 1931 | struct snd_pcm_runtime *runtime = fe_substream->runtime; |
| 1932 | int stream = fe_substream->stream, ret = 0; |
| 1933 | |
Takashi Iwai | ea9d0d7 | 2014-11-04 16:52:28 +0100 | [diff] [blame] | 1934 | dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1935 | |
| 1936 | ret = dpcm_be_dai_startup(fe, fe_substream->stream); |
| 1937 | if (ret < 0) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 1938 | dev_err(fe->dev,"ASoC: failed to start some BEs %d\n", ret); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1939 | goto be_err; |
| 1940 | } |
| 1941 | |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 1942 | dev_dbg(fe->dev, "ASoC: open FE %s\n", fe->dai_link->name); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1943 | |
| 1944 | /* start the DAI frontend */ |
| 1945 | ret = soc_pcm_open(fe_substream); |
| 1946 | if (ret < 0) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 1947 | dev_err(fe->dev,"ASoC: failed to start FE %d\n", ret); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1948 | goto unwind; |
| 1949 | } |
| 1950 | |
| 1951 | fe->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN; |
| 1952 | |
| 1953 | dpcm_set_fe_runtime(fe_substream); |
| 1954 | snd_pcm_limit_hw_rates(runtime); |
| 1955 | |
PC Liao | 906c7d6 | 2015-12-11 11:33:51 +0800 | [diff] [blame] | 1956 | ret = dpcm_apply_symmetry(fe_substream, stream); |
| 1957 | if (ret < 0) { |
| 1958 | dev_err(fe->dev, "ASoC: failed to apply dpcm symmetry %d\n", |
| 1959 | ret); |
| 1960 | goto unwind; |
| 1961 | } |
| 1962 | |
Takashi Iwai | ea9d0d7 | 2014-11-04 16:52:28 +0100 | [diff] [blame] | 1963 | dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1964 | return 0; |
| 1965 | |
| 1966 | unwind: |
| 1967 | dpcm_be_dai_startup_unwind(fe, fe_substream->stream); |
| 1968 | be_err: |
Takashi Iwai | ea9d0d7 | 2014-11-04 16:52:28 +0100 | [diff] [blame] | 1969 | dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1970 | return ret; |
| 1971 | } |
| 1972 | |
Liam Girdwood | 2360702 | 2014-01-17 17:03:55 +0000 | [diff] [blame] | 1973 | int dpcm_be_dai_shutdown(struct snd_soc_pcm_runtime *fe, int stream) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1974 | { |
| 1975 | struct snd_soc_dpcm *dpcm; |
| 1976 | |
| 1977 | /* only shutdown BEs that are either sinks or sources to this FE DAI */ |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 1978 | for_each_dpcm_be(fe, stream, dpcm) { |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1979 | |
| 1980 | struct snd_soc_pcm_runtime *be = dpcm->be; |
| 1981 | struct snd_pcm_substream *be_substream = |
| 1982 | snd_soc_dpcm_get_substream(be, stream); |
| 1983 | |
| 1984 | /* is this op for this BE ? */ |
| 1985 | if (!snd_soc_dpcm_be_can_update(fe, be, stream)) |
| 1986 | continue; |
| 1987 | |
| 1988 | if (be->dpcm[stream].users == 0) |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 1989 | dev_err(be->dev, "ASoC: no users %s at close - state %d\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 1990 | stream ? "capture" : "playback", |
| 1991 | be->dpcm[stream].state); |
| 1992 | |
| 1993 | if (--be->dpcm[stream].users != 0) |
| 1994 | continue; |
| 1995 | |
| 1996 | if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) && |
Kai Chieh Chuang | 9c0ac70 | 2018-05-28 10:18:18 +0800 | [diff] [blame] | 1997 | (be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN)) { |
| 1998 | soc_pcm_hw_free(be_substream); |
| 1999 | be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE; |
| 2000 | } |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2001 | |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2002 | dev_dbg(be->dev, "ASoC: close BE %s\n", |
å½ä¸œæž— | 94d215c | 2016-09-26 08:29:31 +0000 | [diff] [blame] | 2003 | be->dai_link->name); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2004 | |
| 2005 | soc_pcm_close(be_substream); |
| 2006 | be_substream->runtime = NULL; |
| 2007 | |
| 2008 | be->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE; |
| 2009 | } |
| 2010 | return 0; |
| 2011 | } |
| 2012 | |
| 2013 | static int dpcm_fe_dai_shutdown(struct snd_pcm_substream *substream) |
| 2014 | { |
| 2015 | struct snd_soc_pcm_runtime *fe = substream->private_data; |
| 2016 | int stream = substream->stream; |
| 2017 | |
Takashi Iwai | ea9d0d7 | 2014-11-04 16:52:28 +0100 | [diff] [blame] | 2018 | dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2019 | |
| 2020 | /* shutdown the BEs */ |
| 2021 | dpcm_be_dai_shutdown(fe, substream->stream); |
| 2022 | |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2023 | dev_dbg(fe->dev, "ASoC: close FE %s\n", fe->dai_link->name); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2024 | |
| 2025 | /* now shutdown the frontend */ |
| 2026 | soc_pcm_close(substream); |
| 2027 | |
| 2028 | /* run the stream event for each BE */ |
| 2029 | dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP); |
| 2030 | |
| 2031 | fe->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE; |
Takashi Iwai | ea9d0d7 | 2014-11-04 16:52:28 +0100 | [diff] [blame] | 2032 | dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2033 | return 0; |
| 2034 | } |
| 2035 | |
Liam Girdwood | 2360702 | 2014-01-17 17:03:55 +0000 | [diff] [blame] | 2036 | int dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2037 | { |
| 2038 | struct snd_soc_dpcm *dpcm; |
| 2039 | |
| 2040 | /* only hw_params backends that are either sinks or sources |
| 2041 | * to this frontend DAI */ |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 2042 | for_each_dpcm_be(fe, stream, dpcm) { |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2043 | |
| 2044 | struct snd_soc_pcm_runtime *be = dpcm->be; |
| 2045 | struct snd_pcm_substream *be_substream = |
| 2046 | snd_soc_dpcm_get_substream(be, stream); |
| 2047 | |
| 2048 | /* is this op for this BE ? */ |
| 2049 | if (!snd_soc_dpcm_be_can_update(fe, be, stream)) |
| 2050 | continue; |
| 2051 | |
| 2052 | /* only free hw when no longer used - check all FEs */ |
| 2053 | if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream)) |
| 2054 | continue; |
| 2055 | |
Qiao Zhou | 36fba62 | 2014-12-03 10:13:43 +0800 | [diff] [blame] | 2056 | /* do not free hw if this BE is used by other FE */ |
| 2057 | if (be->dpcm[stream].users > 1) |
| 2058 | continue; |
| 2059 | |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2060 | if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) && |
| 2061 | (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) && |
| 2062 | (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) && |
Patrick Lai | 08b2784 | 2012-12-19 19:36:02 -0800 | [diff] [blame] | 2063 | (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED) && |
Vinod Koul | 5e82d2b | 2016-02-01 22:26:40 +0530 | [diff] [blame] | 2064 | (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) && |
| 2065 | (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND)) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2066 | continue; |
| 2067 | |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2068 | dev_dbg(be->dev, "ASoC: hw_free BE %s\n", |
å½ä¸œæž— | 94d215c | 2016-09-26 08:29:31 +0000 | [diff] [blame] | 2069 | be->dai_link->name); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2070 | |
| 2071 | soc_pcm_hw_free(be_substream); |
| 2072 | |
| 2073 | be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE; |
| 2074 | } |
| 2075 | |
| 2076 | return 0; |
| 2077 | } |
| 2078 | |
Mark Brown | 45c0a18 | 2012-05-09 21:46:27 +0100 | [diff] [blame] | 2079 | static int dpcm_fe_dai_hw_free(struct snd_pcm_substream *substream) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2080 | { |
| 2081 | struct snd_soc_pcm_runtime *fe = substream->private_data; |
| 2082 | int err, stream = substream->stream; |
| 2083 | |
| 2084 | mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME); |
Takashi Iwai | ea9d0d7 | 2014-11-04 16:52:28 +0100 | [diff] [blame] | 2085 | dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2086 | |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2087 | dev_dbg(fe->dev, "ASoC: hw_free FE %s\n", fe->dai_link->name); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2088 | |
| 2089 | /* call hw_free on the frontend */ |
| 2090 | err = soc_pcm_hw_free(substream); |
| 2091 | if (err < 0) |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2092 | dev_err(fe->dev,"ASoC: hw_free FE %s failed\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2093 | fe->dai_link->name); |
| 2094 | |
| 2095 | /* only hw_params backends that are either sinks or sources |
| 2096 | * to this frontend DAI */ |
| 2097 | err = dpcm_be_dai_hw_free(fe, stream); |
| 2098 | |
| 2099 | fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_FREE; |
Takashi Iwai | ea9d0d7 | 2014-11-04 16:52:28 +0100 | [diff] [blame] | 2100 | dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2101 | |
| 2102 | mutex_unlock(&fe->card->mutex); |
| 2103 | return 0; |
| 2104 | } |
| 2105 | |
Liam Girdwood | 2360702 | 2014-01-17 17:03:55 +0000 | [diff] [blame] | 2106 | int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime *fe, int stream) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2107 | { |
| 2108 | struct snd_soc_dpcm *dpcm; |
| 2109 | int ret; |
| 2110 | |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 2111 | for_each_dpcm_be(fe, stream, dpcm) { |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2112 | |
| 2113 | struct snd_soc_pcm_runtime *be = dpcm->be; |
| 2114 | struct snd_pcm_substream *be_substream = |
| 2115 | snd_soc_dpcm_get_substream(be, stream); |
| 2116 | |
| 2117 | /* is this op for this BE ? */ |
| 2118 | if (!snd_soc_dpcm_be_can_update(fe, be, stream)) |
| 2119 | continue; |
| 2120 | |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2121 | /* copy params for each dpcm */ |
| 2122 | memcpy(&dpcm->hw_params, &fe->dpcm[stream].hw_params, |
| 2123 | sizeof(struct snd_pcm_hw_params)); |
| 2124 | |
| 2125 | /* perform any hw_params fixups */ |
| 2126 | if (be->dai_link->be_hw_params_fixup) { |
| 2127 | ret = be->dai_link->be_hw_params_fixup(be, |
| 2128 | &dpcm->hw_params); |
| 2129 | if (ret < 0) { |
| 2130 | dev_err(be->dev, |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2131 | "ASoC: hw_params BE fixup failed %d\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2132 | ret); |
| 2133 | goto unwind; |
| 2134 | } |
| 2135 | } |
| 2136 | |
Libin Yang | ae061d2 | 2019-04-19 09:53:12 +0800 | [diff] [blame] | 2137 | /* copy the fixed-up hw params for BE dai */ |
| 2138 | memcpy(&be->dpcm[stream].hw_params, &dpcm->hw_params, |
| 2139 | sizeof(struct snd_pcm_hw_params)); |
| 2140 | |
Kuninori Morimoto | b0639bd | 2016-01-21 01:47:12 +0000 | [diff] [blame] | 2141 | /* only allow hw_params() if no connected FEs are running */ |
| 2142 | if (!snd_soc_dpcm_can_be_params(fe, be, stream)) |
| 2143 | continue; |
| 2144 | |
| 2145 | if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) && |
| 2146 | (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) && |
| 2147 | (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE)) |
| 2148 | continue; |
| 2149 | |
| 2150 | dev_dbg(be->dev, "ASoC: hw_params BE %s\n", |
å½ä¸œæž— | 94d215c | 2016-09-26 08:29:31 +0000 | [diff] [blame] | 2151 | be->dai_link->name); |
Kuninori Morimoto | b0639bd | 2016-01-21 01:47:12 +0000 | [diff] [blame] | 2152 | |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2153 | ret = soc_pcm_hw_params(be_substream, &dpcm->hw_params); |
| 2154 | if (ret < 0) { |
| 2155 | dev_err(dpcm->be->dev, |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2156 | "ASoC: hw_params BE failed %d\n", ret); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2157 | goto unwind; |
| 2158 | } |
| 2159 | |
| 2160 | be->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS; |
| 2161 | } |
| 2162 | return 0; |
| 2163 | |
| 2164 | unwind: |
| 2165 | /* disable any enabled and non active backends */ |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 2166 | for_each_dpcm_be_rollback(fe, stream, dpcm) { |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2167 | struct snd_soc_pcm_runtime *be = dpcm->be; |
| 2168 | struct snd_pcm_substream *be_substream = |
| 2169 | snd_soc_dpcm_get_substream(be, stream); |
| 2170 | |
| 2171 | if (!snd_soc_dpcm_be_can_update(fe, be, stream)) |
| 2172 | continue; |
| 2173 | |
| 2174 | /* only allow hw_free() if no connected FEs are running */ |
| 2175 | if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream)) |
| 2176 | continue; |
| 2177 | |
| 2178 | if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_OPEN) && |
| 2179 | (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) && |
| 2180 | (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) && |
| 2181 | (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP)) |
| 2182 | continue; |
| 2183 | |
| 2184 | soc_pcm_hw_free(be_substream); |
| 2185 | } |
| 2186 | |
| 2187 | return ret; |
| 2188 | } |
| 2189 | |
Mark Brown | 45c0a18 | 2012-05-09 21:46:27 +0100 | [diff] [blame] | 2190 | static int dpcm_fe_dai_hw_params(struct snd_pcm_substream *substream, |
| 2191 | struct snd_pcm_hw_params *params) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2192 | { |
| 2193 | struct snd_soc_pcm_runtime *fe = substream->private_data; |
| 2194 | int ret, stream = substream->stream; |
| 2195 | |
| 2196 | mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME); |
Takashi Iwai | ea9d0d7 | 2014-11-04 16:52:28 +0100 | [diff] [blame] | 2197 | dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2198 | |
| 2199 | memcpy(&fe->dpcm[substream->stream].hw_params, params, |
| 2200 | sizeof(struct snd_pcm_hw_params)); |
| 2201 | ret = dpcm_be_dai_hw_params(fe, substream->stream); |
| 2202 | if (ret < 0) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2203 | dev_err(fe->dev,"ASoC: hw_params BE failed %d\n", ret); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2204 | goto out; |
| 2205 | } |
| 2206 | |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2207 | dev_dbg(fe->dev, "ASoC: hw_params FE %s rate %d chan %x fmt %d\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2208 | fe->dai_link->name, params_rate(params), |
| 2209 | params_channels(params), params_format(params)); |
| 2210 | |
| 2211 | /* call hw_params on the frontend */ |
| 2212 | ret = soc_pcm_hw_params(substream, params); |
| 2213 | if (ret < 0) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2214 | dev_err(fe->dev,"ASoC: hw_params FE failed %d\n", ret); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2215 | dpcm_be_dai_hw_free(fe, stream); |
| 2216 | } else |
| 2217 | fe->dpcm[stream].state = SND_SOC_DPCM_STATE_HW_PARAMS; |
| 2218 | |
| 2219 | out: |
Takashi Iwai | ea9d0d7 | 2014-11-04 16:52:28 +0100 | [diff] [blame] | 2220 | dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2221 | mutex_unlock(&fe->card->mutex); |
| 2222 | return ret; |
| 2223 | } |
| 2224 | |
| 2225 | static int dpcm_do_trigger(struct snd_soc_dpcm *dpcm, |
| 2226 | struct snd_pcm_substream *substream, int cmd) |
| 2227 | { |
| 2228 | int ret; |
| 2229 | |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2230 | dev_dbg(dpcm->be->dev, "ASoC: trigger BE %s cmd %d\n", |
å½ä¸œæž— | 94d215c | 2016-09-26 08:29:31 +0000 | [diff] [blame] | 2231 | dpcm->be->dai_link->name, cmd); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2232 | |
| 2233 | ret = soc_pcm_trigger(substream, cmd); |
| 2234 | if (ret < 0) |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2235 | dev_err(dpcm->be->dev,"ASoC: trigger BE failed %d\n", ret); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2236 | |
| 2237 | return ret; |
| 2238 | } |
| 2239 | |
Liam Girdwood | 2360702 | 2014-01-17 17:03:55 +0000 | [diff] [blame] | 2240 | int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime *fe, int stream, |
Mark Brown | 45c0a18 | 2012-05-09 21:46:27 +0100 | [diff] [blame] | 2241 | int cmd) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2242 | { |
| 2243 | struct snd_soc_dpcm *dpcm; |
| 2244 | int ret = 0; |
| 2245 | |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 2246 | for_each_dpcm_be(fe, stream, dpcm) { |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2247 | |
| 2248 | struct snd_soc_pcm_runtime *be = dpcm->be; |
| 2249 | struct snd_pcm_substream *be_substream = |
| 2250 | snd_soc_dpcm_get_substream(be, stream); |
| 2251 | |
| 2252 | /* is this op for this BE ? */ |
| 2253 | if (!snd_soc_dpcm_be_can_update(fe, be, stream)) |
| 2254 | continue; |
| 2255 | |
| 2256 | switch (cmd) { |
| 2257 | case SNDRV_PCM_TRIGGER_START: |
| 2258 | if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) && |
| 2259 | (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP)) |
| 2260 | continue; |
| 2261 | |
| 2262 | ret = dpcm_do_trigger(dpcm, be_substream, cmd); |
| 2263 | if (ret) |
| 2264 | return ret; |
| 2265 | |
| 2266 | be->dpcm[stream].state = SND_SOC_DPCM_STATE_START; |
| 2267 | break; |
| 2268 | case SNDRV_PCM_TRIGGER_RESUME: |
| 2269 | if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND)) |
| 2270 | continue; |
| 2271 | |
| 2272 | ret = dpcm_do_trigger(dpcm, be_substream, cmd); |
| 2273 | if (ret) |
| 2274 | return ret; |
| 2275 | |
| 2276 | be->dpcm[stream].state = SND_SOC_DPCM_STATE_START; |
| 2277 | break; |
| 2278 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: |
| 2279 | if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED)) |
| 2280 | continue; |
| 2281 | |
| 2282 | ret = dpcm_do_trigger(dpcm, be_substream, cmd); |
| 2283 | if (ret) |
| 2284 | return ret; |
| 2285 | |
| 2286 | be->dpcm[stream].state = SND_SOC_DPCM_STATE_START; |
| 2287 | break; |
| 2288 | case SNDRV_PCM_TRIGGER_STOP: |
| 2289 | if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START) |
| 2290 | continue; |
| 2291 | |
| 2292 | if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream)) |
| 2293 | continue; |
| 2294 | |
| 2295 | ret = dpcm_do_trigger(dpcm, be_substream, cmd); |
| 2296 | if (ret) |
| 2297 | return ret; |
| 2298 | |
| 2299 | be->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP; |
| 2300 | break; |
| 2301 | case SNDRV_PCM_TRIGGER_SUSPEND: |
Nicolin Chen | 868a6ca | 2014-05-12 20:12:05 +0800 | [diff] [blame] | 2302 | if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2303 | continue; |
| 2304 | |
| 2305 | if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream)) |
| 2306 | continue; |
| 2307 | |
| 2308 | ret = dpcm_do_trigger(dpcm, be_substream, cmd); |
| 2309 | if (ret) |
| 2310 | return ret; |
| 2311 | |
| 2312 | be->dpcm[stream].state = SND_SOC_DPCM_STATE_SUSPEND; |
| 2313 | break; |
| 2314 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: |
| 2315 | if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START) |
| 2316 | continue; |
| 2317 | |
| 2318 | if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream)) |
| 2319 | continue; |
| 2320 | |
| 2321 | ret = dpcm_do_trigger(dpcm, be_substream, cmd); |
| 2322 | if (ret) |
| 2323 | return ret; |
| 2324 | |
| 2325 | be->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED; |
| 2326 | break; |
| 2327 | } |
| 2328 | } |
| 2329 | |
| 2330 | return ret; |
| 2331 | } |
| 2332 | EXPORT_SYMBOL_GPL(dpcm_be_dai_trigger); |
| 2333 | |
Ranjani Sridharan | acbf277 | 2019-11-04 14:48:11 -0800 | [diff] [blame] | 2334 | static int dpcm_dai_trigger_fe_be(struct snd_pcm_substream *substream, |
| 2335 | int cmd, bool fe_first) |
| 2336 | { |
| 2337 | struct snd_soc_pcm_runtime *fe = substream->private_data; |
| 2338 | int ret; |
| 2339 | |
| 2340 | /* call trigger on the frontend before the backend. */ |
| 2341 | if (fe_first) { |
| 2342 | dev_dbg(fe->dev, "ASoC: pre trigger FE %s cmd %d\n", |
| 2343 | fe->dai_link->name, cmd); |
| 2344 | |
| 2345 | ret = soc_pcm_trigger(substream, cmd); |
| 2346 | if (ret < 0) |
| 2347 | return ret; |
| 2348 | |
| 2349 | ret = dpcm_be_dai_trigger(fe, substream->stream, cmd); |
| 2350 | return ret; |
| 2351 | } |
| 2352 | |
| 2353 | /* call trigger on the frontend after the backend. */ |
| 2354 | ret = dpcm_be_dai_trigger(fe, substream->stream, cmd); |
| 2355 | if (ret < 0) |
| 2356 | return ret; |
| 2357 | |
| 2358 | dev_dbg(fe->dev, "ASoC: post trigger FE %s cmd %d\n", |
| 2359 | fe->dai_link->name, cmd); |
| 2360 | |
| 2361 | ret = soc_pcm_trigger(substream, cmd); |
| 2362 | |
| 2363 | return ret; |
| 2364 | } |
| 2365 | |
Takashi Iwai | ea9d0d7 | 2014-11-04 16:52:28 +0100 | [diff] [blame] | 2366 | static int dpcm_fe_dai_do_trigger(struct snd_pcm_substream *substream, int cmd) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2367 | { |
| 2368 | struct snd_soc_pcm_runtime *fe = substream->private_data; |
Ranjani Sridharan | acbf277 | 2019-11-04 14:48:11 -0800 | [diff] [blame] | 2369 | int stream = substream->stream; |
| 2370 | int ret = 0; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2371 | enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream]; |
| 2372 | |
| 2373 | fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE; |
| 2374 | |
| 2375 | switch (trigger) { |
| 2376 | case SND_SOC_DPCM_TRIGGER_PRE: |
Ranjani Sridharan | acbf277 | 2019-11-04 14:48:11 -0800 | [diff] [blame] | 2377 | switch (cmd) { |
| 2378 | case SNDRV_PCM_TRIGGER_START: |
| 2379 | case SNDRV_PCM_TRIGGER_RESUME: |
| 2380 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: |
| 2381 | ret = dpcm_dai_trigger_fe_be(substream, cmd, true); |
| 2382 | break; |
| 2383 | case SNDRV_PCM_TRIGGER_STOP: |
| 2384 | case SNDRV_PCM_TRIGGER_SUSPEND: |
| 2385 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: |
| 2386 | ret = dpcm_dai_trigger_fe_be(substream, cmd, false); |
| 2387 | break; |
| 2388 | default: |
| 2389 | ret = -EINVAL; |
| 2390 | break; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2391 | } |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2392 | break; |
| 2393 | case SND_SOC_DPCM_TRIGGER_POST: |
Ranjani Sridharan | acbf277 | 2019-11-04 14:48:11 -0800 | [diff] [blame] | 2394 | switch (cmd) { |
| 2395 | case SNDRV_PCM_TRIGGER_START: |
| 2396 | case SNDRV_PCM_TRIGGER_RESUME: |
| 2397 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: |
| 2398 | ret = dpcm_dai_trigger_fe_be(substream, cmd, false); |
| 2399 | break; |
| 2400 | case SNDRV_PCM_TRIGGER_STOP: |
| 2401 | case SNDRV_PCM_TRIGGER_SUSPEND: |
| 2402 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: |
| 2403 | ret = dpcm_dai_trigger_fe_be(substream, cmd, true); |
| 2404 | break; |
| 2405 | default: |
| 2406 | ret = -EINVAL; |
| 2407 | break; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2408 | } |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2409 | break; |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 2410 | case SND_SOC_DPCM_TRIGGER_BESPOKE: |
| 2411 | /* bespoke trigger() - handles both FE and BEs */ |
| 2412 | |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2413 | dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd %d\n", |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 2414 | fe->dai_link->name, cmd); |
| 2415 | |
| 2416 | ret = soc_pcm_bespoke_trigger(substream, cmd); |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 2417 | break; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2418 | default: |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2419 | dev_err(fe->dev, "ASoC: invalid trigger cmd %d for %s\n", cmd, |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2420 | fe->dai_link->name); |
| 2421 | ret = -EINVAL; |
| 2422 | goto out; |
| 2423 | } |
| 2424 | |
Ranjani Sridharan | acbf277 | 2019-11-04 14:48:11 -0800 | [diff] [blame] | 2425 | if (ret < 0) { |
| 2426 | dev_err(fe->dev, "ASoC: trigger FE cmd: %d failed: %d\n", |
| 2427 | cmd, ret); |
| 2428 | goto out; |
| 2429 | } |
| 2430 | |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2431 | switch (cmd) { |
| 2432 | case SNDRV_PCM_TRIGGER_START: |
| 2433 | case SNDRV_PCM_TRIGGER_RESUME: |
| 2434 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: |
| 2435 | fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START; |
| 2436 | break; |
| 2437 | case SNDRV_PCM_TRIGGER_STOP: |
| 2438 | case SNDRV_PCM_TRIGGER_SUSPEND: |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2439 | fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP; |
| 2440 | break; |
Patrick Lai | 9f169b9 | 2016-12-31 22:44:39 -0800 | [diff] [blame] | 2441 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: |
| 2442 | fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED; |
| 2443 | break; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2444 | } |
| 2445 | |
| 2446 | out: |
| 2447 | fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO; |
| 2448 | return ret; |
| 2449 | } |
| 2450 | |
Takashi Iwai | ea9d0d7 | 2014-11-04 16:52:28 +0100 | [diff] [blame] | 2451 | static int dpcm_fe_dai_trigger(struct snd_pcm_substream *substream, int cmd) |
| 2452 | { |
| 2453 | struct snd_soc_pcm_runtime *fe = substream->private_data; |
| 2454 | int stream = substream->stream; |
| 2455 | |
| 2456 | /* if FE's runtime_update is already set, we're in race; |
| 2457 | * process this trigger later at exit |
| 2458 | */ |
| 2459 | if (fe->dpcm[stream].runtime_update != SND_SOC_DPCM_UPDATE_NO) { |
| 2460 | fe->dpcm[stream].trigger_pending = cmd + 1; |
| 2461 | return 0; /* delayed, assuming it's successful */ |
| 2462 | } |
| 2463 | |
| 2464 | /* we're alone, let's trigger */ |
| 2465 | return dpcm_fe_dai_do_trigger(substream, cmd); |
| 2466 | } |
| 2467 | |
Liam Girdwood | 2360702 | 2014-01-17 17:03:55 +0000 | [diff] [blame] | 2468 | int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime *fe, int stream) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2469 | { |
| 2470 | struct snd_soc_dpcm *dpcm; |
| 2471 | int ret = 0; |
| 2472 | |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 2473 | for_each_dpcm_be(fe, stream, dpcm) { |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2474 | |
| 2475 | struct snd_soc_pcm_runtime *be = dpcm->be; |
| 2476 | struct snd_pcm_substream *be_substream = |
| 2477 | snd_soc_dpcm_get_substream(be, stream); |
| 2478 | |
| 2479 | /* is this op for this BE ? */ |
| 2480 | if (!snd_soc_dpcm_be_can_update(fe, be, stream)) |
| 2481 | continue; |
| 2482 | |
| 2483 | if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) && |
Koro Chen | 95f444d | 2015-10-28 10:15:34 +0800 | [diff] [blame] | 2484 | (be->dpcm[stream].state != SND_SOC_DPCM_STATE_STOP) && |
Libin Yang | 5087a8f | 2019-05-08 10:32:41 +0800 | [diff] [blame] | 2485 | (be->dpcm[stream].state != SND_SOC_DPCM_STATE_SUSPEND) && |
| 2486 | (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PAUSED)) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2487 | continue; |
| 2488 | |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2489 | dev_dbg(be->dev, "ASoC: prepare BE %s\n", |
å½ä¸œæž— | 94d215c | 2016-09-26 08:29:31 +0000 | [diff] [blame] | 2490 | be->dai_link->name); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2491 | |
| 2492 | ret = soc_pcm_prepare(be_substream); |
| 2493 | if (ret < 0) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2494 | dev_err(be->dev, "ASoC: backend prepare failed %d\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2495 | ret); |
| 2496 | break; |
| 2497 | } |
| 2498 | |
| 2499 | be->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE; |
| 2500 | } |
| 2501 | return ret; |
| 2502 | } |
| 2503 | |
Mark Brown | 45c0a18 | 2012-05-09 21:46:27 +0100 | [diff] [blame] | 2504 | static int dpcm_fe_dai_prepare(struct snd_pcm_substream *substream) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2505 | { |
| 2506 | struct snd_soc_pcm_runtime *fe = substream->private_data; |
| 2507 | int stream = substream->stream, ret = 0; |
| 2508 | |
| 2509 | mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME); |
| 2510 | |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2511 | dev_dbg(fe->dev, "ASoC: prepare FE %s\n", fe->dai_link->name); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2512 | |
Takashi Iwai | ea9d0d7 | 2014-11-04 16:52:28 +0100 | [diff] [blame] | 2513 | dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_FE); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2514 | |
| 2515 | /* there is no point preparing this FE if there are no BEs */ |
| 2516 | if (list_empty(&fe->dpcm[stream].be_clients)) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2517 | dev_err(fe->dev, "ASoC: no backend DAIs enabled for %s\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2518 | fe->dai_link->name); |
| 2519 | ret = -EINVAL; |
| 2520 | goto out; |
| 2521 | } |
| 2522 | |
| 2523 | ret = dpcm_be_dai_prepare(fe, substream->stream); |
| 2524 | if (ret < 0) |
| 2525 | goto out; |
| 2526 | |
| 2527 | /* call prepare on the frontend */ |
| 2528 | ret = soc_pcm_prepare(substream); |
| 2529 | if (ret < 0) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2530 | dev_err(fe->dev,"ASoC: prepare FE %s failed\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2531 | fe->dai_link->name); |
| 2532 | goto out; |
| 2533 | } |
| 2534 | |
| 2535 | /* run the stream event for each BE */ |
| 2536 | dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_START); |
| 2537 | fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE; |
| 2538 | |
| 2539 | out: |
Takashi Iwai | ea9d0d7 | 2014-11-04 16:52:28 +0100 | [diff] [blame] | 2540 | dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2541 | mutex_unlock(&fe->card->mutex); |
| 2542 | |
| 2543 | return ret; |
| 2544 | } |
| 2545 | |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2546 | static int dpcm_run_update_shutdown(struct snd_soc_pcm_runtime *fe, int stream) |
| 2547 | { |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 2548 | struct snd_pcm_substream *substream = |
| 2549 | snd_soc_dpcm_get_substream(fe, stream); |
| 2550 | enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream]; |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2551 | int err; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2552 | |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2553 | dev_dbg(fe->dev, "ASoC: runtime %s close on FE %s\n", |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2554 | stream ? "capture" : "playback", fe->dai_link->name); |
| 2555 | |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 2556 | if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) { |
| 2557 | /* call bespoke trigger - FE takes care of all BE triggers */ |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2558 | dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd stop\n", |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 2559 | fe->dai_link->name); |
| 2560 | |
| 2561 | err = soc_pcm_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_STOP); |
| 2562 | if (err < 0) |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2563 | dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err); |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 2564 | } else { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2565 | dev_dbg(fe->dev, "ASoC: trigger FE %s cmd stop\n", |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 2566 | fe->dai_link->name); |
| 2567 | |
| 2568 | err = dpcm_be_dai_trigger(fe, stream, SNDRV_PCM_TRIGGER_STOP); |
| 2569 | if (err < 0) |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2570 | dev_err(fe->dev,"ASoC: trigger FE failed %d\n", err); |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 2571 | } |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2572 | |
| 2573 | err = dpcm_be_dai_hw_free(fe, stream); |
| 2574 | if (err < 0) |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2575 | dev_err(fe->dev,"ASoC: hw_free FE failed %d\n", err); |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2576 | |
| 2577 | err = dpcm_be_dai_shutdown(fe, stream); |
| 2578 | if (err < 0) |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2579 | dev_err(fe->dev,"ASoC: shutdown FE failed %d\n", err); |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2580 | |
| 2581 | /* run the stream event for each BE */ |
| 2582 | dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP); |
| 2583 | |
| 2584 | return 0; |
| 2585 | } |
| 2586 | |
| 2587 | static int dpcm_run_update_startup(struct snd_soc_pcm_runtime *fe, int stream) |
| 2588 | { |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 2589 | struct snd_pcm_substream *substream = |
| 2590 | snd_soc_dpcm_get_substream(fe, stream); |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2591 | struct snd_soc_dpcm *dpcm; |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 2592 | enum snd_soc_dpcm_trigger trigger = fe->dai_link->trigger[stream]; |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2593 | int ret; |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 2594 | unsigned long flags; |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2595 | |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2596 | dev_dbg(fe->dev, "ASoC: runtime %s open on FE %s\n", |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2597 | stream ? "capture" : "playback", fe->dai_link->name); |
| 2598 | |
| 2599 | /* Only start the BE if the FE is ready */ |
| 2600 | if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_FREE || |
| 2601 | fe->dpcm[stream].state == SND_SOC_DPCM_STATE_CLOSE) |
| 2602 | return -EINVAL; |
| 2603 | |
| 2604 | /* startup must always be called for new BEs */ |
| 2605 | ret = dpcm_be_dai_startup(fe, stream); |
Dan Carpenter | fffc0ca | 2013-01-10 11:59:57 +0300 | [diff] [blame] | 2606 | if (ret < 0) |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2607 | goto disconnect; |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2608 | |
| 2609 | /* keep going if FE state is > open */ |
| 2610 | if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_OPEN) |
| 2611 | return 0; |
| 2612 | |
| 2613 | ret = dpcm_be_dai_hw_params(fe, stream); |
Dan Carpenter | fffc0ca | 2013-01-10 11:59:57 +0300 | [diff] [blame] | 2614 | if (ret < 0) |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2615 | goto close; |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2616 | |
| 2617 | /* keep going if FE state is > hw_params */ |
| 2618 | if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_HW_PARAMS) |
| 2619 | return 0; |
| 2620 | |
| 2621 | |
| 2622 | ret = dpcm_be_dai_prepare(fe, stream); |
Dan Carpenter | fffc0ca | 2013-01-10 11:59:57 +0300 | [diff] [blame] | 2623 | if (ret < 0) |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2624 | goto hw_free; |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2625 | |
| 2626 | /* run the stream event for each BE */ |
| 2627 | dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_NOP); |
| 2628 | |
| 2629 | /* keep going if FE state is > prepare */ |
| 2630 | if (fe->dpcm[stream].state == SND_SOC_DPCM_STATE_PREPARE || |
| 2631 | fe->dpcm[stream].state == SND_SOC_DPCM_STATE_STOP) |
| 2632 | return 0; |
| 2633 | |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 2634 | if (trigger == SND_SOC_DPCM_TRIGGER_BESPOKE) { |
| 2635 | /* call trigger on the frontend - FE takes care of all BE triggers */ |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2636 | dev_dbg(fe->dev, "ASoC: bespoke trigger FE %s cmd start\n", |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 2637 | fe->dai_link->name); |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2638 | |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 2639 | ret = soc_pcm_bespoke_trigger(substream, SNDRV_PCM_TRIGGER_START); |
| 2640 | if (ret < 0) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2641 | dev_err(fe->dev,"ASoC: bespoke trigger FE failed %d\n", ret); |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 2642 | goto hw_free; |
| 2643 | } |
| 2644 | } else { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2645 | dev_dbg(fe->dev, "ASoC: trigger FE %s cmd start\n", |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 2646 | fe->dai_link->name); |
| 2647 | |
| 2648 | ret = dpcm_be_dai_trigger(fe, stream, |
| 2649 | SNDRV_PCM_TRIGGER_START); |
| 2650 | if (ret < 0) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2651 | dev_err(fe->dev,"ASoC: trigger FE failed %d\n", ret); |
Liam Girdwood | 07bf84a | 2012-04-25 12:12:52 +0100 | [diff] [blame] | 2652 | goto hw_free; |
| 2653 | } |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2654 | } |
| 2655 | |
| 2656 | return 0; |
| 2657 | |
| 2658 | hw_free: |
| 2659 | dpcm_be_dai_hw_free(fe, stream); |
| 2660 | close: |
| 2661 | dpcm_be_dai_shutdown(fe, stream); |
| 2662 | disconnect: |
| 2663 | /* disconnect any non started BEs */ |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 2664 | spin_lock_irqsave(&fe->card->dpcm_lock, flags); |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 2665 | for_each_dpcm_be(fe, stream, dpcm) { |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2666 | struct snd_soc_pcm_runtime *be = dpcm->be; |
| 2667 | if (be->dpcm[stream].state != SND_SOC_DPCM_STATE_START) |
| 2668 | dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE; |
| 2669 | } |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 2670 | spin_unlock_irqrestore(&fe->card->dpcm_lock, flags); |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2671 | |
| 2672 | return ret; |
| 2673 | } |
| 2674 | |
| 2675 | static int dpcm_run_new_update(struct snd_soc_pcm_runtime *fe, int stream) |
| 2676 | { |
| 2677 | int ret; |
| 2678 | |
Takashi Iwai | ea9d0d7 | 2014-11-04 16:52:28 +0100 | [diff] [blame] | 2679 | dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE); |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2680 | ret = dpcm_run_update_startup(fe, stream); |
| 2681 | if (ret < 0) |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2682 | dev_err(fe->dev, "ASoC: failed to startup some BEs\n"); |
Takashi Iwai | ea9d0d7 | 2014-11-04 16:52:28 +0100 | [diff] [blame] | 2683 | dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2684 | |
| 2685 | return ret; |
| 2686 | } |
| 2687 | |
| 2688 | static int dpcm_run_old_update(struct snd_soc_pcm_runtime *fe, int stream) |
| 2689 | { |
| 2690 | int ret; |
| 2691 | |
Takashi Iwai | ea9d0d7 | 2014-11-04 16:52:28 +0100 | [diff] [blame] | 2692 | dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_BE); |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2693 | ret = dpcm_run_update_shutdown(fe, stream); |
| 2694 | if (ret < 0) |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2695 | dev_err(fe->dev, "ASoC: failed to shutdown some BEs\n"); |
Takashi Iwai | ea9d0d7 | 2014-11-04 16:52:28 +0100 | [diff] [blame] | 2696 | dpcm_set_fe_update_state(fe, stream, SND_SOC_DPCM_UPDATE_NO); |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2697 | |
| 2698 | return ret; |
| 2699 | } |
| 2700 | |
Jerome Brunet | de15d7ff | 2018-06-26 12:07:25 +0200 | [diff] [blame] | 2701 | static int soc_dpcm_fe_runtime_update(struct snd_soc_pcm_runtime *fe, int new) |
| 2702 | { |
| 2703 | struct snd_soc_dapm_widget_list *list; |
| 2704 | int count, paths; |
| 2705 | |
| 2706 | if (!fe->dai_link->dynamic) |
| 2707 | return 0; |
| 2708 | |
| 2709 | /* only check active links */ |
| 2710 | if (!fe->cpu_dai->active) |
| 2711 | return 0; |
| 2712 | |
| 2713 | /* DAPM sync will call this to update DSP paths */ |
| 2714 | dev_dbg(fe->dev, "ASoC: DPCM %s runtime update for FE %s\n", |
| 2715 | new ? "new" : "old", fe->dai_link->name); |
| 2716 | |
| 2717 | /* skip if FE doesn't have playback capability */ |
Kuninori Morimoto | 467fece | 2019-07-22 10:36:16 +0900 | [diff] [blame] | 2718 | if (!snd_soc_dai_stream_valid(fe->cpu_dai, SNDRV_PCM_STREAM_PLAYBACK) || |
| 2719 | !snd_soc_dai_stream_valid(fe->codec_dai, SNDRV_PCM_STREAM_PLAYBACK)) |
Jerome Brunet | de15d7ff | 2018-06-26 12:07:25 +0200 | [diff] [blame] | 2720 | goto capture; |
| 2721 | |
| 2722 | /* skip if FE isn't currently playing */ |
| 2723 | if (!fe->cpu_dai->playback_active || !fe->codec_dai->playback_active) |
| 2724 | goto capture; |
| 2725 | |
| 2726 | paths = dpcm_path_get(fe, SNDRV_PCM_STREAM_PLAYBACK, &list); |
| 2727 | if (paths < 0) { |
| 2728 | dev_warn(fe->dev, "ASoC: %s no valid %s path\n", |
| 2729 | fe->dai_link->name, "playback"); |
| 2730 | return paths; |
| 2731 | } |
| 2732 | |
| 2733 | /* update any playback paths */ |
| 2734 | count = dpcm_process_paths(fe, SNDRV_PCM_STREAM_PLAYBACK, &list, new); |
| 2735 | if (count) { |
| 2736 | if (new) |
| 2737 | dpcm_run_new_update(fe, SNDRV_PCM_STREAM_PLAYBACK); |
| 2738 | else |
| 2739 | dpcm_run_old_update(fe, SNDRV_PCM_STREAM_PLAYBACK); |
| 2740 | |
| 2741 | dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_PLAYBACK); |
| 2742 | dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_PLAYBACK); |
| 2743 | } |
| 2744 | |
| 2745 | dpcm_path_put(&list); |
| 2746 | |
| 2747 | capture: |
| 2748 | /* skip if FE doesn't have capture capability */ |
Kuninori Morimoto | 467fece | 2019-07-22 10:36:16 +0900 | [diff] [blame] | 2749 | if (!snd_soc_dai_stream_valid(fe->cpu_dai, SNDRV_PCM_STREAM_CAPTURE) || |
| 2750 | !snd_soc_dai_stream_valid(fe->codec_dai, SNDRV_PCM_STREAM_CAPTURE)) |
Jerome Brunet | de15d7ff | 2018-06-26 12:07:25 +0200 | [diff] [blame] | 2751 | return 0; |
| 2752 | |
| 2753 | /* skip if FE isn't currently capturing */ |
| 2754 | if (!fe->cpu_dai->capture_active || !fe->codec_dai->capture_active) |
| 2755 | return 0; |
| 2756 | |
| 2757 | paths = dpcm_path_get(fe, SNDRV_PCM_STREAM_CAPTURE, &list); |
| 2758 | if (paths < 0) { |
| 2759 | dev_warn(fe->dev, "ASoC: %s no valid %s path\n", |
| 2760 | fe->dai_link->name, "capture"); |
| 2761 | return paths; |
| 2762 | } |
| 2763 | |
| 2764 | /* update any old capture paths */ |
| 2765 | count = dpcm_process_paths(fe, SNDRV_PCM_STREAM_CAPTURE, &list, new); |
| 2766 | if (count) { |
| 2767 | if (new) |
| 2768 | dpcm_run_new_update(fe, SNDRV_PCM_STREAM_CAPTURE); |
| 2769 | else |
| 2770 | dpcm_run_old_update(fe, SNDRV_PCM_STREAM_CAPTURE); |
| 2771 | |
| 2772 | dpcm_clear_pending_state(fe, SNDRV_PCM_STREAM_CAPTURE); |
| 2773 | dpcm_be_disconnect(fe, SNDRV_PCM_STREAM_CAPTURE); |
| 2774 | } |
| 2775 | |
| 2776 | dpcm_path_put(&list); |
| 2777 | |
| 2778 | return 0; |
| 2779 | } |
| 2780 | |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2781 | /* Called by DAPM mixer/mux changes to update audio routing between PCMs and |
| 2782 | * any DAI links. |
| 2783 | */ |
Lars-Peter Clausen | c3f48ae | 2013-07-24 15:27:36 +0200 | [diff] [blame] | 2784 | int soc_dpcm_runtime_update(struct snd_soc_card *card) |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2785 | { |
Mengdong Lin | 1a49798 | 2015-11-18 02:34:11 -0500 | [diff] [blame] | 2786 | struct snd_soc_pcm_runtime *fe; |
Jerome Brunet | de15d7ff | 2018-06-26 12:07:25 +0200 | [diff] [blame] | 2787 | int ret = 0; |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2788 | |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2789 | mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_RUNTIME); |
Jerome Brunet | de15d7ff | 2018-06-26 12:07:25 +0200 | [diff] [blame] | 2790 | /* shutdown all old paths first */ |
Kuninori Morimoto | bcb1fd1 | 2018-09-18 01:29:35 +0000 | [diff] [blame] | 2791 | for_each_card_rtds(card, fe) { |
Jerome Brunet | de15d7ff | 2018-06-26 12:07:25 +0200 | [diff] [blame] | 2792 | ret = soc_dpcm_fe_runtime_update(fe, 0); |
| 2793 | if (ret) |
| 2794 | goto out; |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2795 | } |
| 2796 | |
Jerome Brunet | de15d7ff | 2018-06-26 12:07:25 +0200 | [diff] [blame] | 2797 | /* bring new paths up */ |
Kuninori Morimoto | bcb1fd1 | 2018-09-18 01:29:35 +0000 | [diff] [blame] | 2798 | for_each_card_rtds(card, fe) { |
Jerome Brunet | de15d7ff | 2018-06-26 12:07:25 +0200 | [diff] [blame] | 2799 | ret = soc_dpcm_fe_runtime_update(fe, 1); |
| 2800 | if (ret) |
| 2801 | goto out; |
| 2802 | } |
| 2803 | |
| 2804 | out: |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2805 | mutex_unlock(&card->mutex); |
Jerome Brunet | de15d7ff | 2018-06-26 12:07:25 +0200 | [diff] [blame] | 2806 | return ret; |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2807 | } |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2808 | int soc_dpcm_be_digital_mute(struct snd_soc_pcm_runtime *fe, int mute) |
| 2809 | { |
| 2810 | struct snd_soc_dpcm *dpcm; |
Kuninori Morimoto | 7afecb3 | 2018-09-18 01:28:04 +0000 | [diff] [blame] | 2811 | struct snd_soc_dai *dai; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2812 | |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 2813 | for_each_dpcm_be(fe, SNDRV_PCM_STREAM_PLAYBACK, dpcm) { |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2814 | |
| 2815 | struct snd_soc_pcm_runtime *be = dpcm->be; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 2816 | int i; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2817 | |
| 2818 | if (be->dai_link->ignore_suspend) |
| 2819 | continue; |
| 2820 | |
Kuninori Morimoto | 7afecb3 | 2018-09-18 01:28:04 +0000 | [diff] [blame] | 2821 | for_each_rtd_codec_dai(be, i, dai) { |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 2822 | struct snd_soc_dai_driver *drv = dai->driver; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2823 | |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 2824 | dev_dbg(be->dev, "ASoC: BE digital mute %s\n", |
| 2825 | be->dai_link->name); |
| 2826 | |
| 2827 | if (drv->ops && drv->ops->digital_mute && |
| 2828 | dai->playback_active) |
| 2829 | drv->ops->digital_mute(dai, mute); |
| 2830 | } |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2831 | } |
| 2832 | |
| 2833 | return 0; |
| 2834 | } |
| 2835 | |
Mark Brown | 45c0a18 | 2012-05-09 21:46:27 +0100 | [diff] [blame] | 2836 | static int dpcm_fe_dai_open(struct snd_pcm_substream *fe_substream) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2837 | { |
| 2838 | struct snd_soc_pcm_runtime *fe = fe_substream->private_data; |
| 2839 | struct snd_soc_dpcm *dpcm; |
| 2840 | struct snd_soc_dapm_widget_list *list; |
| 2841 | int ret; |
| 2842 | int stream = fe_substream->stream; |
| 2843 | |
| 2844 | mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME); |
| 2845 | fe->dpcm[stream].runtime = fe_substream->runtime; |
| 2846 | |
Qiao Zhou | 8f70e51 | 2014-09-10 17:54:07 +0800 | [diff] [blame] | 2847 | ret = dpcm_path_get(fe, stream, &list); |
| 2848 | if (ret < 0) { |
| 2849 | mutex_unlock(&fe->card->mutex); |
| 2850 | return ret; |
| 2851 | } else if (ret == 0) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2852 | dev_dbg(fe->dev, "ASoC: %s no valid %s route\n", |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2853 | fe->dai_link->name, stream ? "capture" : "playback"); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2854 | } |
| 2855 | |
| 2856 | /* calculate valid and active FE <-> BE dpcms */ |
| 2857 | dpcm_process_paths(fe, stream, &list, 1); |
| 2858 | |
| 2859 | ret = dpcm_fe_dai_startup(fe_substream); |
| 2860 | if (ret < 0) { |
| 2861 | /* clean up all links */ |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 2862 | for_each_dpcm_be(fe, stream, dpcm) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2863 | dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE; |
| 2864 | |
| 2865 | dpcm_be_disconnect(fe, stream); |
| 2866 | fe->dpcm[stream].runtime = NULL; |
| 2867 | } |
| 2868 | |
| 2869 | dpcm_clear_pending_state(fe, stream); |
| 2870 | dpcm_path_put(&list); |
| 2871 | mutex_unlock(&fe->card->mutex); |
| 2872 | return ret; |
| 2873 | } |
| 2874 | |
Mark Brown | 45c0a18 | 2012-05-09 21:46:27 +0100 | [diff] [blame] | 2875 | static int dpcm_fe_dai_close(struct snd_pcm_substream *fe_substream) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2876 | { |
| 2877 | struct snd_soc_pcm_runtime *fe = fe_substream->private_data; |
| 2878 | struct snd_soc_dpcm *dpcm; |
| 2879 | int stream = fe_substream->stream, ret; |
| 2880 | |
| 2881 | mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME); |
| 2882 | ret = dpcm_fe_dai_shutdown(fe_substream); |
| 2883 | |
| 2884 | /* mark FE's links ready to prune */ |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 2885 | for_each_dpcm_be(fe, stream, dpcm) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2886 | dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE; |
| 2887 | |
| 2888 | dpcm_be_disconnect(fe, stream); |
| 2889 | |
| 2890 | fe->dpcm[stream].runtime = NULL; |
| 2891 | mutex_unlock(&fe->card->mutex); |
| 2892 | return ret; |
| 2893 | } |
| 2894 | |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 2895 | /* create a new pcm */ |
| 2896 | int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num) |
| 2897 | { |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 2898 | struct snd_soc_dai *codec_dai; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 2899 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Kuninori Morimoto | f523ace | 2017-09-26 01:00:53 +0000 | [diff] [blame] | 2900 | struct snd_soc_rtdcom_list *rtdcom; |
Kuninori Morimoto | 2b544dd | 2019-10-15 12:59:31 +0900 | [diff] [blame] | 2901 | struct snd_soc_component *component; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 2902 | struct snd_pcm *pcm; |
| 2903 | char new_name[64]; |
| 2904 | int ret = 0, playback = 0, capture = 0; |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 2905 | int i; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 2906 | |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2907 | if (rtd->dai_link->dynamic || rtd->dai_link->no_pcm) { |
Liam Girdwood | 1e9de42 | 2014-01-07 17:51:42 +0000 | [diff] [blame] | 2908 | playback = rtd->dai_link->dpcm_playback; |
| 2909 | capture = rtd->dai_link->dpcm_capture; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2910 | } else { |
Jerome Brunet | a342031 | 2019-07-25 18:59:47 +0200 | [diff] [blame] | 2911 | /* Adapt stream for codec2codec links */ |
| 2912 | struct snd_soc_pcm_stream *cpu_capture = rtd->dai_link->params ? |
| 2913 | &cpu_dai->driver->playback : &cpu_dai->driver->capture; |
| 2914 | struct snd_soc_pcm_stream *cpu_playback = rtd->dai_link->params ? |
| 2915 | &cpu_dai->driver->capture : &cpu_dai->driver->playback; |
| 2916 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 2917 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
Kuninori Morimoto | 467fece | 2019-07-22 10:36:16 +0900 | [diff] [blame] | 2918 | if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_PLAYBACK) && |
| 2919 | snd_soc_dai_stream_valid(cpu_dai, SNDRV_PCM_STREAM_PLAYBACK)) |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 2920 | playback = 1; |
Kuninori Morimoto | 467fece | 2019-07-22 10:36:16 +0900 | [diff] [blame] | 2921 | if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_CAPTURE) && |
| 2922 | snd_soc_dai_stream_valid(cpu_dai, SNDRV_PCM_STREAM_CAPTURE)) |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 2923 | capture = 1; |
| 2924 | } |
Jerome Brunet | a342031 | 2019-07-25 18:59:47 +0200 | [diff] [blame] | 2925 | |
| 2926 | capture = capture && cpu_capture->channels_min; |
| 2927 | playback = playback && cpu_playback->channels_min; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2928 | } |
Sangsu Park | a500231 | 2012-01-02 17:15:10 +0900 | [diff] [blame] | 2929 | |
Fabio Estevam | d6bead0 | 2013-08-29 10:32:13 -0300 | [diff] [blame] | 2930 | if (rtd->dai_link->playback_only) { |
| 2931 | playback = 1; |
| 2932 | capture = 0; |
| 2933 | } |
| 2934 | |
| 2935 | if (rtd->dai_link->capture_only) { |
| 2936 | playback = 0; |
| 2937 | capture = 1; |
| 2938 | } |
| 2939 | |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2940 | /* create the PCM */ |
Jerome Brunet | a342031 | 2019-07-25 18:59:47 +0200 | [diff] [blame] | 2941 | if (rtd->dai_link->params) { |
| 2942 | snprintf(new_name, sizeof(new_name), "codec2codec(%s)", |
| 2943 | rtd->dai_link->stream_name); |
| 2944 | |
| 2945 | ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num, |
| 2946 | playback, capture, &pcm); |
| 2947 | } else if (rtd->dai_link->no_pcm) { |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2948 | snprintf(new_name, sizeof(new_name), "(%s)", |
| 2949 | rtd->dai_link->stream_name); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 2950 | |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2951 | ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num, |
| 2952 | playback, capture, &pcm); |
| 2953 | } else { |
| 2954 | if (rtd->dai_link->dynamic) |
| 2955 | snprintf(new_name, sizeof(new_name), "%s (*)", |
| 2956 | rtd->dai_link->stream_name); |
| 2957 | else |
| 2958 | snprintf(new_name, sizeof(new_name), "%s %s-%d", |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 2959 | rtd->dai_link->stream_name, |
| 2960 | (rtd->num_codecs > 1) ? |
| 2961 | "multicodec" : rtd->codec_dai->name, num); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 2962 | |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2963 | ret = snd_pcm_new(rtd->card->snd_card, new_name, num, playback, |
| 2964 | capture, &pcm); |
| 2965 | } |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 2966 | if (ret < 0) { |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2967 | dev_err(rtd->card->dev, "ASoC: can't create pcm for %s\n", |
Liam Girdwood | 5cb9b74 | 2012-07-06 16:54:52 +0100 | [diff] [blame] | 2968 | rtd->dai_link->name); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 2969 | return ret; |
| 2970 | } |
Liam Girdwood | 103d84a | 2012-11-19 14:39:15 +0000 | [diff] [blame] | 2971 | dev_dbg(rtd->card->dev, "ASoC: registered pcm #%d %s\n",num, new_name); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 2972 | |
| 2973 | /* DAPM dai link stream work */ |
Jerome Brunet | a342031 | 2019-07-25 18:59:47 +0200 | [diff] [blame] | 2974 | if (rtd->dai_link->params) |
Curtis Malainey | 4bf2e38 | 2019-12-03 09:30:07 -0800 | [diff] [blame^] | 2975 | rtd->close_delayed_work_func = codec2codec_close_delayed_work; |
Jerome Brunet | a342031 | 2019-07-25 18:59:47 +0200 | [diff] [blame] | 2976 | else |
Curtis Malainey | 4bf2e38 | 2019-12-03 09:30:07 -0800 | [diff] [blame^] | 2977 | rtd->close_delayed_work_func = close_delayed_work; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 2978 | |
Vinod Koul | 48c7699 | 2015-02-12 09:59:53 +0530 | [diff] [blame] | 2979 | pcm->nonatomic = rtd->dai_link->nonatomic; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 2980 | rtd->pcm = pcm; |
| 2981 | pcm->private_data = rtd; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2982 | |
Jerome Brunet | a342031 | 2019-07-25 18:59:47 +0200 | [diff] [blame] | 2983 | if (rtd->dai_link->no_pcm || rtd->dai_link->params) { |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 2984 | if (playback) |
| 2985 | pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd; |
| 2986 | if (capture) |
| 2987 | pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd; |
| 2988 | goto out; |
| 2989 | } |
| 2990 | |
| 2991 | /* ASoC PCM operations */ |
| 2992 | if (rtd->dai_link->dynamic) { |
| 2993 | rtd->ops.open = dpcm_fe_dai_open; |
| 2994 | rtd->ops.hw_params = dpcm_fe_dai_hw_params; |
| 2995 | rtd->ops.prepare = dpcm_fe_dai_prepare; |
| 2996 | rtd->ops.trigger = dpcm_fe_dai_trigger; |
| 2997 | rtd->ops.hw_free = dpcm_fe_dai_hw_free; |
| 2998 | rtd->ops.close = dpcm_fe_dai_close; |
| 2999 | rtd->ops.pointer = soc_pcm_pointer; |
Kuninori Morimoto | 96a4790 | 2019-07-26 13:51:51 +0900 | [diff] [blame] | 3000 | rtd->ops.ioctl = snd_soc_pcm_component_ioctl; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 3001 | } else { |
| 3002 | rtd->ops.open = soc_pcm_open; |
| 3003 | rtd->ops.hw_params = soc_pcm_hw_params; |
| 3004 | rtd->ops.prepare = soc_pcm_prepare; |
| 3005 | rtd->ops.trigger = soc_pcm_trigger; |
| 3006 | rtd->ops.hw_free = soc_pcm_hw_free; |
| 3007 | rtd->ops.close = soc_pcm_close; |
| 3008 | rtd->ops.pointer = soc_pcm_pointer; |
Kuninori Morimoto | 96a4790 | 2019-07-26 13:51:51 +0900 | [diff] [blame] | 3009 | rtd->ops.ioctl = snd_soc_pcm_component_ioctl; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 3010 | } |
| 3011 | |
Kuninori Morimoto | 2b544dd | 2019-10-15 12:59:31 +0900 | [diff] [blame] | 3012 | for_each_rtd_components(rtd, rtdcom, component) { |
| 3013 | const struct snd_soc_component_driver *drv = component->driver; |
Kuninori Morimoto | b813586 | 2017-10-11 01:37:23 +0000 | [diff] [blame] | 3014 | |
Kuninori Morimoto | e9067bb | 2019-10-02 14:35:13 +0900 | [diff] [blame] | 3015 | if (drv->copy_user) |
Kuninori Morimoto | 82d81f5 | 2019-07-26 13:51:56 +0900 | [diff] [blame] | 3016 | rtd->ops.copy_user = snd_soc_pcm_component_copy_user; |
Kuninori Morimoto | e9067bb | 2019-10-02 14:35:13 +0900 | [diff] [blame] | 3017 | if (drv->page) |
Kuninori Morimoto | 9c712e4 | 2019-07-26 13:52:00 +0900 | [diff] [blame] | 3018 | rtd->ops.page = snd_soc_pcm_component_page; |
Kuninori Morimoto | e9067bb | 2019-10-02 14:35:13 +0900 | [diff] [blame] | 3019 | if (drv->mmap) |
Kuninori Morimoto | 205875e | 2019-07-26 13:52:04 +0900 | [diff] [blame] | 3020 | rtd->ops.mmap = snd_soc_pcm_component_mmap; |
Kuninori Morimoto | b813586 | 2017-10-11 01:37:23 +0000 | [diff] [blame] | 3021 | } |
| 3022 | |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 3023 | if (playback) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 3024 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &rtd->ops); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 3025 | |
| 3026 | if (capture) |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 3027 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &rtd->ops); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 3028 | |
Kuninori Morimoto | b2b2afb | 2019-11-18 10:50:32 +0900 | [diff] [blame] | 3029 | ret = snd_soc_pcm_component_new(rtd); |
Kuninori Morimoto | 7484291 | 2019-07-26 13:52:08 +0900 | [diff] [blame] | 3030 | if (ret < 0) { |
| 3031 | dev_err(rtd->dev, "ASoC: pcm constructor failed: %d\n", ret); |
| 3032 | return ret; |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 3033 | } |
Johan Hovold | c641e5b | 2017-07-12 17:55:29 +0200 | [diff] [blame] | 3034 | |
Takashi Iwai | 3d21ef0 | 2019-01-11 15:58:39 +0100 | [diff] [blame] | 3035 | pcm->no_device_suspend = true; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 3036 | out: |
Benoit Cousson | 2e5894d | 2014-07-08 23:19:35 +0200 | [diff] [blame] | 3037 | dev_info(rtd->card->dev, "%s <-> %s mapping ok\n", |
| 3038 | (rtd->num_codecs > 1) ? "multicodec" : rtd->codec_dai->name, |
| 3039 | cpu_dai->name); |
Liam Girdwood | ddee627 | 2011-06-09 14:45:53 +0100 | [diff] [blame] | 3040 | return ret; |
| 3041 | } |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 3042 | |
| 3043 | /* is the current PCM operation for this FE ? */ |
| 3044 | int snd_soc_dpcm_fe_can_update(struct snd_soc_pcm_runtime *fe, int stream) |
| 3045 | { |
| 3046 | if (fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE) |
| 3047 | return 1; |
| 3048 | return 0; |
| 3049 | } |
| 3050 | EXPORT_SYMBOL_GPL(snd_soc_dpcm_fe_can_update); |
| 3051 | |
| 3052 | /* is the current PCM operation for this BE ? */ |
| 3053 | int snd_soc_dpcm_be_can_update(struct snd_soc_pcm_runtime *fe, |
| 3054 | struct snd_soc_pcm_runtime *be, int stream) |
| 3055 | { |
| 3056 | if ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_FE) || |
| 3057 | ((fe->dpcm[stream].runtime_update == SND_SOC_DPCM_UPDATE_BE) && |
| 3058 | be->dpcm[stream].runtime_update)) |
| 3059 | return 1; |
| 3060 | return 0; |
| 3061 | } |
| 3062 | EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_can_update); |
| 3063 | |
| 3064 | /* get the substream for this BE */ |
| 3065 | struct snd_pcm_substream * |
| 3066 | snd_soc_dpcm_get_substream(struct snd_soc_pcm_runtime *be, int stream) |
| 3067 | { |
| 3068 | return be->pcm->streams[stream].substream; |
| 3069 | } |
| 3070 | EXPORT_SYMBOL_GPL(snd_soc_dpcm_get_substream); |
| 3071 | |
| 3072 | /* get the BE runtime state */ |
| 3073 | enum snd_soc_dpcm_state |
| 3074 | snd_soc_dpcm_be_get_state(struct snd_soc_pcm_runtime *be, int stream) |
| 3075 | { |
| 3076 | return be->dpcm[stream].state; |
| 3077 | } |
| 3078 | EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_get_state); |
| 3079 | |
| 3080 | /* set the BE runtime state */ |
| 3081 | void snd_soc_dpcm_be_set_state(struct snd_soc_pcm_runtime *be, |
| 3082 | int stream, enum snd_soc_dpcm_state state) |
| 3083 | { |
| 3084 | be->dpcm[stream].state = state; |
| 3085 | } |
| 3086 | EXPORT_SYMBOL_GPL(snd_soc_dpcm_be_set_state); |
| 3087 | |
| 3088 | /* |
| 3089 | * We can only hw_free, stop, pause or suspend a BE DAI if any of it's FE |
| 3090 | * are not running, paused or suspended for the specified stream direction. |
| 3091 | */ |
| 3092 | int snd_soc_dpcm_can_be_free_stop(struct snd_soc_pcm_runtime *fe, |
| 3093 | struct snd_soc_pcm_runtime *be, int stream) |
| 3094 | { |
| 3095 | struct snd_soc_dpcm *dpcm; |
| 3096 | int state; |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 3097 | int ret = 1; |
| 3098 | unsigned long flags; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 3099 | |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 3100 | spin_lock_irqsave(&fe->card->dpcm_lock, flags); |
Kuninori Morimoto | d2e24d6 | 2018-09-18 01:30:54 +0000 | [diff] [blame] | 3101 | for_each_dpcm_fe(be, stream, dpcm) { |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 3102 | |
| 3103 | if (dpcm->fe == fe) |
| 3104 | continue; |
| 3105 | |
| 3106 | state = dpcm->fe->dpcm[stream].state; |
| 3107 | if (state == SND_SOC_DPCM_STATE_START || |
| 3108 | state == SND_SOC_DPCM_STATE_PAUSED || |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 3109 | state == SND_SOC_DPCM_STATE_SUSPEND) { |
| 3110 | ret = 0; |
| 3111 | break; |
| 3112 | } |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 3113 | } |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 3114 | spin_unlock_irqrestore(&fe->card->dpcm_lock, flags); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 3115 | |
| 3116 | /* it's safe to free/stop this BE DAI */ |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 3117 | return ret; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 3118 | } |
| 3119 | EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_free_stop); |
| 3120 | |
| 3121 | /* |
| 3122 | * We can only change hw params a BE DAI if any of it's FE are not prepared, |
| 3123 | * running, paused or suspended for the specified stream direction. |
| 3124 | */ |
| 3125 | int snd_soc_dpcm_can_be_params(struct snd_soc_pcm_runtime *fe, |
| 3126 | struct snd_soc_pcm_runtime *be, int stream) |
| 3127 | { |
| 3128 | struct snd_soc_dpcm *dpcm; |
| 3129 | int state; |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 3130 | int ret = 1; |
| 3131 | unsigned long flags; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 3132 | |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 3133 | spin_lock_irqsave(&fe->card->dpcm_lock, flags); |
Kuninori Morimoto | d2e24d6 | 2018-09-18 01:30:54 +0000 | [diff] [blame] | 3134 | for_each_dpcm_fe(be, stream, dpcm) { |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 3135 | |
| 3136 | if (dpcm->fe == fe) |
| 3137 | continue; |
| 3138 | |
| 3139 | state = dpcm->fe->dpcm[stream].state; |
| 3140 | if (state == SND_SOC_DPCM_STATE_START || |
| 3141 | state == SND_SOC_DPCM_STATE_PAUSED || |
| 3142 | state == SND_SOC_DPCM_STATE_SUSPEND || |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 3143 | state == SND_SOC_DPCM_STATE_PREPARE) { |
| 3144 | ret = 0; |
| 3145 | break; |
| 3146 | } |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 3147 | } |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 3148 | spin_unlock_irqrestore(&fe->card->dpcm_lock, flags); |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 3149 | |
| 3150 | /* it's safe to change hw_params */ |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 3151 | return ret; |
Liam Girdwood | 01d7584 | 2012-04-25 12:12:49 +0100 | [diff] [blame] | 3152 | } |
| 3153 | EXPORT_SYMBOL_GPL(snd_soc_dpcm_can_be_params); |
Liam Girdwood | f86dcef | 2012-04-25 12:12:50 +0100 | [diff] [blame] | 3154 | |
| 3155 | #ifdef CONFIG_DEBUG_FS |
Lars-Peter Clausen | 85280141 | 2016-11-22 11:29:14 +0100 | [diff] [blame] | 3156 | static const char *dpcm_state_string(enum snd_soc_dpcm_state state) |
Liam Girdwood | f86dcef | 2012-04-25 12:12:50 +0100 | [diff] [blame] | 3157 | { |
| 3158 | switch (state) { |
| 3159 | case SND_SOC_DPCM_STATE_NEW: |
| 3160 | return "new"; |
| 3161 | case SND_SOC_DPCM_STATE_OPEN: |
| 3162 | return "open"; |
| 3163 | case SND_SOC_DPCM_STATE_HW_PARAMS: |
| 3164 | return "hw_params"; |
| 3165 | case SND_SOC_DPCM_STATE_PREPARE: |
| 3166 | return "prepare"; |
| 3167 | case SND_SOC_DPCM_STATE_START: |
| 3168 | return "start"; |
| 3169 | case SND_SOC_DPCM_STATE_STOP: |
| 3170 | return "stop"; |
| 3171 | case SND_SOC_DPCM_STATE_SUSPEND: |
| 3172 | return "suspend"; |
| 3173 | case SND_SOC_DPCM_STATE_PAUSED: |
| 3174 | return "paused"; |
| 3175 | case SND_SOC_DPCM_STATE_HW_FREE: |
| 3176 | return "hw_free"; |
| 3177 | case SND_SOC_DPCM_STATE_CLOSE: |
| 3178 | return "close"; |
| 3179 | } |
| 3180 | |
| 3181 | return "unknown"; |
| 3182 | } |
| 3183 | |
Liam Girdwood | f86dcef | 2012-04-25 12:12:50 +0100 | [diff] [blame] | 3184 | static ssize_t dpcm_show_state(struct snd_soc_pcm_runtime *fe, |
| 3185 | int stream, char *buf, size_t size) |
| 3186 | { |
| 3187 | struct snd_pcm_hw_params *params = &fe->dpcm[stream].hw_params; |
| 3188 | struct snd_soc_dpcm *dpcm; |
| 3189 | ssize_t offset = 0; |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 3190 | unsigned long flags; |
Liam Girdwood | f86dcef | 2012-04-25 12:12:50 +0100 | [diff] [blame] | 3191 | |
| 3192 | /* FE state */ |
| 3193 | offset += snprintf(buf + offset, size - offset, |
| 3194 | "[%s - %s]\n", fe->dai_link->name, |
| 3195 | stream ? "Capture" : "Playback"); |
| 3196 | |
| 3197 | offset += snprintf(buf + offset, size - offset, "State: %s\n", |
| 3198 | dpcm_state_string(fe->dpcm[stream].state)); |
| 3199 | |
| 3200 | if ((fe->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) && |
| 3201 | (fe->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP)) |
| 3202 | offset += snprintf(buf + offset, size - offset, |
| 3203 | "Hardware Params: " |
| 3204 | "Format = %s, Channels = %d, Rate = %d\n", |
| 3205 | snd_pcm_format_name(params_format(params)), |
| 3206 | params_channels(params), |
| 3207 | params_rate(params)); |
| 3208 | |
| 3209 | /* BEs state */ |
| 3210 | offset += snprintf(buf + offset, size - offset, "Backends:\n"); |
| 3211 | |
| 3212 | if (list_empty(&fe->dpcm[stream].be_clients)) { |
| 3213 | offset += snprintf(buf + offset, size - offset, |
| 3214 | " No active DSP links\n"); |
| 3215 | goto out; |
| 3216 | } |
| 3217 | |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 3218 | spin_lock_irqsave(&fe->card->dpcm_lock, flags); |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 3219 | for_each_dpcm_be(fe, stream, dpcm) { |
Liam Girdwood | f86dcef | 2012-04-25 12:12:50 +0100 | [diff] [blame] | 3220 | struct snd_soc_pcm_runtime *be = dpcm->be; |
| 3221 | params = &dpcm->hw_params; |
| 3222 | |
| 3223 | offset += snprintf(buf + offset, size - offset, |
| 3224 | "- %s\n", be->dai_link->name); |
| 3225 | |
| 3226 | offset += snprintf(buf + offset, size - offset, |
| 3227 | " State: %s\n", |
| 3228 | dpcm_state_string(be->dpcm[stream].state)); |
| 3229 | |
| 3230 | if ((be->dpcm[stream].state >= SND_SOC_DPCM_STATE_HW_PARAMS) && |
| 3231 | (be->dpcm[stream].state <= SND_SOC_DPCM_STATE_STOP)) |
| 3232 | offset += snprintf(buf + offset, size - offset, |
| 3233 | " Hardware Params: " |
| 3234 | "Format = %s, Channels = %d, Rate = %d\n", |
| 3235 | snd_pcm_format_name(params_format(params)), |
| 3236 | params_channels(params), |
| 3237 | params_rate(params)); |
| 3238 | } |
KaiChieh Chuang | a976486 | 2019-03-08 13:05:53 +0800 | [diff] [blame] | 3239 | spin_unlock_irqrestore(&fe->card->dpcm_lock, flags); |
Liam Girdwood | f86dcef | 2012-04-25 12:12:50 +0100 | [diff] [blame] | 3240 | out: |
| 3241 | return offset; |
| 3242 | } |
| 3243 | |
| 3244 | static ssize_t dpcm_state_read_file(struct file *file, char __user *user_buf, |
| 3245 | size_t count, loff_t *ppos) |
| 3246 | { |
| 3247 | struct snd_soc_pcm_runtime *fe = file->private_data; |
| 3248 | ssize_t out_count = PAGE_SIZE, offset = 0, ret = 0; |
| 3249 | char *buf; |
| 3250 | |
| 3251 | buf = kmalloc(out_count, GFP_KERNEL); |
| 3252 | if (!buf) |
| 3253 | return -ENOMEM; |
| 3254 | |
Kuninori Morimoto | 467fece | 2019-07-22 10:36:16 +0900 | [diff] [blame] | 3255 | if (snd_soc_dai_stream_valid(fe->cpu_dai, SNDRV_PCM_STREAM_PLAYBACK)) |
Liam Girdwood | f86dcef | 2012-04-25 12:12:50 +0100 | [diff] [blame] | 3256 | offset += dpcm_show_state(fe, SNDRV_PCM_STREAM_PLAYBACK, |
| 3257 | buf + offset, out_count - offset); |
| 3258 | |
Kuninori Morimoto | 467fece | 2019-07-22 10:36:16 +0900 | [diff] [blame] | 3259 | if (snd_soc_dai_stream_valid(fe->cpu_dai, SNDRV_PCM_STREAM_CAPTURE)) |
Liam Girdwood | f86dcef | 2012-04-25 12:12:50 +0100 | [diff] [blame] | 3260 | offset += dpcm_show_state(fe, SNDRV_PCM_STREAM_CAPTURE, |
| 3261 | buf + offset, out_count - offset); |
| 3262 | |
Liam Girdwood | f57b848 | 2012-04-27 11:33:46 +0100 | [diff] [blame] | 3263 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, offset); |
Liam Girdwood | f86dcef | 2012-04-25 12:12:50 +0100 | [diff] [blame] | 3264 | |
Liam Girdwood | f57b848 | 2012-04-27 11:33:46 +0100 | [diff] [blame] | 3265 | kfree(buf); |
| 3266 | return ret; |
Liam Girdwood | f86dcef | 2012-04-25 12:12:50 +0100 | [diff] [blame] | 3267 | } |
| 3268 | |
| 3269 | static const struct file_operations dpcm_state_fops = { |
Liam Girdwood | f57b848 | 2012-04-27 11:33:46 +0100 | [diff] [blame] | 3270 | .open = simple_open, |
Liam Girdwood | f86dcef | 2012-04-25 12:12:50 +0100 | [diff] [blame] | 3271 | .read = dpcm_state_read_file, |
| 3272 | .llseek = default_llseek, |
| 3273 | }; |
| 3274 | |
Lars-Peter Clausen | 2e55b90 | 2015-04-09 10:52:37 +0200 | [diff] [blame] | 3275 | void soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime *rtd) |
Liam Girdwood | f86dcef | 2012-04-25 12:12:50 +0100 | [diff] [blame] | 3276 | { |
Mark Brown | b3bba9a | 2012-05-08 10:33:47 +0100 | [diff] [blame] | 3277 | if (!rtd->dai_link) |
Lars-Peter Clausen | 2e55b90 | 2015-04-09 10:52:37 +0200 | [diff] [blame] | 3278 | return; |
Mark Brown | b3bba9a | 2012-05-08 10:33:47 +0100 | [diff] [blame] | 3279 | |
Kuninori Morimoto | 596becd | 2019-08-07 10:31:36 +0900 | [diff] [blame] | 3280 | if (!rtd->dai_link->dynamic) |
| 3281 | return; |
| 3282 | |
Lars-Peter Clausen | 6553bf06 | 2015-04-09 10:52:38 +0200 | [diff] [blame] | 3283 | if (!rtd->card->debugfs_card_root) |
| 3284 | return; |
Liam Girdwood | f86dcef | 2012-04-25 12:12:50 +0100 | [diff] [blame] | 3285 | |
| 3286 | rtd->debugfs_dpcm_root = debugfs_create_dir(rtd->dai_link->name, |
| 3287 | rtd->card->debugfs_card_root); |
Liam Girdwood | f86dcef | 2012-04-25 12:12:50 +0100 | [diff] [blame] | 3288 | |
Fabio Estevam | f1e3f40 | 2017-07-29 11:40:55 -0300 | [diff] [blame] | 3289 | debugfs_create_file("state", 0444, rtd->debugfs_dpcm_root, |
| 3290 | rtd, &dpcm_state_fops); |
Liam Girdwood | f86dcef | 2012-04-25 12:12:50 +0100 | [diff] [blame] | 3291 | } |
| 3292 | #endif |