dm thin metadata: fix __udivdi3 undefined on 32-bit
[linux/fpc-iii.git] / sound / soc / soc-compress.c
blobc1addf49c4f2c18e49cf4e9e0a104d39d418530e
1 /*
2 * soc-compress.c -- ALSA SoC Compress
4 * Copyright (C) 2012 Intel Corp.
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>
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.
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>
29 static int soc_compr_open(struct snd_compr_stream *cstream)
31 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
32 struct snd_soc_platform *platform = rtd->platform;
33 int ret = 0;
35 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
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",
41 platform->component.name);
42 goto out;
46 if (rtd->dai_link->compr_ops && rtd->dai_link->compr_ops->startup) {
47 ret = rtd->dai_link->compr_ops->startup(cstream);
48 if (ret < 0) {
49 pr_err("compress asoc: %s startup failed\n", rtd->dai_link->name);
50 goto machine_err;
54 snd_soc_runtime_activate(rtd, cstream->direction);
56 mutex_unlock(&rtd->pcm_mutex);
58 return 0;
60 machine_err:
61 if (platform->driver->compr_ops && platform->driver->compr_ops->free)
62 platform->driver->compr_ops->free(cstream);
63 out:
64 mutex_unlock(&rtd->pcm_mutex);
65 return ret;
68 static int soc_compr_open_fe(struct snd_compr_stream *cstream)
70 struct snd_soc_pcm_runtime *fe = cstream->private_data;
71 struct snd_pcm_substream *fe_substream =
72 fe->pcm->streams[cstream->direction].substream;
73 struct snd_soc_platform *platform = fe->platform;
74 struct snd_soc_dpcm *dpcm;
75 struct snd_soc_dapm_widget_list *list;
76 int stream;
77 int ret = 0;
79 if (cstream->direction == SND_COMPRESS_PLAYBACK)
80 stream = SNDRV_PCM_STREAM_PLAYBACK;
81 else
82 stream = SNDRV_PCM_STREAM_CAPTURE;
84 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
86 if (platform->driver->compr_ops && platform->driver->compr_ops->open) {
87 ret = platform->driver->compr_ops->open(cstream);
88 if (ret < 0) {
89 pr_err("compress asoc: can't open platform %s\n",
90 platform->component.name);
91 goto out;
95 if (fe->dai_link->compr_ops && fe->dai_link->compr_ops->startup) {
96 ret = fe->dai_link->compr_ops->startup(cstream);
97 if (ret < 0) {
98 pr_err("compress asoc: %s startup failed\n", fe->dai_link->name);
99 goto machine_err;
103 fe->dpcm[stream].runtime = fe_substream->runtime;
105 ret = dpcm_path_get(fe, stream, &list);
106 if (ret < 0)
107 goto fe_err;
108 else if (ret == 0)
109 dev_dbg(fe->dev, "ASoC: %s no valid %s route\n",
110 fe->dai_link->name, stream ? "capture" : "playback");
112 /* calculate valid and active FE <-> BE dpcms */
113 dpcm_process_paths(fe, stream, &list, 1);
115 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
117 ret = dpcm_be_dai_startup(fe, stream);
118 if (ret < 0) {
119 /* clean up all links */
120 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
121 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
123 dpcm_be_disconnect(fe, stream);
124 fe->dpcm[stream].runtime = NULL;
125 goto fe_err;
128 dpcm_clear_pending_state(fe, stream);
129 dpcm_path_put(&list);
131 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_OPEN;
132 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
134 snd_soc_runtime_activate(fe, stream);
136 mutex_unlock(&fe->card->mutex);
138 return 0;
140 fe_err:
141 if (fe->dai_link->compr_ops && fe->dai_link->compr_ops->shutdown)
142 fe->dai_link->compr_ops->shutdown(cstream);
143 machine_err:
144 if (platform->driver->compr_ops && platform->driver->compr_ops->free)
145 platform->driver->compr_ops->free(cstream);
146 out:
147 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
148 mutex_unlock(&fe->card->mutex);
149 return ret;
153 * Power down the audio subsystem pmdown_time msecs after close is called.
154 * This is to ensure there are no pops or clicks in between any music tracks
155 * due to DAPM power cycling.
157 static void close_delayed_work(struct work_struct *work)
159 struct snd_soc_pcm_runtime *rtd =
160 container_of(work, struct snd_soc_pcm_runtime, delayed_work.work);
161 struct snd_soc_dai *codec_dai = rtd->codec_dai;
163 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
165 dev_dbg(rtd->dev, "ASoC: pop wq checking: %s status: %s waiting: %s\n",
166 codec_dai->driver->playback.stream_name,
167 codec_dai->playback_active ? "active" : "inactive",
168 rtd->pop_wait ? "yes" : "no");
170 /* are we waiting on this codec DAI stream */
171 if (rtd->pop_wait == 1) {
172 rtd->pop_wait = 0;
173 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_PLAYBACK,
174 SND_SOC_DAPM_STREAM_STOP);
177 mutex_unlock(&rtd->pcm_mutex);
180 static int soc_compr_free(struct snd_compr_stream *cstream)
182 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
183 struct snd_soc_platform *platform = rtd->platform;
184 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
185 struct snd_soc_dai *codec_dai = rtd->codec_dai;
186 int stream;
188 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
190 if (cstream->direction == SND_COMPRESS_PLAYBACK)
191 stream = SNDRV_PCM_STREAM_PLAYBACK;
192 else
193 stream = SNDRV_PCM_STREAM_CAPTURE;
195 snd_soc_runtime_deactivate(rtd, stream);
197 snd_soc_dai_digital_mute(codec_dai, 1, cstream->direction);
199 if (!cpu_dai->active)
200 cpu_dai->rate = 0;
202 if (!codec_dai->active)
203 codec_dai->rate = 0;
206 if (rtd->dai_link->compr_ops && rtd->dai_link->compr_ops->shutdown)
207 rtd->dai_link->compr_ops->shutdown(cstream);
209 if (platform->driver->compr_ops && platform->driver->compr_ops->free)
210 platform->driver->compr_ops->free(cstream);
212 if (cstream->direction == SND_COMPRESS_PLAYBACK) {
213 if (snd_soc_runtime_ignore_pmdown_time(rtd)) {
214 snd_soc_dapm_stream_event(rtd,
215 SNDRV_PCM_STREAM_PLAYBACK,
216 SND_SOC_DAPM_STREAM_STOP);
217 } else {
218 rtd->pop_wait = 1;
219 queue_delayed_work(system_power_efficient_wq,
220 &rtd->delayed_work,
221 msecs_to_jiffies(rtd->pmdown_time));
223 } else {
224 /* capture streams can be powered down now */
225 snd_soc_dapm_stream_event(rtd,
226 SNDRV_PCM_STREAM_CAPTURE,
227 SND_SOC_DAPM_STREAM_STOP);
230 mutex_unlock(&rtd->pcm_mutex);
231 return 0;
234 static int soc_compr_free_fe(struct snd_compr_stream *cstream)
236 struct snd_soc_pcm_runtime *fe = cstream->private_data;
237 struct snd_soc_platform *platform = fe->platform;
238 struct snd_soc_dpcm *dpcm;
239 int stream, ret;
241 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
243 if (cstream->direction == SND_COMPRESS_PLAYBACK)
244 stream = SNDRV_PCM_STREAM_PLAYBACK;
245 else
246 stream = SNDRV_PCM_STREAM_CAPTURE;
248 snd_soc_runtime_deactivate(fe, stream);
250 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
252 ret = dpcm_be_dai_hw_free(fe, stream);
253 if (ret < 0)
254 dev_err(fe->dev, "compressed hw_free failed %d\n", ret);
256 ret = dpcm_be_dai_shutdown(fe, stream);
258 /* mark FE's links ready to prune */
259 list_for_each_entry(dpcm, &fe->dpcm[stream].be_clients, list_be)
260 dpcm->state = SND_SOC_DPCM_LINK_STATE_FREE;
262 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_STOP);
264 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_CLOSE;
265 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
267 dpcm_be_disconnect(fe, stream);
269 fe->dpcm[stream].runtime = NULL;
271 if (fe->dai_link->compr_ops && fe->dai_link->compr_ops->shutdown)
272 fe->dai_link->compr_ops->shutdown(cstream);
274 if (platform->driver->compr_ops && platform->driver->compr_ops->free)
275 platform->driver->compr_ops->free(cstream);
277 mutex_unlock(&fe->card->mutex);
278 return 0;
281 static int soc_compr_trigger(struct snd_compr_stream *cstream, int cmd)
284 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
285 struct snd_soc_platform *platform = rtd->platform;
286 struct snd_soc_dai *codec_dai = rtd->codec_dai;
287 int ret = 0;
289 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
291 if (platform->driver->compr_ops && platform->driver->compr_ops->trigger) {
292 ret = platform->driver->compr_ops->trigger(cstream, cmd);
293 if (ret < 0)
294 goto out;
297 switch (cmd) {
298 case SNDRV_PCM_TRIGGER_START:
299 snd_soc_dai_digital_mute(codec_dai, 0, cstream->direction);
300 break;
301 case SNDRV_PCM_TRIGGER_STOP:
302 snd_soc_dai_digital_mute(codec_dai, 1, cstream->direction);
303 break;
306 out:
307 mutex_unlock(&rtd->pcm_mutex);
308 return ret;
311 static int soc_compr_trigger_fe(struct snd_compr_stream *cstream, int cmd)
313 struct snd_soc_pcm_runtime *fe = cstream->private_data;
314 struct snd_soc_platform *platform = fe->platform;
315 int ret = 0, stream;
317 if (cmd == SND_COMPR_TRIGGER_PARTIAL_DRAIN ||
318 cmd == SND_COMPR_TRIGGER_DRAIN) {
320 if (platform->driver->compr_ops &&
321 platform->driver->compr_ops->trigger)
322 return platform->driver->compr_ops->trigger(cstream,
323 cmd);
326 if (cstream->direction == SND_COMPRESS_PLAYBACK)
327 stream = SNDRV_PCM_STREAM_PLAYBACK;
328 else
329 stream = SNDRV_PCM_STREAM_CAPTURE;
332 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
334 if (platform->driver->compr_ops && platform->driver->compr_ops->trigger) {
335 ret = platform->driver->compr_ops->trigger(cstream, cmd);
336 if (ret < 0)
337 goto out;
340 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
342 ret = dpcm_be_dai_trigger(fe, stream, cmd);
344 switch (cmd) {
345 case SNDRV_PCM_TRIGGER_START:
346 case SNDRV_PCM_TRIGGER_RESUME:
347 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
348 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_START;
349 break;
350 case SNDRV_PCM_TRIGGER_STOP:
351 case SNDRV_PCM_TRIGGER_SUSPEND:
352 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_STOP;
353 break;
354 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
355 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PAUSED;
356 break;
359 out:
360 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
361 mutex_unlock(&fe->card->mutex);
362 return ret;
365 static int soc_compr_set_params(struct snd_compr_stream *cstream,
366 struct snd_compr_params *params)
368 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
369 struct snd_soc_platform *platform = rtd->platform;
370 int ret = 0;
372 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
374 /* first we call set_params for the platform driver
375 * this should configure the soc side
376 * if the machine has compressed ops then we call that as well
377 * expectation is that platform and machine will configure everything
378 * for this compress path, like configuring pcm port for codec
380 if (platform->driver->compr_ops && platform->driver->compr_ops->set_params) {
381 ret = platform->driver->compr_ops->set_params(cstream, params);
382 if (ret < 0)
383 goto err;
386 if (rtd->dai_link->compr_ops && rtd->dai_link->compr_ops->set_params) {
387 ret = rtd->dai_link->compr_ops->set_params(cstream);
388 if (ret < 0)
389 goto err;
392 if (cstream->direction == SND_COMPRESS_PLAYBACK)
393 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_PLAYBACK,
394 SND_SOC_DAPM_STREAM_START);
395 else
396 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_CAPTURE,
397 SND_SOC_DAPM_STREAM_START);
399 /* cancel any delayed stream shutdown that is pending */
400 rtd->pop_wait = 0;
401 mutex_unlock(&rtd->pcm_mutex);
403 cancel_delayed_work_sync(&rtd->delayed_work);
405 return ret;
407 err:
408 mutex_unlock(&rtd->pcm_mutex);
409 return ret;
412 static int soc_compr_set_params_fe(struct snd_compr_stream *cstream,
413 struct snd_compr_params *params)
415 struct snd_soc_pcm_runtime *fe = cstream->private_data;
416 struct snd_pcm_substream *fe_substream =
417 fe->pcm->streams[cstream->direction].substream;
418 struct snd_soc_platform *platform = fe->platform;
419 int ret = 0, stream;
421 if (cstream->direction == SND_COMPRESS_PLAYBACK)
422 stream = SNDRV_PCM_STREAM_PLAYBACK;
423 else
424 stream = SNDRV_PCM_STREAM_CAPTURE;
426 mutex_lock_nested(&fe->card->mutex, SND_SOC_CARD_CLASS_RUNTIME);
428 if (platform->driver->compr_ops && platform->driver->compr_ops->set_params) {
429 ret = platform->driver->compr_ops->set_params(cstream, params);
430 if (ret < 0)
431 goto out;
434 if (fe->dai_link->compr_ops && fe->dai_link->compr_ops->set_params) {
435 ret = fe->dai_link->compr_ops->set_params(cstream);
436 if (ret < 0)
437 goto out;
441 * Create an empty hw_params for the BE as the machine driver must
442 * fix this up to match DSP decoder and ASRC configuration.
443 * I.e. machine driver fixup for compressed BE is mandatory.
445 memset(&fe->dpcm[fe_substream->stream].hw_params, 0,
446 sizeof(struct snd_pcm_hw_params));
448 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_FE;
450 ret = dpcm_be_dai_hw_params(fe, stream);
451 if (ret < 0)
452 goto out;
454 ret = dpcm_be_dai_prepare(fe, stream);
455 if (ret < 0)
456 goto out;
458 dpcm_dapm_stream_event(fe, stream, SND_SOC_DAPM_STREAM_START);
459 fe->dpcm[stream].state = SND_SOC_DPCM_STATE_PREPARE;
461 out:
462 fe->dpcm[stream].runtime_update = SND_SOC_DPCM_UPDATE_NO;
463 mutex_unlock(&fe->card->mutex);
464 return ret;
467 static int soc_compr_get_params(struct snd_compr_stream *cstream,
468 struct snd_codec *params)
470 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
471 struct snd_soc_platform *platform = rtd->platform;
472 int ret = 0;
474 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
476 if (platform->driver->compr_ops && platform->driver->compr_ops->get_params)
477 ret = platform->driver->compr_ops->get_params(cstream, params);
479 mutex_unlock(&rtd->pcm_mutex);
480 return ret;
483 static int soc_compr_get_caps(struct snd_compr_stream *cstream,
484 struct snd_compr_caps *caps)
486 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
487 struct snd_soc_platform *platform = rtd->platform;
488 int ret = 0;
490 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
492 if (platform->driver->compr_ops && platform->driver->compr_ops->get_caps)
493 ret = platform->driver->compr_ops->get_caps(cstream, caps);
495 mutex_unlock(&rtd->pcm_mutex);
496 return ret;
499 static int soc_compr_get_codec_caps(struct snd_compr_stream *cstream,
500 struct snd_compr_codec_caps *codec)
502 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
503 struct snd_soc_platform *platform = rtd->platform;
504 int ret = 0;
506 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
508 if (platform->driver->compr_ops && platform->driver->compr_ops->get_codec_caps)
509 ret = platform->driver->compr_ops->get_codec_caps(cstream, codec);
511 mutex_unlock(&rtd->pcm_mutex);
512 return ret;
515 static int soc_compr_ack(struct snd_compr_stream *cstream, size_t bytes)
517 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
518 struct snd_soc_platform *platform = rtd->platform;
519 int ret = 0;
521 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
523 if (platform->driver->compr_ops && platform->driver->compr_ops->ack)
524 ret = platform->driver->compr_ops->ack(cstream, bytes);
526 mutex_unlock(&rtd->pcm_mutex);
527 return ret;
530 static int soc_compr_pointer(struct snd_compr_stream *cstream,
531 struct snd_compr_tstamp *tstamp)
533 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
534 struct snd_soc_platform *platform = rtd->platform;
536 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
538 if (platform->driver->compr_ops && platform->driver->compr_ops->pointer)
539 platform->driver->compr_ops->pointer(cstream, tstamp);
541 mutex_unlock(&rtd->pcm_mutex);
542 return 0;
545 static int soc_compr_copy(struct snd_compr_stream *cstream,
546 char __user *buf, size_t count)
548 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
549 struct snd_soc_platform *platform = rtd->platform;
550 int ret = 0;
552 mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);
554 if (platform->driver->compr_ops && platform->driver->compr_ops->copy)
555 ret = platform->driver->compr_ops->copy(cstream, buf, count);
557 mutex_unlock(&rtd->pcm_mutex);
558 return ret;
561 static int soc_compr_set_metadata(struct snd_compr_stream *cstream,
562 struct snd_compr_metadata *metadata)
564 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
565 struct snd_soc_platform *platform = rtd->platform;
566 int ret = 0;
568 if (platform->driver->compr_ops && platform->driver->compr_ops->set_metadata)
569 ret = platform->driver->compr_ops->set_metadata(cstream, metadata);
571 return ret;
574 static int soc_compr_get_metadata(struct snd_compr_stream *cstream,
575 struct snd_compr_metadata *metadata)
577 struct snd_soc_pcm_runtime *rtd = cstream->private_data;
578 struct snd_soc_platform *platform = rtd->platform;
579 int ret = 0;
581 if (platform->driver->compr_ops && platform->driver->compr_ops->get_metadata)
582 ret = platform->driver->compr_ops->get_metadata(cstream, metadata);
584 return ret;
587 /* ASoC Compress operations */
588 static struct snd_compr_ops soc_compr_ops = {
589 .open = soc_compr_open,
590 .free = soc_compr_free,
591 .set_params = soc_compr_set_params,
592 .set_metadata = soc_compr_set_metadata,
593 .get_metadata = soc_compr_get_metadata,
594 .get_params = soc_compr_get_params,
595 .trigger = soc_compr_trigger,
596 .pointer = soc_compr_pointer,
597 .ack = soc_compr_ack,
598 .get_caps = soc_compr_get_caps,
599 .get_codec_caps = soc_compr_get_codec_caps
602 /* ASoC Dynamic Compress operations */
603 static struct snd_compr_ops soc_compr_dyn_ops = {
604 .open = soc_compr_open_fe,
605 .free = soc_compr_free_fe,
606 .set_params = soc_compr_set_params_fe,
607 .get_params = soc_compr_get_params,
608 .set_metadata = soc_compr_set_metadata,
609 .get_metadata = soc_compr_get_metadata,
610 .trigger = soc_compr_trigger_fe,
611 .pointer = soc_compr_pointer,
612 .ack = soc_compr_ack,
613 .get_caps = soc_compr_get_caps,
614 .get_codec_caps = soc_compr_get_codec_caps
618 * snd_soc_new_compress - create a new compress.
620 * @rtd: The runtime for which we will create compress
621 * @num: the device index number (zero based - shared with normal PCMs)
623 * Return: 0 for success, else error.
625 int snd_soc_new_compress(struct snd_soc_pcm_runtime *rtd, int num)
627 struct snd_soc_codec *codec = rtd->codec;
628 struct snd_soc_platform *platform = rtd->platform;
629 struct snd_soc_dai *codec_dai = rtd->codec_dai;
630 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
631 struct snd_compr *compr;
632 struct snd_pcm *be_pcm;
633 char new_name[64];
634 int ret = 0, direction = 0;
635 int playback = 0, capture = 0;
637 if (rtd->num_codecs > 1) {
638 dev_err(rtd->card->dev, "Multicodec not supported for compressed stream\n");
639 return -EINVAL;
642 /* check client and interface hw capabilities */
643 snprintf(new_name, sizeof(new_name), "%s %s-%d",
644 rtd->dai_link->stream_name, codec_dai->name, num);
646 if (codec_dai->driver->playback.channels_min)
647 playback = 1;
648 if (codec_dai->driver->capture.channels_min)
649 capture = 1;
651 capture = capture && cpu_dai->driver->capture.channels_min;
652 playback = playback && cpu_dai->driver->playback.channels_min;
655 * Compress devices are unidirectional so only one of the directions
656 * should be set, check for that (xor)
658 if (playback + capture != 1) {
659 dev_err(rtd->card->dev, "Invalid direction for compress P %d, C %d\n",
660 playback, capture);
661 return -EINVAL;
664 if(playback)
665 direction = SND_COMPRESS_PLAYBACK;
666 else
667 direction = SND_COMPRESS_CAPTURE;
669 compr = kzalloc(sizeof(*compr), GFP_KERNEL);
670 if (compr == NULL) {
671 snd_printk(KERN_ERR "Cannot allocate compr\n");
672 return -ENOMEM;
675 compr->ops = devm_kzalloc(rtd->card->dev, sizeof(soc_compr_ops),
676 GFP_KERNEL);
677 if (compr->ops == NULL) {
678 dev_err(rtd->card->dev, "Cannot allocate compressed ops\n");
679 ret = -ENOMEM;
680 goto compr_err;
683 if (rtd->dai_link->dynamic) {
684 snprintf(new_name, sizeof(new_name), "(%s)",
685 rtd->dai_link->stream_name);
687 ret = snd_pcm_new_internal(rtd->card->snd_card, new_name, num,
688 rtd->dai_link->dpcm_playback,
689 rtd->dai_link->dpcm_capture, &be_pcm);
690 if (ret < 0) {
691 dev_err(rtd->card->dev, "ASoC: can't create compressed for %s\n",
692 rtd->dai_link->name);
693 goto compr_err;
696 rtd->pcm = be_pcm;
697 rtd->fe_compr = 1;
698 if (rtd->dai_link->dpcm_playback)
699 be_pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream->private_data = rtd;
700 else if (rtd->dai_link->dpcm_capture)
701 be_pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream->private_data = rtd;
702 memcpy(compr->ops, &soc_compr_dyn_ops, sizeof(soc_compr_dyn_ops));
703 } else
704 memcpy(compr->ops, &soc_compr_ops, sizeof(soc_compr_ops));
706 /* Add copy callback for not memory mapped DSPs */
707 if (platform->driver->compr_ops && platform->driver->compr_ops->copy)
708 compr->ops->copy = soc_compr_copy;
710 mutex_init(&compr->lock);
711 ret = snd_compress_new(rtd->card->snd_card, num, direction, compr);
712 if (ret < 0) {
713 pr_err("compress asoc: can't create compress for codec %s\n",
714 codec->component.name);
715 goto compr_err;
718 /* DAPM dai link stream work */
719 INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work);
721 rtd->compr = compr;
722 compr->private_data = rtd;
724 printk(KERN_INFO "compress asoc: %s <-> %s mapping ok\n", codec_dai->name,
725 cpu_dai->name);
726 return ret;
728 compr_err:
729 kfree(compr);
730 return ret;
732 EXPORT_SYMBOL_GPL(snd_soc_new_compress);