Kuninori Morimoto | b3ed4c8 | 2018-07-02 06:24:57 +0000 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | // |
| 3 | // soc-compress.c -- ALSA SoC Compress |
| 4 | // |
| 5 | // Copyright (C) 2012 Intel Corp. |
| 6 | // |
| 7 | // Authors: Namarta Kohli <namartax.kohli@intel.com> |
| 8 | // Ramesh Babu K V <ramesh.babu@linux.intel.com> |
| 9 | // Vinod Koul <vinod.koul@linux.intel.com> |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 10 | |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/init.h> |
| 13 | #include <linux/delay.h> |
| 14 | #include <linux/slab.h> |
| 15 | #include <linux/workqueue.h> |
| 16 | #include <sound/core.h> |
| 17 | #include <sound/compress_params.h> |
| 18 | #include <sound/compress_driver.h> |
| 19 | #include <sound/soc.h> |
| 20 | #include <sound/initval.h> |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 21 | #include <sound/soc-dpcm.h> |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 22 | |
Charles Keepax | 1e57b82 | 2018-04-24 16:39:03 +0100 | [diff] [blame] | 23 | static int soc_compr_components_open(struct snd_compr_stream *cstream, |
| 24 | struct snd_soc_component **last) |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 25 | { |
| 26 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 27 | struct snd_soc_component *component; |
| 28 | struct snd_soc_rtdcom_list *rtdcom; |
Charles Keepax | 1e57b82 | 2018-04-24 16:39:03 +0100 | [diff] [blame] | 29 | int ret; |
| 30 | |
| 31 | for_each_rtdcom(rtd, rtdcom) { |
| 32 | component = rtdcom->component; |
| 33 | |
| 34 | if (!component->driver->compr_ops || |
| 35 | !component->driver->compr_ops->open) |
| 36 | continue; |
| 37 | |
| 38 | ret = component->driver->compr_ops->open(cstream); |
| 39 | if (ret < 0) { |
| 40 | dev_err(component->dev, |
| 41 | "Compress ASoC: can't open platform %s: %d\n", |
| 42 | component->name, ret); |
| 43 | |
| 44 | *last = component; |
| 45 | return ret; |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | *last = NULL; |
| 50 | return 0; |
| 51 | } |
| 52 | |
| 53 | static int soc_compr_components_free(struct snd_compr_stream *cstream, |
| 54 | struct snd_soc_component *last) |
| 55 | { |
| 56 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
| 57 | struct snd_soc_component *component; |
| 58 | struct snd_soc_rtdcom_list *rtdcom; |
| 59 | |
| 60 | for_each_rtdcom(rtd, rtdcom) { |
| 61 | component = rtdcom->component; |
| 62 | |
| 63 | if (component == last) |
| 64 | break; |
| 65 | |
| 66 | if (!component->driver->compr_ops || |
| 67 | !component->driver->compr_ops->free) |
| 68 | continue; |
| 69 | |
| 70 | component->driver->compr_ops->free(cstream); |
| 71 | } |
| 72 | |
| 73 | return 0; |
| 74 | } |
| 75 | |
| 76 | static int soc_compr_open(struct snd_compr_stream *cstream) |
| 77 | { |
| 78 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
| 79 | struct snd_soc_component *component; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 80 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Charles Keepax | 572e6c8 | 2018-04-24 16:39:01 +0100 | [diff] [blame] | 81 | int ret; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 82 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 83 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Charles Keepax | 15e2e61 | 2013-01-24 09:44:29 +0000 | [diff] [blame] | 84 | |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 85 | if (cpu_dai->driver->cops && cpu_dai->driver->cops->startup) { |
| 86 | ret = cpu_dai->driver->cops->startup(cstream, cpu_dai); |
| 87 | if (ret < 0) { |
Charles Keepax | 141dfc9 | 2018-01-26 13:08:45 +0000 | [diff] [blame] | 88 | dev_err(cpu_dai->dev, |
| 89 | "Compress ASoC: can't open interface %s: %d\n", |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 90 | cpu_dai->name, ret); |
| 91 | goto out; |
| 92 | } |
| 93 | } |
| 94 | |
Charles Keepax | 1e57b82 | 2018-04-24 16:39:03 +0100 | [diff] [blame] | 95 | ret = soc_compr_components_open(cstream, &component); |
| 96 | if (ret < 0) |
| 97 | goto machine_err; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 98 | |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 99 | if (rtd->dai_link->compr_ops && rtd->dai_link->compr_ops->startup) { |
| 100 | ret = rtd->dai_link->compr_ops->startup(cstream); |
| 101 | if (ret < 0) { |
Charles Keepax | 141dfc9 | 2018-01-26 13:08:45 +0000 | [diff] [blame] | 102 | dev_err(rtd->dev, |
| 103 | "Compress ASoC: %s startup failed: %d\n", |
| 104 | rtd->dai_link->name, ret); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 105 | goto machine_err; |
| 106 | } |
| 107 | } |
| 108 | |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 109 | snd_soc_runtime_activate(rtd, cstream->direction); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 110 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 111 | mutex_unlock(&rtd->card->pcm_mutex); |
Charles Keepax | 15e2e61 | 2013-01-24 09:44:29 +0000 | [diff] [blame] | 112 | |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 113 | return 0; |
| 114 | |
| 115 | machine_err: |
Charles Keepax | 1e57b82 | 2018-04-24 16:39:03 +0100 | [diff] [blame] | 116 | soc_compr_components_free(cstream, component); |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 117 | |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 118 | if (cpu_dai->driver->cops && cpu_dai->driver->cops->shutdown) |
| 119 | cpu_dai->driver->cops->shutdown(cstream, cpu_dai); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 120 | out: |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 121 | mutex_unlock(&rtd->card->pcm_mutex); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 122 | return ret; |
| 123 | } |
| 124 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 125 | static int soc_compr_open_fe(struct snd_compr_stream *cstream) |
| 126 | { |
| 127 | struct snd_soc_pcm_runtime *fe = cstream->private_data; |
Satish Babu Patakokila | 01b8ced | 2017-06-16 17:33:40 -0700 | [diff] [blame] | 128 | struct snd_pcm_substream *fe_substream = |
| 129 | fe->pcm->streams[cstream->direction].substream; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 130 | struct snd_soc_component *component; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 131 | struct snd_soc_dai *cpu_dai = fe->cpu_dai; |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 132 | struct snd_soc_dpcm *dpcm; |
| 133 | struct snd_soc_dapm_widget_list *list; |
| 134 | int stream; |
Charles Keepax | 572e6c8 | 2018-04-24 16:39:01 +0100 | [diff] [blame] | 135 | int ret; |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 136 | |
| 137 | if (cstream->direction == SND_COMPRESS_PLAYBACK) |
| 138 | stream = SNDRV_PCM_STREAM_PLAYBACK; |
| 139 | else |
| 140 | stream = SNDRV_PCM_STREAM_CAPTURE; |
| 141 | |
| 142 | mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME); |
Srinivas Kandagatla | 0b0722e | 2018-08-03 13:30:03 +0100 | [diff] [blame] | 143 | fe->dpcm[stream].runtime = fe_substream->runtime; |
| 144 | |
| 145 | ret = dpcm_path_get(fe, stream, &list); |
| 146 | if (ret < 0) |
| 147 | goto be_err; |
| 148 | else if (ret == 0) |
| 149 | dev_dbg(fe->dev, "Compress ASoC: %s no valid %s route\n", |
| 150 | fe->dai_link->name, stream ? "capture" : "playback"); |
| 151 | /* calculate valid and active FE <-> BE dpcms */ |
| 152 | dpcm_process_paths(fe, stream, &list, 1); |
| 153 | fe->dpcm[stream].runtime = fe_substream->runtime; |
| 154 | |
| 155 | fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE; |
| 156 | |
| 157 | ret = dpcm_be_dai_startup(fe, stream); |
| 158 | if (ret < 0) { |
| 159 | /* clean up all links */ |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 160 | for_each_dpcm_be(fe, stream, dpcm) |
Srinivas Kandagatla | 0b0722e | 2018-08-03 13:30:03 +0100 | [diff] [blame] | 161 | dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE; |
| 162 | |
| 163 | dpcm_be_disconnect(fe, stream); |
| 164 | fe->dpcm[stream].runtime = NULL; |
| 165 | goto out; |
| 166 | } |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 167 | |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 168 | if (cpu_dai->driver->cops && cpu_dai->driver->cops->startup) { |
| 169 | ret = cpu_dai->driver->cops->startup(cstream, cpu_dai); |
| 170 | if (ret < 0) { |
Charles Keepax | 141dfc9 | 2018-01-26 13:08:45 +0000 | [diff] [blame] | 171 | dev_err(cpu_dai->dev, |
| 172 | "Compress ASoC: can't open interface %s: %d\n", |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 173 | cpu_dai->name, ret); |
| 174 | goto out; |
| 175 | } |
| 176 | } |
| 177 | |
Charles Keepax | 1e57b82 | 2018-04-24 16:39:03 +0100 | [diff] [blame] | 178 | ret = soc_compr_components_open(cstream, &component); |
| 179 | if (ret < 0) |
Srinivas Kandagatla | 0b0722e | 2018-08-03 13:30:03 +0100 | [diff] [blame] | 180 | goto open_err; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 181 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 182 | if (fe->dai_link->compr_ops && fe->dai_link->compr_ops->startup) { |
| 183 | ret = fe->dai_link->compr_ops->startup(cstream); |
| 184 | if (ret < 0) { |
Charles Keepax | 141dfc9 | 2018-01-26 13:08:45 +0000 | [diff] [blame] | 185 | pr_err("Compress ASoC: %s startup failed: %d\n", |
| 186 | fe->dai_link->name, ret); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 187 | goto machine_err; |
| 188 | } |
| 189 | } |
| 190 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 191 | dpcm_clear_pending_state(fe, stream); |
| 192 | dpcm_path_put(&list); |
| 193 | |
| 194 | fe->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN; |
| 195 | fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO; |
| 196 | |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 197 | snd_soc_runtime_activate(fe, stream); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 198 | |
| 199 | mutex_unlock(&fe->card->mutex); |
| 200 | |
| 201 | return 0; |
| 202 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 203 | machine_err: |
Charles Keepax | 1e57b82 | 2018-04-24 16:39:03 +0100 | [diff] [blame] | 204 | soc_compr_components_free(cstream, component); |
Srinivas Kandagatla | 0b0722e | 2018-08-03 13:30:03 +0100 | [diff] [blame] | 205 | open_err: |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 206 | if (cpu_dai->driver->cops && cpu_dai->driver->cops->shutdown) |
| 207 | cpu_dai->driver->cops->shutdown(cstream, cpu_dai); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 208 | out: |
Srinivas Kandagatla | 0b0722e | 2018-08-03 13:30:03 +0100 | [diff] [blame] | 209 | dpcm_path_put(&list); |
| 210 | be_err: |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 211 | fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO; |
| 212 | mutex_unlock(&fe->card->mutex); |
| 213 | return ret; |
| 214 | } |
| 215 | |
Charles Keepax | 202c8f7 | 2013-01-24 09:44:30 +0000 | [diff] [blame] | 216 | /* |
| 217 | * Power down the audio subsystem pmdown_time msecs after close is called. |
| 218 | * This is to ensure there are no pops or clicks in between any music tracks |
| 219 | * due to DAPM power cycling. |
| 220 | */ |
| 221 | static void close_delayed_work(struct work_struct *work) |
| 222 | { |
| 223 | struct snd_soc_pcm_runtime *rtd = |
| 224 | container_of(work, struct snd_soc_pcm_runtime, delayed_work.work); |
| 225 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
| 226 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 227 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Charles Keepax | 202c8f7 | 2013-01-24 09:44:30 +0000 | [diff] [blame] | 228 | |
Charles Keepax | 141dfc9 | 2018-01-26 13:08:45 +0000 | [diff] [blame] | 229 | dev_dbg(rtd->dev, |
| 230 | "Compress ASoC: pop wq checking: %s status: %s waiting: %s\n", |
| 231 | codec_dai->driver->playback.stream_name, |
| 232 | codec_dai->playback_active ? "active" : "inactive", |
| 233 | rtd->pop_wait ? "yes" : "no"); |
Charles Keepax | 202c8f7 | 2013-01-24 09:44:30 +0000 | [diff] [blame] | 234 | |
| 235 | /* are we waiting on this codec DAI stream */ |
| 236 | if (rtd->pop_wait == 1) { |
| 237 | rtd->pop_wait = 0; |
| 238 | snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_PLAYBACK, |
| 239 | SND_SOC_DAPM_STREAM_STOP); |
| 240 | } |
| 241 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 242 | mutex_unlock(&rtd->card->pcm_mutex); |
Charles Keepax | 202c8f7 | 2013-01-24 09:44:30 +0000 | [diff] [blame] | 243 | } |
| 244 | |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 245 | static int soc_compr_free(struct snd_compr_stream *cstream) |
| 246 | { |
| 247 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 248 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
| 249 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 250 | int stream; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 251 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 252 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Charles Keepax | 15e2e61 | 2013-01-24 09:44:29 +0000 | [diff] [blame] | 253 | |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 254 | if (cstream->direction == SND_COMPRESS_PLAYBACK) |
| 255 | stream = SNDRV_PCM_STREAM_PLAYBACK; |
| 256 | else |
| 257 | stream = SNDRV_PCM_STREAM_CAPTURE; |
| 258 | |
| 259 | snd_soc_runtime_deactivate(rtd, stream); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 260 | |
Mark Brown | da18396 | 2013-02-06 15:44:07 +0000 | [diff] [blame] | 261 | snd_soc_dai_digital_mute(codec_dai, 1, cstream->direction); |
| 262 | |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 263 | if (!cpu_dai->active) |
| 264 | cpu_dai->rate = 0; |
| 265 | |
| 266 | if (!codec_dai->active) |
| 267 | codec_dai->rate = 0; |
| 268 | |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 269 | if (rtd->dai_link->compr_ops && rtd->dai_link->compr_ops->shutdown) |
| 270 | rtd->dai_link->compr_ops->shutdown(cstream); |
| 271 | |
Charles Keepax | 1e57b82 | 2018-04-24 16:39:03 +0100 | [diff] [blame] | 272 | soc_compr_components_free(cstream, NULL); |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 273 | |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 274 | if (cpu_dai->driver->cops && cpu_dai->driver->cops->shutdown) |
| 275 | cpu_dai->driver->cops->shutdown(cstream, cpu_dai); |
| 276 | |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 277 | if (cstream->direction == SND_COMPRESS_PLAYBACK) { |
Lars-Peter Clausen | 208a158 | 2014-03-05 13:17:42 +0100 | [diff] [blame] | 278 | if (snd_soc_runtime_ignore_pmdown_time(rtd)) { |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 279 | snd_soc_dapm_stream_event(rtd, |
Charles Keepax | 89027d9 | 2018-04-26 17:30:07 +0100 | [diff] [blame] | 280 | SNDRV_PCM_STREAM_PLAYBACK, |
| 281 | SND_SOC_DAPM_STREAM_STOP); |
Charles Keepax | 8c3d2aa | 2013-01-24 09:44:28 +0000 | [diff] [blame] | 282 | } else { |
Misael Lopez Cruz | 9bffb1f | 2012-12-13 12:23:05 -0600 | [diff] [blame] | 283 | rtd->pop_wait = 1; |
Mark Brown | 3d24cfe | 2013-08-09 18:12:29 +0100 | [diff] [blame] | 284 | queue_delayed_work(system_power_efficient_wq, |
| 285 | &rtd->delayed_work, |
| 286 | msecs_to_jiffies(rtd->pmdown_time)); |
Charles Keepax | 8c3d2aa | 2013-01-24 09:44:28 +0000 | [diff] [blame] | 287 | } |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 288 | } else { |
| 289 | /* capture streams can be powered down now */ |
| 290 | snd_soc_dapm_stream_event(rtd, |
Charles Keepax | 89027d9 | 2018-04-26 17:30:07 +0100 | [diff] [blame] | 291 | SNDRV_PCM_STREAM_CAPTURE, |
| 292 | SND_SOC_DAPM_STREAM_STOP); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 293 | } |
| 294 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 295 | mutex_unlock(&rtd->card->pcm_mutex); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 296 | return 0; |
| 297 | } |
| 298 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 299 | static int soc_compr_free_fe(struct snd_compr_stream *cstream) |
| 300 | { |
| 301 | struct snd_soc_pcm_runtime *fe = cstream->private_data; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 302 | struct snd_soc_dai *cpu_dai = fe->cpu_dai; |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 303 | struct snd_soc_dpcm *dpcm; |
| 304 | int stream, ret; |
| 305 | |
| 306 | mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME); |
| 307 | |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 308 | if (cstream->direction == SND_COMPRESS_PLAYBACK) |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 309 | stream = SNDRV_PCM_STREAM_PLAYBACK; |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 310 | else |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 311 | stream = SNDRV_PCM_STREAM_CAPTURE; |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 312 | |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 313 | snd_soc_runtime_deactivate(fe, stream); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 314 | |
| 315 | fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE; |
| 316 | |
| 317 | ret = dpcm_be_dai_hw_free(fe, stream); |
| 318 | if (ret < 0) |
Charles Keepax | 141dfc9 | 2018-01-26 13:08:45 +0000 | [diff] [blame] | 319 | dev_err(fe->dev, "Compressed ASoC: hw_free failed: %d\n", ret); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 320 | |
| 321 | ret = dpcm_be_dai_shutdown(fe, stream); |
| 322 | |
| 323 | /* mark FE's links ready to prune */ |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 324 | for_each_dpcm_be(fe, stream, dpcm) |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 325 | dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE; |
| 326 | |
Daniel Mack | 15f6b09 | 2014-10-19 09:07:35 +0200 | [diff] [blame] | 327 | dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 328 | |
| 329 | fe->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE; |
| 330 | fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO; |
| 331 | |
| 332 | dpcm_be_disconnect(fe, stream); |
| 333 | |
| 334 | fe->dpcm[stream].runtime = NULL; |
| 335 | |
| 336 | if (fe->dai_link->compr_ops && fe->dai_link->compr_ops->shutdown) |
| 337 | fe->dai_link->compr_ops->shutdown(cstream); |
| 338 | |
Charles Keepax | 1e57b82 | 2018-04-24 16:39:03 +0100 | [diff] [blame] | 339 | soc_compr_components_free(cstream, NULL); |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 340 | |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 341 | if (cpu_dai->driver->cops && cpu_dai->driver->cops->shutdown) |
| 342 | cpu_dai->driver->cops->shutdown(cstream, cpu_dai); |
| 343 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 344 | mutex_unlock(&fe->card->mutex); |
| 345 | return 0; |
| 346 | } |
| 347 | |
Charles Keepax | 4ef0ecb | 2019-02-05 11:18:13 +0000 | [diff] [blame] | 348 | static int soc_compr_components_trigger(struct snd_compr_stream *cstream, |
| 349 | int cmd) |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 350 | { |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 351 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 352 | struct snd_soc_component *component; |
| 353 | struct snd_soc_rtdcom_list *rtdcom; |
Charles Keepax | 4ef0ecb | 2019-02-05 11:18:13 +0000 | [diff] [blame] | 354 | int ret; |
Charles Keepax | 15e2e61 | 2013-01-24 09:44:29 +0000 | [diff] [blame] | 355 | |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 356 | for_each_rtdcom(rtd, rtdcom) { |
| 357 | component = rtdcom->component; |
| 358 | |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 359 | if (!component->driver->compr_ops || |
| 360 | !component->driver->compr_ops->trigger) |
| 361 | continue; |
| 362 | |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 363 | ret = component->driver->compr_ops->trigger(cstream, cmd); |
| 364 | if (ret < 0) |
Charles Keepax | 4ef0ecb | 2019-02-05 11:18:13 +0000 | [diff] [blame] | 365 | return ret; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 366 | } |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 367 | |
Charles Keepax | 4ef0ecb | 2019-02-05 11:18:13 +0000 | [diff] [blame] | 368 | return 0; |
| 369 | } |
| 370 | |
| 371 | static int soc_compr_trigger(struct snd_compr_stream *cstream, int cmd) |
| 372 | { |
| 373 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
| 374 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
| 375 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
| 376 | int ret; |
| 377 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 378 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Charles Keepax | 4ef0ecb | 2019-02-05 11:18:13 +0000 | [diff] [blame] | 379 | |
| 380 | ret = soc_compr_components_trigger(cstream, cmd); |
| 381 | if (ret < 0) |
| 382 | goto out; |
| 383 | |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 384 | if (cpu_dai->driver->cops && cpu_dai->driver->cops->trigger) |
| 385 | cpu_dai->driver->cops->trigger(cstream, cmd, cpu_dai); |
| 386 | |
Mark Brown | da18396 | 2013-02-06 15:44:07 +0000 | [diff] [blame] | 387 | switch (cmd) { |
| 388 | case SNDRV_PCM_TRIGGER_START: |
| 389 | snd_soc_dai_digital_mute(codec_dai, 0, cstream->direction); |
| 390 | break; |
| 391 | case SNDRV_PCM_TRIGGER_STOP: |
| 392 | snd_soc_dai_digital_mute(codec_dai, 1, cstream->direction); |
| 393 | break; |
Mark Brown | e38b9b7 | 2013-02-06 13:52:42 +0000 | [diff] [blame] | 394 | } |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 395 | |
Charles Keepax | 15e2e61 | 2013-01-24 09:44:29 +0000 | [diff] [blame] | 396 | out: |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 397 | mutex_unlock(&rtd->card->pcm_mutex); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 398 | return ret; |
| 399 | } |
| 400 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 401 | static int soc_compr_trigger_fe(struct snd_compr_stream *cstream, int cmd) |
| 402 | { |
| 403 | struct snd_soc_pcm_runtime *fe = cstream->private_data; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 404 | struct snd_soc_dai *cpu_dai = fe->cpu_dai; |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 405 | int ret, stream; |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 406 | |
| 407 | if (cmd == SND_COMPR_TRIGGER_PARTIAL_DRAIN || |
Charles Keepax | 4ef0ecb | 2019-02-05 11:18:13 +0000 | [diff] [blame] | 408 | cmd == SND_COMPR_TRIGGER_DRAIN) |
| 409 | return soc_compr_components_trigger(cstream, cmd); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 410 | |
| 411 | if (cstream->direction == SND_COMPRESS_PLAYBACK) |
| 412 | stream = SNDRV_PCM_STREAM_PLAYBACK; |
| 413 | else |
| 414 | stream = SNDRV_PCM_STREAM_CAPTURE; |
| 415 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 416 | mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME); |
| 417 | |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 418 | if (cpu_dai->driver->cops && cpu_dai->driver->cops->trigger) { |
| 419 | ret = cpu_dai->driver->cops->trigger(cstream, cmd, cpu_dai); |
| 420 | if (ret < 0) |
| 421 | goto out; |
| 422 | } |
| 423 | |
Charles Keepax | 4ef0ecb | 2019-02-05 11:18:13 +0000 | [diff] [blame] | 424 | ret = soc_compr_components_trigger(cstream, cmd); |
| 425 | if (ret < 0) |
| 426 | goto out; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 427 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 428 | fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE; |
| 429 | |
| 430 | ret = dpcm_be_dai_trigger(fe, stream, cmd); |
| 431 | |
| 432 | switch (cmd) { |
| 433 | case SNDRV_PCM_TRIGGER_START: |
| 434 | case SNDRV_PCM_TRIGGER_RESUME: |
| 435 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: |
| 436 | fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START; |
| 437 | break; |
| 438 | case SNDRV_PCM_TRIGGER_STOP: |
| 439 | case SNDRV_PCM_TRIGGER_SUSPEND: |
| 440 | fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP; |
| 441 | break; |
| 442 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: |
| 443 | fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED; |
| 444 | break; |
| 445 | } |
| 446 | |
| 447 | out: |
| 448 | fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO; |
| 449 | mutex_unlock(&fe->card->mutex); |
| 450 | return ret; |
| 451 | } |
| 452 | |
Charles Keepax | 4ef0ecb | 2019-02-05 11:18:13 +0000 | [diff] [blame] | 453 | static int soc_compr_components_set_params(struct snd_compr_stream *cstream, |
| 454 | struct snd_compr_params *params) |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 455 | { |
| 456 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 457 | struct snd_soc_component *component; |
| 458 | struct snd_soc_rtdcom_list *rtdcom; |
Charles Keepax | 4ef0ecb | 2019-02-05 11:18:13 +0000 | [diff] [blame] | 459 | int ret; |
| 460 | |
| 461 | for_each_rtdcom(rtd, rtdcom) { |
| 462 | component = rtdcom->component; |
| 463 | |
| 464 | if (!component->driver->compr_ops || |
| 465 | !component->driver->compr_ops->set_params) |
| 466 | continue; |
| 467 | |
| 468 | ret = component->driver->compr_ops->set_params(cstream, params); |
| 469 | if (ret < 0) |
| 470 | return ret; |
| 471 | } |
| 472 | |
| 473 | return 0; |
| 474 | } |
| 475 | |
| 476 | static int soc_compr_set_params(struct snd_compr_stream *cstream, |
| 477 | struct snd_compr_params *params) |
| 478 | { |
| 479 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 480 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 481 | int ret; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 482 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 483 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Charles Keepax | 15e2e61 | 2013-01-24 09:44:29 +0000 | [diff] [blame] | 484 | |
Charles Keepax | ef050be | 2018-04-24 16:39:02 +0100 | [diff] [blame] | 485 | /* |
| 486 | * First we call set_params for the CPU DAI, then the component |
| 487 | * driver this should configure the SoC side. If the machine has |
| 488 | * compressed ops then we call that as well. The expectation is |
| 489 | * that these callbacks will configure everything for this compress |
| 490 | * path, like configuring a PCM port for a CODEC. |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 491 | */ |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 492 | if (cpu_dai->driver->cops && cpu_dai->driver->cops->set_params) { |
| 493 | ret = cpu_dai->driver->cops->set_params(cstream, params, cpu_dai); |
| 494 | if (ret < 0) |
| 495 | goto err; |
| 496 | } |
| 497 | |
Charles Keepax | 4ef0ecb | 2019-02-05 11:18:13 +0000 | [diff] [blame] | 498 | ret = soc_compr_components_set_params(cstream, params); |
| 499 | if (ret < 0) |
| 500 | goto err; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 501 | |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 502 | if (rtd->dai_link->compr_ops && rtd->dai_link->compr_ops->set_params) { |
| 503 | ret = rtd->dai_link->compr_ops->set_params(cstream); |
| 504 | if (ret < 0) |
Charles Keepax | fa40ef2 | 2013-03-27 16:39:01 +0000 | [diff] [blame] | 505 | goto err; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 506 | } |
| 507 | |
Charles Keepax | 2c071ed | 2013-05-20 08:33:54 +0100 | [diff] [blame] | 508 | if (cstream->direction == SND_COMPRESS_PLAYBACK) |
| 509 | snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_PLAYBACK, |
Charles Keepax | 89027d9 | 2018-04-26 17:30:07 +0100 | [diff] [blame] | 510 | SND_SOC_DAPM_STREAM_START); |
Charles Keepax | 2c071ed | 2013-05-20 08:33:54 +0100 | [diff] [blame] | 511 | else |
| 512 | snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_CAPTURE, |
Charles Keepax | 89027d9 | 2018-04-26 17:30:07 +0100 | [diff] [blame] | 513 | SND_SOC_DAPM_STREAM_START); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 514 | |
Charles Keepax | fa40ef2 | 2013-03-27 16:39:01 +0000 | [diff] [blame] | 515 | /* cancel any delayed stream shutdown that is pending */ |
| 516 | rtd->pop_wait = 0; |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 517 | mutex_unlock(&rtd->card->pcm_mutex); |
Charles Keepax | fa40ef2 | 2013-03-27 16:39:01 +0000 | [diff] [blame] | 518 | |
| 519 | cancel_delayed_work_sync(&rtd->delayed_work); |
| 520 | |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 521 | return 0; |
Charles Keepax | fa40ef2 | 2013-03-27 16:39:01 +0000 | [diff] [blame] | 522 | |
| 523 | err: |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 524 | mutex_unlock(&rtd->card->pcm_mutex); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 525 | return ret; |
| 526 | } |
| 527 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 528 | static int soc_compr_set_params_fe(struct snd_compr_stream *cstream, |
Charles Keepax | 89027d9 | 2018-04-26 17:30:07 +0100 | [diff] [blame] | 529 | struct snd_compr_params *params) |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 530 | { |
| 531 | struct snd_soc_pcm_runtime *fe = cstream->private_data; |
Satish Babu Patakokila | 01b8ced | 2017-06-16 17:33:40 -0700 | [diff] [blame] | 532 | struct snd_pcm_substream *fe_substream = |
| 533 | fe->pcm->streams[cstream->direction].substream; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 534 | struct snd_soc_dai *cpu_dai = fe->cpu_dai; |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 535 | int ret, stream; |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 536 | |
| 537 | if (cstream->direction == SND_COMPRESS_PLAYBACK) |
| 538 | stream = SNDRV_PCM_STREAM_PLAYBACK; |
| 539 | else |
| 540 | stream = SNDRV_PCM_STREAM_CAPTURE; |
| 541 | |
| 542 | mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME); |
| 543 | |
Srinivas Kandagatla | 0b0722e | 2018-08-03 13:30:03 +0100 | [diff] [blame] | 544 | /* |
| 545 | * Create an empty hw_params for the BE as the machine driver must |
| 546 | * fix this up to match DSP decoder and ASRC configuration. |
| 547 | * I.e. machine driver fixup for compressed BE is mandatory. |
| 548 | */ |
| 549 | memset(&fe->dpcm[fe_substream->stream].hw_params, 0, |
| 550 | sizeof(struct snd_pcm_hw_params)); |
| 551 | |
| 552 | fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE; |
| 553 | |
| 554 | ret = dpcm_be_dai_hw_params(fe, stream); |
| 555 | if (ret < 0) |
| 556 | goto out; |
| 557 | |
| 558 | ret = dpcm_be_dai_prepare(fe, stream); |
| 559 | if (ret < 0) |
| 560 | goto out; |
| 561 | |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 562 | if (cpu_dai->driver->cops && cpu_dai->driver->cops->set_params) { |
| 563 | ret = cpu_dai->driver->cops->set_params(cstream, params, cpu_dai); |
| 564 | if (ret < 0) |
| 565 | goto out; |
| 566 | } |
| 567 | |
Charles Keepax | 4ef0ecb | 2019-02-05 11:18:13 +0000 | [diff] [blame] | 568 | ret = soc_compr_components_set_params(cstream, params); |
| 569 | if (ret < 0) |
| 570 | goto out; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 571 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 572 | if (fe->dai_link->compr_ops && fe->dai_link->compr_ops->set_params) { |
| 573 | ret = fe->dai_link->compr_ops->set_params(cstream); |
| 574 | if (ret < 0) |
| 575 | goto out; |
| 576 | } |
| 577 | |
Daniel Mack | 15f6b09 | 2014-10-19 09:07:35 +0200 | [diff] [blame] | 578 | dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_START); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 579 | fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE; |
| 580 | |
| 581 | out: |
| 582 | fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO; |
| 583 | mutex_unlock(&fe->card->mutex); |
| 584 | return ret; |
| 585 | } |
| 586 | |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 587 | static int soc_compr_get_params(struct snd_compr_stream *cstream, |
Charles Keepax | 89027d9 | 2018-04-26 17:30:07 +0100 | [diff] [blame] | 588 | struct snd_codec *params) |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 589 | { |
| 590 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 591 | struct snd_soc_component *component; |
| 592 | struct snd_soc_rtdcom_list *rtdcom; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 593 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 594 | int ret = 0; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 595 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 596 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Charles Keepax | 15e2e61 | 2013-01-24 09:44:29 +0000 | [diff] [blame] | 597 | |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 598 | if (cpu_dai->driver->cops && cpu_dai->driver->cops->get_params) { |
| 599 | ret = cpu_dai->driver->cops->get_params(cstream, params, cpu_dai); |
| 600 | if (ret < 0) |
| 601 | goto err; |
| 602 | } |
| 603 | |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 604 | for_each_rtdcom(rtd, rtdcom) { |
| 605 | component = rtdcom->component; |
| 606 | |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 607 | if (!component->driver->compr_ops || |
| 608 | !component->driver->compr_ops->get_params) |
| 609 | continue; |
| 610 | |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 611 | ret = component->driver->compr_ops->get_params(cstream, params); |
| 612 | break; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 613 | } |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 614 | |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 615 | err: |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 616 | mutex_unlock(&rtd->card->pcm_mutex); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 617 | return ret; |
| 618 | } |
| 619 | |
| 620 | static int soc_compr_get_caps(struct snd_compr_stream *cstream, |
Charles Keepax | 89027d9 | 2018-04-26 17:30:07 +0100 | [diff] [blame] | 621 | struct snd_compr_caps *caps) |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 622 | { |
| 623 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 624 | struct snd_soc_component *component; |
| 625 | struct snd_soc_rtdcom_list *rtdcom; |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 626 | int ret = 0; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 627 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 628 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Charles Keepax | 15e2e61 | 2013-01-24 09:44:29 +0000 | [diff] [blame] | 629 | |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 630 | for_each_rtdcom(rtd, rtdcom) { |
| 631 | component = rtdcom->component; |
| 632 | |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 633 | if (!component->driver->compr_ops || |
| 634 | !component->driver->compr_ops->get_caps) |
| 635 | continue; |
| 636 | |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 637 | ret = component->driver->compr_ops->get_caps(cstream, caps); |
| 638 | break; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 639 | } |
| 640 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 641 | mutex_unlock(&rtd->card->pcm_mutex); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 642 | return ret; |
| 643 | } |
| 644 | |
| 645 | static int soc_compr_get_codec_caps(struct snd_compr_stream *cstream, |
Charles Keepax | 89027d9 | 2018-04-26 17:30:07 +0100 | [diff] [blame] | 646 | struct snd_compr_codec_caps *codec) |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 647 | { |
| 648 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 649 | struct snd_soc_component *component; |
| 650 | struct snd_soc_rtdcom_list *rtdcom; |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 651 | int ret = 0; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 652 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 653 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Charles Keepax | 15e2e61 | 2013-01-24 09:44:29 +0000 | [diff] [blame] | 654 | |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 655 | for_each_rtdcom(rtd, rtdcom) { |
| 656 | component = rtdcom->component; |
| 657 | |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 658 | if (!component->driver->compr_ops || |
| 659 | !component->driver->compr_ops->get_codec_caps) |
| 660 | continue; |
| 661 | |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 662 | ret = component->driver->compr_ops->get_codec_caps(cstream, |
| 663 | codec); |
| 664 | break; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 665 | } |
| 666 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 667 | mutex_unlock(&rtd->card->pcm_mutex); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 668 | return ret; |
| 669 | } |
| 670 | |
| 671 | static int soc_compr_ack(struct snd_compr_stream *cstream, size_t bytes) |
| 672 | { |
| 673 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 674 | struct snd_soc_component *component; |
| 675 | struct snd_soc_rtdcom_list *rtdcom; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 676 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 677 | int ret = 0; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 678 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 679 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Charles Keepax | 15e2e61 | 2013-01-24 09:44:29 +0000 | [diff] [blame] | 680 | |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 681 | if (cpu_dai->driver->cops && cpu_dai->driver->cops->ack) { |
| 682 | ret = cpu_dai->driver->cops->ack(cstream, bytes, cpu_dai); |
| 683 | if (ret < 0) |
| 684 | goto err; |
| 685 | } |
| 686 | |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 687 | for_each_rtdcom(rtd, rtdcom) { |
| 688 | component = rtdcom->component; |
| 689 | |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 690 | if (!component->driver->compr_ops || |
| 691 | !component->driver->compr_ops->ack) |
| 692 | continue; |
| 693 | |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 694 | ret = component->driver->compr_ops->ack(cstream, bytes); |
| 695 | if (ret < 0) |
| 696 | goto err; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 697 | } |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 698 | |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 699 | err: |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 700 | mutex_unlock(&rtd->card->pcm_mutex); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 701 | return ret; |
| 702 | } |
| 703 | |
| 704 | static int soc_compr_pointer(struct snd_compr_stream *cstream, |
Charles Keepax | 89027d9 | 2018-04-26 17:30:07 +0100 | [diff] [blame] | 705 | struct snd_compr_tstamp *tstamp) |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 706 | { |
| 707 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 708 | struct snd_soc_component *component; |
| 709 | struct snd_soc_rtdcom_list *rtdcom; |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 710 | int ret = 0; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 711 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 712 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 713 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Charles Keepax | 15e2e61 | 2013-01-24 09:44:29 +0000 | [diff] [blame] | 714 | |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 715 | if (cpu_dai->driver->cops && cpu_dai->driver->cops->pointer) |
| 716 | cpu_dai->driver->cops->pointer(cstream, tstamp, cpu_dai); |
| 717 | |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 718 | for_each_rtdcom(rtd, rtdcom) { |
| 719 | component = rtdcom->component; |
| 720 | |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 721 | if (!component->driver->compr_ops || |
| 722 | !component->driver->compr_ops->pointer) |
| 723 | continue; |
| 724 | |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 725 | ret = component->driver->compr_ops->pointer(cstream, tstamp); |
| 726 | break; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 727 | } |
| 728 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 729 | mutex_unlock(&rtd->card->pcm_mutex); |
Charles Keepax | 7c9190f | 2016-06-20 09:51:32 +0100 | [diff] [blame] | 730 | return ret; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 731 | } |
| 732 | |
Charles Keepax | 1f88eb0 | 2013-02-05 10:41:47 +0000 | [diff] [blame] | 733 | static int soc_compr_copy(struct snd_compr_stream *cstream, |
Charles Keepax | 4daf891 | 2013-04-18 11:01:38 +0100 | [diff] [blame] | 734 | char __user *buf, size_t count) |
Charles Keepax | 1f88eb0 | 2013-02-05 10:41:47 +0000 | [diff] [blame] | 735 | { |
| 736 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 737 | struct snd_soc_component *component; |
| 738 | struct snd_soc_rtdcom_list *rtdcom; |
Charles Keepax | 290df4d3 | 2018-01-26 13:08:43 +0000 | [diff] [blame] | 739 | int ret = 0; |
Charles Keepax | 1f88eb0 | 2013-02-05 10:41:47 +0000 | [diff] [blame] | 740 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 741 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Charles Keepax | 1f88eb0 | 2013-02-05 10:41:47 +0000 | [diff] [blame] | 742 | |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 743 | for_each_rtdcom(rtd, rtdcom) { |
| 744 | component = rtdcom->component; |
| 745 | |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 746 | if (!component->driver->compr_ops || |
| 747 | !component->driver->compr_ops->copy) |
| 748 | continue; |
| 749 | |
Charles Keepax | 290df4d3 | 2018-01-26 13:08:43 +0000 | [diff] [blame] | 750 | ret = component->driver->compr_ops->copy(cstream, buf, count); |
| 751 | break; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 752 | } |
Charles Keepax | 290df4d3 | 2018-01-26 13:08:43 +0000 | [diff] [blame] | 753 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 754 | mutex_unlock(&rtd->card->pcm_mutex); |
Charles Keepax | 1f88eb0 | 2013-02-05 10:41:47 +0000 | [diff] [blame] | 755 | return ret; |
| 756 | } |
| 757 | |
Vinod Koul | 02bd90e | 2013-07-28 20:06:15 +0530 | [diff] [blame] | 758 | static int soc_compr_set_metadata(struct snd_compr_stream *cstream, |
Charles Keepax | 89027d9 | 2018-04-26 17:30:07 +0100 | [diff] [blame] | 759 | struct snd_compr_metadata *metadata) |
Jeeja KP | 36953d9 | 2013-03-26 21:22:28 +0530 | [diff] [blame] | 760 | { |
| 761 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 762 | struct snd_soc_component *component; |
| 763 | struct snd_soc_rtdcom_list *rtdcom; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 764 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 765 | int ret; |
Jeeja KP | 36953d9 | 2013-03-26 21:22:28 +0530 | [diff] [blame] | 766 | |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 767 | if (cpu_dai->driver->cops && cpu_dai->driver->cops->set_metadata) { |
| 768 | ret = cpu_dai->driver->cops->set_metadata(cstream, metadata, cpu_dai); |
| 769 | if (ret < 0) |
| 770 | return ret; |
| 771 | } |
| 772 | |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 773 | for_each_rtdcom(rtd, rtdcom) { |
| 774 | component = rtdcom->component; |
| 775 | |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 776 | if (!component->driver->compr_ops || |
| 777 | !component->driver->compr_ops->set_metadata) |
| 778 | continue; |
| 779 | |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 780 | ret = component->driver->compr_ops->set_metadata(cstream, |
| 781 | metadata); |
| 782 | if (ret < 0) |
| 783 | return ret; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 784 | } |
Jeeja KP | 36953d9 | 2013-03-26 21:22:28 +0530 | [diff] [blame] | 785 | |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 786 | return 0; |
Jeeja KP | 36953d9 | 2013-03-26 21:22:28 +0530 | [diff] [blame] | 787 | } |
| 788 | |
Vinod Koul | 02bd90e | 2013-07-28 20:06:15 +0530 | [diff] [blame] | 789 | static int soc_compr_get_metadata(struct snd_compr_stream *cstream, |
Charles Keepax | 89027d9 | 2018-04-26 17:30:07 +0100 | [diff] [blame] | 790 | struct snd_compr_metadata *metadata) |
Jeeja KP | 36953d9 | 2013-03-26 21:22:28 +0530 | [diff] [blame] | 791 | { |
| 792 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 793 | struct snd_soc_component *component; |
| 794 | struct snd_soc_rtdcom_list *rtdcom; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 795 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 796 | int ret; |
Jeeja KP | 36953d9 | 2013-03-26 21:22:28 +0530 | [diff] [blame] | 797 | |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 798 | if (cpu_dai->driver->cops && cpu_dai->driver->cops->get_metadata) { |
| 799 | ret = cpu_dai->driver->cops->get_metadata(cstream, metadata, cpu_dai); |
| 800 | if (ret < 0) |
| 801 | return ret; |
| 802 | } |
| 803 | |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 804 | for_each_rtdcom(rtd, rtdcom) { |
| 805 | component = rtdcom->component; |
| 806 | |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 807 | if (!component->driver->compr_ops || |
| 808 | !component->driver->compr_ops->get_metadata) |
| 809 | continue; |
| 810 | |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 811 | return component->driver->compr_ops->get_metadata(cstream, |
| 812 | metadata); |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 813 | } |
Jeeja KP | 36953d9 | 2013-03-26 21:22:28 +0530 | [diff] [blame] | 814 | |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 815 | return 0; |
Jeeja KP | 36953d9 | 2013-03-26 21:22:28 +0530 | [diff] [blame] | 816 | } |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 817 | |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 818 | /* ASoC Compress operations */ |
| 819 | static struct snd_compr_ops soc_compr_ops = { |
| 820 | .open = soc_compr_open, |
| 821 | .free = soc_compr_free, |
| 822 | .set_params = soc_compr_set_params, |
Vinod Koul | 02bd90e | 2013-07-28 20:06:15 +0530 | [diff] [blame] | 823 | .set_metadata = soc_compr_set_metadata, |
| 824 | .get_metadata = soc_compr_get_metadata, |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 825 | .get_params = soc_compr_get_params, |
| 826 | .trigger = soc_compr_trigger, |
| 827 | .pointer = soc_compr_pointer, |
| 828 | .ack = soc_compr_ack, |
| 829 | .get_caps = soc_compr_get_caps, |
| 830 | .get_codec_caps = soc_compr_get_codec_caps |
| 831 | }; |
| 832 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 833 | /* ASoC Dynamic Compress operations */ |
| 834 | static struct snd_compr_ops soc_compr_dyn_ops = { |
| 835 | .open = soc_compr_open_fe, |
| 836 | .free = soc_compr_free_fe, |
| 837 | .set_params = soc_compr_set_params_fe, |
| 838 | .get_params = soc_compr_get_params, |
| 839 | .set_metadata = soc_compr_set_metadata, |
| 840 | .get_metadata = soc_compr_get_metadata, |
| 841 | .trigger = soc_compr_trigger_fe, |
| 842 | .pointer = soc_compr_pointer, |
| 843 | .ack = soc_compr_ack, |
| 844 | .get_caps = soc_compr_get_caps, |
| 845 | .get_codec_caps = soc_compr_get_codec_caps |
| 846 | }; |
| 847 | |
Jie Yang | 6f0c422 | 2015-10-13 23:41:00 +0800 | [diff] [blame] | 848 | /** |
| 849 | * snd_soc_new_compress - create a new compress. |
| 850 | * |
| 851 | * @rtd: The runtime for which we will create compress |
| 852 | * @num: the device index number (zero based - shared with normal PCMs) |
| 853 | * |
| 854 | * Return: 0 for success, else error. |
| 855 | */ |
| 856 | int snd_soc_new_compress(struct snd_soc_pcm_runtime *rtd, int num) |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 857 | { |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 858 | struct snd_soc_component *component; |
| 859 | struct snd_soc_rtdcom_list *rtdcom; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 860 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
| 861 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
| 862 | struct snd_compr *compr; |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 863 | struct snd_pcm *be_pcm; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 864 | char new_name[64]; |
| 865 | int ret = 0, direction = 0; |
Vinod Koul | a106804 | 2016-01-07 21:48:14 +0530 | [diff] [blame] | 866 | int playback = 0, capture = 0; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 867 | |
Benoit Cousson | 8151d5e | 2014-07-08 23:19:37 +0200 | [diff] [blame] | 868 | if (rtd->num_codecs > 1) { |
Charles Keepax | 141dfc9 | 2018-01-26 13:08:45 +0000 | [diff] [blame] | 869 | dev_err(rtd->card->dev, |
| 870 | "Compress ASoC: Multicodec not supported\n"); |
Benoit Cousson | 8151d5e | 2014-07-08 23:19:37 +0200 | [diff] [blame] | 871 | return -EINVAL; |
| 872 | } |
| 873 | |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 874 | /* check client and interface hw capabilities */ |
Kuninori Morimoto | 467fece | 2019-07-22 10:36:16 +0900 | [diff] [blame] | 875 | if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_PLAYBACK) && |
| 876 | snd_soc_dai_stream_valid(cpu_dai, SNDRV_PCM_STREAM_PLAYBACK)) |
Vinod Koul | a106804 | 2016-01-07 21:48:14 +0530 | [diff] [blame] | 877 | playback = 1; |
Kuninori Morimoto | 467fece | 2019-07-22 10:36:16 +0900 | [diff] [blame] | 878 | if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_CAPTURE) && |
| 879 | snd_soc_dai_stream_valid(cpu_dai, SNDRV_PCM_STREAM_CAPTURE)) |
Vinod Koul | a106804 | 2016-01-07 21:48:14 +0530 | [diff] [blame] | 880 | capture = 1; |
| 881 | |
Vinod Koul | a106804 | 2016-01-07 21:48:14 +0530 | [diff] [blame] | 882 | /* |
| 883 | * Compress devices are unidirectional so only one of the directions |
| 884 | * should be set, check for that (xor) |
| 885 | */ |
| 886 | if (playback + capture != 1) { |
Charles Keepax | 141dfc9 | 2018-01-26 13:08:45 +0000 | [diff] [blame] | 887 | dev_err(rtd->card->dev, |
| 888 | "Compress ASoC: Invalid direction for P %d, C %d\n", |
| 889 | playback, capture); |
Charles Keepax | daa2db5 | 2013-04-18 11:02:38 +0100 | [diff] [blame] | 890 | return -EINVAL; |
Vinod Koul | a106804 | 2016-01-07 21:48:14 +0530 | [diff] [blame] | 891 | } |
| 892 | |
Peng Donglin | aeb6fa0 | 2017-08-16 22:47:53 +0800 | [diff] [blame] | 893 | if (playback) |
Vinod Koul | a106804 | 2016-01-07 21:48:14 +0530 | [diff] [blame] | 894 | direction = SND_COMPRESS_PLAYBACK; |
| 895 | else |
| 896 | direction = SND_COMPRESS_CAPTURE; |
Charles Keepax | daa2db5 | 2013-04-18 11:02:38 +0100 | [diff] [blame] | 897 | |
Amadeusz Sławiński | 09f448a | 2019-06-17 13:36:36 +0200 | [diff] [blame] | 898 | compr = devm_kzalloc(rtd->card->dev, sizeof(*compr), GFP_KERNEL); |
Markus Elfring | 7a0cf42 | 2017-08-10 16:21:34 +0200 | [diff] [blame] | 899 | if (!compr) |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 900 | return -ENOMEM; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 901 | |
Charles Keepax | 1f88eb0 | 2013-02-05 10:41:47 +0000 | [diff] [blame] | 902 | compr->ops = devm_kzalloc(rtd->card->dev, sizeof(soc_compr_ops), |
| 903 | GFP_KERNEL); |
Amadeusz Sławiński | 09f448a | 2019-06-17 13:36:36 +0200 | [diff] [blame] | 904 | if (!compr->ops) |
| 905 | return -ENOMEM; |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 906 | |
| 907 | if (rtd->dai_link->dynamic) { |
| 908 | snprintf(new_name, sizeof(new_name), "(%s)", |
| 909 | rtd->dai_link->stream_name); |
| 910 | |
| 911 | ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num, |
Qais Yousef | d3268a4 | 2015-01-14 08:47:29 +0000 | [diff] [blame] | 912 | rtd->dai_link->dpcm_playback, |
| 913 | rtd->dai_link->dpcm_capture, &be_pcm); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 914 | if (ret < 0) { |
Charles Keepax | 141dfc9 | 2018-01-26 13:08:45 +0000 | [diff] [blame] | 915 | dev_err(rtd->card->dev, |
| 916 | "Compress ASoC: can't create compressed for %s: %d\n", |
| 917 | rtd->dai_link->name, ret); |
Amadeusz Sławiński | 09f448a | 2019-06-17 13:36:36 +0200 | [diff] [blame] | 918 | return ret; |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 919 | } |
| 920 | |
| 921 | rtd->pcm = be_pcm; |
| 922 | rtd->fe_compr = 1; |
Qais Yousef | d3268a4 | 2015-01-14 08:47:29 +0000 | [diff] [blame] | 923 | if (rtd->dai_link->dpcm_playback) |
| 924 | be_pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd; |
| 925 | else if (rtd->dai_link->dpcm_capture) |
| 926 | be_pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd; |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 927 | memcpy(compr->ops, &soc_compr_dyn_ops, sizeof(soc_compr_dyn_ops)); |
Peng Donglin | aeb6fa0 | 2017-08-16 22:47:53 +0800 | [diff] [blame] | 928 | } else { |
| 929 | snprintf(new_name, sizeof(new_name), "%s %s-%d", |
| 930 | rtd->dai_link->stream_name, codec_dai->name, num); |
| 931 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 932 | memcpy(compr->ops, &soc_compr_ops, sizeof(soc_compr_ops)); |
Peng Donglin | aeb6fa0 | 2017-08-16 22:47:53 +0800 | [diff] [blame] | 933 | } |
Charles Keepax | 1f88eb0 | 2013-02-05 10:41:47 +0000 | [diff] [blame] | 934 | |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 935 | for_each_rtdcom(rtd, rtdcom) { |
| 936 | component = rtdcom->component; |
| 937 | |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 938 | if (!component->driver->compr_ops || |
| 939 | !component->driver->compr_ops->copy) |
| 940 | continue; |
| 941 | |
| 942 | compr->ops->copy = soc_compr_copy; |
Charles Keepax | ca76db6 | 2018-04-26 17:30:04 +0100 | [diff] [blame] | 943 | break; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 944 | } |
| 945 | |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 946 | mutex_init(&compr->lock); |
Richard Fitzgerald | e5241a8 | 2015-11-25 13:00:24 +0000 | [diff] [blame] | 947 | ret = snd_compress_new(rtd->card->snd_card, num, direction, |
| 948 | new_name, compr); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 949 | if (ret < 0) { |
Kuninori Morimoto | e5acfc7 | 2017-12-05 04:23:05 +0000 | [diff] [blame] | 950 | component = rtd->codec_dai->component; |
Charles Keepax | 141dfc9 | 2018-01-26 13:08:45 +0000 | [diff] [blame] | 951 | dev_err(component->dev, |
| 952 | "Compress ASoC: can't create compress for codec %s: %d\n", |
| 953 | component->name, ret); |
Amadeusz Sławiński | 09f448a | 2019-06-17 13:36:36 +0200 | [diff] [blame] | 954 | return ret; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 955 | } |
| 956 | |
Charles Keepax | 202c8f7 | 2013-01-24 09:44:30 +0000 | [diff] [blame] | 957 | /* DAPM dai link stream work */ |
| 958 | INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work); |
| 959 | |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 960 | rtd->compr = compr; |
| 961 | compr->private_data = rtd; |
| 962 | |
Charles Keepax | 141dfc9 | 2018-01-26 13:08:45 +0000 | [diff] [blame] | 963 | dev_info(rtd->card->dev, "Compress ASoC: %s <-> %s mapping ok\n", |
| 964 | codec_dai->name, cpu_dai->name); |
Charles Keepax | 1f88eb0 | 2013-02-05 10:41:47 +0000 | [diff] [blame] | 965 | |
Amadeusz Sławiński | 09f448a | 2019-06-17 13:36:36 +0200 | [diff] [blame] | 966 | return 0; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 967 | } |
Jie Yang | 6f0c422 | 2015-10-13 23:41:00 +0800 | [diff] [blame] | 968 | EXPORT_SYMBOL_GPL(snd_soc_new_compress); |