2 * soc-core.c -- ALSA SoC Audio Layer
4 * Copyright 2005 Wolfson Microelectronics PLC.
5 * Copyright 2005 Openedhand Ltd.
6 * Copyright (C) 2010 Slimlogic Ltd.
7 * Copyright (C) 2010 Texas Instruments Inc.
9 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
10 * with code, comments and ideas from :-
11 * Richard Purdie <richard@openedhand.com>
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
19 * o Add hw rules to enforce rates, etc.
20 * o More testing with other codecs/machines.
21 * o Add more codecs and platforms to ensure good API coverage.
22 * o Support TDM on PCM and I2S
25 #include <linux/module.h>
26 #include <linux/moduleparam.h>
27 #include <linux/init.h>
28 #include <linux/delay.h>
30 #include <linux/bitops.h>
31 #include <linux/debugfs.h>
32 #include <linux/platform_device.h>
33 #include <linux/slab.h>
34 #include <sound/ac97_codec.h>
35 #include <sound/core.h>
36 #include <sound/jack.h>
37 #include <sound/pcm.h>
38 #include <sound/pcm_params.h>
39 #include <sound/soc.h>
40 #include <sound/initval.h>
42 #define CREATE_TRACE_POINTS
43 #include <trace/events/asoc.h>
47 static DEFINE_MUTEX(pcm_mutex);
48 static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq);
50 #ifdef CONFIG_DEBUG_FS
51 struct dentry *snd_soc_debugfs_root;
52 EXPORT_SYMBOL_GPL(snd_soc_debugfs_root);
55 static DEFINE_MUTEX(client_mutex);
56 static LIST_HEAD(card_list);
57 static LIST_HEAD(dai_list);
58 static LIST_HEAD(platform_list);
59 static LIST_HEAD(codec_list);
61 static int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num);
64 * This is a timeout to do a DAPM powerdown after a stream is closed().
65 * It can be used to eliminate pops between different playback streams, e.g.
66 * between two audio tracks.
68 static int pmdown_time = 5000;
69 module_param(pmdown_time, int, 0);
70 MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
72 /* returns the minimum number of bytes needed to represent
73 * a particular given value */
74 static int min_bytes_needed(unsigned long val)
79 for (i = (sizeof val * 8) - 1; i >= 0; --i, ++c)
82 c = (sizeof val * 8) - c;
90 /* fill buf which is 'len' bytes with a formatted
91 * string of the form 'reg: value\n' */
92 static int format_register_str(struct snd_soc_codec *codec,
93 unsigned int reg, char *buf, size_t len)
95 int wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
96 int regsize = codec->driver->reg_word_size * 2;
99 char regbuf[regsize + 1];
101 /* since tmpbuf is allocated on the stack, warn the callers if they
102 * try to abuse this function */
105 /* +2 for ': ' and + 1 for '\n' */
106 if (wordsize + regsize + 2 + 1 != len)
109 ret = snd_soc_read(codec , reg);
111 memset(regbuf, 'X', regsize);
112 regbuf[regsize] = '\0';
114 snprintf(regbuf, regsize + 1, "%.*x", regsize, ret);
117 /* prepare the buffer */
118 snprintf(tmpbuf, len + 1, "%.*x: %s\n", wordsize, reg, regbuf);
119 /* copy it back to the caller without the '\0' */
120 memcpy(buf, tmpbuf, len);
125 /* codec register dump */
126 static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf,
127 size_t count, loff_t pos)
130 int wordsize, regsize;
135 wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
136 regsize = codec->driver->reg_word_size * 2;
138 len = wordsize + regsize + 2 + 1;
140 if (!codec->driver->reg_cache_size)
143 if (codec->driver->reg_cache_step)
144 step = codec->driver->reg_cache_step;
146 for (i = 0; i < codec->driver->reg_cache_size; i += step) {
147 if (codec->readable_register && !codec->readable_register(codec, i))
149 if (codec->driver->display_register) {
150 count += codec->driver->display_register(codec, buf + count,
151 PAGE_SIZE - count, i);
153 /* only support larger than PAGE_SIZE bytes debugfs
154 * entries for the default case */
156 if (total + len >= count - 1)
158 format_register_str(codec, i, buf + total, len);
165 total = min(total, count - 1);
170 static ssize_t codec_reg_show(struct device *dev,
171 struct device_attribute *attr, char *buf)
173 struct snd_soc_pcm_runtime *rtd =
174 container_of(dev, struct snd_soc_pcm_runtime, dev);
176 return soc_codec_reg_show(rtd->codec, buf, PAGE_SIZE, 0);
179 static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
181 static ssize_t pmdown_time_show(struct device *dev,
182 struct device_attribute *attr, char *buf)
184 struct snd_soc_pcm_runtime *rtd =
185 container_of(dev, struct snd_soc_pcm_runtime, dev);
187 return sprintf(buf, "%ld\n", rtd->pmdown_time);
190 static ssize_t pmdown_time_set(struct device *dev,
191 struct device_attribute *attr,
192 const char *buf, size_t count)
194 struct snd_soc_pcm_runtime *rtd =
195 container_of(dev, struct snd_soc_pcm_runtime, dev);
198 ret = strict_strtol(buf, 10, &rtd->pmdown_time);
205 static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
207 #ifdef CONFIG_DEBUG_FS
208 static int codec_reg_open_file(struct inode *inode, struct file *file)
210 file->private_data = inode->i_private;
214 static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
215 size_t count, loff_t *ppos)
218 struct snd_soc_codec *codec = file->private_data;
221 if (*ppos < 0 || !count)
224 buf = kmalloc(count, GFP_KERNEL);
228 ret = soc_codec_reg_show(codec, buf, count, *ppos);
230 if (copy_to_user(user_buf, buf, ret)) {
241 static ssize_t codec_reg_write_file(struct file *file,
242 const char __user *user_buf, size_t count, loff_t *ppos)
247 unsigned long reg, value;
249 struct snd_soc_codec *codec = file->private_data;
251 buf_size = min(count, (sizeof(buf)-1));
252 if (copy_from_user(buf, user_buf, buf_size))
256 if (codec->driver->reg_cache_step)
257 step = codec->driver->reg_cache_step;
259 while (*start == ' ')
261 reg = simple_strtoul(start, &start, 16);
262 while (*start == ' ')
264 if (strict_strtoul(start, 16, &value))
267 /* Userspace has been fiddling around behind the kernel's back */
268 add_taint(TAINT_USER);
270 snd_soc_write(codec, reg, value);
274 static const struct file_operations codec_reg_fops = {
275 .open = codec_reg_open_file,
276 .read = codec_reg_read_file,
277 .write = codec_reg_write_file,
278 .llseek = default_llseek,
281 static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
283 struct dentry *debugfs_card_root = codec->card->debugfs_card_root;
285 codec->debugfs_codec_root = debugfs_create_dir(codec->name,
287 if (!codec->debugfs_codec_root) {
289 "ASoC: Failed to create codec debugfs directory\n");
293 debugfs_create_bool("cache_sync", 0444, codec->debugfs_codec_root,
295 debugfs_create_bool("cache_only", 0444, codec->debugfs_codec_root,
298 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
299 codec->debugfs_codec_root,
300 codec, &codec_reg_fops);
301 if (!codec->debugfs_reg)
303 "ASoC: Failed to create codec register debugfs file\n");
305 codec->dapm.debugfs_dapm = debugfs_create_dir("dapm",
306 codec->debugfs_codec_root);
307 if (!codec->dapm.debugfs_dapm)
309 "Failed to create DAPM debugfs directory\n");
311 snd_soc_dapm_debugfs_init(&codec->dapm);
314 static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
316 debugfs_remove_recursive(codec->debugfs_codec_root);
319 static ssize_t codec_list_read_file(struct file *file, char __user *user_buf,
320 size_t count, loff_t *ppos)
322 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
323 ssize_t len, ret = 0;
324 struct snd_soc_codec *codec;
329 list_for_each_entry(codec, &codec_list, list) {
330 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
334 if (ret > PAGE_SIZE) {
341 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
348 static const struct file_operations codec_list_fops = {
349 .read = codec_list_read_file,
350 .llseek = default_llseek,/* read accesses f_pos */
353 static ssize_t dai_list_read_file(struct file *file, char __user *user_buf,
354 size_t count, loff_t *ppos)
356 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
357 ssize_t len, ret = 0;
358 struct snd_soc_dai *dai;
363 list_for_each_entry(dai, &dai_list, list) {
364 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n", dai->name);
367 if (ret > PAGE_SIZE) {
373 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
380 static const struct file_operations dai_list_fops = {
381 .read = dai_list_read_file,
382 .llseek = default_llseek,/* read accesses f_pos */
385 static ssize_t platform_list_read_file(struct file *file,
386 char __user *user_buf,
387 size_t count, loff_t *ppos)
389 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
390 ssize_t len, ret = 0;
391 struct snd_soc_platform *platform;
396 list_for_each_entry(platform, &platform_list, list) {
397 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
401 if (ret > PAGE_SIZE) {
407 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
414 static const struct file_operations platform_list_fops = {
415 .read = platform_list_read_file,
416 .llseek = default_llseek,/* read accesses f_pos */
419 static void soc_init_card_debugfs(struct snd_soc_card *card)
421 card->debugfs_card_root = debugfs_create_dir(card->name,
422 snd_soc_debugfs_root);
423 if (!card->debugfs_card_root) {
425 "ASoC: Failed to create codec debugfs directory\n");
429 card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
430 card->debugfs_card_root,
432 if (!card->debugfs_pop_time)
434 "Failed to create pop time debugfs file\n");
437 static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
439 debugfs_remove_recursive(card->debugfs_card_root);
444 static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
448 static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
452 static inline void soc_init_card_debugfs(struct snd_soc_card *card)
456 static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
461 #ifdef CONFIG_SND_SOC_AC97_BUS
462 /* unregister ac97 codec */
463 static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
465 if (codec->ac97->dev.bus)
466 device_unregister(&codec->ac97->dev);
470 /* stop no dev release warning */
471 static void soc_ac97_device_release(struct device *dev){}
473 /* register ac97 codec to bus */
474 static int soc_ac97_dev_register(struct snd_soc_codec *codec)
478 codec->ac97->dev.bus = &ac97_bus_type;
479 codec->ac97->dev.parent = codec->card->dev;
480 codec->ac97->dev.release = soc_ac97_device_release;
482 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
483 codec->card->snd_card->number, 0, codec->name);
484 err = device_register(&codec->ac97->dev);
486 snd_printk(KERN_ERR "Can't register ac97 bus\n");
487 codec->ac97->dev.bus = NULL;
494 static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream)
496 struct snd_soc_pcm_runtime *rtd = substream->private_data;
497 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
498 struct snd_soc_dai *codec_dai = rtd->codec_dai;
501 if (!codec_dai->driver->symmetric_rates &&
502 !cpu_dai->driver->symmetric_rates &&
503 !rtd->dai_link->symmetric_rates)
506 /* This can happen if multiple streams are starting simultaneously -
507 * the second can need to get its constraints before the first has
508 * picked a rate. Complain and allow the application to carry on.
512 "Not enforcing symmetric_rates due to race\n");
516 dev_dbg(&rtd->dev, "Symmetry forces %dHz rate\n", rtd->rate);
518 ret = snd_pcm_hw_constraint_minmax(substream->runtime,
519 SNDRV_PCM_HW_PARAM_RATE,
520 rtd->rate, rtd->rate);
523 "Unable to apply rate symmetry constraint: %d\n", ret);
531 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
532 * then initialized and any private data can be allocated. This also calls
533 * startup for the cpu DAI, platform, machine and codec DAI.
535 static int soc_pcm_open(struct snd_pcm_substream *substream)
537 struct snd_soc_pcm_runtime *rtd = substream->private_data;
538 struct snd_pcm_runtime *runtime = substream->runtime;
539 struct snd_soc_platform *platform = rtd->platform;
540 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
541 struct snd_soc_dai *codec_dai = rtd->codec_dai;
542 struct snd_soc_dai_driver *cpu_dai_drv = cpu_dai->driver;
543 struct snd_soc_dai_driver *codec_dai_drv = codec_dai->driver;
546 mutex_lock(&pcm_mutex);
548 /* startup the audio subsystem */
549 if (cpu_dai->driver->ops->startup) {
550 ret = cpu_dai->driver->ops->startup(substream, cpu_dai);
552 printk(KERN_ERR "asoc: can't open interface %s\n",
558 if (platform->driver->ops->open) {
559 ret = platform->driver->ops->open(substream);
561 printk(KERN_ERR "asoc: can't open platform %s\n", platform->name);
566 if (codec_dai->driver->ops->startup) {
567 ret = codec_dai->driver->ops->startup(substream, codec_dai);
569 printk(KERN_ERR "asoc: can't open codec %s\n",
575 if (rtd->dai_link->ops && rtd->dai_link->ops->startup) {
576 ret = rtd->dai_link->ops->startup(substream);
578 printk(KERN_ERR "asoc: %s startup failed\n", rtd->dai_link->name);
583 /* Check that the codec and cpu DAIs are compatible */
584 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
585 runtime->hw.rate_min =
586 max(codec_dai_drv->playback.rate_min,
587 cpu_dai_drv->playback.rate_min);
588 runtime->hw.rate_max =
589 min(codec_dai_drv->playback.rate_max,
590 cpu_dai_drv->playback.rate_max);
591 runtime->hw.channels_min =
592 max(codec_dai_drv->playback.channels_min,
593 cpu_dai_drv->playback.channels_min);
594 runtime->hw.channels_max =
595 min(codec_dai_drv->playback.channels_max,
596 cpu_dai_drv->playback.channels_max);
597 runtime->hw.formats =
598 codec_dai_drv->playback.formats & cpu_dai_drv->playback.formats;
600 codec_dai_drv->playback.rates & cpu_dai_drv->playback.rates;
601 if (codec_dai_drv->playback.rates
602 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
603 runtime->hw.rates |= cpu_dai_drv->playback.rates;
604 if (cpu_dai_drv->playback.rates
605 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
606 runtime->hw.rates |= codec_dai_drv->playback.rates;
608 runtime->hw.rate_min =
609 max(codec_dai_drv->capture.rate_min,
610 cpu_dai_drv->capture.rate_min);
611 runtime->hw.rate_max =
612 min(codec_dai_drv->capture.rate_max,
613 cpu_dai_drv->capture.rate_max);
614 runtime->hw.channels_min =
615 max(codec_dai_drv->capture.channels_min,
616 cpu_dai_drv->capture.channels_min);
617 runtime->hw.channels_max =
618 min(codec_dai_drv->capture.channels_max,
619 cpu_dai_drv->capture.channels_max);
620 runtime->hw.formats =
621 codec_dai_drv->capture.formats & cpu_dai_drv->capture.formats;
623 codec_dai_drv->capture.rates & cpu_dai_drv->capture.rates;
624 if (codec_dai_drv->capture.rates
625 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
626 runtime->hw.rates |= cpu_dai_drv->capture.rates;
627 if (cpu_dai_drv->capture.rates
628 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
629 runtime->hw.rates |= codec_dai_drv->capture.rates;
632 snd_pcm_limit_hw_rates(runtime);
633 if (!runtime->hw.rates) {
634 printk(KERN_ERR "asoc: %s <-> %s No matching rates\n",
635 codec_dai->name, cpu_dai->name);
638 if (!runtime->hw.formats) {
639 printk(KERN_ERR "asoc: %s <-> %s No matching formats\n",
640 codec_dai->name, cpu_dai->name);
643 if (!runtime->hw.channels_min || !runtime->hw.channels_max) {
644 printk(KERN_ERR "asoc: %s <-> %s No matching channels\n",
645 codec_dai->name, cpu_dai->name);
649 /* Symmetry only applies if we've already got an active stream. */
650 if (cpu_dai->active || codec_dai->active) {
651 ret = soc_pcm_apply_symmetry(substream);
656 pr_debug("asoc: %s <-> %s info:\n",
657 codec_dai->name, cpu_dai->name);
658 pr_debug("asoc: rate mask 0x%x\n", runtime->hw.rates);
659 pr_debug("asoc: min ch %d max ch %d\n", runtime->hw.channels_min,
660 runtime->hw.channels_max);
661 pr_debug("asoc: min rate %d max rate %d\n", runtime->hw.rate_min,
662 runtime->hw.rate_max);
664 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
665 cpu_dai->playback_active++;
666 codec_dai->playback_active++;
668 cpu_dai->capture_active++;
669 codec_dai->capture_active++;
673 rtd->codec->active++;
674 mutex_unlock(&pcm_mutex);
678 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
679 rtd->dai_link->ops->shutdown(substream);
682 if (codec_dai->driver->ops->shutdown)
683 codec_dai->driver->ops->shutdown(substream, codec_dai);
686 if (platform->driver->ops->close)
687 platform->driver->ops->close(substream);
690 if (cpu_dai->driver->ops->shutdown)
691 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
693 mutex_unlock(&pcm_mutex);
698 * Power down the audio subsystem pmdown_time msecs after close is called.
699 * This is to ensure there are no pops or clicks in between any music tracks
700 * due to DAPM power cycling.
702 static void close_delayed_work(struct work_struct *work)
704 struct snd_soc_pcm_runtime *rtd =
705 container_of(work, struct snd_soc_pcm_runtime, delayed_work.work);
706 struct snd_soc_dai *codec_dai = rtd->codec_dai;
708 mutex_lock(&pcm_mutex);
710 pr_debug("pop wq checking: %s status: %s waiting: %s\n",
711 codec_dai->driver->playback.stream_name,
712 codec_dai->playback_active ? "active" : "inactive",
713 codec_dai->pop_wait ? "yes" : "no");
715 /* are we waiting on this codec DAI stream */
716 if (codec_dai->pop_wait == 1) {
717 codec_dai->pop_wait = 0;
718 snd_soc_dapm_stream_event(rtd,
719 codec_dai->driver->playback.stream_name,
720 SND_SOC_DAPM_STREAM_STOP);
723 mutex_unlock(&pcm_mutex);
727 * Called by ALSA when a PCM substream is closed. Private data can be
728 * freed here. The cpu DAI, codec DAI, machine and platform are also
731 static int soc_codec_close(struct snd_pcm_substream *substream)
733 struct snd_soc_pcm_runtime *rtd = substream->private_data;
734 struct snd_soc_platform *platform = rtd->platform;
735 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
736 struct snd_soc_dai *codec_dai = rtd->codec_dai;
737 struct snd_soc_codec *codec = rtd->codec;
739 mutex_lock(&pcm_mutex);
741 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
742 cpu_dai->playback_active--;
743 codec_dai->playback_active--;
745 cpu_dai->capture_active--;
746 codec_dai->capture_active--;
753 /* Muting the DAC suppresses artifacts caused during digital
754 * shutdown, for example from stopping clocks.
756 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
757 snd_soc_dai_digital_mute(codec_dai, 1);
759 if (cpu_dai->driver->ops->shutdown)
760 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
762 if (codec_dai->driver->ops->shutdown)
763 codec_dai->driver->ops->shutdown(substream, codec_dai);
765 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
766 rtd->dai_link->ops->shutdown(substream);
768 if (platform->driver->ops->close)
769 platform->driver->ops->close(substream);
770 cpu_dai->runtime = NULL;
772 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
773 /* start delayed pop wq here for playback streams */
774 codec_dai->pop_wait = 1;
775 schedule_delayed_work(&rtd->delayed_work,
776 msecs_to_jiffies(rtd->pmdown_time));
778 /* capture streams can be powered down now */
779 snd_soc_dapm_stream_event(rtd,
780 codec_dai->driver->capture.stream_name,
781 SND_SOC_DAPM_STREAM_STOP);
784 mutex_unlock(&pcm_mutex);
789 * Called by ALSA when the PCM substream is prepared, can set format, sample
790 * rate, etc. This function is non atomic and can be called multiple times,
791 * it can refer to the runtime info.
793 static int soc_pcm_prepare(struct snd_pcm_substream *substream)
795 struct snd_soc_pcm_runtime *rtd = substream->private_data;
796 struct snd_soc_platform *platform = rtd->platform;
797 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
798 struct snd_soc_dai *codec_dai = rtd->codec_dai;
801 mutex_lock(&pcm_mutex);
803 if (rtd->dai_link->ops && rtd->dai_link->ops->prepare) {
804 ret = rtd->dai_link->ops->prepare(substream);
806 printk(KERN_ERR "asoc: machine prepare error\n");
811 if (platform->driver->ops->prepare) {
812 ret = platform->driver->ops->prepare(substream);
814 printk(KERN_ERR "asoc: platform prepare error\n");
819 if (codec_dai->driver->ops->prepare) {
820 ret = codec_dai->driver->ops->prepare(substream, codec_dai);
822 printk(KERN_ERR "asoc: codec DAI prepare error\n");
827 if (cpu_dai->driver->ops->prepare) {
828 ret = cpu_dai->driver->ops->prepare(substream, cpu_dai);
830 printk(KERN_ERR "asoc: cpu DAI prepare error\n");
835 /* cancel any delayed stream shutdown that is pending */
836 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
837 codec_dai->pop_wait) {
838 codec_dai->pop_wait = 0;
839 cancel_delayed_work(&rtd->delayed_work);
842 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
843 snd_soc_dapm_stream_event(rtd,
844 codec_dai->driver->playback.stream_name,
845 SND_SOC_DAPM_STREAM_START);
847 snd_soc_dapm_stream_event(rtd,
848 codec_dai->driver->capture.stream_name,
849 SND_SOC_DAPM_STREAM_START);
851 snd_soc_dai_digital_mute(codec_dai, 0);
854 mutex_unlock(&pcm_mutex);
859 * Called by ALSA when the hardware params are set by application. This
860 * function can also be called multiple times and can allocate buffers
861 * (using snd_pcm_lib_* ). It's non-atomic.
863 static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
864 struct snd_pcm_hw_params *params)
866 struct snd_soc_pcm_runtime *rtd = substream->private_data;
867 struct snd_soc_platform *platform = rtd->platform;
868 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
869 struct snd_soc_dai *codec_dai = rtd->codec_dai;
872 mutex_lock(&pcm_mutex);
874 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_params) {
875 ret = rtd->dai_link->ops->hw_params(substream, params);
877 printk(KERN_ERR "asoc: machine hw_params failed\n");
882 if (codec_dai->driver->ops->hw_params) {
883 ret = codec_dai->driver->ops->hw_params(substream, params, codec_dai);
885 printk(KERN_ERR "asoc: can't set codec %s hw params\n",
891 if (cpu_dai->driver->ops->hw_params) {
892 ret = cpu_dai->driver->ops->hw_params(substream, params, cpu_dai);
894 printk(KERN_ERR "asoc: interface %s hw params failed\n",
900 if (platform->driver->ops->hw_params) {
901 ret = platform->driver->ops->hw_params(substream, params);
903 printk(KERN_ERR "asoc: platform %s hw params failed\n",
909 rtd->rate = params_rate(params);
912 mutex_unlock(&pcm_mutex);
916 if (cpu_dai->driver->ops->hw_free)
917 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
920 if (codec_dai->driver->ops->hw_free)
921 codec_dai->driver->ops->hw_free(substream, codec_dai);
924 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
925 rtd->dai_link->ops->hw_free(substream);
927 mutex_unlock(&pcm_mutex);
932 * Frees resources allocated by hw_params, can be called multiple times
934 static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
936 struct snd_soc_pcm_runtime *rtd = substream->private_data;
937 struct snd_soc_platform *platform = rtd->platform;
938 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
939 struct snd_soc_dai *codec_dai = rtd->codec_dai;
940 struct snd_soc_codec *codec = rtd->codec;
942 mutex_lock(&pcm_mutex);
944 /* apply codec digital mute */
946 snd_soc_dai_digital_mute(codec_dai, 1);
948 /* free any machine hw params */
949 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
950 rtd->dai_link->ops->hw_free(substream);
952 /* free any DMA resources */
953 if (platform->driver->ops->hw_free)
954 platform->driver->ops->hw_free(substream);
956 /* now free hw params for the DAIs */
957 if (codec_dai->driver->ops->hw_free)
958 codec_dai->driver->ops->hw_free(substream, codec_dai);
960 if (cpu_dai->driver->ops->hw_free)
961 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
963 mutex_unlock(&pcm_mutex);
967 static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
969 struct snd_soc_pcm_runtime *rtd = substream->private_data;
970 struct snd_soc_platform *platform = rtd->platform;
971 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
972 struct snd_soc_dai *codec_dai = rtd->codec_dai;
975 if (codec_dai->driver->ops->trigger) {
976 ret = codec_dai->driver->ops->trigger(substream, cmd, codec_dai);
981 if (platform->driver->ops->trigger) {
982 ret = platform->driver->ops->trigger(substream, cmd);
987 if (cpu_dai->driver->ops->trigger) {
988 ret = cpu_dai->driver->ops->trigger(substream, cmd, cpu_dai);
996 * soc level wrapper for pointer callback
997 * If cpu_dai, codec_dai, platform driver has the delay callback, than
998 * the runtime->delay will be updated accordingly.
1000 static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
1002 struct snd_soc_pcm_runtime *rtd = substream->private_data;
1003 struct snd_soc_platform *platform = rtd->platform;
1004 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1005 struct snd_soc_dai *codec_dai = rtd->codec_dai;
1006 struct snd_pcm_runtime *runtime = substream->runtime;
1007 snd_pcm_uframes_t offset = 0;
1008 snd_pcm_sframes_t delay = 0;
1010 if (platform->driver->ops->pointer)
1011 offset = platform->driver->ops->pointer(substream);
1013 if (cpu_dai->driver->ops->delay)
1014 delay += cpu_dai->driver->ops->delay(substream, cpu_dai);
1016 if (codec_dai->driver->ops->delay)
1017 delay += codec_dai->driver->ops->delay(substream, codec_dai);
1019 if (platform->driver->delay)
1020 delay += platform->driver->delay(substream, codec_dai);
1022 runtime->delay = delay;
1027 /* ASoC PCM operations */
1028 static struct snd_pcm_ops soc_pcm_ops = {
1029 .open = soc_pcm_open,
1030 .close = soc_codec_close,
1031 .hw_params = soc_pcm_hw_params,
1032 .hw_free = soc_pcm_hw_free,
1033 .prepare = soc_pcm_prepare,
1034 .trigger = soc_pcm_trigger,
1035 .pointer = soc_pcm_pointer,
1038 #ifdef CONFIG_PM_SLEEP
1039 /* powers down audio subsystem for suspend */
1040 int snd_soc_suspend(struct device *dev)
1042 struct snd_soc_card *card = dev_get_drvdata(dev);
1043 struct snd_soc_codec *codec;
1046 /* If the initialization of this soc device failed, there is no codec
1047 * associated with it. Just bail out in this case.
1049 if (list_empty(&card->codec_dev_list))
1052 /* Due to the resume being scheduled into a workqueue we could
1053 * suspend before that's finished - wait for it to complete.
1055 snd_power_lock(card->snd_card);
1056 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
1057 snd_power_unlock(card->snd_card);
1059 /* we're going to block userspace touching us until resume completes */
1060 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
1062 /* mute any active DACs */
1063 for (i = 0; i < card->num_rtd; i++) {
1064 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
1065 struct snd_soc_dai_driver *drv = dai->driver;
1067 if (card->rtd[i].dai_link->ignore_suspend)
1070 if (drv->ops->digital_mute && dai->playback_active)
1071 drv->ops->digital_mute(dai, 1);
1074 /* suspend all pcms */
1075 for (i = 0; i < card->num_rtd; i++) {
1076 if (card->rtd[i].dai_link->ignore_suspend)
1079 snd_pcm_suspend_all(card->rtd[i].pcm);
1082 if (card->suspend_pre)
1083 card->suspend_pre(card);
1085 for (i = 0; i < card->num_rtd; i++) {
1086 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1087 struct snd_soc_platform *platform = card->rtd[i].platform;
1089 if (card->rtd[i].dai_link->ignore_suspend)
1092 if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control)
1093 cpu_dai->driver->suspend(cpu_dai);
1094 if (platform->driver->suspend && !platform->suspended) {
1095 platform->driver->suspend(cpu_dai);
1096 platform->suspended = 1;
1100 /* close any waiting streams and save state */
1101 for (i = 0; i < card->num_rtd; i++) {
1102 flush_delayed_work_sync(&card->rtd[i].delayed_work);
1103 card->rtd[i].codec->dapm.suspend_bias_level = card->rtd[i].codec->dapm.bias_level;
1106 for (i = 0; i < card->num_rtd; i++) {
1107 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
1109 if (card->rtd[i].dai_link->ignore_suspend)
1112 if (driver->playback.stream_name != NULL)
1113 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
1114 SND_SOC_DAPM_STREAM_SUSPEND);
1116 if (driver->capture.stream_name != NULL)
1117 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
1118 SND_SOC_DAPM_STREAM_SUSPEND);
1121 /* suspend all CODECs */
1122 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
1123 /* If there are paths active then the CODEC will be held with
1124 * bias _ON and should not be suspended. */
1125 if (!codec->suspended && codec->driver->suspend) {
1126 switch (codec->dapm.bias_level) {
1127 case SND_SOC_BIAS_STANDBY:
1128 case SND_SOC_BIAS_OFF:
1129 codec->driver->suspend(codec, PMSG_SUSPEND);
1130 codec->suspended = 1;
1133 dev_dbg(codec->dev, "CODEC is on over suspend\n");
1139 for (i = 0; i < card->num_rtd; i++) {
1140 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1142 if (card->rtd[i].dai_link->ignore_suspend)
1145 if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control)
1146 cpu_dai->driver->suspend(cpu_dai);
1149 if (card->suspend_post)
1150 card->suspend_post(card);
1154 EXPORT_SYMBOL_GPL(snd_soc_suspend);
1156 /* deferred resume work, so resume can complete before we finished
1157 * setting our codec back up, which can be very slow on I2C
1159 static void soc_resume_deferred(struct work_struct *work)
1161 struct snd_soc_card *card =
1162 container_of(work, struct snd_soc_card, deferred_resume_work);
1163 struct snd_soc_codec *codec;
1166 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
1167 * so userspace apps are blocked from touching us
1170 dev_dbg(card->dev, "starting resume work\n");
1172 /* Bring us up into D2 so that DAPM starts enabling things */
1173 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
1175 if (card->resume_pre)
1176 card->resume_pre(card);
1178 /* resume AC97 DAIs */
1179 for (i = 0; i < card->num_rtd; i++) {
1180 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1182 if (card->rtd[i].dai_link->ignore_suspend)
1185 if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control)
1186 cpu_dai->driver->resume(cpu_dai);
1189 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
1190 /* If the CODEC was idle over suspend then it will have been
1191 * left with bias OFF or STANDBY and suspended so we must now
1192 * resume. Otherwise the suspend was suppressed.
1194 if (codec->driver->resume && codec->suspended) {
1195 switch (codec->dapm.bias_level) {
1196 case SND_SOC_BIAS_STANDBY:
1197 case SND_SOC_BIAS_OFF:
1198 codec->driver->resume(codec);
1199 codec->suspended = 0;
1202 dev_dbg(codec->dev, "CODEC was on over suspend\n");
1208 for (i = 0; i < card->num_rtd; i++) {
1209 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
1211 if (card->rtd[i].dai_link->ignore_suspend)
1214 if (driver->playback.stream_name != NULL)
1215 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
1216 SND_SOC_DAPM_STREAM_RESUME);
1218 if (driver->capture.stream_name != NULL)
1219 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
1220 SND_SOC_DAPM_STREAM_RESUME);
1223 /* unmute any active DACs */
1224 for (i = 0; i < card->num_rtd; i++) {
1225 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
1226 struct snd_soc_dai_driver *drv = dai->driver;
1228 if (card->rtd[i].dai_link->ignore_suspend)
1231 if (drv->ops->digital_mute && dai->playback_active)
1232 drv->ops->digital_mute(dai, 0);
1235 for (i = 0; i < card->num_rtd; i++) {
1236 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1237 struct snd_soc_platform *platform = card->rtd[i].platform;
1239 if (card->rtd[i].dai_link->ignore_suspend)
1242 if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control)
1243 cpu_dai->driver->resume(cpu_dai);
1244 if (platform->driver->resume && platform->suspended) {
1245 platform->driver->resume(cpu_dai);
1246 platform->suspended = 0;
1250 if (card->resume_post)
1251 card->resume_post(card);
1253 dev_dbg(card->dev, "resume work completed\n");
1255 /* userspace can access us now we are back as we were before */
1256 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
1259 /* powers up audio subsystem after a suspend */
1260 int snd_soc_resume(struct device *dev)
1262 struct snd_soc_card *card = dev_get_drvdata(dev);
1265 /* AC97 devices might have other drivers hanging off them so
1266 * need to resume immediately. Other drivers don't have that
1267 * problem and may take a substantial amount of time to resume
1268 * due to I/O costs and anti-pop so handle them out of line.
1270 for (i = 0; i < card->num_rtd; i++) {
1271 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1272 if (cpu_dai->driver->ac97_control) {
1273 dev_dbg(dev, "Resuming AC97 immediately\n");
1274 soc_resume_deferred(&card->deferred_resume_work);
1276 dev_dbg(dev, "Scheduling resume work\n");
1277 if (!schedule_work(&card->deferred_resume_work))
1278 dev_err(dev, "resume work item may be lost\n");
1284 EXPORT_SYMBOL_GPL(snd_soc_resume);
1286 #define snd_soc_suspend NULL
1287 #define snd_soc_resume NULL
1290 static struct snd_soc_dai_ops null_dai_ops = {
1293 static int soc_bind_dai_link(struct snd_soc_card *card, int num)
1295 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1296 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1297 struct snd_soc_codec *codec;
1298 struct snd_soc_platform *platform;
1299 struct snd_soc_dai *codec_dai, *cpu_dai;
1303 dev_dbg(card->dev, "binding %s at idx %d\n", dai_link->name, num);
1305 /* do we already have the CPU DAI for this link ? */
1309 /* no, then find CPU DAI from registered DAIs*/
1310 list_for_each_entry(cpu_dai, &dai_list, list) {
1311 if (!strcmp(cpu_dai->name, dai_link->cpu_dai_name)) {
1313 if (!try_module_get(cpu_dai->dev->driver->owner))
1316 rtd->cpu_dai = cpu_dai;
1320 dev_dbg(card->dev, "CPU DAI %s not registered\n",
1321 dai_link->cpu_dai_name);
1324 /* do we already have the CODEC for this link ? */
1329 /* no, then find CODEC from registered CODECs*/
1330 list_for_each_entry(codec, &codec_list, list) {
1331 if (!strcmp(codec->name, dai_link->codec_name)) {
1334 /* CODEC found, so find CODEC DAI from registered DAIs from this CODEC*/
1335 list_for_each_entry(codec_dai, &dai_list, list) {
1336 if (codec->dev == codec_dai->dev &&
1337 !strcmp(codec_dai->name, dai_link->codec_dai_name)) {
1338 rtd->codec_dai = codec_dai;
1342 dev_dbg(card->dev, "CODEC DAI %s not registered\n",
1343 dai_link->codec_dai_name);
1348 dev_dbg(card->dev, "CODEC %s not registered\n",
1349 dai_link->codec_name);
1352 /* do we already have the CODEC DAI for this link ? */
1353 if (rtd->platform) {
1356 /* no, then find CPU DAI from registered DAIs*/
1357 list_for_each_entry(platform, &platform_list, list) {
1358 if (!strcmp(platform->name, dai_link->platform_name)) {
1359 rtd->platform = platform;
1364 dev_dbg(card->dev, "platform %s not registered\n",
1365 dai_link->platform_name);
1369 /* mark rtd as complete if we found all 4 of our client devices */
1370 if (rtd->codec && rtd->codec_dai && rtd->platform && rtd->cpu_dai) {
1377 static void soc_remove_codec(struct snd_soc_codec *codec)
1381 if (codec->driver->remove) {
1382 err = codec->driver->remove(codec);
1385 "asoc: failed to remove %s: %d\n",
1389 /* Make sure all DAPM widgets are freed */
1390 snd_soc_dapm_free(&codec->dapm);
1392 soc_cleanup_codec_debugfs(codec);
1394 list_del(&codec->card_list);
1395 module_put(codec->dev->driver->owner);
1398 static void soc_remove_dai_link(struct snd_soc_card *card, int num)
1400 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1401 struct snd_soc_codec *codec = rtd->codec;
1402 struct snd_soc_platform *platform = rtd->platform;
1403 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
1406 /* unregister the rtd device */
1407 if (rtd->dev_registered) {
1408 device_remove_file(&rtd->dev, &dev_attr_pmdown_time);
1409 device_remove_file(&rtd->dev, &dev_attr_codec_reg);
1410 device_unregister(&rtd->dev);
1411 rtd->dev_registered = 0;
1414 /* remove the CODEC DAI */
1415 if (codec_dai && codec_dai->probed) {
1416 if (codec_dai->driver->remove) {
1417 err = codec_dai->driver->remove(codec_dai);
1419 printk(KERN_ERR "asoc: failed to remove %s\n", codec_dai->name);
1421 codec_dai->probed = 0;
1422 list_del(&codec_dai->card_list);
1425 /* remove the platform */
1426 if (platform && platform->probed) {
1427 if (platform->driver->remove) {
1428 err = platform->driver->remove(platform);
1430 printk(KERN_ERR "asoc: failed to remove %s\n", platform->name);
1432 platform->probed = 0;
1433 list_del(&platform->card_list);
1434 module_put(platform->dev->driver->owner);
1437 /* remove the CODEC */
1438 if (codec && codec->probed)
1439 soc_remove_codec(codec);
1441 /* remove the cpu_dai */
1442 if (cpu_dai && cpu_dai->probed) {
1443 if (cpu_dai->driver->remove) {
1444 err = cpu_dai->driver->remove(cpu_dai);
1446 printk(KERN_ERR "asoc: failed to remove %s\n", cpu_dai->name);
1448 cpu_dai->probed = 0;
1449 list_del(&cpu_dai->card_list);
1450 module_put(cpu_dai->dev->driver->owner);
1454 static void soc_set_name_prefix(struct snd_soc_card *card,
1455 struct snd_soc_codec *codec)
1459 if (card->codec_conf == NULL)
1462 for (i = 0; i < card->num_configs; i++) {
1463 struct snd_soc_codec_conf *map = &card->codec_conf[i];
1464 if (map->dev_name && !strcmp(codec->name, map->dev_name)) {
1465 codec->name_prefix = map->name_prefix;
1471 static int soc_probe_codec(struct snd_soc_card *card,
1472 struct snd_soc_codec *codec)
1475 const struct snd_soc_codec_driver *driver = codec->driver;
1478 codec->dapm.card = card;
1479 soc_set_name_prefix(card, codec);
1481 if (!try_module_get(codec->dev->driver->owner))
1484 if (driver->probe) {
1485 ret = driver->probe(codec);
1488 "asoc: failed to probe CODEC %s: %d\n",
1494 if (driver->dapm_widgets)
1495 snd_soc_dapm_new_controls(&codec->dapm, driver->dapm_widgets,
1496 driver->num_dapm_widgets);
1497 if (driver->dapm_routes)
1498 snd_soc_dapm_add_routes(&codec->dapm, driver->dapm_routes,
1499 driver->num_dapm_routes);
1501 soc_init_codec_debugfs(codec);
1503 /* mark codec as probed and add to card codec list */
1505 list_add(&codec->card_list, &card->codec_dev_list);
1506 list_add(&codec->dapm.list, &card->dapm_list);
1511 module_put(codec->dev->driver->owner);
1516 static void rtd_release(struct device *dev) {}
1518 static int soc_post_component_init(struct snd_soc_card *card,
1519 struct snd_soc_codec *codec,
1520 int num, int dailess)
1522 struct snd_soc_dai_link *dai_link = NULL;
1523 struct snd_soc_aux_dev *aux_dev = NULL;
1524 struct snd_soc_pcm_runtime *rtd;
1525 const char *temp, *name;
1529 dai_link = &card->dai_link[num];
1530 rtd = &card->rtd[num];
1531 name = dai_link->name;
1533 aux_dev = &card->aux_dev[num];
1534 rtd = &card->rtd_aux[num];
1535 name = aux_dev->name;
1539 /* machine controls, routes and widgets are not prefixed */
1540 temp = codec->name_prefix;
1541 codec->name_prefix = NULL;
1543 /* do machine specific initialization */
1544 if (!dailess && dai_link->init)
1545 ret = dai_link->init(rtd);
1546 else if (dailess && aux_dev->init)
1547 ret = aux_dev->init(&codec->dapm);
1549 dev_err(card->dev, "asoc: failed to init %s: %d\n", name, ret);
1552 codec->name_prefix = temp;
1554 /* Make sure all DAPM widgets are instantiated */
1555 snd_soc_dapm_new_widgets(&codec->dapm);
1557 /* register the rtd device */
1559 rtd->dev.parent = card->dev;
1560 rtd->dev.release = rtd_release;
1561 rtd->dev.init_name = name;
1562 ret = device_register(&rtd->dev);
1565 "asoc: failed to register runtime device: %d\n", ret);
1568 rtd->dev_registered = 1;
1570 /* add DAPM sysfs entries for this codec */
1571 ret = snd_soc_dapm_sys_add(&rtd->dev);
1574 "asoc: failed to add codec dapm sysfs entries: %d\n",
1577 /* add codec sysfs entries */
1578 ret = device_create_file(&rtd->dev, &dev_attr_codec_reg);
1581 "asoc: failed to add codec sysfs files: %d\n", ret);
1586 static int soc_probe_dai_link(struct snd_soc_card *card, int num)
1588 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1589 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1590 struct snd_soc_codec *codec = rtd->codec;
1591 struct snd_soc_platform *platform = rtd->platform;
1592 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
1595 dev_dbg(card->dev, "probe %s dai link %d\n", card->name, num);
1597 /* config components */
1598 codec_dai->codec = codec;
1599 cpu_dai->platform = platform;
1600 codec_dai->card = card;
1601 cpu_dai->card = card;
1603 /* set default power off timeout */
1604 rtd->pmdown_time = pmdown_time;
1606 /* probe the cpu_dai */
1607 if (!cpu_dai->probed) {
1608 if (cpu_dai->driver->probe) {
1609 ret = cpu_dai->driver->probe(cpu_dai);
1611 printk(KERN_ERR "asoc: failed to probe CPU DAI %s\n",
1616 cpu_dai->probed = 1;
1617 /* mark cpu_dai as probed and add to card cpu_dai list */
1618 list_add(&cpu_dai->card_list, &card->dai_dev_list);
1621 /* probe the CODEC */
1622 if (!codec->probed) {
1623 ret = soc_probe_codec(card, codec);
1628 /* probe the platform */
1629 if (!platform->probed) {
1630 if (!try_module_get(platform->dev->driver->owner))
1633 if (platform->driver->probe) {
1634 ret = platform->driver->probe(platform);
1636 printk(KERN_ERR "asoc: failed to probe platform %s\n",
1638 module_put(platform->dev->driver->owner);
1642 /* mark platform as probed and add to card platform list */
1643 platform->probed = 1;
1644 list_add(&platform->card_list, &card->platform_dev_list);
1647 /* probe the CODEC DAI */
1648 if (!codec_dai->probed) {
1649 if (codec_dai->driver->probe) {
1650 ret = codec_dai->driver->probe(codec_dai);
1652 printk(KERN_ERR "asoc: failed to probe CODEC DAI %s\n",
1658 /* mark cpu_dai as probed and add to card cpu_dai list */
1659 codec_dai->probed = 1;
1660 list_add(&codec_dai->card_list, &card->dai_dev_list);
1663 /* DAPM dai link stream work */
1664 INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work);
1666 ret = soc_post_component_init(card, codec, num, 0);
1670 ret = device_create_file(&rtd->dev, &dev_attr_pmdown_time);
1672 printk(KERN_WARNING "asoc: failed to add pmdown_time sysfs\n");
1674 /* create the pcm */
1675 ret = soc_new_pcm(rtd, num);
1677 printk(KERN_ERR "asoc: can't create pcm %s\n", dai_link->stream_name);
1681 /* add platform data for AC97 devices */
1682 if (rtd->codec_dai->driver->ac97_control)
1683 snd_ac97_dev_add_pdata(codec->ac97, rtd->cpu_dai->ac97_pdata);
1688 #ifdef CONFIG_SND_SOC_AC97_BUS
1689 static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1693 /* Only instantiate AC97 if not already done by the adaptor
1694 * for the generic AC97 subsystem.
1696 if (rtd->codec_dai->driver->ac97_control && !rtd->codec->ac97_registered) {
1698 * It is possible that the AC97 device is already registered to
1699 * the device subsystem. This happens when the device is created
1700 * via snd_ac97_mixer(). Currently only SoC codec that does so
1701 * is the generic AC97 glue but others migh emerge.
1703 * In those cases we don't try to register the device again.
1705 if (!rtd->codec->ac97_created)
1708 ret = soc_ac97_dev_register(rtd->codec);
1710 printk(KERN_ERR "asoc: AC97 device register failed\n");
1714 rtd->codec->ac97_registered = 1;
1719 static void soc_unregister_ac97_dai_link(struct snd_soc_codec *codec)
1721 if (codec->ac97_registered) {
1722 soc_ac97_dev_unregister(codec);
1723 codec->ac97_registered = 0;
1728 static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1730 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
1731 struct snd_soc_codec *codec;
1734 /* find CODEC from registered CODECs*/
1735 list_for_each_entry(codec, &codec_list, list) {
1736 if (!strcmp(codec->name, aux_dev->codec_name)) {
1737 if (codec->probed) {
1739 "asoc: codec already probed");
1746 /* codec not found */
1747 dev_err(card->dev, "asoc: codec %s not found", aux_dev->codec_name);
1751 ret = soc_probe_codec(card, codec);
1755 ret = soc_post_component_init(card, codec, num, 1);
1761 static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1763 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
1764 struct snd_soc_codec *codec = rtd->codec;
1766 /* unregister the rtd device */
1767 if (rtd->dev_registered) {
1768 device_remove_file(&rtd->dev, &dev_attr_codec_reg);
1769 device_unregister(&rtd->dev);
1770 rtd->dev_registered = 0;
1773 if (codec && codec->probed)
1774 soc_remove_codec(codec);
1777 static int snd_soc_init_codec_cache(struct snd_soc_codec *codec,
1778 enum snd_soc_compress_type compress_type)
1782 if (codec->cache_init)
1785 /* override the compress_type if necessary */
1786 if (compress_type && codec->compress_type != compress_type)
1787 codec->compress_type = compress_type;
1788 ret = snd_soc_cache_init(codec);
1790 dev_err(codec->dev, "Failed to set cache compression type: %d\n",
1794 codec->cache_init = 1;
1798 static void snd_soc_instantiate_card(struct snd_soc_card *card)
1800 struct snd_soc_codec *codec;
1801 struct snd_soc_codec_conf *codec_conf;
1802 enum snd_soc_compress_type compress_type;
1805 mutex_lock(&card->mutex);
1807 if (card->instantiated) {
1808 mutex_unlock(&card->mutex);
1813 for (i = 0; i < card->num_links; i++)
1814 soc_bind_dai_link(card, i);
1816 /* bind completed ? */
1817 if (card->num_rtd != card->num_links) {
1818 mutex_unlock(&card->mutex);
1822 /* initialize the register cache for each available codec */
1823 list_for_each_entry(codec, &codec_list, list) {
1824 if (codec->cache_init)
1826 /* by default we don't override the compress_type */
1828 /* check to see if we need to override the compress_type */
1829 for (i = 0; i < card->num_configs; ++i) {
1830 codec_conf = &card->codec_conf[i];
1831 if (!strcmp(codec->name, codec_conf->dev_name)) {
1832 compress_type = codec_conf->compress_type;
1833 if (compress_type && compress_type
1834 != codec->compress_type)
1838 ret = snd_soc_init_codec_cache(codec, compress_type);
1840 mutex_unlock(&card->mutex);
1845 /* card bind complete so register a sound card */
1846 ret = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
1847 card->owner, 0, &card->snd_card);
1849 printk(KERN_ERR "asoc: can't create sound card for card %s\n",
1851 mutex_unlock(&card->mutex);
1854 card->snd_card->dev = card->dev;
1856 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1857 card->dapm.dev = card->dev;
1858 card->dapm.card = card;
1859 list_add(&card->dapm.list, &card->dapm_list);
1861 #ifdef CONFIG_PM_SLEEP
1862 /* deferred resume work */
1863 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
1866 /* initialise the sound card only once */
1868 ret = card->probe(card);
1870 goto card_probe_error;
1873 for (i = 0; i < card->num_links; i++) {
1874 ret = soc_probe_dai_link(card, i);
1876 pr_err("asoc: failed to instantiate card %s: %d\n",
1882 for (i = 0; i < card->num_aux_devs; i++) {
1883 ret = soc_probe_aux_dev(card, i);
1885 pr_err("asoc: failed to add auxiliary devices %s: %d\n",
1887 goto probe_aux_dev_err;
1891 if (card->dapm_widgets)
1892 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1893 card->num_dapm_widgets);
1894 if (card->dapm_routes)
1895 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1896 card->num_dapm_routes);
1898 #ifdef CONFIG_DEBUG_FS
1899 card->dapm.debugfs_dapm = debugfs_create_dir("dapm",
1900 card->debugfs_card_root);
1901 if (!card->dapm.debugfs_dapm)
1903 "Failed to create card DAPM debugfs directory\n");
1905 snd_soc_dapm_debugfs_init(&card->dapm);
1908 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
1910 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1913 if (card->late_probe) {
1914 ret = card->late_probe(card);
1916 dev_err(card->dev, "%s late_probe() failed: %d\n",
1918 goto probe_aux_dev_err;
1922 ret = snd_card_register(card->snd_card);
1924 printk(KERN_ERR "asoc: failed to register soundcard for %s\n", card->name);
1925 goto probe_aux_dev_err;
1928 #ifdef CONFIG_SND_SOC_AC97_BUS
1929 /* register any AC97 codecs */
1930 for (i = 0; i < card->num_rtd; i++) {
1931 ret = soc_register_ac97_dai_link(&card->rtd[i]);
1933 printk(KERN_ERR "asoc: failed to register AC97 %s\n", card->name);
1935 soc_unregister_ac97_dai_link(card->rtd[i].codec);
1936 goto probe_aux_dev_err;
1941 card->instantiated = 1;
1942 mutex_unlock(&card->mutex);
1946 for (i = 0; i < card->num_aux_devs; i++)
1947 soc_remove_aux_dev(card, i);
1950 for (i = 0; i < card->num_links; i++)
1951 soc_remove_dai_link(card, i);
1957 snd_card_free(card->snd_card);
1959 mutex_unlock(&card->mutex);
1963 * Attempt to initialise any uninitialised cards. Must be called with
1966 static void snd_soc_instantiate_cards(void)
1968 struct snd_soc_card *card;
1969 list_for_each_entry(card, &card_list, list)
1970 snd_soc_instantiate_card(card);
1973 /* probes a new socdev */
1974 static int soc_probe(struct platform_device *pdev)
1976 struct snd_soc_card *card = platform_get_drvdata(pdev);
1980 * no card, so machine driver should be registering card
1981 * we should not be here in that case so ret error
1986 /* Bodge while we unpick instantiation */
1987 card->dev = &pdev->dev;
1989 ret = snd_soc_register_card(card);
1991 dev_err(&pdev->dev, "Failed to register card\n");
1998 static int soc_cleanup_card_resources(struct snd_soc_card *card)
2002 /* make sure any delayed work runs */
2003 for (i = 0; i < card->num_rtd; i++) {
2004 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
2005 flush_delayed_work_sync(&rtd->delayed_work);
2008 /* remove auxiliary devices */
2009 for (i = 0; i < card->num_aux_devs; i++)
2010 soc_remove_aux_dev(card, i);
2012 /* remove and free each DAI */
2013 for (i = 0; i < card->num_rtd; i++)
2014 soc_remove_dai_link(card, i);
2016 soc_cleanup_card_debugfs(card);
2018 /* remove the card */
2023 snd_card_free(card->snd_card);
2028 /* removes a socdev */
2029 static int soc_remove(struct platform_device *pdev)
2031 struct snd_soc_card *card = platform_get_drvdata(pdev);
2033 snd_soc_unregister_card(card);
2037 int snd_soc_poweroff(struct device *dev)
2039 struct snd_soc_card *card = dev_get_drvdata(dev);
2042 if (!card->instantiated)
2045 /* Flush out pmdown_time work - we actually do want to run it
2046 * now, we're shutting down so no imminent restart. */
2047 for (i = 0; i < card->num_rtd; i++) {
2048 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
2049 flush_delayed_work_sync(&rtd->delayed_work);
2052 snd_soc_dapm_shutdown(card);
2056 EXPORT_SYMBOL_GPL(snd_soc_poweroff);
2058 const struct dev_pm_ops snd_soc_pm_ops = {
2059 .suspend = snd_soc_suspend,
2060 .resume = snd_soc_resume,
2061 .poweroff = snd_soc_poweroff,
2064 /* ASoC platform driver */
2065 static struct platform_driver soc_driver = {
2067 .name = "soc-audio",
2068 .owner = THIS_MODULE,
2069 .pm = &snd_soc_pm_ops,
2072 .remove = soc_remove,
2075 /* create a new pcm */
2076 static int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
2078 struct snd_soc_codec *codec = rtd->codec;
2079 struct snd_soc_platform *platform = rtd->platform;
2080 struct snd_soc_dai *codec_dai = rtd->codec_dai;
2081 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2082 struct snd_pcm *pcm;
2084 int ret = 0, playback = 0, capture = 0;
2086 /* check client and interface hw capabilities */
2087 snprintf(new_name, sizeof(new_name), "%s %s-%d",
2088 rtd->dai_link->stream_name, codec_dai->name, num);
2090 if (codec_dai->driver->playback.channels_min)
2092 if (codec_dai->driver->capture.channels_min)
2095 dev_dbg(rtd->card->dev, "registered pcm #%d %s\n",num,new_name);
2096 ret = snd_pcm_new(rtd->card->snd_card, new_name,
2097 num, playback, capture, &pcm);
2099 printk(KERN_ERR "asoc: can't create pcm for codec %s\n", codec->name);
2104 pcm->private_data = rtd;
2105 soc_pcm_ops.mmap = platform->driver->ops->mmap;
2106 soc_pcm_ops.pointer = platform->driver->ops->pointer;
2107 soc_pcm_ops.ioctl = platform->driver->ops->ioctl;
2108 soc_pcm_ops.copy = platform->driver->ops->copy;
2109 soc_pcm_ops.silence = platform->driver->ops->silence;
2110 soc_pcm_ops.ack = platform->driver->ops->ack;
2111 soc_pcm_ops.page = platform->driver->ops->page;
2114 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &soc_pcm_ops);
2117 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &soc_pcm_ops);
2119 ret = platform->driver->pcm_new(rtd->card->snd_card, codec_dai, pcm);
2121 printk(KERN_ERR "asoc: platform pcm constructor failed\n");
2125 pcm->private_free = platform->driver->pcm_free;
2126 printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name,
2132 * snd_soc_codec_volatile_register: Report if a register is volatile.
2134 * @codec: CODEC to query.
2135 * @reg: Register to query.
2137 * Boolean function indiciating if a CODEC register is volatile.
2139 int snd_soc_codec_volatile_register(struct snd_soc_codec *codec,
2142 if (codec->volatile_register)
2143 return codec->volatile_register(codec, reg);
2147 EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
2150 * snd_soc_new_ac97_codec - initailise AC97 device
2151 * @codec: audio codec
2152 * @ops: AC97 bus operations
2153 * @num: AC97 codec number
2155 * Initialises AC97 codec resources for use by ad-hoc devices only.
2157 int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
2158 struct snd_ac97_bus_ops *ops, int num)
2160 mutex_lock(&codec->mutex);
2162 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
2163 if (codec->ac97 == NULL) {
2164 mutex_unlock(&codec->mutex);
2168 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
2169 if (codec->ac97->bus == NULL) {
2172 mutex_unlock(&codec->mutex);
2176 codec->ac97->bus->ops = ops;
2177 codec->ac97->num = num;
2180 * Mark the AC97 device to be created by us. This way we ensure that the
2181 * device will be registered with the device subsystem later on.
2183 codec->ac97_created = 1;
2185 mutex_unlock(&codec->mutex);
2188 EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
2191 * snd_soc_free_ac97_codec - free AC97 codec device
2192 * @codec: audio codec
2194 * Frees AC97 codec device resources.
2196 void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
2198 mutex_lock(&codec->mutex);
2199 #ifdef CONFIG_SND_SOC_AC97_BUS
2200 soc_unregister_ac97_dai_link(codec);
2202 kfree(codec->ac97->bus);
2205 codec->ac97_created = 0;
2206 mutex_unlock(&codec->mutex);
2208 EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
2210 unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg)
2214 ret = codec->read(codec, reg);
2215 dev_dbg(codec->dev, "read %x => %x\n", reg, ret);
2216 trace_snd_soc_reg_read(codec, reg, ret);
2220 EXPORT_SYMBOL_GPL(snd_soc_read);
2222 unsigned int snd_soc_write(struct snd_soc_codec *codec,
2223 unsigned int reg, unsigned int val)
2225 dev_dbg(codec->dev, "write %x = %x\n", reg, val);
2226 trace_snd_soc_reg_write(codec, reg, val);
2227 return codec->write(codec, reg, val);
2229 EXPORT_SYMBOL_GPL(snd_soc_write);
2232 * snd_soc_update_bits - update codec register bits
2233 * @codec: audio codec
2234 * @reg: codec register
2235 * @mask: register mask
2238 * Writes new register value.
2240 * Returns 1 for change, 0 for no change, or negative error code.
2242 int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
2243 unsigned int mask, unsigned int value)
2246 unsigned int old, new;
2249 ret = snd_soc_read(codec, reg);
2254 new = (old & ~mask) | value;
2255 change = old != new;
2257 ret = snd_soc_write(codec, reg, new);
2264 EXPORT_SYMBOL_GPL(snd_soc_update_bits);
2267 * snd_soc_update_bits_locked - update codec register bits
2268 * @codec: audio codec
2269 * @reg: codec register
2270 * @mask: register mask
2273 * Writes new register value, and takes the codec mutex.
2275 * Returns 1 for change else 0.
2277 int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
2278 unsigned short reg, unsigned int mask,
2283 mutex_lock(&codec->mutex);
2284 change = snd_soc_update_bits(codec, reg, mask, value);
2285 mutex_unlock(&codec->mutex);
2289 EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked);
2292 * snd_soc_test_bits - test register for change
2293 * @codec: audio codec
2294 * @reg: codec register
2295 * @mask: register mask
2298 * Tests a register with a new value and checks if the new value is
2299 * different from the old value.
2301 * Returns 1 for change else 0.
2303 int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
2304 unsigned int mask, unsigned int value)
2307 unsigned int old, new;
2309 old = snd_soc_read(codec, reg);
2310 new = (old & ~mask) | value;
2311 change = old != new;
2315 EXPORT_SYMBOL_GPL(snd_soc_test_bits);
2318 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
2319 * @substream: the pcm substream
2320 * @hw: the hardware parameters
2322 * Sets the substream runtime hardware parameters.
2324 int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
2325 const struct snd_pcm_hardware *hw)
2327 struct snd_pcm_runtime *runtime = substream->runtime;
2328 runtime->hw.info = hw->info;
2329 runtime->hw.formats = hw->formats;
2330 runtime->hw.period_bytes_min = hw->period_bytes_min;
2331 runtime->hw.period_bytes_max = hw->period_bytes_max;
2332 runtime->hw.periods_min = hw->periods_min;
2333 runtime->hw.periods_max = hw->periods_max;
2334 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
2335 runtime->hw.fifo_size = hw->fifo_size;
2338 EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
2341 * snd_soc_cnew - create new control
2342 * @_template: control template
2343 * @data: control private data
2344 * @long_name: control long name
2345 * @prefix: control name prefix
2347 * Create a new mixer control from a template control.
2349 * Returns 0 for success, else error.
2351 struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
2352 void *data, char *long_name,
2355 struct snd_kcontrol_new template;
2356 struct snd_kcontrol *kcontrol;
2360 memcpy(&template, _template, sizeof(template));
2364 long_name = template.name;
2367 name_len = strlen(long_name) + strlen(prefix) + 2;
2368 name = kmalloc(name_len, GFP_ATOMIC);
2372 snprintf(name, name_len, "%s %s", prefix, long_name);
2374 template.name = name;
2376 template.name = long_name;
2379 kcontrol = snd_ctl_new1(&template, data);
2385 EXPORT_SYMBOL_GPL(snd_soc_cnew);
2388 * snd_soc_add_controls - add an array of controls to a codec.
2389 * Convienience function to add a list of controls. Many codecs were
2390 * duplicating this code.
2392 * @codec: codec to add controls to
2393 * @controls: array of controls to add
2394 * @num_controls: number of elements in the array
2396 * Return 0 for success, else error.
2398 int snd_soc_add_controls(struct snd_soc_codec *codec,
2399 const struct snd_kcontrol_new *controls, int num_controls)
2401 struct snd_card *card = codec->card->snd_card;
2404 for (i = 0; i < num_controls; i++) {
2405 const struct snd_kcontrol_new *control = &controls[i];
2406 err = snd_ctl_add(card, snd_soc_cnew(control, codec,
2408 codec->name_prefix));
2410 dev_err(codec->dev, "%s: Failed to add %s: %d\n",
2411 codec->name, control->name, err);
2418 EXPORT_SYMBOL_GPL(snd_soc_add_controls);
2421 * snd_soc_info_enum_double - enumerated double mixer info callback
2422 * @kcontrol: mixer control
2423 * @uinfo: control element information
2425 * Callback to provide information about a double enumerated
2428 * Returns 0 for success.
2430 int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
2431 struct snd_ctl_elem_info *uinfo)
2433 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2435 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2436 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
2437 uinfo->value.enumerated.items = e->max;
2439 if (uinfo->value.enumerated.item > e->max - 1)
2440 uinfo->value.enumerated.item = e->max - 1;
2441 strcpy(uinfo->value.enumerated.name,
2442 e->texts[uinfo->value.enumerated.item]);
2445 EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2448 * snd_soc_get_enum_double - enumerated double mixer get callback
2449 * @kcontrol: mixer control
2450 * @ucontrol: control element information
2452 * Callback to get the value of a double enumerated mixer.
2454 * Returns 0 for success.
2456 int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2457 struct snd_ctl_elem_value *ucontrol)
2459 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2460 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2461 unsigned int val, bitmask;
2463 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
2465 val = snd_soc_read(codec, e->reg);
2466 ucontrol->value.enumerated.item[0]
2467 = (val >> e->shift_l) & (bitmask - 1);
2468 if (e->shift_l != e->shift_r)
2469 ucontrol->value.enumerated.item[1] =
2470 (val >> e->shift_r) & (bitmask - 1);
2474 EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2477 * snd_soc_put_enum_double - enumerated double mixer put callback
2478 * @kcontrol: mixer control
2479 * @ucontrol: control element information
2481 * Callback to set the value of a double enumerated mixer.
2483 * Returns 0 for success.
2485 int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2486 struct snd_ctl_elem_value *ucontrol)
2488 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2489 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2491 unsigned int mask, bitmask;
2493 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
2495 if (ucontrol->value.enumerated.item[0] > e->max - 1)
2497 val = ucontrol->value.enumerated.item[0] << e->shift_l;
2498 mask = (bitmask - 1) << e->shift_l;
2499 if (e->shift_l != e->shift_r) {
2500 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2502 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
2503 mask |= (bitmask - 1) << e->shift_r;
2506 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
2508 EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2511 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2512 * @kcontrol: mixer control
2513 * @ucontrol: control element information
2515 * Callback to get the value of a double semi enumerated mixer.
2517 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2518 * used for handling bitfield coded enumeration for example.
2520 * Returns 0 for success.
2522 int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
2523 struct snd_ctl_elem_value *ucontrol)
2525 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2526 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2527 unsigned int reg_val, val, mux;
2529 reg_val = snd_soc_read(codec, e->reg);
2530 val = (reg_val >> e->shift_l) & e->mask;
2531 for (mux = 0; mux < e->max; mux++) {
2532 if (val == e->values[mux])
2535 ucontrol->value.enumerated.item[0] = mux;
2536 if (e->shift_l != e->shift_r) {
2537 val = (reg_val >> e->shift_r) & e->mask;
2538 for (mux = 0; mux < e->max; mux++) {
2539 if (val == e->values[mux])
2542 ucontrol->value.enumerated.item[1] = mux;
2547 EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
2550 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2551 * @kcontrol: mixer control
2552 * @ucontrol: control element information
2554 * Callback to set the value of a double semi enumerated mixer.
2556 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2557 * used for handling bitfield coded enumeration for example.
2559 * Returns 0 for success.
2561 int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
2562 struct snd_ctl_elem_value *ucontrol)
2564 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2565 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2569 if (ucontrol->value.enumerated.item[0] > e->max - 1)
2571 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2572 mask = e->mask << e->shift_l;
2573 if (e->shift_l != e->shift_r) {
2574 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2576 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2577 mask |= e->mask << e->shift_r;
2580 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
2582 EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
2585 * snd_soc_info_enum_ext - external enumerated single mixer info callback
2586 * @kcontrol: mixer control
2587 * @uinfo: control element information
2589 * Callback to provide information about an external enumerated
2592 * Returns 0 for success.
2594 int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
2595 struct snd_ctl_elem_info *uinfo)
2597 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2599 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2601 uinfo->value.enumerated.items = e->max;
2603 if (uinfo->value.enumerated.item > e->max - 1)
2604 uinfo->value.enumerated.item = e->max - 1;
2605 strcpy(uinfo->value.enumerated.name,
2606 e->texts[uinfo->value.enumerated.item]);
2609 EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
2612 * snd_soc_info_volsw_ext - external single mixer info callback
2613 * @kcontrol: mixer control
2614 * @uinfo: control element information
2616 * Callback to provide information about a single external mixer control.
2618 * Returns 0 for success.
2620 int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
2621 struct snd_ctl_elem_info *uinfo)
2623 int max = kcontrol->private_value;
2625 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
2626 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2628 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2631 uinfo->value.integer.min = 0;
2632 uinfo->value.integer.max = max;
2635 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
2638 * snd_soc_info_volsw - single mixer info callback
2639 * @kcontrol: mixer control
2640 * @uinfo: control element information
2642 * Callback to provide information about a single mixer control.
2644 * Returns 0 for success.
2646 int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2647 struct snd_ctl_elem_info *uinfo)
2649 struct soc_mixer_control *mc =
2650 (struct soc_mixer_control *)kcontrol->private_value;
2652 unsigned int shift = mc->shift;
2653 unsigned int rshift = mc->rshift;
2655 if (!mc->platform_max)
2656 mc->platform_max = mc->max;
2657 platform_max = mc->platform_max;
2659 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
2660 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2662 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2664 uinfo->count = shift == rshift ? 1 : 2;
2665 uinfo->value.integer.min = 0;
2666 uinfo->value.integer.max = platform_max;
2669 EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2672 * snd_soc_get_volsw - single mixer get callback
2673 * @kcontrol: mixer control
2674 * @ucontrol: control element information
2676 * Callback to get the value of a single mixer control.
2678 * Returns 0 for success.
2680 int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2681 struct snd_ctl_elem_value *ucontrol)
2683 struct soc_mixer_control *mc =
2684 (struct soc_mixer_control *)kcontrol->private_value;
2685 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2686 unsigned int reg = mc->reg;
2687 unsigned int shift = mc->shift;
2688 unsigned int rshift = mc->rshift;
2690 unsigned int mask = (1 << fls(max)) - 1;
2691 unsigned int invert = mc->invert;
2693 ucontrol->value.integer.value[0] =
2694 (snd_soc_read(codec, reg) >> shift) & mask;
2695 if (shift != rshift)
2696 ucontrol->value.integer.value[1] =
2697 (snd_soc_read(codec, reg) >> rshift) & mask;
2699 ucontrol->value.integer.value[0] =
2700 max - ucontrol->value.integer.value[0];
2701 if (shift != rshift)
2702 ucontrol->value.integer.value[1] =
2703 max - ucontrol->value.integer.value[1];
2708 EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2711 * snd_soc_put_volsw - single mixer put callback
2712 * @kcontrol: mixer control
2713 * @ucontrol: control element information
2715 * Callback to set the value of a single mixer control.
2717 * Returns 0 for success.
2719 int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2720 struct snd_ctl_elem_value *ucontrol)
2722 struct soc_mixer_control *mc =
2723 (struct soc_mixer_control *)kcontrol->private_value;
2724 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2725 unsigned int reg = mc->reg;
2726 unsigned int shift = mc->shift;
2727 unsigned int rshift = mc->rshift;
2729 unsigned int mask = (1 << fls(max)) - 1;
2730 unsigned int invert = mc->invert;
2731 unsigned int val, val2, val_mask;
2733 val = (ucontrol->value.integer.value[0] & mask);
2736 val_mask = mask << shift;
2738 if (shift != rshift) {
2739 val2 = (ucontrol->value.integer.value[1] & mask);
2742 val_mask |= mask << rshift;
2743 val |= val2 << rshift;
2745 return snd_soc_update_bits_locked(codec, reg, val_mask, val);
2747 EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
2750 * snd_soc_info_volsw_2r - double mixer info callback
2751 * @kcontrol: mixer control
2752 * @uinfo: control element information
2754 * Callback to provide information about a double mixer control that
2755 * spans 2 codec registers.
2757 * Returns 0 for success.
2759 int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol,
2760 struct snd_ctl_elem_info *uinfo)
2762 struct soc_mixer_control *mc =
2763 (struct soc_mixer_control *)kcontrol->private_value;
2766 if (!mc->platform_max)
2767 mc->platform_max = mc->max;
2768 platform_max = mc->platform_max;
2770 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
2771 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2773 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2776 uinfo->value.integer.min = 0;
2777 uinfo->value.integer.max = platform_max;
2780 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r);
2783 * snd_soc_get_volsw_2r - double mixer get callback
2784 * @kcontrol: mixer control
2785 * @ucontrol: control element information
2787 * Callback to get the value of a double mixer control that spans 2 registers.
2789 * Returns 0 for success.
2791 int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol,
2792 struct snd_ctl_elem_value *ucontrol)
2794 struct soc_mixer_control *mc =
2795 (struct soc_mixer_control *)kcontrol->private_value;
2796 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2797 unsigned int reg = mc->reg;
2798 unsigned int reg2 = mc->rreg;
2799 unsigned int shift = mc->shift;
2801 unsigned int mask = (1 << fls(max)) - 1;
2802 unsigned int invert = mc->invert;
2804 ucontrol->value.integer.value[0] =
2805 (snd_soc_read(codec, reg) >> shift) & mask;
2806 ucontrol->value.integer.value[1] =
2807 (snd_soc_read(codec, reg2) >> shift) & mask;
2809 ucontrol->value.integer.value[0] =
2810 max - ucontrol->value.integer.value[0];
2811 ucontrol->value.integer.value[1] =
2812 max - ucontrol->value.integer.value[1];
2817 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r);
2820 * snd_soc_put_volsw_2r - double mixer set callback
2821 * @kcontrol: mixer control
2822 * @ucontrol: control element information
2824 * Callback to set the value of a double mixer control that spans 2 registers.
2826 * Returns 0 for success.
2828 int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol,
2829 struct snd_ctl_elem_value *ucontrol)
2831 struct soc_mixer_control *mc =
2832 (struct soc_mixer_control *)kcontrol->private_value;
2833 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2834 unsigned int reg = mc->reg;
2835 unsigned int reg2 = mc->rreg;
2836 unsigned int shift = mc->shift;
2838 unsigned int mask = (1 << fls(max)) - 1;
2839 unsigned int invert = mc->invert;
2841 unsigned int val, val2, val_mask;
2843 val_mask = mask << shift;
2844 val = (ucontrol->value.integer.value[0] & mask);
2845 val2 = (ucontrol->value.integer.value[1] & mask);
2853 val2 = val2 << shift;
2855 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
2859 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
2862 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r);
2865 * snd_soc_info_volsw_s8 - signed mixer info callback
2866 * @kcontrol: mixer control
2867 * @uinfo: control element information
2869 * Callback to provide information about a signed mixer control.
2871 * Returns 0 for success.
2873 int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2874 struct snd_ctl_elem_info *uinfo)
2876 struct soc_mixer_control *mc =
2877 (struct soc_mixer_control *)kcontrol->private_value;
2881 if (!mc->platform_max)
2882 mc->platform_max = mc->max;
2883 platform_max = mc->platform_max;
2885 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2887 uinfo->value.integer.min = 0;
2888 uinfo->value.integer.max = platform_max - min;
2891 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2894 * snd_soc_get_volsw_s8 - signed mixer get callback
2895 * @kcontrol: mixer control
2896 * @ucontrol: control element information
2898 * Callback to get the value of a signed mixer control.
2900 * Returns 0 for success.
2902 int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2903 struct snd_ctl_elem_value *ucontrol)
2905 struct soc_mixer_control *mc =
2906 (struct soc_mixer_control *)kcontrol->private_value;
2907 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2908 unsigned int reg = mc->reg;
2910 int val = snd_soc_read(codec, reg);
2912 ucontrol->value.integer.value[0] =
2913 ((signed char)(val & 0xff))-min;
2914 ucontrol->value.integer.value[1] =
2915 ((signed char)((val >> 8) & 0xff))-min;
2918 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2921 * snd_soc_put_volsw_sgn - signed mixer put callback
2922 * @kcontrol: mixer control
2923 * @ucontrol: control element information
2925 * Callback to set the value of a signed mixer control.
2927 * Returns 0 for success.
2929 int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2930 struct snd_ctl_elem_value *ucontrol)
2932 struct soc_mixer_control *mc =
2933 (struct soc_mixer_control *)kcontrol->private_value;
2934 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2935 unsigned int reg = mc->reg;
2939 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2940 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2942 return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
2944 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2947 * snd_soc_limit_volume - Set new limit to an existing volume control.
2949 * @codec: where to look for the control
2950 * @name: Name of the control
2951 * @max: new maximum limit
2953 * Return 0 for success, else error.
2955 int snd_soc_limit_volume(struct snd_soc_codec *codec,
2956 const char *name, int max)
2958 struct snd_card *card = codec->card->snd_card;
2959 struct snd_kcontrol *kctl;
2960 struct soc_mixer_control *mc;
2964 /* Sanity check for name and max */
2965 if (unlikely(!name || max <= 0))
2968 list_for_each_entry(kctl, &card->controls, list) {
2969 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
2975 mc = (struct soc_mixer_control *)kctl->private_value;
2976 if (max <= mc->max) {
2977 mc->platform_max = max;
2983 EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
2986 * snd_soc_info_volsw_2r_sx - double with tlv and variable data size
2987 * mixer info callback
2988 * @kcontrol: mixer control
2989 * @uinfo: control element information
2991 * Returns 0 for success.
2993 int snd_soc_info_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2994 struct snd_ctl_elem_info *uinfo)
2996 struct soc_mixer_control *mc =
2997 (struct soc_mixer_control *)kcontrol->private_value;
3001 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3003 uinfo->value.integer.min = 0;
3004 uinfo->value.integer.max = max-min;
3008 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r_sx);
3011 * snd_soc_get_volsw_2r_sx - double with tlv and variable data size
3012 * mixer get callback
3013 * @kcontrol: mixer control
3014 * @uinfo: control element information
3016 * Returns 0 for success.
3018 int snd_soc_get_volsw_2r_sx(struct snd_kcontrol *kcontrol,
3019 struct snd_ctl_elem_value *ucontrol)
3021 struct soc_mixer_control *mc =
3022 (struct soc_mixer_control *)kcontrol->private_value;
3023 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3024 unsigned int mask = (1<<mc->shift)-1;
3026 int val = snd_soc_read(codec, mc->reg) & mask;
3027 int valr = snd_soc_read(codec, mc->rreg) & mask;
3029 ucontrol->value.integer.value[0] = ((val & 0xff)-min) & mask;
3030 ucontrol->value.integer.value[1] = ((valr & 0xff)-min) & mask;
3033 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r_sx);
3036 * snd_soc_put_volsw_2r_sx - double with tlv and variable data size
3037 * mixer put callback
3038 * @kcontrol: mixer control
3039 * @uinfo: control element information
3041 * Returns 0 for success.
3043 int snd_soc_put_volsw_2r_sx(struct snd_kcontrol *kcontrol,
3044 struct snd_ctl_elem_value *ucontrol)
3046 struct soc_mixer_control *mc =
3047 (struct soc_mixer_control *)kcontrol->private_value;
3048 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3049 unsigned int mask = (1<<mc->shift)-1;
3052 unsigned int val, valr, oval, ovalr;
3054 val = ((ucontrol->value.integer.value[0]+min) & 0xff);
3056 valr = ((ucontrol->value.integer.value[1]+min) & 0xff);
3059 oval = snd_soc_read(codec, mc->reg) & mask;
3060 ovalr = snd_soc_read(codec, mc->rreg) & mask;
3064 ret = snd_soc_write(codec, mc->reg, val);
3068 if (ovalr != valr) {
3069 ret = snd_soc_write(codec, mc->rreg, valr);
3076 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r_sx);
3079 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
3081 * @clk_id: DAI specific clock ID
3082 * @freq: new clock frequency in Hz
3083 * @dir: new clock direction - input/output.
3085 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
3087 int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
3088 unsigned int freq, int dir)
3090 if (dai->driver && dai->driver->ops->set_sysclk)
3091 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
3092 else if (dai->codec && dai->codec->driver->set_sysclk)
3093 return dai->codec->driver->set_sysclk(dai->codec, clk_id,
3098 EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
3101 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
3103 * @clk_id: DAI specific clock ID
3104 * @freq: new clock frequency in Hz
3105 * @dir: new clock direction - input/output.
3107 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
3109 int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
3110 unsigned int freq, int dir)
3112 if (codec->driver->set_sysclk)
3113 return codec->driver->set_sysclk(codec, clk_id, freq, dir);
3117 EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
3120 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
3122 * @div_id: DAI specific clock divider ID
3123 * @div: new clock divisor.
3125 * Configures the clock dividers. This is used to derive the best DAI bit and
3126 * frame clocks from the system or master clock. It's best to set the DAI bit
3127 * and frame clocks as low as possible to save system power.
3129 int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
3130 int div_id, int div)
3132 if (dai->driver && dai->driver->ops->set_clkdiv)
3133 return dai->driver->ops->set_clkdiv(dai, div_id, div);
3137 EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
3140 * snd_soc_dai_set_pll - configure DAI PLL.
3142 * @pll_id: DAI specific PLL ID
3143 * @source: DAI specific source for the PLL
3144 * @freq_in: PLL input clock frequency in Hz
3145 * @freq_out: requested PLL output clock frequency in Hz
3147 * Configures and enables PLL to generate output clock based on input clock.
3149 int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
3150 unsigned int freq_in, unsigned int freq_out)
3152 if (dai->driver && dai->driver->ops->set_pll)
3153 return dai->driver->ops->set_pll(dai, pll_id, source,
3155 else if (dai->codec && dai->codec->driver->set_pll)
3156 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
3161 EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
3164 * snd_soc_codec_set_pll - configure codec PLL.
3166 * @pll_id: DAI specific PLL ID
3167 * @source: DAI specific source for the PLL
3168 * @freq_in: PLL input clock frequency in Hz
3169 * @freq_out: requested PLL output clock frequency in Hz
3171 * Configures and enables PLL to generate output clock based on input clock.
3173 int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
3174 unsigned int freq_in, unsigned int freq_out)
3176 if (codec->driver->set_pll)
3177 return codec->driver->set_pll(codec, pll_id, source,
3182 EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
3185 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3187 * @fmt: SND_SOC_DAIFMT_ format value.
3189 * Configures the DAI hardware format and clocking.
3191 int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
3193 if (dai->driver && dai->driver->ops->set_fmt)
3194 return dai->driver->ops->set_fmt(dai, fmt);
3198 EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
3201 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3203 * @tx_mask: bitmask representing active TX slots.
3204 * @rx_mask: bitmask representing active RX slots.
3205 * @slots: Number of slots in use.
3206 * @slot_width: Width in bits for each slot.
3208 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3211 int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
3212 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
3214 if (dai->driver && dai->driver->ops->set_tdm_slot)
3215 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
3220 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
3223 * snd_soc_dai_set_channel_map - configure DAI audio channel map
3225 * @tx_num: how many TX channels
3226 * @tx_slot: pointer to an array which imply the TX slot number channel
3228 * @rx_num: how many RX channels
3229 * @rx_slot: pointer to an array which imply the RX slot number channel
3232 * configure the relationship between channel number and TDM slot number.
3234 int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
3235 unsigned int tx_num, unsigned int *tx_slot,
3236 unsigned int rx_num, unsigned int *rx_slot)
3238 if (dai->driver && dai->driver->ops->set_channel_map)
3239 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
3244 EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
3247 * snd_soc_dai_set_tristate - configure DAI system or master clock.
3249 * @tristate: tristate enable
3251 * Tristates the DAI so that others can use it.
3253 int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
3255 if (dai->driver && dai->driver->ops->set_tristate)
3256 return dai->driver->ops->set_tristate(dai, tristate);
3260 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);