Loading...
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>
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>
21#include <sound/soc-dpcm.h>
22#include <sound/soc-link.h>
23
24static int snd_soc_compr_components_open(struct snd_compr_stream *cstream)
25{
26 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
27 struct snd_soc_component *component;
28 int ret = 0;
29 int i;
30
31 for_each_rtd_components(rtd, i, component) {
32 ret = snd_soc_component_module_get_when_open(component, cstream);
33 if (ret < 0)
34 break;
35
36 ret = snd_soc_component_compr_open(component, cstream);
37 if (ret < 0)
38 break;
39 }
40
41 return ret;
42}
43
44static void snd_soc_compr_components_free(struct snd_compr_stream *cstream,
45 int rollback)
46{
47 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
48 struct snd_soc_component *component;
49 int i;
50
51 for_each_rtd_components(rtd, i, component) {
52 snd_soc_component_compr_free(component, cstream, rollback);
53 snd_soc_component_module_put_when_close(component, cstream, rollback);
54 }
55}
56
57static int soc_compr_clean(struct snd_compr_stream *cstream, int rollback)
58{
59 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
60 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(rtd, 0);
61 struct snd_soc_dai *codec_dai = snd_soc_rtd_to_codec(rtd, 0);
62 int stream = cstream->direction; /* SND_COMPRESS_xxx is same as SNDRV_PCM_STREAM_xxx */
63
64 snd_soc_dpcm_mutex_lock(rtd);
65
66 if (!rollback)
67 snd_soc_runtime_deactivate(rtd, stream);
68
69 snd_soc_dai_digital_mute(codec_dai, 1, stream);
70
71 if (!snd_soc_dai_active(cpu_dai))
72 cpu_dai->rate = 0;
73
74 if (!snd_soc_dai_active(codec_dai))
75 codec_dai->rate = 0;
76
77 snd_soc_link_compr_shutdown(cstream, rollback);
78
79 snd_soc_compr_components_free(cstream, rollback);
80
81 snd_soc_dai_compr_shutdown(cpu_dai, cstream, rollback);
82
83 if (!rollback)
84 snd_soc_dapm_stream_stop(rtd, stream);
85
86 snd_soc_dpcm_mutex_unlock(rtd);
87
88 snd_soc_pcm_component_pm_runtime_put(rtd, cstream, rollback);
89
90 return 0;
91}
92
93static int soc_compr_free(struct snd_compr_stream *cstream)
94{
95 return soc_compr_clean(cstream, 0);
96}
97
98static int soc_compr_open(struct snd_compr_stream *cstream)
99{
100 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
101 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(rtd, 0);
102 int stream = cstream->direction; /* SND_COMPRESS_xxx is same as SNDRV_PCM_STREAM_xxx */
103 int ret;
104
105 ret = snd_soc_pcm_component_pm_runtime_get(rtd, cstream);
106 if (ret < 0)
107 goto err_no_lock;
108
109 snd_soc_dpcm_mutex_lock(rtd);
110
111 ret = snd_soc_dai_compr_startup(cpu_dai, cstream);
112 if (ret < 0)
113 goto err;
114
115 ret = snd_soc_compr_components_open(cstream);
116 if (ret < 0)
117 goto err;
118
119 ret = snd_soc_link_compr_startup(cstream);
120 if (ret < 0)
121 goto err;
122
123 snd_soc_runtime_activate(rtd, stream);
124err:
125 snd_soc_dpcm_mutex_unlock(rtd);
126err_no_lock:
127 if (ret < 0)
128 soc_compr_clean(cstream, 1);
129
130 return ret;
131}
132
133static int soc_compr_open_fe(struct snd_compr_stream *cstream)
134{
135 struct snd_soc_pcm_runtime *fe = cstream->private_data;
136 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(fe, 0);
137 struct snd_soc_dpcm *dpcm;
138 struct snd_soc_dapm_widget_list *list;
139 int stream = cstream->direction; /* SND_COMPRESS_xxx is same as SNDRV_PCM_STREAM_xxx */
140 int ret;
141
142 snd_soc_card_mutex_lock(fe->card);
143
144 ret = dpcm_path_get(fe, stream, &list);
145 if (ret < 0)
146 goto be_err;
147
148 snd_soc_dpcm_mutex_lock(fe);
149
150 /* calculate valid and active FE <-> BE dpcms */
151 dpcm_process_paths(fe, stream, &list, 1);
152
153 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
154
155 ret = dpcm_be_dai_startup(fe, stream);
156 if (ret < 0) {
157 /* clean up all links */
158 for_each_dpcm_be(fe, stream, dpcm)
159 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
160
161 dpcm_be_disconnect(fe, stream);
162 goto out;
163 }
164
165 ret = snd_soc_dai_compr_startup(cpu_dai, cstream);
166 if (ret < 0)
167 goto out;
168
169 ret = snd_soc_compr_components_open(cstream);
170 if (ret < 0)
171 goto open_err;
172
173 ret = snd_soc_link_compr_startup(cstream);
174 if (ret < 0)
175 goto machine_err;
176
177 dpcm_clear_pending_state(fe, stream);
178 dpcm_path_put(&list);
179
180 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
181 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
182
183 snd_soc_runtime_activate(fe, stream);
184 snd_soc_dpcm_mutex_unlock(fe);
185
186 snd_soc_card_mutex_unlock(fe->card);
187
188 return 0;
189
190machine_err:
191 snd_soc_compr_components_free(cstream, 1);
192open_err:
193 snd_soc_dai_compr_shutdown(cpu_dai, cstream, 1);
194out:
195 dpcm_path_put(&list);
196 snd_soc_dpcm_mutex_unlock(fe);
197be_err:
198 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
199 snd_soc_card_mutex_unlock(fe->card);
200 return ret;
201}
202
203static int soc_compr_free_fe(struct snd_compr_stream *cstream)
204{
205 struct snd_soc_pcm_runtime *fe = cstream->private_data;
206 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(fe, 0);
207 struct snd_soc_dpcm *dpcm;
208 int stream = cstream->direction; /* SND_COMPRESS_xxx is same as SNDRV_PCM_STREAM_xxx */
209
210 snd_soc_card_mutex_lock(fe->card);
211
212 snd_soc_dpcm_mutex_lock(fe);
213 snd_soc_runtime_deactivate(fe, stream);
214
215 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
216
217 dpcm_be_dai_hw_free(fe, stream);
218
219 dpcm_be_dai_shutdown(fe, stream);
220
221 /* mark FE's links ready to prune */
222 for_each_dpcm_be(fe, stream, dpcm)
223 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
224
225 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP);
226
227 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
228 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
229
230 dpcm_be_disconnect(fe, stream);
231
232 snd_soc_dpcm_mutex_unlock(fe);
233
234 snd_soc_link_compr_shutdown(cstream, 0);
235
236 snd_soc_compr_components_free(cstream, 0);
237
238 snd_soc_dai_compr_shutdown(cpu_dai, cstream, 0);
239
240 snd_soc_card_mutex_unlock(fe->card);
241 return 0;
242}
243
244static int soc_compr_trigger(struct snd_compr_stream *cstream, int cmd)
245{
246 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
247 struct snd_soc_dai *codec_dai = snd_soc_rtd_to_codec(rtd, 0);
248 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(rtd, 0);
249 int stream = cstream->direction; /* SND_COMPRESS_xxx is same as SNDRV_PCM_STREAM_xxx */
250 int ret;
251
252 snd_soc_dpcm_mutex_lock(rtd);
253
254 ret = snd_soc_component_compr_trigger(cstream, cmd);
255 if (ret < 0)
256 goto out;
257
258 ret = snd_soc_dai_compr_trigger(cpu_dai, cstream, cmd);
259 if (ret < 0)
260 goto out;
261
262 switch (cmd) {
263 case SNDRV_PCM_TRIGGER_START:
264 snd_soc_dai_digital_mute(codec_dai, 0, stream);
265 break;
266 case SNDRV_PCM_TRIGGER_STOP:
267 snd_soc_dai_digital_mute(codec_dai, 1, stream);
268 break;
269 }
270
271out:
272 snd_soc_dpcm_mutex_unlock(rtd);
273 return ret;
274}
275
276static int soc_compr_trigger_fe(struct snd_compr_stream *cstream, int cmd)
277{
278 struct snd_soc_pcm_runtime *fe = cstream->private_data;
279 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(fe, 0);
280 int stream = cstream->direction; /* SND_COMPRESS_xxx is same as SNDRV_PCM_STREAM_xxx */
281 int ret;
282
283 if (cmd == SND_COMPR_TRIGGER_PARTIAL_DRAIN ||
284 cmd == SND_COMPR_TRIGGER_DRAIN)
285 return snd_soc_component_compr_trigger(cstream, cmd);
286
287 snd_soc_card_mutex_lock(fe->card);
288
289 ret = snd_soc_dai_compr_trigger(cpu_dai, cstream, cmd);
290 if (ret < 0)
291 goto out;
292
293 ret = snd_soc_component_compr_trigger(cstream, cmd);
294 if (ret < 0)
295 goto out;
296
297 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
298
299 ret = dpcm_be_dai_trigger(fe, stream, cmd);
300
301 switch (cmd) {
302 case SNDRV_PCM_TRIGGER_START:
303 case SNDRV_PCM_TRIGGER_RESUME:
304 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
305 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
306 break;
307 case SNDRV_PCM_TRIGGER_STOP:
308 case SNDRV_PCM_TRIGGER_SUSPEND:
309 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
310 break;
311 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
312 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
313 break;
314 }
315
316out:
317 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
318 snd_soc_card_mutex_unlock(fe->card);
319 return ret;
320}
321
322static int soc_compr_set_params(struct snd_compr_stream *cstream,
323 struct snd_compr_params *params)
324{
325 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
326 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(rtd, 0);
327 int stream = cstream->direction; /* SND_COMPRESS_xxx is same as SNDRV_PCM_STREAM_xxx */
328 int ret;
329
330 snd_soc_dpcm_mutex_lock(rtd);
331
332 /*
333 * First we call set_params for the CPU DAI, then the component
334 * driver this should configure the SoC side. If the machine has
335 * compressed ops then we call that as well. The expectation is
336 * that these callbacks will configure everything for this compress
337 * path, like configuring a PCM port for a CODEC.
338 */
339 ret = snd_soc_dai_compr_set_params(cpu_dai, cstream, params);
340 if (ret < 0)
341 goto err;
342
343 ret = snd_soc_component_compr_set_params(cstream, params);
344 if (ret < 0)
345 goto err;
346
347 ret = snd_soc_link_compr_set_params(cstream);
348 if (ret < 0)
349 goto err;
350
351 snd_soc_dapm_stream_event(rtd, stream, SND_SOC_DAPM_STREAM_START);
352
353 /* cancel any delayed stream shutdown that is pending */
354 rtd->pop_wait = 0;
355 snd_soc_dpcm_mutex_unlock(rtd);
356
357 cancel_delayed_work_sync(&rtd->delayed_work);
358
359 return 0;
360
361err:
362 snd_soc_dpcm_mutex_unlock(rtd);
363 return ret;
364}
365
366static int soc_compr_set_params_fe(struct snd_compr_stream *cstream,
367 struct snd_compr_params *params)
368{
369 struct snd_soc_pcm_runtime *fe = cstream->private_data;
370 struct snd_pcm_substream *fe_substream =
371 fe->pcm->streams[cstream->direction].substream;
372 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(fe, 0);
373 int stream = cstream->direction; /* SND_COMPRESS_xxx is same as SNDRV_PCM_STREAM_xxx */
374 int ret;
375
376 snd_soc_card_mutex_lock(fe->card);
377
378 /*
379 * Create an empty hw_params for the BE as the machine driver must
380 * fix this up to match DSP decoder and ASRC configuration.
381 * I.e. machine driver fixup for compressed BE is mandatory.
382 */
383 memset(&fe->dpcm[fe_substream->stream].hw_params, 0,
384 sizeof(struct snd_pcm_hw_params));
385
386 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
387
388 ret = dpcm_be_dai_hw_params(fe, stream);
389 if (ret < 0)
390 goto out;
391
392 ret = dpcm_be_dai_prepare(fe, stream);
393 if (ret < 0)
394 goto out;
395
396 ret = snd_soc_dai_compr_set_params(cpu_dai, cstream, params);
397 if (ret < 0)
398 goto out;
399
400 ret = snd_soc_component_compr_set_params(cstream, params);
401 if (ret < 0)
402 goto out;
403
404 ret = snd_soc_link_compr_set_params(cstream);
405 if (ret < 0)
406 goto out;
407 snd_soc_dpcm_mutex_lock(fe);
408 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_START);
409 snd_soc_dpcm_mutex_unlock(fe);
410 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
411
412out:
413 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
414 snd_soc_card_mutex_unlock(fe->card);
415 return ret;
416}
417
418static int soc_compr_get_params(struct snd_compr_stream *cstream,
419 struct snd_codec *params)
420{
421 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
422 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(rtd, 0);
423 int ret = 0;
424
425 snd_soc_dpcm_mutex_lock(rtd);
426
427 ret = snd_soc_dai_compr_get_params(cpu_dai, cstream, params);
428 if (ret < 0)
429 goto err;
430
431 ret = snd_soc_component_compr_get_params(cstream, params);
432err:
433 snd_soc_dpcm_mutex_unlock(rtd);
434 return ret;
435}
436
437static int soc_compr_ack(struct snd_compr_stream *cstream, size_t bytes)
438{
439 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
440 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(rtd, 0);
441 int ret;
442
443 snd_soc_dpcm_mutex_lock(rtd);
444
445 ret = snd_soc_dai_compr_ack(cpu_dai, cstream, bytes);
446 if (ret < 0)
447 goto err;
448
449 ret = snd_soc_component_compr_ack(cstream, bytes);
450err:
451 snd_soc_dpcm_mutex_unlock(rtd);
452 return ret;
453}
454
455static int soc_compr_pointer(struct snd_compr_stream *cstream,
456 struct snd_compr_tstamp *tstamp)
457{
458 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
459 int ret;
460 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(rtd, 0);
461
462 snd_soc_dpcm_mutex_lock(rtd);
463
464 ret = snd_soc_dai_compr_pointer(cpu_dai, cstream, tstamp);
465 if (ret < 0)
466 goto out;
467
468 ret = snd_soc_component_compr_pointer(cstream, tstamp);
469out:
470 snd_soc_dpcm_mutex_unlock(rtd);
471 return ret;
472}
473
474static int soc_compr_set_metadata(struct snd_compr_stream *cstream,
475 struct snd_compr_metadata *metadata)
476{
477 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
478 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(rtd, 0);
479 int ret;
480
481 ret = snd_soc_dai_compr_set_metadata(cpu_dai, cstream, metadata);
482 if (ret < 0)
483 return ret;
484
485 return snd_soc_component_compr_set_metadata(cstream, metadata);
486}
487
488static int soc_compr_get_metadata(struct snd_compr_stream *cstream,
489 struct snd_compr_metadata *metadata)
490{
491 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
492 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(rtd, 0);
493 int ret;
494
495 ret = snd_soc_dai_compr_get_metadata(cpu_dai, cstream, metadata);
496 if (ret < 0)
497 return ret;
498
499 return snd_soc_component_compr_get_metadata(cstream, metadata);
500}
501
502/* ASoC Compress operations */
503static struct snd_compr_ops soc_compr_ops = {
504 .open = soc_compr_open,
505 .free = soc_compr_free,
506 .set_params = soc_compr_set_params,
507 .set_metadata = soc_compr_set_metadata,
508 .get_metadata = soc_compr_get_metadata,
509 .get_params = soc_compr_get_params,
510 .trigger = soc_compr_trigger,
511 .pointer = soc_compr_pointer,
512 .ack = soc_compr_ack,
513 .get_caps = snd_soc_component_compr_get_caps,
514 .get_codec_caps = snd_soc_component_compr_get_codec_caps,
515};
516
517/* ASoC Dynamic Compress operations */
518static struct snd_compr_ops soc_compr_dyn_ops = {
519 .open = soc_compr_open_fe,
520 .free = soc_compr_free_fe,
521 .set_params = soc_compr_set_params_fe,
522 .get_params = soc_compr_get_params,
523 .set_metadata = soc_compr_set_metadata,
524 .get_metadata = soc_compr_get_metadata,
525 .trigger = soc_compr_trigger_fe,
526 .pointer = soc_compr_pointer,
527 .ack = soc_compr_ack,
528 .get_caps = snd_soc_component_compr_get_caps,
529 .get_codec_caps = snd_soc_component_compr_get_codec_caps,
530};
531
532/**
533 * snd_soc_new_compress - create a new compress.
534 *
535 * @rtd: The runtime for which we will create compress
536 * @num: the device index number (zero based - shared with normal PCMs)
537 *
538 * Return: 0 for success, else error.
539 */
540int snd_soc_new_compress(struct snd_soc_pcm_runtime *rtd, int num)
541{
542 struct snd_soc_component *component;
543 struct snd_soc_dai *codec_dai = snd_soc_rtd_to_codec(rtd, 0);
544 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(rtd, 0);
545 struct snd_compr *compr;
546 struct snd_pcm *be_pcm;
547 char new_name[64];
548 int ret = 0, direction = 0;
549 int playback = 0, capture = 0;
550 int i;
551
552 /*
553 * make sure these are same value,
554 * and then use these as equally
555 */
556 BUILD_BUG_ON((int)SNDRV_PCM_STREAM_PLAYBACK != (int)SND_COMPRESS_PLAYBACK);
557 BUILD_BUG_ON((int)SNDRV_PCM_STREAM_CAPTURE != (int)SND_COMPRESS_CAPTURE);
558
559 if (rtd->dai_link->num_cpus > 1 ||
560 rtd->dai_link->num_codecs > 1) {
561 dev_err(rtd->card->dev,
562 "Compress ASoC: Multi CPU/Codec not supported\n");
563 return -EINVAL;
564 }
565
566 if (!codec_dai) {
567 dev_err(rtd->card->dev, "Missing codec\n");
568 return -EINVAL;
569 }
570
571 /* check client and interface hw capabilities */
572 if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_PLAYBACK) &&
573 snd_soc_dai_stream_valid(cpu_dai, SNDRV_PCM_STREAM_PLAYBACK))
574 playback = 1;
575 if (snd_soc_dai_stream_valid(codec_dai, SNDRV_PCM_STREAM_CAPTURE) &&
576 snd_soc_dai_stream_valid(cpu_dai, SNDRV_PCM_STREAM_CAPTURE))
577 capture = 1;
578
579 /*
580 * Compress devices are unidirectional so only one of the directions
581 * should be set, check for that (xor)
582 */
583 if (playback + capture != 1) {
584 dev_err(rtd->card->dev,
585 "Compress ASoC: Invalid direction for P %d, C %d\n",
586 playback, capture);
587 return -EINVAL;
588 }
589
590 if (playback)
591 direction = SND_COMPRESS_PLAYBACK;
592 else
593 direction = SND_COMPRESS_CAPTURE;
594
595 compr = devm_kzalloc(rtd->card->dev, sizeof(*compr), GFP_KERNEL);
596 if (!compr)
597 return -ENOMEM;
598
599 compr->ops = devm_kzalloc(rtd->card->dev, sizeof(soc_compr_ops),
600 GFP_KERNEL);
601 if (!compr->ops)
602 return -ENOMEM;
603
604 if (rtd->dai_link->dynamic) {
605 snprintf(new_name, sizeof(new_name), "(%s)",
606 rtd->dai_link->stream_name);
607
608 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
609 rtd->dai_link->dpcm_playback,
610 rtd->dai_link->dpcm_capture, &be_pcm);
611 if (ret < 0) {
612 dev_err(rtd->card->dev,
613 "Compress ASoC: can't create compressed for %s: %d\n",
614 rtd->dai_link->name, ret);
615 return ret;
616 }
617
618 /* inherit atomicity from DAI link */
619 be_pcm->nonatomic = rtd->dai_link->nonatomic;
620
621 rtd->pcm = be_pcm;
622 rtd->fe_compr = 1;
623 if (rtd->dai_link->dpcm_playback)
624 be_pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd;
625 if (rtd->dai_link->dpcm_capture)
626 be_pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd;
627 memcpy(compr->ops, &soc_compr_dyn_ops, sizeof(soc_compr_dyn_ops));
628 } else {
629 snprintf(new_name, sizeof(new_name), "%s %s-%d",
630 rtd->dai_link->stream_name, codec_dai->name, num);
631
632 memcpy(compr->ops, &soc_compr_ops, sizeof(soc_compr_ops));
633 }
634
635 for_each_rtd_components(rtd, i, component) {
636 if (!component->driver->compress_ops ||
637 !component->driver->compress_ops->copy)
638 continue;
639
640 compr->ops->copy = snd_soc_component_compr_copy;
641 break;
642 }
643
644 ret = snd_compress_new(rtd->card->snd_card, num, direction,
645 new_name, compr);
646 if (ret < 0) {
647 component = snd_soc_rtd_to_codec(rtd, 0)->component;
648 dev_err(component->dev,
649 "Compress ASoC: can't create compress for codec %s: %d\n",
650 component->name, ret);
651 return ret;
652 }
653
654 /* DAPM dai link stream work */
655 rtd->close_delayed_work_func = snd_soc_close_delayed_work;
656
657 rtd->compr = compr;
658 compr->private_data = rtd;
659
660 dev_dbg(rtd->card->dev, "Compress ASoC: %s <-> %s mapping ok\n",
661 codec_dai->name, cpu_dai->name);
662
663 return 0;
664}
665EXPORT_SYMBOL_GPL(snd_soc_new_compress);
1/*
2 * soc-compress.c -- ALSA SoC Compress
3 *
4 * Copyright (C) 2012 Intel Corp.
5 *
6 * Authors: Namarta Kohli <namartax.kohli@intel.com>
7 * Ramesh Babu K V <ramesh.babu@linux.intel.com>
8 * Vinod Koul <vinod.koul@linux.intel.com>
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
14 *
15 */
16
17#include <linux/kernel.h>
18#include <linux/init.h>
19#include <linux/delay.h>
20#include <linux/slab.h>
21#include <linux/workqueue.h>
22#include <sound/core.h>
23#include <sound/compress_params.h>
24#include <sound/compress_driver.h>
25#include <sound/soc.h>
26#include <sound/initval.h>
27#include <sound/soc-dpcm.h>
28
29static int soc_compr_open(struct snd_compr_stream *cstream)
30{
31 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
32 struct snd_soc_platform *platform = rtd->platform;
33 int ret = 0;
34
35 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
36
37 if (platform->driver->compr_ops && platform->driver->compr_ops->open) {
38 ret = platform->driver->compr_ops->open(cstream);
39 if (ret < 0) {
40 pr_err("compress asoc: can't open platform %s\n", platform->name);
41 goto out;
42 }
43 }
44
45 if (rtd->dai_link->compr_ops && rtd->dai_link->compr_ops->startup) {
46 ret = rtd->dai_link->compr_ops->startup(cstream);
47 if (ret < 0) {
48 pr_err("compress asoc: %s startup failed\n", rtd->dai_link->name);
49 goto machine_err;
50 }
51 }
52
53 snd_soc_runtime_activate(rtd, cstream->direction);
54
55 mutex_unlock(&rtd->pcm_mutex);
56
57 return 0;
58
59machine_err:
60 if (platform->driver->compr_ops && platform->driver->compr_ops->free)
61 platform->driver->compr_ops->free(cstream);
62out:
63 mutex_unlock(&rtd->pcm_mutex);
64 return ret;
65}
66
67static int soc_compr_open_fe(struct snd_compr_stream *cstream)
68{
69 struct snd_soc_pcm_runtime *fe = cstream->private_data;
70 struct snd_pcm_substream *fe_substream = fe->pcm->streams[0].substream;
71 struct snd_soc_platform *platform = fe->platform;
72 struct snd_soc_dpcm *dpcm;
73 struct snd_soc_dapm_widget_list *list;
74 int stream;
75 int ret = 0;
76
77 if (cstream->direction == SND_COMPRESS_PLAYBACK)
78 stream = SNDRV_PCM_STREAM_PLAYBACK;
79 else
80 stream = SNDRV_PCM_STREAM_CAPTURE;
81
82 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
83
84 if (platform->driver->compr_ops && platform->driver->compr_ops->open) {
85 ret = platform->driver->compr_ops->open(cstream);
86 if (ret < 0) {
87 pr_err("compress asoc: can't open platform %s\n", platform->name);
88 goto out;
89 }
90 }
91
92 if (fe->dai_link->compr_ops && fe->dai_link->compr_ops->startup) {
93 ret = fe->dai_link->compr_ops->startup(cstream);
94 if (ret < 0) {
95 pr_err("compress asoc: %s startup failed\n", fe->dai_link->name);
96 goto machine_err;
97 }
98 }
99
100 fe->dpcm[stream].runtime = fe_substream->runtime;
101
102 if (dpcm_path_get(fe, stream, &list) <= 0) {
103 dev_dbg(fe->dev, "ASoC: %s no valid %s route\n",
104 fe->dai_link->name, stream ? "capture" : "playback");
105 }
106
107 /* calculate valid and active FE <-> BE dpcms */
108 dpcm_process_paths(fe, stream, &list, 1);
109
110 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
111
112 ret = dpcm_be_dai_startup(fe, stream);
113 if (ret < 0) {
114 /* clean up all links */
115 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
116 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
117
118 dpcm_be_disconnect(fe, stream);
119 fe->dpcm[stream].runtime = NULL;
120 goto fe_err;
121 }
122
123 dpcm_clear_pending_state(fe, stream);
124 dpcm_path_put(&list);
125
126 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
127 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
128
129 snd_soc_runtime_activate(fe, stream);
130
131 mutex_unlock(&fe->card->mutex);
132
133 return 0;
134
135fe_err:
136 if (fe->dai_link->compr_ops && fe->dai_link->compr_ops->shutdown)
137 fe->dai_link->compr_ops->shutdown(cstream);
138machine_err:
139 if (platform->driver->compr_ops && platform->driver->compr_ops->free)
140 platform->driver->compr_ops->free(cstream);
141out:
142 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
143 mutex_unlock(&fe->card->mutex);
144 return ret;
145}
146
147/*
148 * Power down the audio subsystem pmdown_time msecs after close is called.
149 * This is to ensure there are no pops or clicks in between any music tracks
150 * due to DAPM power cycling.
151 */
152static void close_delayed_work(struct work_struct *work)
153{
154 struct snd_soc_pcm_runtime *rtd =
155 container_of(work, struct snd_soc_pcm_runtime, delayed_work.work);
156 struct snd_soc_dai *codec_dai = rtd->codec_dai;
157
158 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
159
160 dev_dbg(rtd->dev, "ASoC: pop wq checking: %s status: %s waiting: %s\n",
161 codec_dai->driver->playback.stream_name,
162 codec_dai->playback_active ? "active" : "inactive",
163 rtd->pop_wait ? "yes" : "no");
164
165 /* are we waiting on this codec DAI stream */
166 if (rtd->pop_wait == 1) {
167 rtd->pop_wait = 0;
168 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_PLAYBACK,
169 SND_SOC_DAPM_STREAM_STOP);
170 }
171
172 mutex_unlock(&rtd->pcm_mutex);
173}
174
175static int soc_compr_free(struct snd_compr_stream *cstream)
176{
177 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
178 struct snd_soc_platform *platform = rtd->platform;
179 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
180 struct snd_soc_dai *codec_dai = rtd->codec_dai;
181 int stream;
182
183 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
184
185 if (cstream->direction == SND_COMPRESS_PLAYBACK)
186 stream = SNDRV_PCM_STREAM_PLAYBACK;
187 else
188 stream = SNDRV_PCM_STREAM_CAPTURE;
189
190 snd_soc_runtime_deactivate(rtd, stream);
191
192 snd_soc_dai_digital_mute(codec_dai, 1, cstream->direction);
193
194 if (!cpu_dai->active)
195 cpu_dai->rate = 0;
196
197 if (!codec_dai->active)
198 codec_dai->rate = 0;
199
200
201 if (rtd->dai_link->compr_ops && rtd->dai_link->compr_ops->shutdown)
202 rtd->dai_link->compr_ops->shutdown(cstream);
203
204 if (platform->driver->compr_ops && platform->driver->compr_ops->free)
205 platform->driver->compr_ops->free(cstream);
206 cpu_dai->runtime = NULL;
207
208 if (cstream->direction == SND_COMPRESS_PLAYBACK) {
209 if (snd_soc_runtime_ignore_pmdown_time(rtd)) {
210 snd_soc_dapm_stream_event(rtd,
211 SNDRV_PCM_STREAM_PLAYBACK,
212 SND_SOC_DAPM_STREAM_STOP);
213 } else {
214 rtd->pop_wait = 1;
215 queue_delayed_work(system_power_efficient_wq,
216 &rtd->delayed_work,
217 msecs_to_jiffies(rtd->pmdown_time));
218 }
219 } else {
220 /* capture streams can be powered down now */
221 snd_soc_dapm_stream_event(rtd,
222 SNDRV_PCM_STREAM_CAPTURE,
223 SND_SOC_DAPM_STREAM_STOP);
224 }
225
226 mutex_unlock(&rtd->pcm_mutex);
227 return 0;
228}
229
230static int soc_compr_free_fe(struct snd_compr_stream *cstream)
231{
232 struct snd_soc_pcm_runtime *fe = cstream->private_data;
233 struct snd_soc_platform *platform = fe->platform;
234 struct snd_soc_dpcm *dpcm;
235 int stream, ret;
236
237 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
238
239 if (cstream->direction == SND_COMPRESS_PLAYBACK)
240 stream = SNDRV_PCM_STREAM_PLAYBACK;
241 else
242 stream = SNDRV_PCM_STREAM_CAPTURE;
243
244 snd_soc_runtime_deactivate(fe, stream);
245
246 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
247
248 ret = dpcm_be_dai_hw_free(fe, stream);
249 if (ret < 0)
250 dev_err(fe->dev, "compressed hw_free failed %d\n", ret);
251
252 ret = dpcm_be_dai_shutdown(fe, stream);
253
254 /* mark FE's links ready to prune */
255 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
256 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
257
258 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
259 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP);
260 else
261 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP);
262
263 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
264 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
265
266 dpcm_be_disconnect(fe, stream);
267
268 fe->dpcm[stream].runtime = NULL;
269
270 if (fe->dai_link->compr_ops && fe->dai_link->compr_ops->shutdown)
271 fe->dai_link->compr_ops->shutdown(cstream);
272
273 if (platform->driver->compr_ops && platform->driver->compr_ops->free)
274 platform->driver->compr_ops->free(cstream);
275
276 mutex_unlock(&fe->card->mutex);
277 return 0;
278}
279
280static int soc_compr_trigger(struct snd_compr_stream *cstream, int cmd)
281{
282
283 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
284 struct snd_soc_platform *platform = rtd->platform;
285 struct snd_soc_dai *codec_dai = rtd->codec_dai;
286 int ret = 0;
287
288 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
289
290 if (platform->driver->compr_ops && platform->driver->compr_ops->trigger) {
291 ret = platform->driver->compr_ops->trigger(cstream, cmd);
292 if (ret < 0)
293 goto out;
294 }
295
296 switch (cmd) {
297 case SNDRV_PCM_TRIGGER_START:
298 snd_soc_dai_digital_mute(codec_dai, 0, cstream->direction);
299 break;
300 case SNDRV_PCM_TRIGGER_STOP:
301 snd_soc_dai_digital_mute(codec_dai, 1, cstream->direction);
302 break;
303 }
304
305out:
306 mutex_unlock(&rtd->pcm_mutex);
307 return ret;
308}
309
310static int soc_compr_trigger_fe(struct snd_compr_stream *cstream, int cmd)
311{
312 struct snd_soc_pcm_runtime *fe = cstream->private_data;
313 struct snd_soc_platform *platform = fe->platform;
314 int ret = 0, stream;
315
316 if (cmd == SND_COMPR_TRIGGER_PARTIAL_DRAIN ||
317 cmd == SND_COMPR_TRIGGER_DRAIN) {
318
319 if (platform->driver->compr_ops &&
320 platform->driver->compr_ops->trigger)
321 return platform->driver->compr_ops->trigger(cstream, cmd);
322 }
323
324 if (cstream->direction == SND_COMPRESS_PLAYBACK)
325 stream = SNDRV_PCM_STREAM_PLAYBACK;
326 else
327 stream = SNDRV_PCM_STREAM_CAPTURE;
328
329
330 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
331
332 if (platform->driver->compr_ops && platform->driver->compr_ops->trigger) {
333 ret = platform->driver->compr_ops->trigger(cstream, cmd);
334 if (ret < 0)
335 goto out;
336 }
337
338 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
339
340 ret = dpcm_be_dai_trigger(fe, stream, cmd);
341
342 switch (cmd) {
343 case SNDRV_PCM_TRIGGER_START:
344 case SNDRV_PCM_TRIGGER_RESUME:
345 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
346 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
347 break;
348 case SNDRV_PCM_TRIGGER_STOP:
349 case SNDRV_PCM_TRIGGER_SUSPEND:
350 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
351 break;
352 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
353 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
354 break;
355 }
356
357out:
358 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
359 mutex_unlock(&fe->card->mutex);
360 return ret;
361}
362
363static int soc_compr_set_params(struct snd_compr_stream *cstream,
364 struct snd_compr_params *params)
365{
366 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
367 struct snd_soc_platform *platform = rtd->platform;
368 int ret = 0;
369
370 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
371
372 /* first we call set_params for the platform driver
373 * this should configure the soc side
374 * if the machine has compressed ops then we call that as well
375 * expectation is that platform and machine will configure everything
376 * for this compress path, like configuring pcm port for codec
377 */
378 if (platform->driver->compr_ops && platform->driver->compr_ops->set_params) {
379 ret = platform->driver->compr_ops->set_params(cstream, params);
380 if (ret < 0)
381 goto err;
382 }
383
384 if (rtd->dai_link->compr_ops && rtd->dai_link->compr_ops->set_params) {
385 ret = rtd->dai_link->compr_ops->set_params(cstream);
386 if (ret < 0)
387 goto err;
388 }
389
390 if (cstream->direction == SND_COMPRESS_PLAYBACK)
391 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_PLAYBACK,
392 SND_SOC_DAPM_STREAM_START);
393 else
394 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_CAPTURE,
395 SND_SOC_DAPM_STREAM_START);
396
397 /* cancel any delayed stream shutdown that is pending */
398 rtd->pop_wait = 0;
399 mutex_unlock(&rtd->pcm_mutex);
400
401 cancel_delayed_work_sync(&rtd->delayed_work);
402
403 return ret;
404
405err:
406 mutex_unlock(&rtd->pcm_mutex);
407 return ret;
408}
409
410static int soc_compr_set_params_fe(struct snd_compr_stream *cstream,
411 struct snd_compr_params *params)
412{
413 struct snd_soc_pcm_runtime *fe = cstream->private_data;
414 struct snd_pcm_substream *fe_substream = fe->pcm->streams[0].substream;
415 struct snd_soc_platform *platform = fe->platform;
416 int ret = 0, stream;
417
418 if (cstream->direction == SND_COMPRESS_PLAYBACK)
419 stream = SNDRV_PCM_STREAM_PLAYBACK;
420 else
421 stream = SNDRV_PCM_STREAM_CAPTURE;
422
423 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
424
425 if (platform->driver->compr_ops && platform->driver->compr_ops->set_params) {
426 ret = platform->driver->compr_ops->set_params(cstream, params);
427 if (ret < 0)
428 goto out;
429 }
430
431 if (fe->dai_link->compr_ops && fe->dai_link->compr_ops->set_params) {
432 ret = fe->dai_link->compr_ops->set_params(cstream);
433 if (ret < 0)
434 goto out;
435 }
436
437 /*
438 * Create an empty hw_params for the BE as the machine driver must
439 * fix this up to match DSP decoder and ASRC configuration.
440 * I.e. machine driver fixup for compressed BE is mandatory.
441 */
442 memset(&fe->dpcm[fe_substream->stream].hw_params, 0,
443 sizeof(struct snd_pcm_hw_params));
444
445 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
446
447 ret = dpcm_be_dai_hw_params(fe, stream);
448 if (ret < 0)
449 goto out;
450
451 ret = dpcm_be_dai_prepare(fe, stream);
452 if (ret < 0)
453 goto out;
454
455 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
456 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_START);
457 else
458 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_START);
459
460 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
461
462out:
463 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
464 mutex_unlock(&fe->card->mutex);
465 return ret;
466}
467
468static int soc_compr_get_params(struct snd_compr_stream *cstream,
469 struct snd_codec *params)
470{
471 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
472 struct snd_soc_platform *platform = rtd->platform;
473 int ret = 0;
474
475 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
476
477 if (platform->driver->compr_ops && platform->driver->compr_ops->get_params)
478 ret = platform->driver->compr_ops->get_params(cstream, params);
479
480 mutex_unlock(&rtd->pcm_mutex);
481 return ret;
482}
483
484static int soc_compr_get_caps(struct snd_compr_stream *cstream,
485 struct snd_compr_caps *caps)
486{
487 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
488 struct snd_soc_platform *platform = rtd->platform;
489 int ret = 0;
490
491 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
492
493 if (platform->driver->compr_ops && platform->driver->compr_ops->get_caps)
494 ret = platform->driver->compr_ops->get_caps(cstream, caps);
495
496 mutex_unlock(&rtd->pcm_mutex);
497 return ret;
498}
499
500static int soc_compr_get_codec_caps(struct snd_compr_stream *cstream,
501 struct snd_compr_codec_caps *codec)
502{
503 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
504 struct snd_soc_platform *platform = rtd->platform;
505 int ret = 0;
506
507 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
508
509 if (platform->driver->compr_ops && platform->driver->compr_ops->get_codec_caps)
510 ret = platform->driver->compr_ops->get_codec_caps(cstream, codec);
511
512 mutex_unlock(&rtd->pcm_mutex);
513 return ret;
514}
515
516static int soc_compr_ack(struct snd_compr_stream *cstream, size_t bytes)
517{
518 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
519 struct snd_soc_platform *platform = rtd->platform;
520 int ret = 0;
521
522 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
523
524 if (platform->driver->compr_ops && platform->driver->compr_ops->ack)
525 ret = platform->driver->compr_ops->ack(cstream, bytes);
526
527 mutex_unlock(&rtd->pcm_mutex);
528 return ret;
529}
530
531static int soc_compr_pointer(struct snd_compr_stream *cstream,
532 struct snd_compr_tstamp *tstamp)
533{
534 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
535 struct snd_soc_platform *platform = rtd->platform;
536
537 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
538
539 if (platform->driver->compr_ops && platform->driver->compr_ops->pointer)
540 platform->driver->compr_ops->pointer(cstream, tstamp);
541
542 mutex_unlock(&rtd->pcm_mutex);
543 return 0;
544}
545
546static int soc_compr_copy(struct snd_compr_stream *cstream,
547 char __user *buf, size_t count)
548{
549 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
550 struct snd_soc_platform *platform = rtd->platform;
551 int ret = 0;
552
553 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
554
555 if (platform->driver->compr_ops && platform->driver->compr_ops->copy)
556 ret = platform->driver->compr_ops->copy(cstream, buf, count);
557
558 mutex_unlock(&rtd->pcm_mutex);
559 return ret;
560}
561
562static int soc_compr_set_metadata(struct snd_compr_stream *cstream,
563 struct snd_compr_metadata *metadata)
564{
565 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
566 struct snd_soc_platform *platform = rtd->platform;
567 int ret = 0;
568
569 if (platform->driver->compr_ops && platform->driver->compr_ops->set_metadata)
570 ret = platform->driver->compr_ops->set_metadata(cstream, metadata);
571
572 return ret;
573}
574
575static int soc_compr_get_metadata(struct snd_compr_stream *cstream,
576 struct snd_compr_metadata *metadata)
577{
578 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
579 struct snd_soc_platform *platform = rtd->platform;
580 int ret = 0;
581
582 if (platform->driver->compr_ops && platform->driver->compr_ops->get_metadata)
583 ret = platform->driver->compr_ops->get_metadata(cstream, metadata);
584
585 return ret;
586}
587
588/* ASoC Compress operations */
589static struct snd_compr_ops soc_compr_ops = {
590 .open = soc_compr_open,
591 .free = soc_compr_free,
592 .set_params = soc_compr_set_params,
593 .set_metadata = soc_compr_set_metadata,
594 .get_metadata = soc_compr_get_metadata,
595 .get_params = soc_compr_get_params,
596 .trigger = soc_compr_trigger,
597 .pointer = soc_compr_pointer,
598 .ack = soc_compr_ack,
599 .get_caps = soc_compr_get_caps,
600 .get_codec_caps = soc_compr_get_codec_caps
601};
602
603/* ASoC Dynamic Compress operations */
604static struct snd_compr_ops soc_compr_dyn_ops = {
605 .open = soc_compr_open_fe,
606 .free = soc_compr_free_fe,
607 .set_params = soc_compr_set_params_fe,
608 .get_params = soc_compr_get_params,
609 .set_metadata = soc_compr_set_metadata,
610 .get_metadata = soc_compr_get_metadata,
611 .trigger = soc_compr_trigger_fe,
612 .pointer = soc_compr_pointer,
613 .ack = soc_compr_ack,
614 .get_caps = soc_compr_get_caps,
615 .get_codec_caps = soc_compr_get_codec_caps
616};
617
618/* create a new compress */
619int soc_new_compress(struct snd_soc_pcm_runtime *rtd, int num)
620{
621 struct snd_soc_codec *codec = rtd->codec;
622 struct snd_soc_platform *platform = rtd->platform;
623 struct snd_soc_dai *codec_dai = rtd->codec_dai;
624 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
625 struct snd_compr *compr;
626 struct snd_pcm *be_pcm;
627 char new_name[64];
628 int ret = 0, direction = 0;
629
630 /* check client and interface hw capabilities */
631 snprintf(new_name, sizeof(new_name), "%s %s-%d",
632 rtd->dai_link->stream_name, codec_dai->name, num);
633
634 if (codec_dai->driver->playback.channels_min)
635 direction = SND_COMPRESS_PLAYBACK;
636 else if (codec_dai->driver->capture.channels_min)
637 direction = SND_COMPRESS_CAPTURE;
638 else
639 return -EINVAL;
640
641 compr = kzalloc(sizeof(*compr), GFP_KERNEL);
642 if (compr == NULL) {
643 snd_printk(KERN_ERR "Cannot allocate compr\n");
644 return -ENOMEM;
645 }
646
647 compr->ops = devm_kzalloc(rtd->card->dev, sizeof(soc_compr_ops),
648 GFP_KERNEL);
649 if (compr->ops == NULL) {
650 dev_err(rtd->card->dev, "Cannot allocate compressed ops\n");
651 ret = -ENOMEM;
652 goto compr_err;
653 }
654
655 if (rtd->dai_link->dynamic) {
656 snprintf(new_name, sizeof(new_name), "(%s)",
657 rtd->dai_link->stream_name);
658
659 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
660 1, 0, &be_pcm);
661 if (ret < 0) {
662 dev_err(rtd->card->dev, "ASoC: can't create compressed for %s\n",
663 rtd->dai_link->name);
664 goto compr_err;
665 }
666
667 rtd->pcm = be_pcm;
668 rtd->fe_compr = 1;
669 be_pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd;
670 be_pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd;
671 memcpy(compr->ops, &soc_compr_dyn_ops, sizeof(soc_compr_dyn_ops));
672 } else
673 memcpy(compr->ops, &soc_compr_ops, sizeof(soc_compr_ops));
674
675 /* Add copy callback for not memory mapped DSPs */
676 if (platform->driver->compr_ops && platform->driver->compr_ops->copy)
677 compr->ops->copy = soc_compr_copy;
678
679 mutex_init(&compr->lock);
680 ret = snd_compress_new(rtd->card->snd_card, num, direction, compr);
681 if (ret < 0) {
682 pr_err("compress asoc: can't create compress for codec %s\n",
683 codec->name);
684 goto compr_err;
685 }
686
687 /* DAPM dai link stream work */
688 INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work);
689
690 rtd->compr = compr;
691 compr->private_data = rtd;
692
693 printk(KERN_INFO "compress asoc: %s <-> %s mapping ok\n", codec_dai->name,
694 cpu_dai->name);
695 return ret;
696
697compr_err:
698 kfree(compr);
699 return ret;
700}