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> |
Kuninori Morimoto | 9ab711c | 2020-05-25 09:57:41 +0900 | [diff] [blame] | 22 | #include <sound/soc-link.h> |
Cezary Rojewski | 4137f4b | 2019-12-17 10:58:50 +0100 | [diff] [blame] | 23 | #include <linux/pm_runtime.h> |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 24 | |
Peter Ujfalusi | cd46f38 | 2021-09-01 12:52:55 +0300 | [diff] [blame] | 25 | static int snd_soc_compr_components_open(struct snd_compr_stream *cstream) |
| 26 | { |
| 27 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
| 28 | struct snd_soc_component *component; |
| 29 | int ret = 0; |
| 30 | int i; |
| 31 | |
| 32 | for_each_rtd_components(rtd, i, component) { |
| 33 | ret = snd_soc_component_module_get_when_open(component, cstream); |
| 34 | if (ret < 0) |
| 35 | break; |
| 36 | |
| 37 | ret = snd_soc_component_compr_open(component, cstream); |
| 38 | if (ret < 0) |
| 39 | break; |
| 40 | } |
| 41 | |
| 42 | return ret; |
| 43 | } |
| 44 | |
| 45 | static void snd_soc_compr_components_free(struct snd_compr_stream *cstream, |
| 46 | int rollback) |
| 47 | { |
| 48 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
| 49 | struct snd_soc_component *component; |
| 50 | int i; |
| 51 | |
| 52 | for_each_rtd_components(rtd, i, component) { |
| 53 | snd_soc_component_compr_free(component, cstream, rollback); |
| 54 | snd_soc_component_module_put_when_close(component, cstream, rollback); |
| 55 | } |
| 56 | } |
| 57 | |
Kuninori Morimoto | 453d32c | 2020-11-19 08:50:19 +0900 | [diff] [blame] | 58 | static int soc_compr_clean(struct snd_compr_stream *cstream, int rollback) |
Kuninori Morimoto | 15a7b8c | 2020-11-19 08:49:57 +0900 | [diff] [blame] | 59 | { |
| 60 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
| 61 | struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0); |
| 62 | struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0); |
| 63 | int stream = cstream->direction; /* SND_COMPRESS_xxx is same as SNDRV_PCM_STREAM_xxx */ |
| 64 | |
| 65 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
| 66 | |
Kuninori Morimoto | 453d32c | 2020-11-19 08:50:19 +0900 | [diff] [blame] | 67 | if (!rollback) |
| 68 | snd_soc_runtime_deactivate(rtd, stream); |
Kuninori Morimoto | 15a7b8c | 2020-11-19 08:49:57 +0900 | [diff] [blame] | 69 | |
| 70 | snd_soc_dai_digital_mute(codec_dai, 1, stream); |
| 71 | |
| 72 | if (!snd_soc_dai_active(cpu_dai)) |
| 73 | cpu_dai->rate = 0; |
| 74 | |
| 75 | if (!snd_soc_dai_active(codec_dai)) |
| 76 | codec_dai->rate = 0; |
| 77 | |
Kuninori Morimoto | 453d32c | 2020-11-19 08:50:19 +0900 | [diff] [blame] | 78 | snd_soc_link_compr_shutdown(cstream, rollback); |
Kuninori Morimoto | 15a7b8c | 2020-11-19 08:49:57 +0900 | [diff] [blame] | 79 | |
Peter Ujfalusi | cd46f38 | 2021-09-01 12:52:55 +0300 | [diff] [blame] | 80 | snd_soc_compr_components_free(cstream, rollback); |
Kuninori Morimoto | 15a7b8c | 2020-11-19 08:49:57 +0900 | [diff] [blame] | 81 | |
Kuninori Morimoto | 453d32c | 2020-11-19 08:50:19 +0900 | [diff] [blame] | 82 | snd_soc_dai_compr_shutdown(cpu_dai, cstream, rollback); |
Kuninori Morimoto | 15a7b8c | 2020-11-19 08:49:57 +0900 | [diff] [blame] | 83 | |
Kuninori Morimoto | 453d32c | 2020-11-19 08:50:19 +0900 | [diff] [blame] | 84 | if (!rollback) |
| 85 | snd_soc_dapm_stream_stop(rtd, stream); |
Kuninori Morimoto | 15a7b8c | 2020-11-19 08:49:57 +0900 | [diff] [blame] | 86 | |
| 87 | mutex_unlock(&rtd->card->pcm_mutex); |
| 88 | |
Kuninori Morimoto | 453d32c | 2020-11-19 08:50:19 +0900 | [diff] [blame] | 89 | snd_soc_pcm_component_pm_runtime_put(rtd, cstream, rollback); |
Kuninori Morimoto | 15a7b8c | 2020-11-19 08:49:57 +0900 | [diff] [blame] | 90 | |
| 91 | return 0; |
| 92 | } |
| 93 | |
Kuninori Morimoto | 453d32c | 2020-11-19 08:50:19 +0900 | [diff] [blame] | 94 | static int soc_compr_free(struct snd_compr_stream *cstream) |
| 95 | { |
| 96 | return soc_compr_clean(cstream, 0); |
| 97 | } |
| 98 | |
Charles Keepax | 1e57b82 | 2018-04-24 16:39:03 +0100 | [diff] [blame] | 99 | static int soc_compr_open(struct snd_compr_stream *cstream) |
| 100 | { |
| 101 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Kuninori Morimoto | c2233a2 | 2020-03-30 10:47:37 +0900 | [diff] [blame] | 102 | struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0); |
Kuninori Morimoto | 7428d8c | 2020-10-30 10:01:22 +0900 | [diff] [blame] | 103 | int stream = cstream->direction; /* SND_COMPRESS_xxx is same as SNDRV_PCM_STREAM_xxx */ |
Kuninori Morimoto | 939a5cf | 2020-09-28 09:01:17 +0900 | [diff] [blame] | 104 | int ret; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 105 | |
Kuninori Morimoto | 939a5cf | 2020-09-28 09:01:17 +0900 | [diff] [blame] | 106 | ret = snd_soc_pcm_component_pm_runtime_get(rtd, cstream); |
| 107 | if (ret < 0) |
Kuninori Morimoto | 453d32c | 2020-11-19 08:50:19 +0900 | [diff] [blame] | 108 | goto err_no_lock; |
Cezary Rojewski | 4137f4b | 2019-12-17 10:58:50 +0100 | [diff] [blame] | 109 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 110 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Charles Keepax | 15e2e61 | 2013-01-24 09:44:29 +0000 | [diff] [blame] | 111 | |
Kuninori Morimoto | b5ae4cc | 2020-04-24 08:15:24 +0900 | [diff] [blame] | 112 | ret = snd_soc_dai_compr_startup(cpu_dai, cstream); |
| 113 | if (ret < 0) |
Kuninori Morimoto | 453d32c | 2020-11-19 08:50:19 +0900 | [diff] [blame] | 114 | goto err; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 115 | |
Peter Ujfalusi | cd46f38 | 2021-09-01 12:52:55 +0300 | [diff] [blame] | 116 | ret = snd_soc_compr_components_open(cstream); |
Charles Keepax | 1e57b82 | 2018-04-24 16:39:03 +0100 | [diff] [blame] | 117 | if (ret < 0) |
Kuninori Morimoto | 453d32c | 2020-11-19 08:50:19 +0900 | [diff] [blame] | 118 | goto err; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 119 | |
Kuninori Morimoto | 9ab711c | 2020-05-25 09:57:41 +0900 | [diff] [blame] | 120 | ret = snd_soc_link_compr_startup(cstream); |
| 121 | if (ret < 0) |
Kuninori Morimoto | 453d32c | 2020-11-19 08:50:19 +0900 | [diff] [blame] | 122 | goto err; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 123 | |
Kuninori Morimoto | eb84959 | 2020-10-30 10:01:15 +0900 | [diff] [blame] | 124 | snd_soc_runtime_activate(rtd, stream); |
Kuninori Morimoto | 453d32c | 2020-11-19 08:50:19 +0900 | [diff] [blame] | 125 | err: |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 126 | mutex_unlock(&rtd->card->pcm_mutex); |
Kuninori Morimoto | 453d32c | 2020-11-19 08:50:19 +0900 | [diff] [blame] | 127 | err_no_lock: |
| 128 | if (ret < 0) |
| 129 | soc_compr_clean(cstream, 1); |
Cezary Rojewski | 4137f4b | 2019-12-17 10:58:50 +0100 | [diff] [blame] | 130 | |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 131 | return ret; |
| 132 | } |
| 133 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 134 | static int soc_compr_open_fe(struct snd_compr_stream *cstream) |
| 135 | { |
| 136 | struct snd_soc_pcm_runtime *fe = cstream->private_data; |
Satish Babu Patakokila | 01b8ced | 2017-06-16 17:33:40 -0700 | [diff] [blame] | 137 | struct snd_pcm_substream *fe_substream = |
| 138 | fe->pcm->streams[cstream->direction].substream; |
Kuninori Morimoto | c2233a2 | 2020-03-30 10:47:37 +0900 | [diff] [blame] | 139 | struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(fe, 0); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 140 | struct snd_soc_dpcm *dpcm; |
| 141 | struct snd_soc_dapm_widget_list *list; |
Kuninori Morimoto | 7428d8c | 2020-10-30 10:01:22 +0900 | [diff] [blame] | 142 | int stream = cstream->direction; /* SND_COMPRESS_xxx is same as SNDRV_PCM_STREAM_xxx */ |
Charles Keepax | 572e6c8 | 2018-04-24 16:39:01 +0100 | [diff] [blame] | 143 | int ret; |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 144 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 145 | mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME); |
Srinivas Kandagatla | 0b0722e | 2018-08-03 13:30:03 +0100 | [diff] [blame] | 146 | fe->dpcm[stream].runtime = fe_substream->runtime; |
| 147 | |
| 148 | ret = dpcm_path_get(fe, stream, &list); |
| 149 | if (ret < 0) |
| 150 | goto be_err; |
Kuninori Morimoto | d479f00 | 2021-03-15 09:57:52 +0900 | [diff] [blame] | 151 | |
Srinivas Kandagatla | 0b0722e | 2018-08-03 13:30:03 +0100 | [diff] [blame] | 152 | /* calculate valid and active FE <-> BE dpcms */ |
| 153 | dpcm_process_paths(fe, stream, &list, 1); |
| 154 | fe->dpcm[stream].runtime = fe_substream->runtime; |
| 155 | |
| 156 | fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE; |
| 157 | |
| 158 | ret = dpcm_be_dai_startup(fe, stream); |
| 159 | if (ret < 0) { |
| 160 | /* clean up all links */ |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 161 | for_each_dpcm_be(fe, stream, dpcm) |
Srinivas Kandagatla | 0b0722e | 2018-08-03 13:30:03 +0100 | [diff] [blame] | 162 | dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE; |
| 163 | |
| 164 | dpcm_be_disconnect(fe, stream); |
| 165 | fe->dpcm[stream].runtime = NULL; |
| 166 | goto out; |
| 167 | } |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 168 | |
Kuninori Morimoto | b5ae4cc | 2020-04-24 08:15:24 +0900 | [diff] [blame] | 169 | ret = snd_soc_dai_compr_startup(cpu_dai, cstream); |
| 170 | if (ret < 0) |
| 171 | goto out; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 172 | |
Peter Ujfalusi | cd46f38 | 2021-09-01 12:52:55 +0300 | [diff] [blame] | 173 | ret = snd_soc_compr_components_open(cstream); |
Charles Keepax | 1e57b82 | 2018-04-24 16:39:03 +0100 | [diff] [blame] | 174 | if (ret < 0) |
Srinivas Kandagatla | 0b0722e | 2018-08-03 13:30:03 +0100 | [diff] [blame] | 175 | goto open_err; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 176 | |
Kuninori Morimoto | 9ab711c | 2020-05-25 09:57:41 +0900 | [diff] [blame] | 177 | ret = snd_soc_link_compr_startup(cstream); |
| 178 | if (ret < 0) |
| 179 | goto machine_err; |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 180 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 181 | dpcm_clear_pending_state(fe, stream); |
| 182 | dpcm_path_put(&list); |
| 183 | |
| 184 | fe->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN; |
| 185 | fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO; |
| 186 | |
Gyeongtaek Lee | 45475bf | 2021-04-07 13:14:04 +0900 | [diff] [blame] | 187 | mutex_lock_nested(&fe->card->pcm_mutex, fe->card->pcm_subclass); |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 188 | snd_soc_runtime_activate(fe, stream); |
Gyeongtaek Lee | 45475bf | 2021-04-07 13:14:04 +0900 | [diff] [blame] | 189 | mutex_unlock(&fe->card->pcm_mutex); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 190 | |
| 191 | mutex_unlock(&fe->card->mutex); |
| 192 | |
| 193 | return 0; |
| 194 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 195 | machine_err: |
Peter Ujfalusi | cd46f38 | 2021-09-01 12:52:55 +0300 | [diff] [blame] | 196 | snd_soc_compr_components_free(cstream, 1); |
Srinivas Kandagatla | 0b0722e | 2018-08-03 13:30:03 +0100 | [diff] [blame] | 197 | open_err: |
Kuninori Morimoto | 1e6a93c | 2020-11-19 08:50:04 +0900 | [diff] [blame] | 198 | snd_soc_dai_compr_shutdown(cpu_dai, cstream, 1); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 199 | out: |
Srinivas Kandagatla | 0b0722e | 2018-08-03 13:30:03 +0100 | [diff] [blame] | 200 | dpcm_path_put(&list); |
| 201 | be_err: |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 202 | fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO; |
| 203 | mutex_unlock(&fe->card->mutex); |
| 204 | return ret; |
| 205 | } |
| 206 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 207 | static int soc_compr_free_fe(struct snd_compr_stream *cstream) |
| 208 | { |
| 209 | struct snd_soc_pcm_runtime *fe = cstream->private_data; |
Kuninori Morimoto | c2233a2 | 2020-03-30 10:47:37 +0900 | [diff] [blame] | 210 | struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(fe, 0); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 211 | struct snd_soc_dpcm *dpcm; |
Kuninori Morimoto | 7428d8c | 2020-10-30 10:01:22 +0900 | [diff] [blame] | 212 | int stream = cstream->direction; /* SND_COMPRESS_xxx is same as SNDRV_PCM_STREAM_xxx */ |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 213 | |
| 214 | mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME); |
| 215 | |
Gyeongtaek Lee | 45475bf | 2021-04-07 13:14:04 +0900 | [diff] [blame] | 216 | mutex_lock_nested(&fe->card->pcm_mutex, fe->card->pcm_subclass); |
Lars-Peter Clausen | 24894b7 | 2014-03-05 13:17:43 +0100 | [diff] [blame] | 217 | snd_soc_runtime_deactivate(fe, stream); |
Gyeongtaek Lee | 45475bf | 2021-04-07 13:14:04 +0900 | [diff] [blame] | 218 | mutex_unlock(&fe->card->pcm_mutex); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 219 | |
| 220 | fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE; |
| 221 | |
Kuninori Morimoto | f52366e | 2021-03-15 09:58:32 +0900 | [diff] [blame] | 222 | dpcm_be_dai_hw_free(fe, stream); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 223 | |
Kuninori Morimoto | 531590b | 2021-03-09 10:08:17 +0900 | [diff] [blame] | 224 | dpcm_be_dai_shutdown(fe, stream); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 225 | |
| 226 | /* mark FE's links ready to prune */ |
Kuninori Morimoto | 8d6258a | 2018-09-18 01:31:09 +0000 | [diff] [blame] | 227 | for_each_dpcm_be(fe, stream, dpcm) |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 228 | dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE; |
| 229 | |
Kuninori Morimoto | 1c53123 | 2020-02-21 10:25:18 +0900 | [diff] [blame] | 230 | dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 231 | |
| 232 | fe->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE; |
| 233 | fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO; |
| 234 | |
| 235 | dpcm_be_disconnect(fe, stream); |
| 236 | |
| 237 | fe->dpcm[stream].runtime = NULL; |
| 238 | |
Kuninori Morimoto | cd7c7d1 | 2020-11-19 08:50:14 +0900 | [diff] [blame] | 239 | snd_soc_link_compr_shutdown(cstream, 0); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 240 | |
Peter Ujfalusi | cd46f38 | 2021-09-01 12:52:55 +0300 | [diff] [blame] | 241 | snd_soc_compr_components_free(cstream, 0); |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 242 | |
Kuninori Morimoto | 1e6a93c | 2020-11-19 08:50:04 +0900 | [diff] [blame] | 243 | snd_soc_dai_compr_shutdown(cpu_dai, cstream, 0); |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 244 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 245 | mutex_unlock(&fe->card->mutex); |
| 246 | return 0; |
| 247 | } |
| 248 | |
Charles Keepax | 4ef0ecb | 2019-02-05 11:18:13 +0000 | [diff] [blame] | 249 | static int soc_compr_trigger(struct snd_compr_stream *cstream, int cmd) |
| 250 | { |
| 251 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Kuninori Morimoto | c2233a2 | 2020-03-30 10:47:37 +0900 | [diff] [blame] | 252 | struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0); |
| 253 | struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0); |
Kuninori Morimoto | 7428d8c | 2020-10-30 10:01:22 +0900 | [diff] [blame] | 254 | int stream = cstream->direction; /* SND_COMPRESS_xxx is same as SNDRV_PCM_STREAM_xxx */ |
Charles Keepax | 4ef0ecb | 2019-02-05 11:18:13 +0000 | [diff] [blame] | 255 | int ret; |
| 256 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 257 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Charles Keepax | 4ef0ecb | 2019-02-05 11:18:13 +0000 | [diff] [blame] | 258 | |
Kuninori Morimoto | 08aee25 | 2020-11-13 13:15:33 +0900 | [diff] [blame] | 259 | ret = snd_soc_component_compr_trigger(cstream, cmd); |
Charles Keepax | 4ef0ecb | 2019-02-05 11:18:13 +0000 | [diff] [blame] | 260 | if (ret < 0) |
| 261 | goto out; |
| 262 | |
Kuninori Morimoto | eb08411 | 2020-04-24 08:15:32 +0900 | [diff] [blame] | 263 | ret = snd_soc_dai_compr_trigger(cpu_dai, cstream, cmd); |
| 264 | if (ret < 0) |
| 265 | goto out; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 266 | |
Mark Brown | da18396 | 2013-02-06 15:44:07 +0000 | [diff] [blame] | 267 | switch (cmd) { |
| 268 | case SNDRV_PCM_TRIGGER_START: |
Kuninori Morimoto | eb84959 | 2020-10-30 10:01:15 +0900 | [diff] [blame] | 269 | snd_soc_dai_digital_mute(codec_dai, 0, stream); |
Mark Brown | da18396 | 2013-02-06 15:44:07 +0000 | [diff] [blame] | 270 | break; |
| 271 | case SNDRV_PCM_TRIGGER_STOP: |
Kuninori Morimoto | eb84959 | 2020-10-30 10:01:15 +0900 | [diff] [blame] | 272 | snd_soc_dai_digital_mute(codec_dai, 1, stream); |
Mark Brown | da18396 | 2013-02-06 15:44:07 +0000 | [diff] [blame] | 273 | break; |
Mark Brown | e38b9b7 | 2013-02-06 13:52:42 +0000 | [diff] [blame] | 274 | } |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 275 | |
Charles Keepax | 15e2e61 | 2013-01-24 09:44:29 +0000 | [diff] [blame] | 276 | out: |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 277 | mutex_unlock(&rtd->card->pcm_mutex); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 278 | return ret; |
| 279 | } |
| 280 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 281 | static int soc_compr_trigger_fe(struct snd_compr_stream *cstream, int cmd) |
| 282 | { |
| 283 | struct snd_soc_pcm_runtime *fe = cstream->private_data; |
Kuninori Morimoto | c2233a2 | 2020-03-30 10:47:37 +0900 | [diff] [blame] | 284 | struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(fe, 0); |
Kuninori Morimoto | 7428d8c | 2020-10-30 10:01:22 +0900 | [diff] [blame] | 285 | int stream = cstream->direction; /* SND_COMPRESS_xxx is same as SNDRV_PCM_STREAM_xxx */ |
| 286 | int ret; |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 287 | |
| 288 | if (cmd == SND_COMPR_TRIGGER_PARTIAL_DRAIN || |
Charles Keepax | 4ef0ecb | 2019-02-05 11:18:13 +0000 | [diff] [blame] | 289 | cmd == SND_COMPR_TRIGGER_DRAIN) |
Kuninori Morimoto | 08aee25 | 2020-11-13 13:15:33 +0900 | [diff] [blame] | 290 | return snd_soc_component_compr_trigger(cstream, cmd); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 291 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 292 | mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME); |
| 293 | |
Kuninori Morimoto | eb08411 | 2020-04-24 08:15:32 +0900 | [diff] [blame] | 294 | ret = snd_soc_dai_compr_trigger(cpu_dai, cstream, cmd); |
| 295 | if (ret < 0) |
| 296 | goto out; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 297 | |
Kuninori Morimoto | 08aee25 | 2020-11-13 13:15:33 +0900 | [diff] [blame] | 298 | ret = snd_soc_component_compr_trigger(cstream, cmd); |
Charles Keepax | 4ef0ecb | 2019-02-05 11:18:13 +0000 | [diff] [blame] | 299 | if (ret < 0) |
| 300 | goto out; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 301 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 302 | fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE; |
| 303 | |
| 304 | ret = dpcm_be_dai_trigger(fe, stream, cmd); |
| 305 | |
| 306 | switch (cmd) { |
| 307 | case SNDRV_PCM_TRIGGER_START: |
| 308 | case SNDRV_PCM_TRIGGER_RESUME: |
| 309 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: |
| 310 | fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START; |
| 311 | break; |
| 312 | case SNDRV_PCM_TRIGGER_STOP: |
| 313 | case SNDRV_PCM_TRIGGER_SUSPEND: |
| 314 | fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP; |
| 315 | break; |
| 316 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: |
| 317 | fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED; |
| 318 | break; |
| 319 | } |
| 320 | |
| 321 | out: |
| 322 | fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO; |
| 323 | mutex_unlock(&fe->card->mutex); |
| 324 | return ret; |
| 325 | } |
| 326 | |
Charles Keepax | 4ef0ecb | 2019-02-05 11:18:13 +0000 | [diff] [blame] | 327 | static int soc_compr_set_params(struct snd_compr_stream *cstream, |
| 328 | struct snd_compr_params *params) |
| 329 | { |
| 330 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Kuninori Morimoto | c2233a2 | 2020-03-30 10:47:37 +0900 | [diff] [blame] | 331 | struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0); |
Kuninori Morimoto | 7428d8c | 2020-10-30 10:01:22 +0900 | [diff] [blame] | 332 | int stream = cstream->direction; /* SND_COMPRESS_xxx is same as SNDRV_PCM_STREAM_xxx */ |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 333 | int ret; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 334 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 335 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Charles Keepax | 15e2e61 | 2013-01-24 09:44:29 +0000 | [diff] [blame] | 336 | |
Charles Keepax | ef050be | 2018-04-24 16:39:02 +0100 | [diff] [blame] | 337 | /* |
| 338 | * First we call set_params for the CPU DAI, then the component |
| 339 | * driver this should configure the SoC side. If the machine has |
| 340 | * compressed ops then we call that as well. The expectation is |
| 341 | * that these callbacks will configure everything for this compress |
| 342 | * path, like configuring a PCM port for a CODEC. |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 343 | */ |
Kuninori Morimoto | 8dfedaf | 2020-04-24 08:15:36 +0900 | [diff] [blame] | 344 | ret = snd_soc_dai_compr_set_params(cpu_dai, cstream, params); |
| 345 | if (ret < 0) |
| 346 | goto err; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 347 | |
Kuninori Morimoto | ff08cf8 | 2020-11-13 13:15:49 +0900 | [diff] [blame] | 348 | ret = snd_soc_component_compr_set_params(cstream, params); |
Charles Keepax | 4ef0ecb | 2019-02-05 11:18:13 +0000 | [diff] [blame] | 349 | if (ret < 0) |
| 350 | goto err; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 351 | |
Kuninori Morimoto | eab810f | 2020-05-25 09:57:50 +0900 | [diff] [blame] | 352 | ret = snd_soc_link_compr_set_params(cstream); |
| 353 | if (ret < 0) |
| 354 | goto err; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 355 | |
Kuninori Morimoto | 7428d8c | 2020-10-30 10:01:22 +0900 | [diff] [blame] | 356 | snd_soc_dapm_stream_event(rtd, stream, SND_SOC_DAPM_STREAM_START); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 357 | |
Charles Keepax | fa40ef2 | 2013-03-27 16:39:01 +0000 | [diff] [blame] | 358 | /* cancel any delayed stream shutdown that is pending */ |
| 359 | rtd->pop_wait = 0; |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 360 | mutex_unlock(&rtd->card->pcm_mutex); |
Charles Keepax | fa40ef2 | 2013-03-27 16:39:01 +0000 | [diff] [blame] | 361 | |
| 362 | cancel_delayed_work_sync(&rtd->delayed_work); |
| 363 | |
Charles Keepax | 52cadf1 | 2019-02-05 11:18:12 +0000 | [diff] [blame] | 364 | return 0; |
Charles Keepax | fa40ef2 | 2013-03-27 16:39:01 +0000 | [diff] [blame] | 365 | |
| 366 | err: |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 367 | mutex_unlock(&rtd->card->pcm_mutex); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 368 | return ret; |
| 369 | } |
| 370 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 371 | static int soc_compr_set_params_fe(struct snd_compr_stream *cstream, |
Charles Keepax | 89027d9 | 2018-04-26 17:30:07 +0100 | [diff] [blame] | 372 | struct snd_compr_params *params) |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 373 | { |
| 374 | struct snd_soc_pcm_runtime *fe = cstream->private_data; |
Satish Babu Patakokila | 01b8ced | 2017-06-16 17:33:40 -0700 | [diff] [blame] | 375 | struct snd_pcm_substream *fe_substream = |
| 376 | fe->pcm->streams[cstream->direction].substream; |
Kuninori Morimoto | c2233a2 | 2020-03-30 10:47:37 +0900 | [diff] [blame] | 377 | struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(fe, 0); |
Kuninori Morimoto | 7428d8c | 2020-10-30 10:01:22 +0900 | [diff] [blame] | 378 | int stream = cstream->direction; /* SND_COMPRESS_xxx is same as SNDRV_PCM_STREAM_xxx */ |
| 379 | int ret; |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 380 | |
| 381 | mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME); |
| 382 | |
Srinivas Kandagatla | 0b0722e | 2018-08-03 13:30:03 +0100 | [diff] [blame] | 383 | /* |
| 384 | * Create an empty hw_params for the BE as the machine driver must |
| 385 | * fix this up to match DSP decoder and ASRC configuration. |
| 386 | * I.e. machine driver fixup for compressed BE is mandatory. |
| 387 | */ |
| 388 | memset(&fe->dpcm[fe_substream->stream].hw_params, 0, |
| 389 | sizeof(struct snd_pcm_hw_params)); |
| 390 | |
| 391 | fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE; |
| 392 | |
| 393 | ret = dpcm_be_dai_hw_params(fe, stream); |
| 394 | if (ret < 0) |
| 395 | goto out; |
| 396 | |
| 397 | ret = dpcm_be_dai_prepare(fe, stream); |
| 398 | if (ret < 0) |
| 399 | goto out; |
| 400 | |
Kuninori Morimoto | 8dfedaf | 2020-04-24 08:15:36 +0900 | [diff] [blame] | 401 | ret = snd_soc_dai_compr_set_params(cpu_dai, cstream, params); |
| 402 | if (ret < 0) |
| 403 | goto out; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 404 | |
Kuninori Morimoto | ff08cf8 | 2020-11-13 13:15:49 +0900 | [diff] [blame] | 405 | ret = snd_soc_component_compr_set_params(cstream, params); |
Charles Keepax | 4ef0ecb | 2019-02-05 11:18:13 +0000 | [diff] [blame] | 406 | if (ret < 0) |
| 407 | goto out; |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 408 | |
Kuninori Morimoto | eab810f | 2020-05-25 09:57:50 +0900 | [diff] [blame] | 409 | ret = snd_soc_link_compr_set_params(cstream); |
| 410 | if (ret < 0) |
| 411 | goto out; |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 412 | |
Daniel Mack | 15f6b09 | 2014-10-19 09:07:35 +0200 | [diff] [blame] | 413 | dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_START); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 414 | fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE; |
| 415 | |
| 416 | out: |
| 417 | fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO; |
| 418 | mutex_unlock(&fe->card->mutex); |
| 419 | return ret; |
| 420 | } |
| 421 | |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 422 | static int soc_compr_get_params(struct snd_compr_stream *cstream, |
Charles Keepax | 89027d9 | 2018-04-26 17:30:07 +0100 | [diff] [blame] | 423 | struct snd_codec *params) |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 424 | { |
| 425 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Kuninori Morimoto | c2233a2 | 2020-03-30 10:47:37 +0900 | [diff] [blame] | 426 | struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0); |
Kuninori Morimoto | 77c221e | 2020-11-13 13:15:56 +0900 | [diff] [blame] | 427 | int ret = 0; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 428 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 429 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Charles Keepax | 15e2e61 | 2013-01-24 09:44:29 +0000 | [diff] [blame] | 430 | |
Kuninori Morimoto | adbef543 | 2020-04-24 08:15:40 +0900 | [diff] [blame] | 431 | ret = snd_soc_dai_compr_get_params(cpu_dai, cstream, params); |
| 432 | if (ret < 0) |
| 433 | goto err; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 434 | |
Kuninori Morimoto | 77c221e | 2020-11-13 13:15:56 +0900 | [diff] [blame] | 435 | ret = snd_soc_component_compr_get_params(cstream, params); |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 436 | err: |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 437 | mutex_unlock(&rtd->card->pcm_mutex); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 438 | return ret; |
| 439 | } |
| 440 | |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 441 | static int soc_compr_ack(struct snd_compr_stream *cstream, size_t bytes) |
| 442 | { |
| 443 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Kuninori Morimoto | c2233a2 | 2020-03-30 10:47:37 +0900 | [diff] [blame] | 444 | struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0); |
Kuninori Morimoto | 0506b88 | 2020-11-13 13:16:17 +0900 | [diff] [blame] | 445 | int ret; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 446 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 447 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Charles Keepax | 15e2e61 | 2013-01-24 09:44:29 +0000 | [diff] [blame] | 448 | |
Kuninori Morimoto | 5329435 | 2020-04-24 08:15:45 +0900 | [diff] [blame] | 449 | ret = snd_soc_dai_compr_ack(cpu_dai, cstream, bytes); |
| 450 | if (ret < 0) |
| 451 | goto err; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 452 | |
Kuninori Morimoto | 0506b88 | 2020-11-13 13:16:17 +0900 | [diff] [blame] | 453 | ret = snd_soc_component_compr_ack(cstream, bytes); |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 454 | err: |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 455 | mutex_unlock(&rtd->card->pcm_mutex); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 456 | return ret; |
| 457 | } |
| 458 | |
| 459 | static int soc_compr_pointer(struct snd_compr_stream *cstream, |
Charles Keepax | 89027d9 | 2018-04-26 17:30:07 +0100 | [diff] [blame] | 460 | struct snd_compr_tstamp *tstamp) |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 461 | { |
| 462 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Kuninori Morimoto | 03ecea6 | 2020-11-13 13:16:24 +0900 | [diff] [blame] | 463 | int ret; |
Kuninori Morimoto | c2233a2 | 2020-03-30 10:47:37 +0900 | [diff] [blame] | 464 | struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 465 | |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 466 | mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass); |
Charles Keepax | 15e2e61 | 2013-01-24 09:44:29 +0000 | [diff] [blame] | 467 | |
Kuninori Morimoto | ed38cc5 | 2020-04-24 08:15:49 +0900 | [diff] [blame] | 468 | ret = snd_soc_dai_compr_pointer(cpu_dai, cstream, tstamp); |
| 469 | if (ret < 0) |
| 470 | goto out; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 471 | |
Kuninori Morimoto | 03ecea6 | 2020-11-13 13:16:24 +0900 | [diff] [blame] | 472 | ret = snd_soc_component_compr_pointer(cstream, tstamp); |
Kuninori Morimoto | ed38cc5 | 2020-04-24 08:15:49 +0900 | [diff] [blame] | 473 | out: |
Peter Ujfalusi | 72b745e | 2019-08-13 13:45:32 +0300 | [diff] [blame] | 474 | mutex_unlock(&rtd->card->pcm_mutex); |
Charles Keepax | 7c9190f | 2016-06-20 09:51:32 +0100 | [diff] [blame] | 475 | return ret; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 476 | } |
| 477 | |
Vinod Koul | 02bd90e | 2013-07-28 20:06:15 +0530 | [diff] [blame] | 478 | static int soc_compr_set_metadata(struct snd_compr_stream *cstream, |
Charles Keepax | 89027d9 | 2018-04-26 17:30:07 +0100 | [diff] [blame] | 479 | struct snd_compr_metadata *metadata) |
Jeeja KP | 36953d9 | 2013-03-26 21:22:28 +0530 | [diff] [blame] | 480 | { |
| 481 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Kuninori Morimoto | c2233a2 | 2020-03-30 10:47:37 +0900 | [diff] [blame] | 482 | struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0); |
Kuninori Morimoto | 1b308fb | 2020-11-13 13:16:36 +0900 | [diff] [blame] | 483 | int ret; |
Jeeja KP | 36953d9 | 2013-03-26 21:22:28 +0530 | [diff] [blame] | 484 | |
Kuninori Morimoto | 88b3a7d | 2020-04-24 08:15:54 +0900 | [diff] [blame] | 485 | ret = snd_soc_dai_compr_set_metadata(cpu_dai, cstream, metadata); |
| 486 | if (ret < 0) |
| 487 | return ret; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 488 | |
Kuninori Morimoto | 1b308fb | 2020-11-13 13:16:36 +0900 | [diff] [blame] | 489 | return snd_soc_component_compr_set_metadata(cstream, metadata); |
Jeeja KP | 36953d9 | 2013-03-26 21:22:28 +0530 | [diff] [blame] | 490 | } |
| 491 | |
Vinod Koul | 02bd90e | 2013-07-28 20:06:15 +0530 | [diff] [blame] | 492 | static int soc_compr_get_metadata(struct snd_compr_stream *cstream, |
Charles Keepax | 89027d9 | 2018-04-26 17:30:07 +0100 | [diff] [blame] | 493 | struct snd_compr_metadata *metadata) |
Jeeja KP | 36953d9 | 2013-03-26 21:22:28 +0530 | [diff] [blame] | 494 | { |
| 495 | struct snd_soc_pcm_runtime *rtd = cstream->private_data; |
Kuninori Morimoto | c2233a2 | 2020-03-30 10:47:37 +0900 | [diff] [blame] | 496 | struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0); |
Kuninori Morimoto | bab78c2 | 2020-11-13 13:16:41 +0900 | [diff] [blame] | 497 | int ret; |
Jeeja KP | 36953d9 | 2013-03-26 21:22:28 +0530 | [diff] [blame] | 498 | |
Kuninori Morimoto | 94d7281 | 2020-04-24 08:15:59 +0900 | [diff] [blame] | 499 | ret = snd_soc_dai_compr_get_metadata(cpu_dai, cstream, metadata); |
| 500 | if (ret < 0) |
| 501 | return ret; |
Vinod Koul | 2e622ae | 2016-11-13 12:10:02 +0530 | [diff] [blame] | 502 | |
Kuninori Morimoto | bab78c2 | 2020-11-13 13:16:41 +0900 | [diff] [blame] | 503 | return snd_soc_component_compr_get_metadata(cstream, metadata); |
Jeeja KP | 36953d9 | 2013-03-26 21:22:28 +0530 | [diff] [blame] | 504 | } |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 505 | |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 506 | /* ASoC Compress operations */ |
| 507 | static struct snd_compr_ops soc_compr_ops = { |
| 508 | .open = soc_compr_open, |
| 509 | .free = soc_compr_free, |
| 510 | .set_params = soc_compr_set_params, |
Vinod Koul | 02bd90e | 2013-07-28 20:06:15 +0530 | [diff] [blame] | 511 | .set_metadata = soc_compr_set_metadata, |
| 512 | .get_metadata = soc_compr_get_metadata, |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 513 | .get_params = soc_compr_get_params, |
| 514 | .trigger = soc_compr_trigger, |
| 515 | .pointer = soc_compr_pointer, |
| 516 | .ack = soc_compr_ack, |
Kuninori Morimoto | d67fcb2 | 2020-11-13 13:16:03 +0900 | [diff] [blame] | 517 | .get_caps = snd_soc_component_compr_get_caps, |
Kuninori Morimoto | 0f6fe09 | 2020-11-13 13:16:11 +0900 | [diff] [blame] | 518 | .get_codec_caps = snd_soc_component_compr_get_codec_caps, |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 519 | }; |
| 520 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 521 | /* ASoC Dynamic Compress operations */ |
| 522 | static struct snd_compr_ops soc_compr_dyn_ops = { |
| 523 | .open = soc_compr_open_fe, |
| 524 | .free = soc_compr_free_fe, |
| 525 | .set_params = soc_compr_set_params_fe, |
| 526 | .get_params = soc_compr_get_params, |
| 527 | .set_metadata = soc_compr_set_metadata, |
| 528 | .get_metadata = soc_compr_get_metadata, |
| 529 | .trigger = soc_compr_trigger_fe, |
| 530 | .pointer = soc_compr_pointer, |
| 531 | .ack = soc_compr_ack, |
Kuninori Morimoto | d67fcb2 | 2020-11-13 13:16:03 +0900 | [diff] [blame] | 532 | .get_caps = snd_soc_component_compr_get_caps, |
Kuninori Morimoto | 0f6fe09 | 2020-11-13 13:16:11 +0900 | [diff] [blame] | 533 | .get_codec_caps = snd_soc_component_compr_get_codec_caps, |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 534 | }; |
| 535 | |
Jie Yang | 6f0c422 | 2015-10-13 23:41:00 +0800 | [diff] [blame] | 536 | /** |
| 537 | * snd_soc_new_compress - create a new compress. |
| 538 | * |
| 539 | * @rtd: The runtime for which we will create compress |
| 540 | * @num: the device index number (zero based - shared with normal PCMs) |
| 541 | * |
| 542 | * Return: 0 for success, else error. |
| 543 | */ |
| 544 | 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] | 545 | { |
Kuninori Morimoto | 9e7e373 | 2017-10-11 01:37:45 +0000 | [diff] [blame] | 546 | struct snd_soc_component *component; |
Kuninori Morimoto | c2233a2 | 2020-03-30 10:47:37 +0900 | [diff] [blame] | 547 | struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0); |
| 548 | struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 549 | struct snd_compr *compr; |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 550 | struct snd_pcm *be_pcm; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 551 | char new_name[64]; |
| 552 | int ret = 0, direction = 0; |
Vinod Koul | a106804 | 2016-01-07 21:48:14 +0530 | [diff] [blame] | 553 | int playback = 0, capture = 0; |
Kuninori Morimoto | 613fb50 | 2020-01-10 11:35:21 +0900 | [diff] [blame] | 554 | int i; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 555 | |
Kuninori Morimoto | 7428d8c | 2020-10-30 10:01:22 +0900 | [diff] [blame] | 556 | /* |
| 557 | * make sure these are same value, |
| 558 | * and then use these as equally |
| 559 | */ |
| 560 | BUILD_BUG_ON((int)SNDRV_PCM_STREAM_PLAYBACK != (int)SND_COMPRESS_PLAYBACK); |
| 561 | BUILD_BUG_ON((int)SNDRV_PCM_STREAM_CAPTURE != (int)SND_COMPRESS_CAPTURE); |
| 562 | |
Bard Liao | 6e1276a | 2020-02-25 21:39:16 +0800 | [diff] [blame] | 563 | if (rtd->num_cpus > 1 || |
| 564 | rtd->num_codecs > 1) { |
Charles Keepax | 141dfc9 | 2018-01-26 13:08:45 +0000 | [diff] [blame] | 565 | dev_err(rtd->card->dev, |
Bard Liao | 6e1276a | 2020-02-25 21:39:16 +0800 | [diff] [blame] | 566 | "Compress ASoC: Multi CPU/Codec not supported\n"); |
Benoit Cousson | 8151d5e | 2014-07-08 23:19:37 +0200 | [diff] [blame] | 567 | return -EINVAL; |
| 568 | } |
| 569 | |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 570 | /* check client and interface hw capabilities */ |
Kuninori Morimoto | 467fece | 2019-07-22 10:36:16 +0900 | [diff] [blame] | 571 | if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_PLAYBACK) && |
| 572 | snd_soc_dai_stream_valid(cpu_dai, SNDRV_PCM_STREAM_PLAYBACK)) |
Vinod Koul | a106804 | 2016-01-07 21:48:14 +0530 | [diff] [blame] | 573 | playback = 1; |
Kuninori Morimoto | 467fece | 2019-07-22 10:36:16 +0900 | [diff] [blame] | 574 | if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_CAPTURE) && |
| 575 | snd_soc_dai_stream_valid(cpu_dai, SNDRV_PCM_STREAM_CAPTURE)) |
Vinod Koul | a106804 | 2016-01-07 21:48:14 +0530 | [diff] [blame] | 576 | capture = 1; |
| 577 | |
Vinod Koul | a106804 | 2016-01-07 21:48:14 +0530 | [diff] [blame] | 578 | /* |
| 579 | * Compress devices are unidirectional so only one of the directions |
| 580 | * should be set, check for that (xor) |
| 581 | */ |
| 582 | if (playback + capture != 1) { |
Charles Keepax | 141dfc9 | 2018-01-26 13:08:45 +0000 | [diff] [blame] | 583 | dev_err(rtd->card->dev, |
| 584 | "Compress ASoC: Invalid direction for P %d, C %d\n", |
| 585 | playback, capture); |
Charles Keepax | daa2db5 | 2013-04-18 11:02:38 +0100 | [diff] [blame] | 586 | return -EINVAL; |
Vinod Koul | a106804 | 2016-01-07 21:48:14 +0530 | [diff] [blame] | 587 | } |
| 588 | |
Peng Donglin | aeb6fa0 | 2017-08-16 22:47:53 +0800 | [diff] [blame] | 589 | if (playback) |
Vinod Koul | a106804 | 2016-01-07 21:48:14 +0530 | [diff] [blame] | 590 | direction = SND_COMPRESS_PLAYBACK; |
| 591 | else |
| 592 | direction = SND_COMPRESS_CAPTURE; |
Charles Keepax | daa2db5 | 2013-04-18 11:02:38 +0100 | [diff] [blame] | 593 | |
Amadeusz Sławiński | 09f448a | 2019-06-17 13:36:36 +0200 | [diff] [blame] | 594 | compr = devm_kzalloc(rtd->card->dev, sizeof(*compr), GFP_KERNEL); |
Markus Elfring | 7a0cf42 | 2017-08-10 16:21:34 +0200 | [diff] [blame] | 595 | if (!compr) |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 596 | return -ENOMEM; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 597 | |
Charles Keepax | 1f88eb0 | 2013-02-05 10:41:47 +0000 | [diff] [blame] | 598 | compr->ops = devm_kzalloc(rtd->card->dev, sizeof(soc_compr_ops), |
| 599 | GFP_KERNEL); |
Amadeusz Sławiński | 09f448a | 2019-06-17 13:36:36 +0200 | [diff] [blame] | 600 | if (!compr->ops) |
| 601 | return -ENOMEM; |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 602 | |
| 603 | if (rtd->dai_link->dynamic) { |
| 604 | snprintf(new_name, sizeof(new_name), "(%s)", |
| 605 | rtd->dai_link->stream_name); |
| 606 | |
| 607 | ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num, |
Qais Yousef | d3268a4 | 2015-01-14 08:47:29 +0000 | [diff] [blame] | 608 | rtd->dai_link->dpcm_playback, |
| 609 | rtd->dai_link->dpcm_capture, &be_pcm); |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 610 | if (ret < 0) { |
Charles Keepax | 141dfc9 | 2018-01-26 13:08:45 +0000 | [diff] [blame] | 611 | dev_err(rtd->card->dev, |
| 612 | "Compress ASoC: can't create compressed for %s: %d\n", |
| 613 | rtd->dai_link->name, ret); |
Amadeusz Sławiński | 09f448a | 2019-06-17 13:36:36 +0200 | [diff] [blame] | 614 | return ret; |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 615 | } |
| 616 | |
| 617 | rtd->pcm = be_pcm; |
| 618 | rtd->fe_compr = 1; |
Qais Yousef | d3268a4 | 2015-01-14 08:47:29 +0000 | [diff] [blame] | 619 | if (rtd->dai_link->dpcm_playback) |
| 620 | be_pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd; |
| 621 | else if (rtd->dai_link->dpcm_capture) |
| 622 | be_pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd; |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 623 | memcpy(compr->ops, &soc_compr_dyn_ops, sizeof(soc_compr_dyn_ops)); |
Peng Donglin | aeb6fa0 | 2017-08-16 22:47:53 +0800 | [diff] [blame] | 624 | } else { |
| 625 | snprintf(new_name, sizeof(new_name), "%s %s-%d", |
| 626 | rtd->dai_link->stream_name, codec_dai->name, num); |
| 627 | |
Liam Girdwood | 2a99ef0 | 2014-01-17 17:03:56 +0000 | [diff] [blame] | 628 | memcpy(compr->ops, &soc_compr_ops, sizeof(soc_compr_ops)); |
Peng Donglin | aeb6fa0 | 2017-08-16 22:47:53 +0800 | [diff] [blame] | 629 | } |
Charles Keepax | 1f88eb0 | 2013-02-05 10:41:47 +0000 | [diff] [blame] | 630 | |
Kuninori Morimoto | 613fb50 | 2020-01-10 11:35:21 +0900 | [diff] [blame] | 631 | for_each_rtd_components(rtd, i, component) { |
Kuninori Morimoto | c6cb522 | 2020-04-20 16:07:50 +0900 | [diff] [blame] | 632 | if (!component->driver->compress_ops || |
| 633 | !component->driver->compress_ops->copy) |
| 634 | continue; |
| 635 | |
Kuninori Morimoto | b5852e6 | 2020-11-13 13:16:30 +0900 | [diff] [blame] | 636 | compr->ops->copy = snd_soc_component_compr_copy; |
Kuninori Morimoto | c6cb522 | 2020-04-20 16:07:50 +0900 | [diff] [blame] | 637 | break; |
| 638 | } |
| 639 | |
Richard Fitzgerald | e5241a8 | 2015-11-25 13:00:24 +0000 | [diff] [blame] | 640 | ret = snd_compress_new(rtd->card->snd_card, num, direction, |
| 641 | new_name, compr); |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 642 | if (ret < 0) { |
Kuninori Morimoto | c2233a2 | 2020-03-30 10:47:37 +0900 | [diff] [blame] | 643 | component = asoc_rtd_to_codec(rtd, 0)->component; |
Charles Keepax | 141dfc9 | 2018-01-26 13:08:45 +0000 | [diff] [blame] | 644 | dev_err(component->dev, |
| 645 | "Compress ASoC: can't create compress for codec %s: %d\n", |
| 646 | component->name, ret); |
Amadeusz Sławiński | 09f448a | 2019-06-17 13:36:36 +0200 | [diff] [blame] | 647 | return ret; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 648 | } |
| 649 | |
Charles Keepax | 202c8f7 | 2013-01-24 09:44:30 +0000 | [diff] [blame] | 650 | /* DAPM dai link stream work */ |
Kuninori Morimoto | 83f94a2 | 2020-01-10 11:36:17 +0900 | [diff] [blame] | 651 | rtd->close_delayed_work_func = snd_soc_close_delayed_work; |
Charles Keepax | 202c8f7 | 2013-01-24 09:44:30 +0000 | [diff] [blame] | 652 | |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 653 | rtd->compr = compr; |
| 654 | compr->private_data = rtd; |
| 655 | |
Pierre-Louis Bossart | 1d5cd52 | 2020-06-12 15:40:50 -0500 | [diff] [blame] | 656 | dev_dbg(rtd->card->dev, "Compress ASoC: %s <-> %s mapping ok\n", |
| 657 | codec_dai->name, cpu_dai->name); |
Charles Keepax | 1f88eb0 | 2013-02-05 10:41:47 +0000 | [diff] [blame] | 658 | |
Amadeusz Sławiński | 09f448a | 2019-06-17 13:36:36 +0200 | [diff] [blame] | 659 | return 0; |
Namarta Kohli | 1245b70 | 2012-08-16 17:10:41 +0530 | [diff] [blame] | 660 | } |
Jie Yang | 6f0c422 | 2015-10-13 23:41:00 +0800 | [diff] [blame] | 661 | EXPORT_SYMBOL_GPL(snd_soc_new_compress); |