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/ctype.h>
34 #include <linux/slab.h>
36 #include <sound/ac97_codec.h>
37 #include <sound/core.h>
38 #include <sound/jack.h>
39 #include <sound/pcm.h>
40 #include <sound/pcm_params.h>
41 #include <sound/soc.h>
42 #include <sound/soc-dpcm.h>
43 #include <sound/initval.h>
45 #define CREATE_TRACE_POINTS
46 #include <trace/events/asoc.h>
50 static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq
);
52 #ifdef CONFIG_DEBUG_FS
53 struct dentry
*snd_soc_debugfs_root
;
54 EXPORT_SYMBOL_GPL(snd_soc_debugfs_root
);
57 static DEFINE_MUTEX(client_mutex
);
58 static LIST_HEAD(dai_list
);
59 static LIST_HEAD(platform_list
);
60 static LIST_HEAD(codec_list
);
63 * This is a timeout to do a DAPM powerdown after a stream is closed().
64 * It can be used to eliminate pops between different playback streams, e.g.
65 * between two audio tracks.
67 static int pmdown_time
= 5000;
68 module_param(pmdown_time
, int, 0);
69 MODULE_PARM_DESC(pmdown_time
, "DAPM stream powerdown time (msecs)");
71 /* returns the minimum number of bytes needed to represent
72 * a particular given value */
73 static int min_bytes_needed(unsigned long val
)
78 for (i
= (sizeof val
* 8) - 1; i
>= 0; --i
, ++c
)
81 c
= (sizeof val
* 8) - c
;
89 /* fill buf which is 'len' bytes with a formatted
90 * string of the form 'reg: value\n' */
91 static int format_register_str(struct snd_soc_codec
*codec
,
92 unsigned int reg
, char *buf
, size_t len
)
94 int wordsize
= min_bytes_needed(codec
->driver
->reg_cache_size
) * 2;
95 int regsize
= codec
->driver
->reg_word_size
* 2;
98 char regbuf
[regsize
+ 1];
100 /* since tmpbuf is allocated on the stack, warn the callers if they
101 * try to abuse this function */
104 /* +2 for ': ' and + 1 for '\n' */
105 if (wordsize
+ regsize
+ 2 + 1 != len
)
108 ret
= snd_soc_read(codec
, reg
);
110 memset(regbuf
, 'X', regsize
);
111 regbuf
[regsize
] = '\0';
113 snprintf(regbuf
, regsize
+ 1, "%.*x", regsize
, ret
);
116 /* prepare the buffer */
117 snprintf(tmpbuf
, len
+ 1, "%.*x: %s\n", wordsize
, reg
, regbuf
);
118 /* copy it back to the caller without the '\0' */
119 memcpy(buf
, tmpbuf
, len
);
124 /* codec register dump */
125 static ssize_t
soc_codec_reg_show(struct snd_soc_codec
*codec
, char *buf
,
126 size_t count
, loff_t pos
)
129 int wordsize
, regsize
;
134 wordsize
= min_bytes_needed(codec
->driver
->reg_cache_size
) * 2;
135 regsize
= codec
->driver
->reg_word_size
* 2;
137 len
= wordsize
+ regsize
+ 2 + 1;
139 if (!codec
->driver
->reg_cache_size
)
142 if (codec
->driver
->reg_cache_step
)
143 step
= codec
->driver
->reg_cache_step
;
145 for (i
= 0; i
< codec
->driver
->reg_cache_size
; i
+= step
) {
146 if (!snd_soc_codec_readable_register(codec
, i
))
148 if (codec
->driver
->display_register
) {
149 count
+= codec
->driver
->display_register(codec
, buf
+ count
,
150 PAGE_SIZE
- count
, i
);
152 /* only support larger than PAGE_SIZE bytes debugfs
153 * entries for the default case */
155 if (total
+ len
>= count
- 1)
157 format_register_str(codec
, i
, buf
+ total
, len
);
164 total
= min(total
, count
- 1);
169 static ssize_t
codec_reg_show(struct device
*dev
,
170 struct device_attribute
*attr
, char *buf
)
172 struct snd_soc_pcm_runtime
*rtd
= dev_get_drvdata(dev
);
174 return soc_codec_reg_show(rtd
->codec
, buf
, PAGE_SIZE
, 0);
177 static DEVICE_ATTR(codec_reg
, 0444, codec_reg_show
, NULL
);
179 static ssize_t
pmdown_time_show(struct device
*dev
,
180 struct device_attribute
*attr
, char *buf
)
182 struct snd_soc_pcm_runtime
*rtd
= dev_get_drvdata(dev
);
184 return sprintf(buf
, "%ld\n", rtd
->pmdown_time
);
187 static ssize_t
pmdown_time_set(struct device
*dev
,
188 struct device_attribute
*attr
,
189 const char *buf
, size_t count
)
191 struct snd_soc_pcm_runtime
*rtd
= dev_get_drvdata(dev
);
194 ret
= strict_strtol(buf
, 10, &rtd
->pmdown_time
);
201 static DEVICE_ATTR(pmdown_time
, 0644, pmdown_time_show
, pmdown_time_set
);
203 #ifdef CONFIG_DEBUG_FS
204 static ssize_t
codec_reg_read_file(struct file
*file
, char __user
*user_buf
,
205 size_t count
, loff_t
*ppos
)
208 struct snd_soc_codec
*codec
= file
->private_data
;
211 if (*ppos
< 0 || !count
)
214 buf
= kmalloc(count
, GFP_KERNEL
);
218 ret
= soc_codec_reg_show(codec
, buf
, count
, *ppos
);
220 if (copy_to_user(user_buf
, buf
, ret
)) {
231 static ssize_t
codec_reg_write_file(struct file
*file
,
232 const char __user
*user_buf
, size_t count
, loff_t
*ppos
)
237 unsigned long reg
, value
;
238 struct snd_soc_codec
*codec
= file
->private_data
;
240 buf_size
= min(count
, (sizeof(buf
)-1));
241 if (copy_from_user(buf
, user_buf
, buf_size
))
245 while (*start
== ' ')
247 reg
= simple_strtoul(start
, &start
, 16);
248 while (*start
== ' ')
250 if (strict_strtoul(start
, 16, &value
))
253 /* Userspace has been fiddling around behind the kernel's back */
254 add_taint(TAINT_USER
);
256 snd_soc_write(codec
, reg
, value
);
260 static const struct file_operations codec_reg_fops
= {
262 .read
= codec_reg_read_file
,
263 .write
= codec_reg_write_file
,
264 .llseek
= default_llseek
,
267 static void soc_init_codec_debugfs(struct snd_soc_codec
*codec
)
269 struct dentry
*debugfs_card_root
= codec
->card
->debugfs_card_root
;
271 codec
->debugfs_codec_root
= debugfs_create_dir(codec
->name
,
273 if (!codec
->debugfs_codec_root
) {
274 dev_warn(codec
->dev
, "ASoC: Failed to create codec debugfs"
279 debugfs_create_bool("cache_sync", 0444, codec
->debugfs_codec_root
,
281 debugfs_create_bool("cache_only", 0444, codec
->debugfs_codec_root
,
284 codec
->debugfs_reg
= debugfs_create_file("codec_reg", 0644,
285 codec
->debugfs_codec_root
,
286 codec
, &codec_reg_fops
);
287 if (!codec
->debugfs_reg
)
288 dev_warn(codec
->dev
, "ASoC: Failed to create codec register"
291 snd_soc_dapm_debugfs_init(&codec
->dapm
, codec
->debugfs_codec_root
);
294 static void soc_cleanup_codec_debugfs(struct snd_soc_codec
*codec
)
296 debugfs_remove_recursive(codec
->debugfs_codec_root
);
299 static void soc_init_platform_debugfs(struct snd_soc_platform
*platform
)
301 struct dentry
*debugfs_card_root
= platform
->card
->debugfs_card_root
;
303 platform
->debugfs_platform_root
= debugfs_create_dir(platform
->name
,
305 if (!platform
->debugfs_platform_root
) {
306 dev_warn(platform
->dev
,
307 "ASoC: Failed to create platform debugfs directory\n");
311 snd_soc_dapm_debugfs_init(&platform
->dapm
,
312 platform
->debugfs_platform_root
);
315 static void soc_cleanup_platform_debugfs(struct snd_soc_platform
*platform
)
317 debugfs_remove_recursive(platform
->debugfs_platform_root
);
320 static ssize_t
codec_list_read_file(struct file
*file
, char __user
*user_buf
,
321 size_t count
, loff_t
*ppos
)
323 char *buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
324 ssize_t len
, ret
= 0;
325 struct snd_soc_codec
*codec
;
330 list_for_each_entry(codec
, &codec_list
, list
) {
331 len
= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, "%s\n",
335 if (ret
> PAGE_SIZE
) {
342 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
349 static const struct file_operations codec_list_fops
= {
350 .read
= codec_list_read_file
,
351 .llseek
= default_llseek
,/* read accesses f_pos */
354 static ssize_t
dai_list_read_file(struct file
*file
, char __user
*user_buf
,
355 size_t count
, loff_t
*ppos
)
357 char *buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
358 ssize_t len
, ret
= 0;
359 struct snd_soc_dai
*dai
;
364 list_for_each_entry(dai
, &dai_list
, list
) {
365 len
= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, "%s\n", dai
->name
);
368 if (ret
> PAGE_SIZE
) {
374 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
381 static const struct file_operations dai_list_fops
= {
382 .read
= dai_list_read_file
,
383 .llseek
= default_llseek
,/* read accesses f_pos */
386 static ssize_t
platform_list_read_file(struct file
*file
,
387 char __user
*user_buf
,
388 size_t count
, loff_t
*ppos
)
390 char *buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
391 ssize_t len
, ret
= 0;
392 struct snd_soc_platform
*platform
;
397 list_for_each_entry(platform
, &platform_list
, list
) {
398 len
= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, "%s\n",
402 if (ret
> PAGE_SIZE
) {
408 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
415 static const struct file_operations platform_list_fops
= {
416 .read
= platform_list_read_file
,
417 .llseek
= default_llseek
,/* read accesses f_pos */
420 static void soc_init_card_debugfs(struct snd_soc_card
*card
)
422 card
->debugfs_card_root
= debugfs_create_dir(card
->name
,
423 snd_soc_debugfs_root
);
424 if (!card
->debugfs_card_root
) {
426 "ASoC: Failed to create card debugfs directory\n");
430 card
->debugfs_pop_time
= debugfs_create_u32("dapm_pop_time", 0644,
431 card
->debugfs_card_root
,
433 if (!card
->debugfs_pop_time
)
435 "ASoC: Failed to create pop time debugfs file\n");
438 static void soc_cleanup_card_debugfs(struct snd_soc_card
*card
)
440 debugfs_remove_recursive(card
->debugfs_card_root
);
445 static inline void soc_init_codec_debugfs(struct snd_soc_codec
*codec
)
449 static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec
*codec
)
453 static inline void soc_init_platform_debugfs(struct snd_soc_platform
*platform
)
457 static inline void soc_cleanup_platform_debugfs(struct snd_soc_platform
*platform
)
461 static inline void soc_init_card_debugfs(struct snd_soc_card
*card
)
465 static inline void soc_cleanup_card_debugfs(struct snd_soc_card
*card
)
470 struct snd_pcm_substream
*snd_soc_get_dai_substream(struct snd_soc_card
*card
,
471 const char *dai_link
, int stream
)
475 for (i
= 0; i
< card
->num_links
; i
++) {
476 if (card
->rtd
[i
].dai_link
->no_pcm
&&
477 !strcmp(card
->rtd
[i
].dai_link
->name
, dai_link
))
478 return card
->rtd
[i
].pcm
->streams
[stream
].substream
;
480 dev_dbg(card
->dev
, "ASoC: failed to find dai link %s\n", dai_link
);
483 EXPORT_SYMBOL_GPL(snd_soc_get_dai_substream
);
485 struct snd_soc_pcm_runtime
*snd_soc_get_pcm_runtime(struct snd_soc_card
*card
,
486 const char *dai_link
)
490 for (i
= 0; i
< card
->num_links
; i
++) {
491 if (!strcmp(card
->rtd
[i
].dai_link
->name
, dai_link
))
492 return &card
->rtd
[i
];
494 dev_dbg(card
->dev
, "ASoC: failed to find rtd %s\n", dai_link
);
497 EXPORT_SYMBOL_GPL(snd_soc_get_pcm_runtime
);
499 #ifdef CONFIG_SND_SOC_AC97_BUS
500 /* unregister ac97 codec */
501 static int soc_ac97_dev_unregister(struct snd_soc_codec
*codec
)
503 if (codec
->ac97
->dev
.bus
)
504 device_unregister(&codec
->ac97
->dev
);
508 /* stop no dev release warning */
509 static void soc_ac97_device_release(struct device
*dev
){}
511 /* register ac97 codec to bus */
512 static int soc_ac97_dev_register(struct snd_soc_codec
*codec
)
516 codec
->ac97
->dev
.bus
= &ac97_bus_type
;
517 codec
->ac97
->dev
.parent
= codec
->card
->dev
;
518 codec
->ac97
->dev
.release
= soc_ac97_device_release
;
520 dev_set_name(&codec
->ac97
->dev
, "%d-%d:%s",
521 codec
->card
->snd_card
->number
, 0, codec
->name
);
522 err
= device_register(&codec
->ac97
->dev
);
524 dev_err(codec
->dev
, "ASoC: Can't register ac97 bus\n");
525 codec
->ac97
->dev
.bus
= NULL
;
532 #ifdef CONFIG_PM_SLEEP
533 /* powers down audio subsystem for suspend */
534 int snd_soc_suspend(struct device
*dev
)
536 struct snd_soc_card
*card
= dev_get_drvdata(dev
);
537 struct snd_soc_codec
*codec
;
540 /* If the initialization of this soc device failed, there is no codec
541 * associated with it. Just bail out in this case.
543 if (list_empty(&card
->codec_dev_list
))
546 /* Due to the resume being scheduled into a workqueue we could
547 * suspend before that's finished - wait for it to complete.
549 snd_power_lock(card
->snd_card
);
550 snd_power_wait(card
->snd_card
, SNDRV_CTL_POWER_D0
);
551 snd_power_unlock(card
->snd_card
);
553 /* we're going to block userspace touching us until resume completes */
554 snd_power_change_state(card
->snd_card
, SNDRV_CTL_POWER_D3hot
);
556 /* mute any active DACs */
557 for (i
= 0; i
< card
->num_rtd
; i
++) {
558 struct snd_soc_dai
*dai
= card
->rtd
[i
].codec_dai
;
559 struct snd_soc_dai_driver
*drv
= dai
->driver
;
561 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
564 if (drv
->ops
->digital_mute
&& dai
->playback_active
)
565 drv
->ops
->digital_mute(dai
, 1);
568 /* suspend all pcms */
569 for (i
= 0; i
< card
->num_rtd
; i
++) {
570 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
573 snd_pcm_suspend_all(card
->rtd
[i
].pcm
);
576 if (card
->suspend_pre
)
577 card
->suspend_pre(card
);
579 for (i
= 0; i
< card
->num_rtd
; i
++) {
580 struct snd_soc_dai
*cpu_dai
= card
->rtd
[i
].cpu_dai
;
581 struct snd_soc_platform
*platform
= card
->rtd
[i
].platform
;
583 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
586 if (cpu_dai
->driver
->suspend
&& !cpu_dai
->driver
->ac97_control
)
587 cpu_dai
->driver
->suspend(cpu_dai
);
588 if (platform
->driver
->suspend
&& !platform
->suspended
) {
589 platform
->driver
->suspend(cpu_dai
);
590 platform
->suspended
= 1;
594 /* close any waiting streams and save state */
595 for (i
= 0; i
< card
->num_rtd
; i
++) {
596 flush_delayed_work(&card
->rtd
[i
].delayed_work
);
597 card
->rtd
[i
].codec
->dapm
.suspend_bias_level
= card
->rtd
[i
].codec
->dapm
.bias_level
;
600 for (i
= 0; i
< card
->num_rtd
; i
++) {
602 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
605 snd_soc_dapm_stream_event(&card
->rtd
[i
],
606 SNDRV_PCM_STREAM_PLAYBACK
,
607 SND_SOC_DAPM_STREAM_SUSPEND
);
609 snd_soc_dapm_stream_event(&card
->rtd
[i
],
610 SNDRV_PCM_STREAM_CAPTURE
,
611 SND_SOC_DAPM_STREAM_SUSPEND
);
614 /* Recheck all analogue paths too */
615 dapm_mark_io_dirty(&card
->dapm
);
616 snd_soc_dapm_sync(&card
->dapm
);
618 /* suspend all CODECs */
619 list_for_each_entry(codec
, &card
->codec_dev_list
, card_list
) {
620 /* If there are paths active then the CODEC will be held with
621 * bias _ON and should not be suspended. */
622 if (!codec
->suspended
&& codec
->driver
->suspend
) {
623 switch (codec
->dapm
.bias_level
) {
624 case SND_SOC_BIAS_STANDBY
:
626 * If the CODEC is capable of idle
627 * bias off then being in STANDBY
628 * means it's doing something,
629 * otherwise fall through.
631 if (codec
->dapm
.idle_bias_off
) {
633 "ASoC: idle_bias_off CODEC on"
637 case SND_SOC_BIAS_OFF
:
638 codec
->driver
->suspend(codec
);
639 codec
->suspended
= 1;
640 codec
->cache_sync
= 1;
641 if (codec
->using_regmap
)
642 regcache_mark_dirty(codec
->control_data
);
645 dev_dbg(codec
->dev
, "ASoC: CODEC is on"
652 for (i
= 0; i
< card
->num_rtd
; i
++) {
653 struct snd_soc_dai
*cpu_dai
= card
->rtd
[i
].cpu_dai
;
655 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
658 if (cpu_dai
->driver
->suspend
&& cpu_dai
->driver
->ac97_control
)
659 cpu_dai
->driver
->suspend(cpu_dai
);
662 if (card
->suspend_post
)
663 card
->suspend_post(card
);
667 EXPORT_SYMBOL_GPL(snd_soc_suspend
);
669 /* deferred resume work, so resume can complete before we finished
670 * setting our codec back up, which can be very slow on I2C
672 static void soc_resume_deferred(struct work_struct
*work
)
674 struct snd_soc_card
*card
=
675 container_of(work
, struct snd_soc_card
, deferred_resume_work
);
676 struct snd_soc_codec
*codec
;
679 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
680 * so userspace apps are blocked from touching us
683 dev_dbg(card
->dev
, "ASoC: starting resume work\n");
685 /* Bring us up into D2 so that DAPM starts enabling things */
686 snd_power_change_state(card
->snd_card
, SNDRV_CTL_POWER_D2
);
688 if (card
->resume_pre
)
689 card
->resume_pre(card
);
691 /* resume AC97 DAIs */
692 for (i
= 0; i
< card
->num_rtd
; i
++) {
693 struct snd_soc_dai
*cpu_dai
= card
->rtd
[i
].cpu_dai
;
695 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
698 if (cpu_dai
->driver
->resume
&& cpu_dai
->driver
->ac97_control
)
699 cpu_dai
->driver
->resume(cpu_dai
);
702 list_for_each_entry(codec
, &card
->codec_dev_list
, card_list
) {
703 /* If the CODEC was idle over suspend then it will have been
704 * left with bias OFF or STANDBY and suspended so we must now
705 * resume. Otherwise the suspend was suppressed.
707 if (codec
->driver
->resume
&& codec
->suspended
) {
708 switch (codec
->dapm
.bias_level
) {
709 case SND_SOC_BIAS_STANDBY
:
710 case SND_SOC_BIAS_OFF
:
711 codec
->driver
->resume(codec
);
712 codec
->suspended
= 0;
715 dev_dbg(codec
->dev
, "ASoC: CODEC was on over"
722 for (i
= 0; i
< card
->num_rtd
; i
++) {
724 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
727 snd_soc_dapm_stream_event(&card
->rtd
[i
],
728 SNDRV_PCM_STREAM_PLAYBACK
,
729 SND_SOC_DAPM_STREAM_RESUME
);
731 snd_soc_dapm_stream_event(&card
->rtd
[i
],
732 SNDRV_PCM_STREAM_CAPTURE
,
733 SND_SOC_DAPM_STREAM_RESUME
);
736 /* unmute any active DACs */
737 for (i
= 0; i
< card
->num_rtd
; i
++) {
738 struct snd_soc_dai
*dai
= card
->rtd
[i
].codec_dai
;
739 struct snd_soc_dai_driver
*drv
= dai
->driver
;
741 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
744 if (drv
->ops
->digital_mute
&& dai
->playback_active
)
745 drv
->ops
->digital_mute(dai
, 0);
748 for (i
= 0; i
< card
->num_rtd
; i
++) {
749 struct snd_soc_dai
*cpu_dai
= card
->rtd
[i
].cpu_dai
;
750 struct snd_soc_platform
*platform
= card
->rtd
[i
].platform
;
752 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
755 if (cpu_dai
->driver
->resume
&& !cpu_dai
->driver
->ac97_control
)
756 cpu_dai
->driver
->resume(cpu_dai
);
757 if (platform
->driver
->resume
&& platform
->suspended
) {
758 platform
->driver
->resume(cpu_dai
);
759 platform
->suspended
= 0;
763 if (card
->resume_post
)
764 card
->resume_post(card
);
766 dev_dbg(card
->dev
, "ASoC: resume work completed\n");
768 /* userspace can access us now we are back as we were before */
769 snd_power_change_state(card
->snd_card
, SNDRV_CTL_POWER_D0
);
771 /* Recheck all analogue paths too */
772 dapm_mark_io_dirty(&card
->dapm
);
773 snd_soc_dapm_sync(&card
->dapm
);
776 /* powers up audio subsystem after a suspend */
777 int snd_soc_resume(struct device
*dev
)
779 struct snd_soc_card
*card
= dev_get_drvdata(dev
);
780 int i
, ac97_control
= 0;
782 /* If the initialization of this soc device failed, there is no codec
783 * associated with it. Just bail out in this case.
785 if (list_empty(&card
->codec_dev_list
))
788 /* AC97 devices might have other drivers hanging off them so
789 * need to resume immediately. Other drivers don't have that
790 * problem and may take a substantial amount of time to resume
791 * due to I/O costs and anti-pop so handle them out of line.
793 for (i
= 0; i
< card
->num_rtd
; i
++) {
794 struct snd_soc_dai
*cpu_dai
= card
->rtd
[i
].cpu_dai
;
795 ac97_control
|= cpu_dai
->driver
->ac97_control
;
798 dev_dbg(dev
, "ASoC: Resuming AC97 immediately\n");
799 soc_resume_deferred(&card
->deferred_resume_work
);
801 dev_dbg(dev
, "ASoC: Scheduling resume work\n");
802 if (!schedule_work(&card
->deferred_resume_work
))
803 dev_err(dev
, "ASoC: resume work item may be lost\n");
808 EXPORT_SYMBOL_GPL(snd_soc_resume
);
810 #define snd_soc_suspend NULL
811 #define snd_soc_resume NULL
814 static const struct snd_soc_dai_ops null_dai_ops
= {
817 static int soc_bind_dai_link(struct snd_soc_card
*card
, int num
)
819 struct snd_soc_dai_link
*dai_link
= &card
->dai_link
[num
];
820 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[num
];
821 struct snd_soc_codec
*codec
;
822 struct snd_soc_platform
*platform
;
823 struct snd_soc_dai
*codec_dai
, *cpu_dai
;
824 const char *platform_name
;
826 dev_dbg(card
->dev
, "ASoC: binding %s at idx %d\n", dai_link
->name
, num
);
828 /* Find CPU DAI from registered DAIs*/
829 list_for_each_entry(cpu_dai
, &dai_list
, list
) {
830 if (dai_link
->cpu_of_node
&&
831 (cpu_dai
->dev
->of_node
!= dai_link
->cpu_of_node
))
833 if (dai_link
->cpu_name
&&
834 strcmp(dev_name(cpu_dai
->dev
), dai_link
->cpu_name
))
836 if (dai_link
->cpu_dai_name
&&
837 strcmp(cpu_dai
->name
, dai_link
->cpu_dai_name
))
840 rtd
->cpu_dai
= cpu_dai
;
844 dev_err(card
->dev
, "ASoC: CPU DAI %s not registered\n",
845 dai_link
->cpu_dai_name
);
846 return -EPROBE_DEFER
;
849 /* Find CODEC from registered CODECs */
850 list_for_each_entry(codec
, &codec_list
, list
) {
851 if (dai_link
->codec_of_node
) {
852 if (codec
->dev
->of_node
!= dai_link
->codec_of_node
)
855 if (strcmp(codec
->name
, dai_link
->codec_name
))
862 * CODEC found, so find CODEC DAI from registered DAIs from
865 list_for_each_entry(codec_dai
, &dai_list
, list
) {
866 if (codec
->dev
== codec_dai
->dev
&&
867 !strcmp(codec_dai
->name
,
868 dai_link
->codec_dai_name
)) {
870 rtd
->codec_dai
= codec_dai
;
874 if (!rtd
->codec_dai
) {
875 dev_err(card
->dev
, "ASoC: CODEC DAI %s not registered\n",
876 dai_link
->codec_dai_name
);
877 return -EPROBE_DEFER
;
882 dev_err(card
->dev
, "ASoC: CODEC %s not registered\n",
883 dai_link
->codec_name
);
884 return -EPROBE_DEFER
;
887 /* if there's no platform we match on the empty platform */
888 platform_name
= dai_link
->platform_name
;
889 if (!platform_name
&& !dai_link
->platform_of_node
)
890 platform_name
= "snd-soc-dummy";
892 /* find one from the set of registered platforms */
893 list_for_each_entry(platform
, &platform_list
, list
) {
894 if (dai_link
->platform_of_node
) {
895 if (platform
->dev
->of_node
!=
896 dai_link
->platform_of_node
)
899 if (strcmp(platform
->name
, platform_name
))
903 rtd
->platform
= platform
;
905 if (!rtd
->platform
) {
906 dev_err(card
->dev
, "ASoC: platform %s not registered\n",
907 dai_link
->platform_name
);
908 return -EPROBE_DEFER
;
916 static int soc_remove_platform(struct snd_soc_platform
*platform
)
920 if (platform
->driver
->remove
) {
921 ret
= platform
->driver
->remove(platform
);
923 dev_err(platform
->dev
, "ASoC: failed to remove %d\n",
927 /* Make sure all DAPM widgets are freed */
928 snd_soc_dapm_free(&platform
->dapm
);
930 soc_cleanup_platform_debugfs(platform
);
931 platform
->probed
= 0;
932 list_del(&platform
->card_list
);
933 module_put(platform
->dev
->driver
->owner
);
938 static void soc_remove_codec(struct snd_soc_codec
*codec
)
942 if (codec
->driver
->remove
) {
943 err
= codec
->driver
->remove(codec
);
945 dev_err(codec
->dev
, "ASoC: failed to remove %d\n", err
);
948 /* Make sure all DAPM widgets are freed */
949 snd_soc_dapm_free(&codec
->dapm
);
951 soc_cleanup_codec_debugfs(codec
);
953 list_del(&codec
->card_list
);
954 module_put(codec
->dev
->driver
->owner
);
957 static void soc_remove_link_dais(struct snd_soc_card
*card
, int num
, int order
)
959 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[num
];
960 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
, *cpu_dai
= rtd
->cpu_dai
;
963 /* unregister the rtd device */
964 if (rtd
->dev_registered
) {
965 device_remove_file(rtd
->dev
, &dev_attr_pmdown_time
);
966 device_remove_file(rtd
->dev
, &dev_attr_codec_reg
);
967 device_unregister(rtd
->dev
);
968 rtd
->dev_registered
= 0;
971 /* remove the CODEC DAI */
972 if (codec_dai
&& codec_dai
->probed
&&
973 codec_dai
->driver
->remove_order
== order
) {
974 if (codec_dai
->driver
->remove
) {
975 err
= codec_dai
->driver
->remove(codec_dai
);
977 dev_err(codec_dai
->dev
,
978 "ASoC: failed to remove %s: %d\n",
979 codec_dai
->name
, err
);
981 codec_dai
->probed
= 0;
982 list_del(&codec_dai
->card_list
);
985 /* remove the cpu_dai */
986 if (cpu_dai
&& cpu_dai
->probed
&&
987 cpu_dai
->driver
->remove_order
== order
) {
988 if (cpu_dai
->driver
->remove
) {
989 err
= cpu_dai
->driver
->remove(cpu_dai
);
991 dev_err(cpu_dai
->dev
,
992 "ASoC: failed to remove %s: %d\n",
996 list_del(&cpu_dai
->card_list
);
998 if (!cpu_dai
->codec
) {
999 snd_soc_dapm_free(&cpu_dai
->dapm
);
1000 module_put(cpu_dai
->dev
->driver
->owner
);
1005 static void soc_remove_link_components(struct snd_soc_card
*card
, int num
,
1008 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[num
];
1009 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
1010 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
1011 struct snd_soc_platform
*platform
= rtd
->platform
;
1012 struct snd_soc_codec
*codec
;
1014 /* remove the platform */
1015 if (platform
&& platform
->probed
&&
1016 platform
->driver
->remove_order
== order
) {
1017 soc_remove_platform(platform
);
1020 /* remove the CODEC-side CODEC */
1022 codec
= codec_dai
->codec
;
1023 if (codec
&& codec
->probed
&&
1024 codec
->driver
->remove_order
== order
)
1025 soc_remove_codec(codec
);
1028 /* remove any CPU-side CODEC */
1030 codec
= cpu_dai
->codec
;
1031 if (codec
&& codec
->probed
&&
1032 codec
->driver
->remove_order
== order
)
1033 soc_remove_codec(codec
);
1037 static void soc_remove_dai_links(struct snd_soc_card
*card
)
1041 for (order
= SND_SOC_COMP_ORDER_FIRST
; order
<= SND_SOC_COMP_ORDER_LAST
;
1043 for (dai
= 0; dai
< card
->num_rtd
; dai
++)
1044 soc_remove_link_dais(card
, dai
, order
);
1047 for (order
= SND_SOC_COMP_ORDER_FIRST
; order
<= SND_SOC_COMP_ORDER_LAST
;
1049 for (dai
= 0; dai
< card
->num_rtd
; dai
++)
1050 soc_remove_link_components(card
, dai
, order
);
1056 static void soc_set_name_prefix(struct snd_soc_card
*card
,
1057 struct snd_soc_codec
*codec
)
1061 if (card
->codec_conf
== NULL
)
1064 for (i
= 0; i
< card
->num_configs
; i
++) {
1065 struct snd_soc_codec_conf
*map
= &card
->codec_conf
[i
];
1066 if (map
->dev_name
&& !strcmp(codec
->name
, map
->dev_name
)) {
1067 codec
->name_prefix
= map
->name_prefix
;
1073 static int soc_probe_codec(struct snd_soc_card
*card
,
1074 struct snd_soc_codec
*codec
)
1077 const struct snd_soc_codec_driver
*driver
= codec
->driver
;
1078 struct snd_soc_dai
*dai
;
1081 codec
->dapm
.card
= card
;
1082 soc_set_name_prefix(card
, codec
);
1084 if (!try_module_get(codec
->dev
->driver
->owner
))
1087 soc_init_codec_debugfs(codec
);
1089 if (driver
->dapm_widgets
)
1090 snd_soc_dapm_new_controls(&codec
->dapm
, driver
->dapm_widgets
,
1091 driver
->num_dapm_widgets
);
1093 /* Create DAPM widgets for each DAI stream */
1094 list_for_each_entry(dai
, &dai_list
, list
) {
1095 if (dai
->dev
!= codec
->dev
)
1098 snd_soc_dapm_new_dai_widgets(&codec
->dapm
, dai
);
1101 codec
->dapm
.idle_bias_off
= driver
->idle_bias_off
;
1103 if (driver
->probe
) {
1104 ret
= driver
->probe(codec
);
1107 "ASoC: failed to probe CODEC %d\n", ret
);
1112 /* If the driver didn't set I/O up try regmap */
1113 if (!codec
->write
&& dev_get_regmap(codec
->dev
, NULL
))
1114 snd_soc_codec_set_cache_io(codec
, 0, 0, SND_SOC_REGMAP
);
1116 if (driver
->controls
)
1117 snd_soc_add_codec_controls(codec
, driver
->controls
,
1118 driver
->num_controls
);
1119 if (driver
->dapm_routes
)
1120 snd_soc_dapm_add_routes(&codec
->dapm
, driver
->dapm_routes
,
1121 driver
->num_dapm_routes
);
1123 /* mark codec as probed and add to card codec list */
1125 list_add(&codec
->card_list
, &card
->codec_dev_list
);
1126 list_add(&codec
->dapm
.list
, &card
->dapm_list
);
1131 soc_cleanup_codec_debugfs(codec
);
1132 module_put(codec
->dev
->driver
->owner
);
1137 static int soc_probe_platform(struct snd_soc_card
*card
,
1138 struct snd_soc_platform
*platform
)
1141 const struct snd_soc_platform_driver
*driver
= platform
->driver
;
1142 struct snd_soc_dai
*dai
;
1144 platform
->card
= card
;
1145 platform
->dapm
.card
= card
;
1147 if (!try_module_get(platform
->dev
->driver
->owner
))
1150 soc_init_platform_debugfs(platform
);
1152 if (driver
->dapm_widgets
)
1153 snd_soc_dapm_new_controls(&platform
->dapm
,
1154 driver
->dapm_widgets
, driver
->num_dapm_widgets
);
1156 /* Create DAPM widgets for each DAI stream */
1157 list_for_each_entry(dai
, &dai_list
, list
) {
1158 if (dai
->dev
!= platform
->dev
)
1161 snd_soc_dapm_new_dai_widgets(&platform
->dapm
, dai
);
1164 platform
->dapm
.idle_bias_off
= 1;
1166 if (driver
->probe
) {
1167 ret
= driver
->probe(platform
);
1169 dev_err(platform
->dev
,
1170 "ASoC: failed to probe platform %d\n", ret
);
1175 if (driver
->controls
)
1176 snd_soc_add_platform_controls(platform
, driver
->controls
,
1177 driver
->num_controls
);
1178 if (driver
->dapm_routes
)
1179 snd_soc_dapm_add_routes(&platform
->dapm
, driver
->dapm_routes
,
1180 driver
->num_dapm_routes
);
1182 /* mark platform as probed and add to card platform list */
1183 platform
->probed
= 1;
1184 list_add(&platform
->card_list
, &card
->platform_dev_list
);
1185 list_add(&platform
->dapm
.list
, &card
->dapm_list
);
1190 soc_cleanup_platform_debugfs(platform
);
1191 module_put(platform
->dev
->driver
->owner
);
1196 static void rtd_release(struct device
*dev
)
1201 static int soc_post_component_init(struct snd_soc_card
*card
,
1202 struct snd_soc_codec
*codec
,
1203 int num
, int dailess
)
1205 struct snd_soc_dai_link
*dai_link
= NULL
;
1206 struct snd_soc_aux_dev
*aux_dev
= NULL
;
1207 struct snd_soc_pcm_runtime
*rtd
;
1208 const char *temp
, *name
;
1212 dai_link
= &card
->dai_link
[num
];
1213 rtd
= &card
->rtd
[num
];
1214 name
= dai_link
->name
;
1216 aux_dev
= &card
->aux_dev
[num
];
1217 rtd
= &card
->rtd_aux
[num
];
1218 name
= aux_dev
->name
;
1222 /* Make sure all DAPM widgets are instantiated */
1223 snd_soc_dapm_new_widgets(&codec
->dapm
);
1225 /* machine controls, routes and widgets are not prefixed */
1226 temp
= codec
->name_prefix
;
1227 codec
->name_prefix
= NULL
;
1229 /* do machine specific initialization */
1230 if (!dailess
&& dai_link
->init
)
1231 ret
= dai_link
->init(rtd
);
1232 else if (dailess
&& aux_dev
->init
)
1233 ret
= aux_dev
->init(&codec
->dapm
);
1235 dev_err(card
->dev
, "ASoC: failed to init %s: %d\n", name
, ret
);
1238 codec
->name_prefix
= temp
;
1240 /* register the rtd device */
1243 rtd
->dev
= kzalloc(sizeof(struct device
), GFP_KERNEL
);
1246 device_initialize(rtd
->dev
);
1247 rtd
->dev
->parent
= card
->dev
;
1248 rtd
->dev
->release
= rtd_release
;
1249 rtd
->dev
->init_name
= name
;
1250 dev_set_drvdata(rtd
->dev
, rtd
);
1251 mutex_init(&rtd
->pcm_mutex
);
1252 INIT_LIST_HEAD(&rtd
->dpcm
[SNDRV_PCM_STREAM_PLAYBACK
].be_clients
);
1253 INIT_LIST_HEAD(&rtd
->dpcm
[SNDRV_PCM_STREAM_CAPTURE
].be_clients
);
1254 INIT_LIST_HEAD(&rtd
->dpcm
[SNDRV_PCM_STREAM_PLAYBACK
].fe_clients
);
1255 INIT_LIST_HEAD(&rtd
->dpcm
[SNDRV_PCM_STREAM_CAPTURE
].fe_clients
);
1256 ret
= device_add(rtd
->dev
);
1258 /* calling put_device() here to free the rtd->dev */
1259 put_device(rtd
->dev
);
1261 "ASoC: failed to register runtime device: %d\n", ret
);
1264 rtd
->dev_registered
= 1;
1266 /* add DAPM sysfs entries for this codec */
1267 ret
= snd_soc_dapm_sys_add(rtd
->dev
);
1270 "ASoC: failed to add codec dapm sysfs entries: %d\n", ret
);
1272 /* add codec sysfs entries */
1273 ret
= device_create_file(rtd
->dev
, &dev_attr_codec_reg
);
1276 "ASoC: failed to add codec sysfs files: %d\n", ret
);
1278 #ifdef CONFIG_DEBUG_FS
1279 /* add DPCM sysfs entries */
1280 if (!dailess
&& !dai_link
->dynamic
)
1283 ret
= soc_dpcm_debugfs_add(rtd
);
1285 dev_err(rtd
->dev
, "ASoC: failed to add dpcm sysfs entries: %d\n", ret
);
1292 static int soc_probe_link_components(struct snd_soc_card
*card
, int num
,
1295 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[num
];
1296 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
1297 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
1298 struct snd_soc_platform
*platform
= rtd
->platform
;
1301 /* probe the CPU-side component, if it is a CODEC */
1302 if (cpu_dai
->codec
&&
1303 !cpu_dai
->codec
->probed
&&
1304 cpu_dai
->codec
->driver
->probe_order
== order
) {
1305 ret
= soc_probe_codec(card
, cpu_dai
->codec
);
1310 /* probe the CODEC-side component */
1311 if (!codec_dai
->codec
->probed
&&
1312 codec_dai
->codec
->driver
->probe_order
== order
) {
1313 ret
= soc_probe_codec(card
, codec_dai
->codec
);
1318 /* probe the platform */
1319 if (!platform
->probed
&&
1320 platform
->driver
->probe_order
== order
) {
1321 ret
= soc_probe_platform(card
, platform
);
1329 static int soc_probe_link_dais(struct snd_soc_card
*card
, int num
, int order
)
1331 struct snd_soc_dai_link
*dai_link
= &card
->dai_link
[num
];
1332 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[num
];
1333 struct snd_soc_codec
*codec
= rtd
->codec
;
1334 struct snd_soc_platform
*platform
= rtd
->platform
;
1335 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
1336 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
1337 struct snd_soc_dapm_widget
*play_w
, *capture_w
;
1340 dev_dbg(card
->dev
, "ASoC: probe %s dai link %d late %d\n",
1341 card
->name
, num
, order
);
1343 /* config components */
1344 cpu_dai
->platform
= platform
;
1345 codec_dai
->card
= card
;
1346 cpu_dai
->card
= card
;
1348 /* set default power off timeout */
1349 rtd
->pmdown_time
= pmdown_time
;
1351 /* probe the cpu_dai */
1352 if (!cpu_dai
->probed
&&
1353 cpu_dai
->driver
->probe_order
== order
) {
1354 if (!cpu_dai
->codec
) {
1355 cpu_dai
->dapm
.card
= card
;
1356 if (!try_module_get(cpu_dai
->dev
->driver
->owner
))
1359 list_add(&cpu_dai
->dapm
.list
, &card
->dapm_list
);
1360 snd_soc_dapm_new_dai_widgets(&cpu_dai
->dapm
, cpu_dai
);
1363 if (cpu_dai
->driver
->probe
) {
1364 ret
= cpu_dai
->driver
->probe(cpu_dai
);
1366 dev_err(cpu_dai
->dev
,
1367 "ASoC: failed to probe CPU DAI %s: %d\n",
1368 cpu_dai
->name
, ret
);
1369 module_put(cpu_dai
->dev
->driver
->owner
);
1373 cpu_dai
->probed
= 1;
1374 /* mark cpu_dai as probed and add to card dai list */
1375 list_add(&cpu_dai
->card_list
, &card
->dai_dev_list
);
1378 /* probe the CODEC DAI */
1379 if (!codec_dai
->probed
&& codec_dai
->driver
->probe_order
== order
) {
1380 if (codec_dai
->driver
->probe
) {
1381 ret
= codec_dai
->driver
->probe(codec_dai
);
1383 dev_err(codec_dai
->dev
,
1384 "ASoC: failed to probe CODEC DAI %s: %d\n",
1385 codec_dai
->name
, ret
);
1390 /* mark codec_dai as probed and add to card dai list */
1391 codec_dai
->probed
= 1;
1392 list_add(&codec_dai
->card_list
, &card
->dai_dev_list
);
1395 /* complete DAI probe during last probe */
1396 if (order
!= SND_SOC_COMP_ORDER_LAST
)
1399 ret
= soc_post_component_init(card
, codec
, num
, 0);
1403 ret
= device_create_file(rtd
->dev
, &dev_attr_pmdown_time
);
1405 dev_warn(rtd
->dev
, "ASoC: failed to add pmdown_time sysfs: %d\n",
1408 if (cpu_dai
->driver
->compress_dai
) {
1409 /*create compress_device"*/
1410 ret
= soc_new_compress(rtd
, num
);
1412 dev_err(card
->dev
, "ASoC: can't create compress %s\n",
1413 dai_link
->stream_name
);
1418 if (!dai_link
->params
) {
1419 /* create the pcm */
1420 ret
= soc_new_pcm(rtd
, num
);
1422 dev_err(card
->dev
, "ASoC: can't create pcm %s :%d\n",
1423 dai_link
->stream_name
, ret
);
1427 /* link the DAI widgets */
1428 play_w
= codec_dai
->playback_widget
;
1429 capture_w
= cpu_dai
->capture_widget
;
1430 if (play_w
&& capture_w
) {
1431 ret
= snd_soc_dapm_new_pcm(card
, dai_link
->params
,
1434 dev_err(card
->dev
, "ASoC: Can't link %s to %s: %d\n",
1435 play_w
->name
, capture_w
->name
, ret
);
1440 play_w
= cpu_dai
->playback_widget
;
1441 capture_w
= codec_dai
->capture_widget
;
1442 if (play_w
&& capture_w
) {
1443 ret
= snd_soc_dapm_new_pcm(card
, dai_link
->params
,
1446 dev_err(card
->dev
, "ASoC: Can't link %s to %s: %d\n",
1447 play_w
->name
, capture_w
->name
, ret
);
1454 /* add platform data for AC97 devices */
1455 if (rtd
->codec_dai
->driver
->ac97_control
)
1456 snd_ac97_dev_add_pdata(codec
->ac97
, rtd
->cpu_dai
->ac97_pdata
);
1461 #ifdef CONFIG_SND_SOC_AC97_BUS
1462 static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime
*rtd
)
1466 /* Only instantiate AC97 if not already done by the adaptor
1467 * for the generic AC97 subsystem.
1469 if (rtd
->codec_dai
->driver
->ac97_control
&& !rtd
->codec
->ac97_registered
) {
1471 * It is possible that the AC97 device is already registered to
1472 * the device subsystem. This happens when the device is created
1473 * via snd_ac97_mixer(). Currently only SoC codec that does so
1474 * is the generic AC97 glue but others migh emerge.
1476 * In those cases we don't try to register the device again.
1478 if (!rtd
->codec
->ac97_created
)
1481 ret
= soc_ac97_dev_register(rtd
->codec
);
1483 dev_err(rtd
->codec
->dev
,
1484 "ASoC: AC97 device register failed: %d\n", ret
);
1488 rtd
->codec
->ac97_registered
= 1;
1493 static void soc_unregister_ac97_dai_link(struct snd_soc_codec
*codec
)
1495 if (codec
->ac97_registered
) {
1496 soc_ac97_dev_unregister(codec
);
1497 codec
->ac97_registered
= 0;
1502 static int soc_check_aux_dev(struct snd_soc_card
*card
, int num
)
1504 struct snd_soc_aux_dev
*aux_dev
= &card
->aux_dev
[num
];
1505 struct snd_soc_codec
*codec
;
1507 /* find CODEC from registered CODECs*/
1508 list_for_each_entry(codec
, &codec_list
, list
) {
1509 if (!strcmp(codec
->name
, aux_dev
->codec_name
))
1513 dev_err(card
->dev
, "ASoC: %s not registered\n", aux_dev
->codec_name
);
1515 return -EPROBE_DEFER
;
1518 static int soc_probe_aux_dev(struct snd_soc_card
*card
, int num
)
1520 struct snd_soc_aux_dev
*aux_dev
= &card
->aux_dev
[num
];
1521 struct snd_soc_codec
*codec
;
1524 /* find CODEC from registered CODECs*/
1525 list_for_each_entry(codec
, &codec_list
, list
) {
1526 if (!strcmp(codec
->name
, aux_dev
->codec_name
)) {
1527 if (codec
->probed
) {
1529 "ASoC: codec already probed");
1536 /* codec not found */
1537 dev_err(card
->dev
, "ASoC: codec %s not found", aux_dev
->codec_name
);
1538 return -EPROBE_DEFER
;
1541 ret
= soc_probe_codec(card
, codec
);
1545 ret
= soc_post_component_init(card
, codec
, num
, 1);
1551 static void soc_remove_aux_dev(struct snd_soc_card
*card
, int num
)
1553 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd_aux
[num
];
1554 struct snd_soc_codec
*codec
= rtd
->codec
;
1556 /* unregister the rtd device */
1557 if (rtd
->dev_registered
) {
1558 device_remove_file(rtd
->dev
, &dev_attr_codec_reg
);
1559 device_unregister(rtd
->dev
);
1560 rtd
->dev_registered
= 0;
1563 if (codec
&& codec
->probed
)
1564 soc_remove_codec(codec
);
1567 static int snd_soc_init_codec_cache(struct snd_soc_codec
*codec
,
1568 enum snd_soc_compress_type compress_type
)
1572 if (codec
->cache_init
)
1575 /* override the compress_type if necessary */
1576 if (compress_type
&& codec
->compress_type
!= compress_type
)
1577 codec
->compress_type
= compress_type
;
1578 ret
= snd_soc_cache_init(codec
);
1580 dev_err(codec
->dev
, "ASoC: Failed to set cache compression"
1581 " type: %d\n", ret
);
1584 codec
->cache_init
= 1;
1588 static int snd_soc_instantiate_card(struct snd_soc_card
*card
)
1590 struct snd_soc_codec
*codec
;
1591 struct snd_soc_codec_conf
*codec_conf
;
1592 enum snd_soc_compress_type compress_type
;
1593 struct snd_soc_dai_link
*dai_link
;
1594 int ret
, i
, order
, dai_fmt
;
1596 mutex_lock_nested(&card
->mutex
, SND_SOC_CARD_CLASS_INIT
);
1599 for (i
= 0; i
< card
->num_links
; i
++) {
1600 ret
= soc_bind_dai_link(card
, i
);
1605 /* check aux_devs too */
1606 for (i
= 0; i
< card
->num_aux_devs
; i
++) {
1607 ret
= soc_check_aux_dev(card
, i
);
1612 /* initialize the register cache for each available codec */
1613 list_for_each_entry(codec
, &codec_list
, list
) {
1614 if (codec
->cache_init
)
1616 /* by default we don't override the compress_type */
1618 /* check to see if we need to override the compress_type */
1619 for (i
= 0; i
< card
->num_configs
; ++i
) {
1620 codec_conf
= &card
->codec_conf
[i
];
1621 if (!strcmp(codec
->name
, codec_conf
->dev_name
)) {
1622 compress_type
= codec_conf
->compress_type
;
1623 if (compress_type
&& compress_type
1624 != codec
->compress_type
)
1628 ret
= snd_soc_init_codec_cache(codec
, compress_type
);
1633 /* card bind complete so register a sound card */
1634 ret
= snd_card_create(SNDRV_DEFAULT_IDX1
, SNDRV_DEFAULT_STR1
,
1635 card
->owner
, 0, &card
->snd_card
);
1637 dev_err(card
->dev
, "ASoC: can't create sound card for"
1638 " card %s: %d\n", card
->name
, ret
);
1641 card
->snd_card
->dev
= card
->dev
;
1643 card
->dapm
.bias_level
= SND_SOC_BIAS_OFF
;
1644 card
->dapm
.dev
= card
->dev
;
1645 card
->dapm
.card
= card
;
1646 list_add(&card
->dapm
.list
, &card
->dapm_list
);
1648 #ifdef CONFIG_DEBUG_FS
1649 snd_soc_dapm_debugfs_init(&card
->dapm
, card
->debugfs_card_root
);
1652 #ifdef CONFIG_PM_SLEEP
1653 /* deferred resume work */
1654 INIT_WORK(&card
->deferred_resume_work
, soc_resume_deferred
);
1657 if (card
->dapm_widgets
)
1658 snd_soc_dapm_new_controls(&card
->dapm
, card
->dapm_widgets
,
1659 card
->num_dapm_widgets
);
1661 /* initialise the sound card only once */
1663 ret
= card
->probe(card
);
1665 goto card_probe_error
;
1668 /* probe all components used by DAI links on this card */
1669 for (order
= SND_SOC_COMP_ORDER_FIRST
; order
<= SND_SOC_COMP_ORDER_LAST
;
1671 for (i
= 0; i
< card
->num_links
; i
++) {
1672 ret
= soc_probe_link_components(card
, i
, order
);
1675 "ASoC: failed to instantiate card %d\n",
1682 /* probe all DAI links on this card */
1683 for (order
= SND_SOC_COMP_ORDER_FIRST
; order
<= SND_SOC_COMP_ORDER_LAST
;
1685 for (i
= 0; i
< card
->num_links
; i
++) {
1686 ret
= soc_probe_link_dais(card
, i
, order
);
1689 "ASoC: failed to instantiate card %d\n",
1696 for (i
= 0; i
< card
->num_aux_devs
; i
++) {
1697 ret
= soc_probe_aux_dev(card
, i
);
1700 "ASoC: failed to add auxiliary devices %d\n",
1702 goto probe_aux_dev_err
;
1706 snd_soc_dapm_link_dai_widgets(card
);
1709 snd_soc_add_card_controls(card
, card
->controls
, card
->num_controls
);
1711 if (card
->dapm_routes
)
1712 snd_soc_dapm_add_routes(&card
->dapm
, card
->dapm_routes
,
1713 card
->num_dapm_routes
);
1715 snd_soc_dapm_new_widgets(&card
->dapm
);
1717 for (i
= 0; i
< card
->num_links
; i
++) {
1718 dai_link
= &card
->dai_link
[i
];
1719 dai_fmt
= dai_link
->dai_fmt
;
1722 ret
= snd_soc_dai_set_fmt(card
->rtd
[i
].codec_dai
,
1724 if (ret
!= 0 && ret
!= -ENOTSUPP
)
1725 dev_warn(card
->rtd
[i
].codec_dai
->dev
,
1726 "ASoC: Failed to set DAI format: %d\n",
1730 /* If this is a regular CPU link there will be a platform */
1732 (dai_link
->platform_name
|| dai_link
->platform_of_node
)) {
1733 ret
= snd_soc_dai_set_fmt(card
->rtd
[i
].cpu_dai
,
1735 if (ret
!= 0 && ret
!= -ENOTSUPP
)
1736 dev_warn(card
->rtd
[i
].cpu_dai
->dev
,
1737 "ASoC: Failed to set DAI format: %d\n",
1739 } else if (dai_fmt
) {
1740 /* Flip the polarity for the "CPU" end */
1741 dai_fmt
&= ~SND_SOC_DAIFMT_MASTER_MASK
;
1742 switch (dai_link
->dai_fmt
&
1743 SND_SOC_DAIFMT_MASTER_MASK
) {
1744 case SND_SOC_DAIFMT_CBM_CFM
:
1745 dai_fmt
|= SND_SOC_DAIFMT_CBS_CFS
;
1747 case SND_SOC_DAIFMT_CBM_CFS
:
1748 dai_fmt
|= SND_SOC_DAIFMT_CBS_CFM
;
1750 case SND_SOC_DAIFMT_CBS_CFM
:
1751 dai_fmt
|= SND_SOC_DAIFMT_CBM_CFS
;
1753 case SND_SOC_DAIFMT_CBS_CFS
:
1754 dai_fmt
|= SND_SOC_DAIFMT_CBM_CFM
;
1758 ret
= snd_soc_dai_set_fmt(card
->rtd
[i
].cpu_dai
,
1760 if (ret
!= 0 && ret
!= -ENOTSUPP
)
1761 dev_warn(card
->rtd
[i
].cpu_dai
->dev
,
1762 "ASoC: Failed to set DAI format: %d\n",
1767 snprintf(card
->snd_card
->shortname
, sizeof(card
->snd_card
->shortname
),
1769 snprintf(card
->snd_card
->longname
, sizeof(card
->snd_card
->longname
),
1770 "%s", card
->long_name
? card
->long_name
: card
->name
);
1771 snprintf(card
->snd_card
->driver
, sizeof(card
->snd_card
->driver
),
1772 "%s", card
->driver_name
? card
->driver_name
: card
->name
);
1773 for (i
= 0; i
< ARRAY_SIZE(card
->snd_card
->driver
); i
++) {
1774 switch (card
->snd_card
->driver
[i
]) {
1780 if (!isalnum(card
->snd_card
->driver
[i
]))
1781 card
->snd_card
->driver
[i
] = '_';
1786 if (card
->late_probe
) {
1787 ret
= card
->late_probe(card
);
1789 dev_err(card
->dev
, "ASoC: %s late_probe() failed: %d\n",
1791 goto probe_aux_dev_err
;
1795 snd_soc_dapm_new_widgets(&card
->dapm
);
1797 if (card
->fully_routed
)
1798 list_for_each_entry(codec
, &card
->codec_dev_list
, card_list
)
1799 snd_soc_dapm_auto_nc_codec_pins(codec
);
1801 ret
= snd_card_register(card
->snd_card
);
1803 dev_err(card
->dev
, "ASoC: failed to register soundcard %d\n",
1805 goto probe_aux_dev_err
;
1808 #ifdef CONFIG_SND_SOC_AC97_BUS
1809 /* register any AC97 codecs */
1810 for (i
= 0; i
< card
->num_rtd
; i
++) {
1811 ret
= soc_register_ac97_dai_link(&card
->rtd
[i
]);
1813 dev_err(card
->dev
, "ASoC: failed to register AC97:"
1816 soc_unregister_ac97_dai_link(card
->rtd
[i
].codec
);
1817 goto probe_aux_dev_err
;
1822 card
->instantiated
= 1;
1823 snd_soc_dapm_sync(&card
->dapm
);
1824 mutex_unlock(&card
->mutex
);
1829 for (i
= 0; i
< card
->num_aux_devs
; i
++)
1830 soc_remove_aux_dev(card
, i
);
1833 soc_remove_dai_links(card
);
1839 snd_card_free(card
->snd_card
);
1842 mutex_unlock(&card
->mutex
);
1847 /* probes a new socdev */
1848 static int soc_probe(struct platform_device
*pdev
)
1850 struct snd_soc_card
*card
= platform_get_drvdata(pdev
);
1853 * no card, so machine driver should be registering card
1854 * we should not be here in that case so ret error
1859 dev_warn(&pdev
->dev
,
1860 "ASoC: machine %s should use snd_soc_register_card()\n",
1863 /* Bodge while we unpick instantiation */
1864 card
->dev
= &pdev
->dev
;
1866 return snd_soc_register_card(card
);
1869 static int soc_cleanup_card_resources(struct snd_soc_card
*card
)
1873 /* make sure any delayed work runs */
1874 for (i
= 0; i
< card
->num_rtd
; i
++) {
1875 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[i
];
1876 flush_delayed_work(&rtd
->delayed_work
);
1879 /* remove auxiliary devices */
1880 for (i
= 0; i
< card
->num_aux_devs
; i
++)
1881 soc_remove_aux_dev(card
, i
);
1883 /* remove and free each DAI */
1884 soc_remove_dai_links(card
);
1886 soc_cleanup_card_debugfs(card
);
1888 /* remove the card */
1892 snd_soc_dapm_free(&card
->dapm
);
1894 snd_card_free(card
->snd_card
);
1899 /* removes a socdev */
1900 static int soc_remove(struct platform_device
*pdev
)
1902 struct snd_soc_card
*card
= platform_get_drvdata(pdev
);
1904 snd_soc_unregister_card(card
);
1908 int snd_soc_poweroff(struct device
*dev
)
1910 struct snd_soc_card
*card
= dev_get_drvdata(dev
);
1913 if (!card
->instantiated
)
1916 /* Flush out pmdown_time work - we actually do want to run it
1917 * now, we're shutting down so no imminent restart. */
1918 for (i
= 0; i
< card
->num_rtd
; i
++) {
1919 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[i
];
1920 flush_delayed_work(&rtd
->delayed_work
);
1923 snd_soc_dapm_shutdown(card
);
1927 EXPORT_SYMBOL_GPL(snd_soc_poweroff
);
1929 const struct dev_pm_ops snd_soc_pm_ops
= {
1930 .suspend
= snd_soc_suspend
,
1931 .resume
= snd_soc_resume
,
1932 .freeze
= snd_soc_suspend
,
1933 .thaw
= snd_soc_resume
,
1934 .poweroff
= snd_soc_poweroff
,
1935 .restore
= snd_soc_resume
,
1937 EXPORT_SYMBOL_GPL(snd_soc_pm_ops
);
1939 /* ASoC platform driver */
1940 static struct platform_driver soc_driver
= {
1942 .name
= "soc-audio",
1943 .owner
= THIS_MODULE
,
1944 .pm
= &snd_soc_pm_ops
,
1947 .remove
= soc_remove
,
1951 * snd_soc_codec_volatile_register: Report if a register is volatile.
1953 * @codec: CODEC to query.
1954 * @reg: Register to query.
1956 * Boolean function indiciating if a CODEC register is volatile.
1958 int snd_soc_codec_volatile_register(struct snd_soc_codec
*codec
,
1961 if (codec
->volatile_register
)
1962 return codec
->volatile_register(codec
, reg
);
1966 EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register
);
1969 * snd_soc_codec_readable_register: Report if a register is readable.
1971 * @codec: CODEC to query.
1972 * @reg: Register to query.
1974 * Boolean function indicating if a CODEC register is readable.
1976 int snd_soc_codec_readable_register(struct snd_soc_codec
*codec
,
1979 if (codec
->readable_register
)
1980 return codec
->readable_register(codec
, reg
);
1984 EXPORT_SYMBOL_GPL(snd_soc_codec_readable_register
);
1987 * snd_soc_codec_writable_register: Report if a register is writable.
1989 * @codec: CODEC to query.
1990 * @reg: Register to query.
1992 * Boolean function indicating if a CODEC register is writable.
1994 int snd_soc_codec_writable_register(struct snd_soc_codec
*codec
,
1997 if (codec
->writable_register
)
1998 return codec
->writable_register(codec
, reg
);
2002 EXPORT_SYMBOL_GPL(snd_soc_codec_writable_register
);
2004 int snd_soc_platform_read(struct snd_soc_platform
*platform
,
2009 if (!platform
->driver
->read
) {
2010 dev_err(platform
->dev
, "ASoC: platform has no read back\n");
2014 ret
= platform
->driver
->read(platform
, reg
);
2015 dev_dbg(platform
->dev
, "read %x => %x\n", reg
, ret
);
2016 trace_snd_soc_preg_read(platform
, reg
, ret
);
2020 EXPORT_SYMBOL_GPL(snd_soc_platform_read
);
2022 int snd_soc_platform_write(struct snd_soc_platform
*platform
,
2023 unsigned int reg
, unsigned int val
)
2025 if (!platform
->driver
->write
) {
2026 dev_err(platform
->dev
, "ASoC: platform has no write back\n");
2030 dev_dbg(platform
->dev
, "write %x = %x\n", reg
, val
);
2031 trace_snd_soc_preg_write(platform
, reg
, val
);
2032 return platform
->driver
->write(platform
, reg
, val
);
2034 EXPORT_SYMBOL_GPL(snd_soc_platform_write
);
2037 * snd_soc_new_ac97_codec - initailise AC97 device
2038 * @codec: audio codec
2039 * @ops: AC97 bus operations
2040 * @num: AC97 codec number
2042 * Initialises AC97 codec resources for use by ad-hoc devices only.
2044 int snd_soc_new_ac97_codec(struct snd_soc_codec
*codec
,
2045 struct snd_ac97_bus_ops
*ops
, int num
)
2047 mutex_lock(&codec
->mutex
);
2049 codec
->ac97
= kzalloc(sizeof(struct snd_ac97
), GFP_KERNEL
);
2050 if (codec
->ac97
== NULL
) {
2051 mutex_unlock(&codec
->mutex
);
2055 codec
->ac97
->bus
= kzalloc(sizeof(struct snd_ac97_bus
), GFP_KERNEL
);
2056 if (codec
->ac97
->bus
== NULL
) {
2059 mutex_unlock(&codec
->mutex
);
2063 codec
->ac97
->bus
->ops
= ops
;
2064 codec
->ac97
->num
= num
;
2067 * Mark the AC97 device to be created by us. This way we ensure that the
2068 * device will be registered with the device subsystem later on.
2070 codec
->ac97_created
= 1;
2072 mutex_unlock(&codec
->mutex
);
2075 EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec
);
2078 * snd_soc_free_ac97_codec - free AC97 codec device
2079 * @codec: audio codec
2081 * Frees AC97 codec device resources.
2083 void snd_soc_free_ac97_codec(struct snd_soc_codec
*codec
)
2085 mutex_lock(&codec
->mutex
);
2086 #ifdef CONFIG_SND_SOC_AC97_BUS
2087 soc_unregister_ac97_dai_link(codec
);
2089 kfree(codec
->ac97
->bus
);
2092 codec
->ac97_created
= 0;
2093 mutex_unlock(&codec
->mutex
);
2095 EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec
);
2097 unsigned int snd_soc_read(struct snd_soc_codec
*codec
, unsigned int reg
)
2101 ret
= codec
->read(codec
, reg
);
2102 dev_dbg(codec
->dev
, "read %x => %x\n", reg
, ret
);
2103 trace_snd_soc_reg_read(codec
, reg
, ret
);
2107 EXPORT_SYMBOL_GPL(snd_soc_read
);
2109 unsigned int snd_soc_write(struct snd_soc_codec
*codec
,
2110 unsigned int reg
, unsigned int val
)
2112 dev_dbg(codec
->dev
, "write %x = %x\n", reg
, val
);
2113 trace_snd_soc_reg_write(codec
, reg
, val
);
2114 return codec
->write(codec
, reg
, val
);
2116 EXPORT_SYMBOL_GPL(snd_soc_write
);
2118 unsigned int snd_soc_bulk_write_raw(struct snd_soc_codec
*codec
,
2119 unsigned int reg
, const void *data
, size_t len
)
2121 return codec
->bulk_write_raw(codec
, reg
, data
, len
);
2123 EXPORT_SYMBOL_GPL(snd_soc_bulk_write_raw
);
2126 * snd_soc_update_bits - update codec register bits
2127 * @codec: audio codec
2128 * @reg: codec register
2129 * @mask: register mask
2132 * Writes new register value.
2134 * Returns 1 for change, 0 for no change, or negative error code.
2136 int snd_soc_update_bits(struct snd_soc_codec
*codec
, unsigned short reg
,
2137 unsigned int mask
, unsigned int value
)
2140 unsigned int old
, new;
2143 if (codec
->using_regmap
) {
2144 ret
= regmap_update_bits_check(codec
->control_data
, reg
,
2145 mask
, value
, &change
);
2147 ret
= snd_soc_read(codec
, reg
);
2152 new = (old
& ~mask
) | (value
& mask
);
2153 change
= old
!= new;
2155 ret
= snd_soc_write(codec
, reg
, new);
2163 EXPORT_SYMBOL_GPL(snd_soc_update_bits
);
2166 * snd_soc_update_bits_locked - update codec register bits
2167 * @codec: audio codec
2168 * @reg: codec register
2169 * @mask: register mask
2172 * Writes new register value, and takes the codec mutex.
2174 * Returns 1 for change else 0.
2176 int snd_soc_update_bits_locked(struct snd_soc_codec
*codec
,
2177 unsigned short reg
, unsigned int mask
,
2182 mutex_lock(&codec
->mutex
);
2183 change
= snd_soc_update_bits(codec
, reg
, mask
, value
);
2184 mutex_unlock(&codec
->mutex
);
2188 EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked
);
2191 * snd_soc_test_bits - test register for change
2192 * @codec: audio codec
2193 * @reg: codec register
2194 * @mask: register mask
2197 * Tests a register with a new value and checks if the new value is
2198 * different from the old value.
2200 * Returns 1 for change else 0.
2202 int snd_soc_test_bits(struct snd_soc_codec
*codec
, unsigned short reg
,
2203 unsigned int mask
, unsigned int value
)
2206 unsigned int old
, new;
2208 old
= snd_soc_read(codec
, reg
);
2209 new = (old
& ~mask
) | value
;
2210 change
= old
!= new;
2214 EXPORT_SYMBOL_GPL(snd_soc_test_bits
);
2217 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
2218 * @substream: the pcm substream
2219 * @hw: the hardware parameters
2221 * Sets the substream runtime hardware parameters.
2223 int snd_soc_set_runtime_hwparams(struct snd_pcm_substream
*substream
,
2224 const struct snd_pcm_hardware
*hw
)
2226 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2227 runtime
->hw
.info
= hw
->info
;
2228 runtime
->hw
.formats
= hw
->formats
;
2229 runtime
->hw
.period_bytes_min
= hw
->period_bytes_min
;
2230 runtime
->hw
.period_bytes_max
= hw
->period_bytes_max
;
2231 runtime
->hw
.periods_min
= hw
->periods_min
;
2232 runtime
->hw
.periods_max
= hw
->periods_max
;
2233 runtime
->hw
.buffer_bytes_max
= hw
->buffer_bytes_max
;
2234 runtime
->hw
.fifo_size
= hw
->fifo_size
;
2237 EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams
);
2240 * snd_soc_cnew - create new control
2241 * @_template: control template
2242 * @data: control private data
2243 * @long_name: control long name
2244 * @prefix: control name prefix
2246 * Create a new mixer control from a template control.
2248 * Returns 0 for success, else error.
2250 struct snd_kcontrol
*snd_soc_cnew(const struct snd_kcontrol_new
*_template
,
2251 void *data
, const char *long_name
,
2254 struct snd_kcontrol_new
template;
2255 struct snd_kcontrol
*kcontrol
;
2259 memcpy(&template, _template
, sizeof(template));
2263 long_name
= template.name
;
2266 name_len
= strlen(long_name
) + strlen(prefix
) + 2;
2267 name
= kmalloc(name_len
, GFP_KERNEL
);
2271 snprintf(name
, name_len
, "%s %s", prefix
, long_name
);
2273 template.name
= name
;
2275 template.name
= long_name
;
2278 kcontrol
= snd_ctl_new1(&template, data
);
2284 EXPORT_SYMBOL_GPL(snd_soc_cnew
);
2286 static int snd_soc_add_controls(struct snd_card
*card
, struct device
*dev
,
2287 const struct snd_kcontrol_new
*controls
, int num_controls
,
2288 const char *prefix
, void *data
)
2292 for (i
= 0; i
< num_controls
; i
++) {
2293 const struct snd_kcontrol_new
*control
= &controls
[i
];
2294 err
= snd_ctl_add(card
, snd_soc_cnew(control
, data
,
2295 control
->name
, prefix
));
2297 dev_err(dev
, "ASoC: Failed to add %s: %d\n",
2298 control
->name
, err
);
2307 * snd_soc_add_codec_controls - add an array of controls to a codec.
2308 * Convenience function to add a list of controls. Many codecs were
2309 * duplicating this code.
2311 * @codec: codec to add controls to
2312 * @controls: array of controls to add
2313 * @num_controls: number of elements in the array
2315 * Return 0 for success, else error.
2317 int snd_soc_add_codec_controls(struct snd_soc_codec
*codec
,
2318 const struct snd_kcontrol_new
*controls
, int num_controls
)
2320 struct snd_card
*card
= codec
->card
->snd_card
;
2322 return snd_soc_add_controls(card
, codec
->dev
, controls
, num_controls
,
2323 codec
->name_prefix
, codec
);
2325 EXPORT_SYMBOL_GPL(snd_soc_add_codec_controls
);
2328 * snd_soc_add_platform_controls - add an array of controls to a platform.
2329 * Convenience function to add a list of controls.
2331 * @platform: platform to add controls to
2332 * @controls: array of controls to add
2333 * @num_controls: number of elements in the array
2335 * Return 0 for success, else error.
2337 int snd_soc_add_platform_controls(struct snd_soc_platform
*platform
,
2338 const struct snd_kcontrol_new
*controls
, int num_controls
)
2340 struct snd_card
*card
= platform
->card
->snd_card
;
2342 return snd_soc_add_controls(card
, platform
->dev
, controls
, num_controls
,
2345 EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls
);
2348 * snd_soc_add_card_controls - add an array of controls to a SoC card.
2349 * Convenience function to add a list of controls.
2351 * @soc_card: SoC card to add controls to
2352 * @controls: array of controls to add
2353 * @num_controls: number of elements in the array
2355 * Return 0 for success, else error.
2357 int snd_soc_add_card_controls(struct snd_soc_card
*soc_card
,
2358 const struct snd_kcontrol_new
*controls
, int num_controls
)
2360 struct snd_card
*card
= soc_card
->snd_card
;
2362 return snd_soc_add_controls(card
, soc_card
->dev
, controls
, num_controls
,
2365 EXPORT_SYMBOL_GPL(snd_soc_add_card_controls
);
2368 * snd_soc_add_dai_controls - add an array of controls to a DAI.
2369 * Convienience function to add a list of controls.
2371 * @dai: DAI to add controls to
2372 * @controls: array of controls to add
2373 * @num_controls: number of elements in the array
2375 * Return 0 for success, else error.
2377 int snd_soc_add_dai_controls(struct snd_soc_dai
*dai
,
2378 const struct snd_kcontrol_new
*controls
, int num_controls
)
2380 struct snd_card
*card
= dai
->card
->snd_card
;
2382 return snd_soc_add_controls(card
, dai
->dev
, controls
, num_controls
,
2385 EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls
);
2388 * snd_soc_info_enum_double - enumerated double mixer info callback
2389 * @kcontrol: mixer control
2390 * @uinfo: control element information
2392 * Callback to provide information about a double enumerated
2395 * Returns 0 for success.
2397 int snd_soc_info_enum_double(struct snd_kcontrol
*kcontrol
,
2398 struct snd_ctl_elem_info
*uinfo
)
2400 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2402 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2403 uinfo
->count
= e
->shift_l
== e
->shift_r
? 1 : 2;
2404 uinfo
->value
.enumerated
.items
= e
->max
;
2406 if (uinfo
->value
.enumerated
.item
> e
->max
- 1)
2407 uinfo
->value
.enumerated
.item
= e
->max
- 1;
2408 strcpy(uinfo
->value
.enumerated
.name
,
2409 e
->texts
[uinfo
->value
.enumerated
.item
]);
2412 EXPORT_SYMBOL_GPL(snd_soc_info_enum_double
);
2415 * snd_soc_get_enum_double - enumerated double mixer get callback
2416 * @kcontrol: mixer control
2417 * @ucontrol: control element information
2419 * Callback to get the value of a double enumerated mixer.
2421 * Returns 0 for success.
2423 int snd_soc_get_enum_double(struct snd_kcontrol
*kcontrol
,
2424 struct snd_ctl_elem_value
*ucontrol
)
2426 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2427 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2430 val
= snd_soc_read(codec
, e
->reg
);
2431 ucontrol
->value
.enumerated
.item
[0]
2432 = (val
>> e
->shift_l
) & e
->mask
;
2433 if (e
->shift_l
!= e
->shift_r
)
2434 ucontrol
->value
.enumerated
.item
[1] =
2435 (val
>> e
->shift_r
) & e
->mask
;
2439 EXPORT_SYMBOL_GPL(snd_soc_get_enum_double
);
2442 * snd_soc_put_enum_double - enumerated double mixer put callback
2443 * @kcontrol: mixer control
2444 * @ucontrol: control element information
2446 * Callback to set the value of a double enumerated mixer.
2448 * Returns 0 for success.
2450 int snd_soc_put_enum_double(struct snd_kcontrol
*kcontrol
,
2451 struct snd_ctl_elem_value
*ucontrol
)
2453 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2454 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2458 if (ucontrol
->value
.enumerated
.item
[0] > e
->max
- 1)
2460 val
= ucontrol
->value
.enumerated
.item
[0] << e
->shift_l
;
2461 mask
= e
->mask
<< e
->shift_l
;
2462 if (e
->shift_l
!= e
->shift_r
) {
2463 if (ucontrol
->value
.enumerated
.item
[1] > e
->max
- 1)
2465 val
|= ucontrol
->value
.enumerated
.item
[1] << e
->shift_r
;
2466 mask
|= e
->mask
<< e
->shift_r
;
2469 return snd_soc_update_bits_locked(codec
, e
->reg
, mask
, val
);
2471 EXPORT_SYMBOL_GPL(snd_soc_put_enum_double
);
2474 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2475 * @kcontrol: mixer control
2476 * @ucontrol: control element information
2478 * Callback to get the value of a double semi enumerated mixer.
2480 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2481 * used for handling bitfield coded enumeration for example.
2483 * Returns 0 for success.
2485 int snd_soc_get_value_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
;
2490 unsigned int reg_val
, val
, mux
;
2492 reg_val
= snd_soc_read(codec
, e
->reg
);
2493 val
= (reg_val
>> e
->shift_l
) & e
->mask
;
2494 for (mux
= 0; mux
< e
->max
; mux
++) {
2495 if (val
== e
->values
[mux
])
2498 ucontrol
->value
.enumerated
.item
[0] = mux
;
2499 if (e
->shift_l
!= e
->shift_r
) {
2500 val
= (reg_val
>> e
->shift_r
) & e
->mask
;
2501 for (mux
= 0; mux
< e
->max
; mux
++) {
2502 if (val
== e
->values
[mux
])
2505 ucontrol
->value
.enumerated
.item
[1] = mux
;
2510 EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double
);
2513 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2514 * @kcontrol: mixer control
2515 * @ucontrol: control element information
2517 * Callback to set the value of a double semi enumerated mixer.
2519 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2520 * used for handling bitfield coded enumeration for example.
2522 * Returns 0 for success.
2524 int snd_soc_put_value_enum_double(struct snd_kcontrol
*kcontrol
,
2525 struct snd_ctl_elem_value
*ucontrol
)
2527 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2528 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2532 if (ucontrol
->value
.enumerated
.item
[0] > e
->max
- 1)
2534 val
= e
->values
[ucontrol
->value
.enumerated
.item
[0]] << e
->shift_l
;
2535 mask
= e
->mask
<< e
->shift_l
;
2536 if (e
->shift_l
!= e
->shift_r
) {
2537 if (ucontrol
->value
.enumerated
.item
[1] > e
->max
- 1)
2539 val
|= e
->values
[ucontrol
->value
.enumerated
.item
[1]] << e
->shift_r
;
2540 mask
|= e
->mask
<< e
->shift_r
;
2543 return snd_soc_update_bits_locked(codec
, e
->reg
, mask
, val
);
2545 EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double
);
2548 * snd_soc_info_enum_ext - external enumerated single mixer info callback
2549 * @kcontrol: mixer control
2550 * @uinfo: control element information
2552 * Callback to provide information about an external enumerated
2555 * Returns 0 for success.
2557 int snd_soc_info_enum_ext(struct snd_kcontrol
*kcontrol
,
2558 struct snd_ctl_elem_info
*uinfo
)
2560 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2562 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2564 uinfo
->value
.enumerated
.items
= e
->max
;
2566 if (uinfo
->value
.enumerated
.item
> e
->max
- 1)
2567 uinfo
->value
.enumerated
.item
= e
->max
- 1;
2568 strcpy(uinfo
->value
.enumerated
.name
,
2569 e
->texts
[uinfo
->value
.enumerated
.item
]);
2572 EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext
);
2575 * snd_soc_info_volsw_ext - external single mixer info callback
2576 * @kcontrol: mixer control
2577 * @uinfo: control element information
2579 * Callback to provide information about a single external mixer control.
2581 * Returns 0 for success.
2583 int snd_soc_info_volsw_ext(struct snd_kcontrol
*kcontrol
,
2584 struct snd_ctl_elem_info
*uinfo
)
2586 int max
= kcontrol
->private_value
;
2588 if (max
== 1 && !strstr(kcontrol
->id
.name
, " Volume"))
2589 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
2591 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2594 uinfo
->value
.integer
.min
= 0;
2595 uinfo
->value
.integer
.max
= max
;
2598 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext
);
2601 * snd_soc_info_volsw - single mixer info callback
2602 * @kcontrol: mixer control
2603 * @uinfo: control element information
2605 * Callback to provide information about a single mixer control, or a double
2606 * mixer control that spans 2 registers.
2608 * Returns 0 for success.
2610 int snd_soc_info_volsw(struct snd_kcontrol
*kcontrol
,
2611 struct snd_ctl_elem_info
*uinfo
)
2613 struct soc_mixer_control
*mc
=
2614 (struct soc_mixer_control
*)kcontrol
->private_value
;
2617 if (!mc
->platform_max
)
2618 mc
->platform_max
= mc
->max
;
2619 platform_max
= mc
->platform_max
;
2621 if (platform_max
== 1 && !strstr(kcontrol
->id
.name
, " Volume"))
2622 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
2624 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2626 uinfo
->count
= snd_soc_volsw_is_stereo(mc
) ? 2 : 1;
2627 uinfo
->value
.integer
.min
= 0;
2628 uinfo
->value
.integer
.max
= platform_max
;
2631 EXPORT_SYMBOL_GPL(snd_soc_info_volsw
);
2634 * snd_soc_get_volsw - single mixer get callback
2635 * @kcontrol: mixer control
2636 * @ucontrol: control element information
2638 * Callback to get the value of a single mixer control, or a double mixer
2639 * control that spans 2 registers.
2641 * Returns 0 for success.
2643 int snd_soc_get_volsw(struct snd_kcontrol
*kcontrol
,
2644 struct snd_ctl_elem_value
*ucontrol
)
2646 struct soc_mixer_control
*mc
=
2647 (struct soc_mixer_control
*)kcontrol
->private_value
;
2648 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2649 unsigned int reg
= mc
->reg
;
2650 unsigned int reg2
= mc
->rreg
;
2651 unsigned int shift
= mc
->shift
;
2652 unsigned int rshift
= mc
->rshift
;
2654 unsigned int mask
= (1 << fls(max
)) - 1;
2655 unsigned int invert
= mc
->invert
;
2657 ucontrol
->value
.integer
.value
[0] =
2658 (snd_soc_read(codec
, reg
) >> shift
) & mask
;
2660 ucontrol
->value
.integer
.value
[0] =
2661 max
- ucontrol
->value
.integer
.value
[0];
2663 if (snd_soc_volsw_is_stereo(mc
)) {
2665 ucontrol
->value
.integer
.value
[1] =
2666 (snd_soc_read(codec
, reg
) >> rshift
) & mask
;
2668 ucontrol
->value
.integer
.value
[1] =
2669 (snd_soc_read(codec
, reg2
) >> shift
) & mask
;
2671 ucontrol
->value
.integer
.value
[1] =
2672 max
- ucontrol
->value
.integer
.value
[1];
2677 EXPORT_SYMBOL_GPL(snd_soc_get_volsw
);
2680 * snd_soc_put_volsw - single mixer put callback
2681 * @kcontrol: mixer control
2682 * @ucontrol: control element information
2684 * Callback to set the value of a single mixer control, or a double mixer
2685 * control that spans 2 registers.
2687 * Returns 0 for success.
2689 int snd_soc_put_volsw(struct snd_kcontrol
*kcontrol
,
2690 struct snd_ctl_elem_value
*ucontrol
)
2692 struct soc_mixer_control
*mc
=
2693 (struct soc_mixer_control
*)kcontrol
->private_value
;
2694 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2695 unsigned int reg
= mc
->reg
;
2696 unsigned int reg2
= mc
->rreg
;
2697 unsigned int shift
= mc
->shift
;
2698 unsigned int rshift
= mc
->rshift
;
2700 unsigned int mask
= (1 << fls(max
)) - 1;
2701 unsigned int invert
= mc
->invert
;
2704 unsigned int val2
= 0;
2705 unsigned int val
, val_mask
;
2707 val
= (ucontrol
->value
.integer
.value
[0] & mask
);
2710 val_mask
= mask
<< shift
;
2712 if (snd_soc_volsw_is_stereo(mc
)) {
2713 val2
= (ucontrol
->value
.integer
.value
[1] & mask
);
2717 val_mask
|= mask
<< rshift
;
2718 val
|= val2
<< rshift
;
2720 val2
= val2
<< shift
;
2724 err
= snd_soc_update_bits_locked(codec
, reg
, val_mask
, val
);
2729 err
= snd_soc_update_bits_locked(codec
, reg2
, val_mask
, val2
);
2733 EXPORT_SYMBOL_GPL(snd_soc_put_volsw
);
2736 * snd_soc_get_volsw_sx - single mixer get callback
2737 * @kcontrol: mixer control
2738 * @ucontrol: control element information
2740 * Callback to get the value of a single mixer control, or a double mixer
2741 * control that spans 2 registers.
2743 * Returns 0 for success.
2745 int snd_soc_get_volsw_sx(struct snd_kcontrol
*kcontrol
,
2746 struct snd_ctl_elem_value
*ucontrol
)
2748 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2749 struct soc_mixer_control
*mc
=
2750 (struct soc_mixer_control
*)kcontrol
->private_value
;
2752 unsigned int reg
= mc
->reg
;
2753 unsigned int reg2
= mc
->rreg
;
2754 unsigned int shift
= mc
->shift
;
2755 unsigned int rshift
= mc
->rshift
;
2758 int mask
= (1 << (fls(min
+ max
) - 1)) - 1;
2760 ucontrol
->value
.integer
.value
[0] =
2761 ((snd_soc_read(codec
, reg
) >> shift
) - min
) & mask
;
2763 if (snd_soc_volsw_is_stereo(mc
))
2764 ucontrol
->value
.integer
.value
[1] =
2765 ((snd_soc_read(codec
, reg2
) >> rshift
) - min
) & mask
;
2769 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_sx
);
2772 * snd_soc_put_volsw_sx - double mixer set callback
2773 * @kcontrol: mixer control
2774 * @uinfo: control element information
2776 * Callback to set the value of a double mixer control that spans 2 registers.
2778 * Returns 0 for success.
2780 int snd_soc_put_volsw_sx(struct snd_kcontrol
*kcontrol
,
2781 struct snd_ctl_elem_value
*ucontrol
)
2783 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2784 struct soc_mixer_control
*mc
=
2785 (struct soc_mixer_control
*)kcontrol
->private_value
;
2787 unsigned int reg
= mc
->reg
;
2788 unsigned int reg2
= mc
->rreg
;
2789 unsigned int shift
= mc
->shift
;
2790 unsigned int rshift
= mc
->rshift
;
2793 int mask
= (1 << (fls(min
+ max
) - 1)) - 1;
2795 unsigned short val
, val_mask
, val2
= 0;
2797 val_mask
= mask
<< shift
;
2798 val
= (ucontrol
->value
.integer
.value
[0] + min
) & mask
;
2801 err
= snd_soc_update_bits_locked(codec
, reg
, val_mask
, val
);
2805 if (snd_soc_volsw_is_stereo(mc
)) {
2806 val_mask
= mask
<< rshift
;
2807 val2
= (ucontrol
->value
.integer
.value
[1] + min
) & mask
;
2808 val2
= val2
<< rshift
;
2810 if (snd_soc_update_bits_locked(codec
, reg2
, val_mask
, val2
))
2815 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_sx
);
2818 * snd_soc_info_volsw_s8 - signed mixer info callback
2819 * @kcontrol: mixer control
2820 * @uinfo: control element information
2822 * Callback to provide information about a signed mixer control.
2824 * Returns 0 for success.
2826 int snd_soc_info_volsw_s8(struct snd_kcontrol
*kcontrol
,
2827 struct snd_ctl_elem_info
*uinfo
)
2829 struct soc_mixer_control
*mc
=
2830 (struct soc_mixer_control
*)kcontrol
->private_value
;
2834 if (!mc
->platform_max
)
2835 mc
->platform_max
= mc
->max
;
2836 platform_max
= mc
->platform_max
;
2838 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2840 uinfo
->value
.integer
.min
= 0;
2841 uinfo
->value
.integer
.max
= platform_max
- min
;
2844 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8
);
2847 * snd_soc_get_volsw_s8 - signed mixer get callback
2848 * @kcontrol: mixer control
2849 * @ucontrol: control element information
2851 * Callback to get the value of a signed mixer control.
2853 * Returns 0 for success.
2855 int snd_soc_get_volsw_s8(struct snd_kcontrol
*kcontrol
,
2856 struct snd_ctl_elem_value
*ucontrol
)
2858 struct soc_mixer_control
*mc
=
2859 (struct soc_mixer_control
*)kcontrol
->private_value
;
2860 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2861 unsigned int reg
= mc
->reg
;
2863 int val
= snd_soc_read(codec
, reg
);
2865 ucontrol
->value
.integer
.value
[0] =
2866 ((signed char)(val
& 0xff))-min
;
2867 ucontrol
->value
.integer
.value
[1] =
2868 ((signed char)((val
>> 8) & 0xff))-min
;
2871 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8
);
2874 * snd_soc_put_volsw_sgn - signed mixer put callback
2875 * @kcontrol: mixer control
2876 * @ucontrol: control element information
2878 * Callback to set the value of a signed mixer control.
2880 * Returns 0 for success.
2882 int snd_soc_put_volsw_s8(struct snd_kcontrol
*kcontrol
,
2883 struct snd_ctl_elem_value
*ucontrol
)
2885 struct soc_mixer_control
*mc
=
2886 (struct soc_mixer_control
*)kcontrol
->private_value
;
2887 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2888 unsigned int reg
= mc
->reg
;
2892 val
= (ucontrol
->value
.integer
.value
[0]+min
) & 0xff;
2893 val
|= ((ucontrol
->value
.integer
.value
[1]+min
) & 0xff) << 8;
2895 return snd_soc_update_bits_locked(codec
, reg
, 0xffff, val
);
2897 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8
);
2900 * snd_soc_info_volsw_range - single mixer info callback with range.
2901 * @kcontrol: mixer control
2902 * @uinfo: control element information
2904 * Callback to provide information, within a range, about a single
2907 * returns 0 for success.
2909 int snd_soc_info_volsw_range(struct snd_kcontrol
*kcontrol
,
2910 struct snd_ctl_elem_info
*uinfo
)
2912 struct soc_mixer_control
*mc
=
2913 (struct soc_mixer_control
*)kcontrol
->private_value
;
2917 if (!mc
->platform_max
)
2918 mc
->platform_max
= mc
->max
;
2919 platform_max
= mc
->platform_max
;
2921 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2922 uinfo
->count
= snd_soc_volsw_is_stereo(mc
) ? 2 : 1;
2923 uinfo
->value
.integer
.min
= 0;
2924 uinfo
->value
.integer
.max
= platform_max
- min
;
2928 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_range
);
2931 * snd_soc_put_volsw_range - single mixer put value callback with range.
2932 * @kcontrol: mixer control
2933 * @ucontrol: control element information
2935 * Callback to set the value, within a range, for a single mixer control.
2937 * Returns 0 for success.
2939 int snd_soc_put_volsw_range(struct snd_kcontrol
*kcontrol
,
2940 struct snd_ctl_elem_value
*ucontrol
)
2942 struct soc_mixer_control
*mc
=
2943 (struct soc_mixer_control
*)kcontrol
->private_value
;
2944 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2945 unsigned int reg
= mc
->reg
;
2946 unsigned int rreg
= mc
->rreg
;
2947 unsigned int shift
= mc
->shift
;
2950 unsigned int mask
= (1 << fls(max
)) - 1;
2951 unsigned int invert
= mc
->invert
;
2952 unsigned int val
, val_mask
;
2955 val
= ((ucontrol
->value
.integer
.value
[0] + min
) & mask
);
2958 val_mask
= mask
<< shift
;
2961 ret
= snd_soc_update_bits_locked(codec
, reg
, val_mask
, val
);
2965 if (snd_soc_volsw_is_stereo(mc
)) {
2966 val
= ((ucontrol
->value
.integer
.value
[1] + min
) & mask
);
2969 val_mask
= mask
<< shift
;
2972 ret
= snd_soc_update_bits_locked(codec
, rreg
, val_mask
, val
);
2977 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_range
);
2980 * snd_soc_get_volsw_range - single mixer get callback with range
2981 * @kcontrol: mixer control
2982 * @ucontrol: control element information
2984 * Callback to get the value, within a range, of a single mixer control.
2986 * Returns 0 for success.
2988 int snd_soc_get_volsw_range(struct snd_kcontrol
*kcontrol
,
2989 struct snd_ctl_elem_value
*ucontrol
)
2991 struct soc_mixer_control
*mc
=
2992 (struct soc_mixer_control
*)kcontrol
->private_value
;
2993 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2994 unsigned int reg
= mc
->reg
;
2995 unsigned int rreg
= mc
->rreg
;
2996 unsigned int shift
= mc
->shift
;
2999 unsigned int mask
= (1 << fls(max
)) - 1;
3000 unsigned int invert
= mc
->invert
;
3002 ucontrol
->value
.integer
.value
[0] =
3003 (snd_soc_read(codec
, reg
) >> shift
) & mask
;
3005 ucontrol
->value
.integer
.value
[0] =
3006 max
- ucontrol
->value
.integer
.value
[0];
3007 ucontrol
->value
.integer
.value
[0] =
3008 ucontrol
->value
.integer
.value
[0] - min
;
3010 if (snd_soc_volsw_is_stereo(mc
)) {
3011 ucontrol
->value
.integer
.value
[1] =
3012 (snd_soc_read(codec
, rreg
) >> shift
) & mask
;
3014 ucontrol
->value
.integer
.value
[1] =
3015 max
- ucontrol
->value
.integer
.value
[1];
3016 ucontrol
->value
.integer
.value
[1] =
3017 ucontrol
->value
.integer
.value
[1] - min
;
3022 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_range
);
3025 * snd_soc_limit_volume - Set new limit to an existing volume control.
3027 * @codec: where to look for the control
3028 * @name: Name of the control
3029 * @max: new maximum limit
3031 * Return 0 for success, else error.
3033 int snd_soc_limit_volume(struct snd_soc_codec
*codec
,
3034 const char *name
, int max
)
3036 struct snd_card
*card
= codec
->card
->snd_card
;
3037 struct snd_kcontrol
*kctl
;
3038 struct soc_mixer_control
*mc
;
3042 /* Sanity check for name and max */
3043 if (unlikely(!name
|| max
<= 0))
3046 list_for_each_entry(kctl
, &card
->controls
, list
) {
3047 if (!strncmp(kctl
->id
.name
, name
, sizeof(kctl
->id
.name
))) {
3053 mc
= (struct soc_mixer_control
*)kctl
->private_value
;
3054 if (max
<= mc
->max
) {
3055 mc
->platform_max
= max
;
3061 EXPORT_SYMBOL_GPL(snd_soc_limit_volume
);
3063 int snd_soc_bytes_info(struct snd_kcontrol
*kcontrol
,
3064 struct snd_ctl_elem_info
*uinfo
)
3066 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3067 struct soc_bytes
*params
= (void *)kcontrol
->private_value
;
3069 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BYTES
;
3070 uinfo
->count
= params
->num_regs
* codec
->val_bytes
;
3074 EXPORT_SYMBOL_GPL(snd_soc_bytes_info
);
3076 int snd_soc_bytes_get(struct snd_kcontrol
*kcontrol
,
3077 struct snd_ctl_elem_value
*ucontrol
)
3079 struct soc_bytes
*params
= (void *)kcontrol
->private_value
;
3080 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3083 if (codec
->using_regmap
)
3084 ret
= regmap_raw_read(codec
->control_data
, params
->base
,
3085 ucontrol
->value
.bytes
.data
,
3086 params
->num_regs
* codec
->val_bytes
);
3090 /* Hide any masked bytes to ensure consistent data reporting */
3091 if (ret
== 0 && params
->mask
) {
3092 switch (codec
->val_bytes
) {
3094 ucontrol
->value
.bytes
.data
[0] &= ~params
->mask
;
3097 ((u16
*)(&ucontrol
->value
.bytes
.data
))[0]
3101 ((u32
*)(&ucontrol
->value
.bytes
.data
))[0]
3111 EXPORT_SYMBOL_GPL(snd_soc_bytes_get
);
3113 int snd_soc_bytes_put(struct snd_kcontrol
*kcontrol
,
3114 struct snd_ctl_elem_value
*ucontrol
)
3116 struct soc_bytes
*params
= (void *)kcontrol
->private_value
;
3117 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3122 if (!codec
->using_regmap
)
3125 data
= ucontrol
->value
.bytes
.data
;
3126 len
= params
->num_regs
* codec
->val_bytes
;
3129 * If we've got a mask then we need to preserve the register
3130 * bits. We shouldn't modify the incoming data so take a
3134 ret
= regmap_read(codec
->control_data
, params
->base
, &val
);
3138 val
&= params
->mask
;
3140 data
= kmemdup(data
, len
, GFP_KERNEL
);
3144 switch (codec
->val_bytes
) {
3146 ((u8
*)data
)[0] &= ~params
->mask
;
3147 ((u8
*)data
)[0] |= val
;
3150 ((u16
*)data
)[0] &= cpu_to_be16(~params
->mask
);
3151 ((u16
*)data
)[0] |= cpu_to_be16(val
);
3154 ((u32
*)data
)[0] &= cpu_to_be32(~params
->mask
);
3155 ((u32
*)data
)[0] |= cpu_to_be32(val
);
3162 ret
= regmap_raw_write(codec
->control_data
, params
->base
,
3170 EXPORT_SYMBOL_GPL(snd_soc_bytes_put
);
3173 * snd_soc_info_xr_sx - signed multi register info callback
3174 * @kcontrol: mreg control
3175 * @uinfo: control element information
3177 * Callback to provide information of a control that can
3178 * span multiple codec registers which together
3179 * forms a single signed value in a MSB/LSB manner.
3181 * Returns 0 for success.
3183 int snd_soc_info_xr_sx(struct snd_kcontrol
*kcontrol
,
3184 struct snd_ctl_elem_info
*uinfo
)
3186 struct soc_mreg_control
*mc
=
3187 (struct soc_mreg_control
*)kcontrol
->private_value
;
3188 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
3190 uinfo
->value
.integer
.min
= mc
->min
;
3191 uinfo
->value
.integer
.max
= mc
->max
;
3195 EXPORT_SYMBOL_GPL(snd_soc_info_xr_sx
);
3198 * snd_soc_get_xr_sx - signed multi register get callback
3199 * @kcontrol: mreg control
3200 * @ucontrol: control element information
3202 * Callback to get the value of a control that can span
3203 * multiple codec registers which together forms a single
3204 * signed value in a MSB/LSB manner. The control supports
3205 * specifying total no of bits used to allow for bitfields
3206 * across the multiple codec registers.
3208 * Returns 0 for success.
3210 int snd_soc_get_xr_sx(struct snd_kcontrol
*kcontrol
,
3211 struct snd_ctl_elem_value
*ucontrol
)
3213 struct soc_mreg_control
*mc
=
3214 (struct soc_mreg_control
*)kcontrol
->private_value
;
3215 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3216 unsigned int regbase
= mc
->regbase
;
3217 unsigned int regcount
= mc
->regcount
;
3218 unsigned int regwshift
= codec
->driver
->reg_word_size
* BITS_PER_BYTE
;
3219 unsigned int regwmask
= (1<<regwshift
)-1;
3220 unsigned int invert
= mc
->invert
;
3221 unsigned long mask
= (1UL<<mc
->nbits
)-1;
3225 unsigned long regval
;
3228 for (i
= 0; i
< regcount
; i
++) {
3229 regval
= snd_soc_read(codec
, regbase
+i
) & regwmask
;
3230 val
|= regval
<< (regwshift
*(regcount
-i
-1));
3233 if (min
< 0 && val
> max
)
3237 ucontrol
->value
.integer
.value
[0] = val
;
3241 EXPORT_SYMBOL_GPL(snd_soc_get_xr_sx
);
3244 * snd_soc_put_xr_sx - signed multi register get callback
3245 * @kcontrol: mreg control
3246 * @ucontrol: control element information
3248 * Callback to set the value of a control that can span
3249 * multiple codec registers which together forms a single
3250 * signed value in a MSB/LSB manner. The control supports
3251 * specifying total no of bits used to allow for bitfields
3252 * across the multiple codec registers.
3254 * Returns 0 for success.
3256 int snd_soc_put_xr_sx(struct snd_kcontrol
*kcontrol
,
3257 struct snd_ctl_elem_value
*ucontrol
)
3259 struct soc_mreg_control
*mc
=
3260 (struct soc_mreg_control
*)kcontrol
->private_value
;
3261 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3262 unsigned int regbase
= mc
->regbase
;
3263 unsigned int regcount
= mc
->regcount
;
3264 unsigned int regwshift
= codec
->driver
->reg_word_size
* BITS_PER_BYTE
;
3265 unsigned int regwmask
= (1<<regwshift
)-1;
3266 unsigned int invert
= mc
->invert
;
3267 unsigned long mask
= (1UL<<mc
->nbits
)-1;
3269 long val
= ucontrol
->value
.integer
.value
[0];
3270 unsigned int i
, regval
, regmask
;
3276 for (i
= 0; i
< regcount
; i
++) {
3277 regval
= (val
>> (regwshift
*(regcount
-i
-1))) & regwmask
;
3278 regmask
= (mask
>> (regwshift
*(regcount
-i
-1))) & regwmask
;
3279 err
= snd_soc_update_bits_locked(codec
, regbase
+i
,
3287 EXPORT_SYMBOL_GPL(snd_soc_put_xr_sx
);
3290 * snd_soc_get_strobe - strobe get callback
3291 * @kcontrol: mixer control
3292 * @ucontrol: control element information
3294 * Callback get the value of a strobe mixer control.
3296 * Returns 0 for success.
3298 int snd_soc_get_strobe(struct snd_kcontrol
*kcontrol
,
3299 struct snd_ctl_elem_value
*ucontrol
)
3301 struct soc_mixer_control
*mc
=
3302 (struct soc_mixer_control
*)kcontrol
->private_value
;
3303 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3304 unsigned int reg
= mc
->reg
;
3305 unsigned int shift
= mc
->shift
;
3306 unsigned int mask
= 1 << shift
;
3307 unsigned int invert
= mc
->invert
!= 0;
3308 unsigned int val
= snd_soc_read(codec
, reg
) & mask
;
3310 if (shift
!= 0 && val
!= 0)
3312 ucontrol
->value
.enumerated
.item
[0] = val
^ invert
;
3316 EXPORT_SYMBOL_GPL(snd_soc_get_strobe
);
3319 * snd_soc_put_strobe - strobe put callback
3320 * @kcontrol: mixer control
3321 * @ucontrol: control element information
3323 * Callback strobe a register bit to high then low (or the inverse)
3324 * in one pass of a single mixer enum control.
3326 * Returns 1 for success.
3328 int snd_soc_put_strobe(struct snd_kcontrol
*kcontrol
,
3329 struct snd_ctl_elem_value
*ucontrol
)
3331 struct soc_mixer_control
*mc
=
3332 (struct soc_mixer_control
*)kcontrol
->private_value
;
3333 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3334 unsigned int reg
= mc
->reg
;
3335 unsigned int shift
= mc
->shift
;
3336 unsigned int mask
= 1 << shift
;
3337 unsigned int invert
= mc
->invert
!= 0;
3338 unsigned int strobe
= ucontrol
->value
.enumerated
.item
[0] != 0;
3339 unsigned int val1
= (strobe
^ invert
) ? mask
: 0;
3340 unsigned int val2
= (strobe
^ invert
) ? 0 : mask
;
3343 err
= snd_soc_update_bits_locked(codec
, reg
, mask
, val1
);
3347 err
= snd_soc_update_bits_locked(codec
, reg
, mask
, val2
);
3350 EXPORT_SYMBOL_GPL(snd_soc_put_strobe
);
3353 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
3355 * @clk_id: DAI specific clock ID
3356 * @freq: new clock frequency in Hz
3357 * @dir: new clock direction - input/output.
3359 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
3361 int snd_soc_dai_set_sysclk(struct snd_soc_dai
*dai
, int clk_id
,
3362 unsigned int freq
, int dir
)
3364 if (dai
->driver
&& dai
->driver
->ops
->set_sysclk
)
3365 return dai
->driver
->ops
->set_sysclk(dai
, clk_id
, freq
, dir
);
3366 else if (dai
->codec
&& dai
->codec
->driver
->set_sysclk
)
3367 return dai
->codec
->driver
->set_sysclk(dai
->codec
, clk_id
, 0,
3372 EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk
);
3375 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
3377 * @clk_id: DAI specific clock ID
3378 * @source: Source for the clock
3379 * @freq: new clock frequency in Hz
3380 * @dir: new clock direction - input/output.
3382 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
3384 int snd_soc_codec_set_sysclk(struct snd_soc_codec
*codec
, int clk_id
,
3385 int source
, unsigned int freq
, int dir
)
3387 if (codec
->driver
->set_sysclk
)
3388 return codec
->driver
->set_sysclk(codec
, clk_id
, source
,
3393 EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk
);
3396 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
3398 * @div_id: DAI specific clock divider ID
3399 * @div: new clock divisor.
3401 * Configures the clock dividers. This is used to derive the best DAI bit and
3402 * frame clocks from the system or master clock. It's best to set the DAI bit
3403 * and frame clocks as low as possible to save system power.
3405 int snd_soc_dai_set_clkdiv(struct snd_soc_dai
*dai
,
3406 int div_id
, int div
)
3408 if (dai
->driver
&& dai
->driver
->ops
->set_clkdiv
)
3409 return dai
->driver
->ops
->set_clkdiv(dai
, div_id
, div
);
3413 EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv
);
3416 * snd_soc_dai_set_pll - configure DAI PLL.
3418 * @pll_id: DAI specific PLL ID
3419 * @source: DAI specific source for the PLL
3420 * @freq_in: PLL input clock frequency in Hz
3421 * @freq_out: requested PLL output clock frequency in Hz
3423 * Configures and enables PLL to generate output clock based on input clock.
3425 int snd_soc_dai_set_pll(struct snd_soc_dai
*dai
, int pll_id
, int source
,
3426 unsigned int freq_in
, unsigned int freq_out
)
3428 if (dai
->driver
&& dai
->driver
->ops
->set_pll
)
3429 return dai
->driver
->ops
->set_pll(dai
, pll_id
, source
,
3431 else if (dai
->codec
&& dai
->codec
->driver
->set_pll
)
3432 return dai
->codec
->driver
->set_pll(dai
->codec
, pll_id
, source
,
3437 EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll
);
3440 * snd_soc_codec_set_pll - configure codec PLL.
3442 * @pll_id: DAI specific PLL ID
3443 * @source: DAI specific source for the PLL
3444 * @freq_in: PLL input clock frequency in Hz
3445 * @freq_out: requested PLL output clock frequency in Hz
3447 * Configures and enables PLL to generate output clock based on input clock.
3449 int snd_soc_codec_set_pll(struct snd_soc_codec
*codec
, int pll_id
, int source
,
3450 unsigned int freq_in
, unsigned int freq_out
)
3452 if (codec
->driver
->set_pll
)
3453 return codec
->driver
->set_pll(codec
, pll_id
, source
,
3458 EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll
);
3461 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3463 * @fmt: SND_SOC_DAIFMT_ format value.
3465 * Configures the DAI hardware format and clocking.
3467 int snd_soc_dai_set_fmt(struct snd_soc_dai
*dai
, unsigned int fmt
)
3469 if (dai
->driver
== NULL
)
3471 if (dai
->driver
->ops
->set_fmt
== NULL
)
3473 return dai
->driver
->ops
->set_fmt(dai
, fmt
);
3475 EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt
);
3478 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3480 * @tx_mask: bitmask representing active TX slots.
3481 * @rx_mask: bitmask representing active RX slots.
3482 * @slots: Number of slots in use.
3483 * @slot_width: Width in bits for each slot.
3485 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3488 int snd_soc_dai_set_tdm_slot(struct snd_soc_dai
*dai
,
3489 unsigned int tx_mask
, unsigned int rx_mask
, int slots
, int slot_width
)
3491 if (dai
->driver
&& dai
->driver
->ops
->set_tdm_slot
)
3492 return dai
->driver
->ops
->set_tdm_slot(dai
, tx_mask
, rx_mask
,
3497 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot
);
3500 * snd_soc_dai_set_channel_map - configure DAI audio channel map
3502 * @tx_num: how many TX channels
3503 * @tx_slot: pointer to an array which imply the TX slot number channel
3505 * @rx_num: how many RX channels
3506 * @rx_slot: pointer to an array which imply the RX slot number channel
3509 * configure the relationship between channel number and TDM slot number.
3511 int snd_soc_dai_set_channel_map(struct snd_soc_dai
*dai
,
3512 unsigned int tx_num
, unsigned int *tx_slot
,
3513 unsigned int rx_num
, unsigned int *rx_slot
)
3515 if (dai
->driver
&& dai
->driver
->ops
->set_channel_map
)
3516 return dai
->driver
->ops
->set_channel_map(dai
, tx_num
, tx_slot
,
3521 EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map
);
3524 * snd_soc_dai_set_tristate - configure DAI system or master clock.
3526 * @tristate: tristate enable
3528 * Tristates the DAI so that others can use it.
3530 int snd_soc_dai_set_tristate(struct snd_soc_dai
*dai
, int tristate
)
3532 if (dai
->driver
&& dai
->driver
->ops
->set_tristate
)
3533 return dai
->driver
->ops
->set_tristate(dai
, tristate
);
3537 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate
);
3540 * snd_soc_dai_digital_mute - configure DAI system or master clock.
3542 * @mute: mute enable
3544 * Mutes the DAI DAC.
3546 int snd_soc_dai_digital_mute(struct snd_soc_dai
*dai
, int mute
)
3548 if (dai
->driver
&& dai
->driver
->ops
->digital_mute
)
3549 return dai
->driver
->ops
->digital_mute(dai
, mute
);
3553 EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute
);
3556 * snd_soc_register_card - Register a card with the ASoC core
3558 * @card: Card to register
3561 int snd_soc_register_card(struct snd_soc_card
*card
)
3565 if (!card
->name
|| !card
->dev
)
3568 for (i
= 0; i
< card
->num_links
; i
++) {
3569 struct snd_soc_dai_link
*link
= &card
->dai_link
[i
];
3572 * Codec must be specified by 1 of name or OF node,
3573 * not both or neither.
3575 if (!!link
->codec_name
== !!link
->codec_of_node
) {
3576 dev_err(card
->dev
, "ASoC: Neither/both codec"
3577 " name/of_node are set for %s\n", link
->name
);
3580 /* Codec DAI name must be specified */
3581 if (!link
->codec_dai_name
) {
3582 dev_err(card
->dev
, "ASoC: codec_dai_name not"
3583 " set for %s\n", link
->name
);
3588 * Platform may be specified by either name or OF node, but
3589 * can be left unspecified, and a dummy platform will be used.
3591 if (link
->platform_name
&& link
->platform_of_node
) {
3592 dev_err(card
->dev
, "ASoC: Both platform name/of_node"
3593 " are set for %s\n", link
->name
);
3598 * CPU device may be specified by either name or OF node, but
3599 * can be left unspecified, and will be matched based on DAI
3602 if (link
->cpu_name
&& link
->cpu_of_node
) {
3603 dev_err(card
->dev
, "ASoC: Neither/both "
3604 "cpu name/of_node are set for %s\n",link
->name
);
3608 * At least one of CPU DAI name or CPU device name/node must be
3611 if (!link
->cpu_dai_name
&&
3612 !(link
->cpu_name
|| link
->cpu_of_node
)) {
3613 dev_err(card
->dev
, "ASoC: Neither cpu_dai_name nor "
3614 "cpu_name/of_node are set for %s\n", link
->name
);
3619 dev_set_drvdata(card
->dev
, card
);
3621 snd_soc_initialize_card_lists(card
);
3623 soc_init_card_debugfs(card
);
3625 card
->rtd
= devm_kzalloc(card
->dev
,
3626 sizeof(struct snd_soc_pcm_runtime
) *
3627 (card
->num_links
+ card
->num_aux_devs
),
3629 if (card
->rtd
== NULL
)
3632 card
->rtd_aux
= &card
->rtd
[card
->num_links
];
3634 for (i
= 0; i
< card
->num_links
; i
++)
3635 card
->rtd
[i
].dai_link
= &card
->dai_link
[i
];
3637 INIT_LIST_HEAD(&card
->list
);
3638 INIT_LIST_HEAD(&card
->dapm_dirty
);
3639 card
->instantiated
= 0;
3640 mutex_init(&card
->mutex
);
3641 mutex_init(&card
->dapm_mutex
);
3643 ret
= snd_soc_instantiate_card(card
);
3645 soc_cleanup_card_debugfs(card
);
3649 EXPORT_SYMBOL_GPL(snd_soc_register_card
);
3652 * snd_soc_unregister_card - Unregister a card with the ASoC core
3654 * @card: Card to unregister
3657 int snd_soc_unregister_card(struct snd_soc_card
*card
)
3659 if (card
->instantiated
)
3660 soc_cleanup_card_resources(card
);
3661 dev_dbg(card
->dev
, "ASoC: Unregistered card '%s'\n", card
->name
);
3665 EXPORT_SYMBOL_GPL(snd_soc_unregister_card
);
3668 * Simplify DAI link configuration by removing ".-1" from device names
3669 * and sanitizing names.
3671 static char *fmt_single_name(struct device
*dev
, int *id
)
3673 char *found
, name
[NAME_SIZE
];
3676 if (dev_name(dev
) == NULL
)
3679 strlcpy(name
, dev_name(dev
), NAME_SIZE
);
3681 /* are we a "%s.%d" name (platform and SPI components) */
3682 found
= strstr(name
, dev
->driver
->name
);
3685 if (sscanf(&found
[strlen(dev
->driver
->name
)], ".%d", id
) == 1) {
3687 /* discard ID from name if ID == -1 */
3689 found
[strlen(dev
->driver
->name
)] = '\0';
3693 /* I2C component devices are named "bus-addr" */
3694 if (sscanf(name
, "%x-%x", &id1
, &id2
) == 2) {
3695 char tmp
[NAME_SIZE
];
3697 /* create unique ID number from I2C addr and bus */
3698 *id
= ((id1
& 0xffff) << 16) + id2
;
3700 /* sanitize component name for DAI link creation */
3701 snprintf(tmp
, NAME_SIZE
, "%s.%s", dev
->driver
->name
, name
);
3702 strlcpy(name
, tmp
, NAME_SIZE
);
3707 return kstrdup(name
, GFP_KERNEL
);
3711 * Simplify DAI link naming for single devices with multiple DAIs by removing
3712 * any ".-1" and using the DAI name (instead of device name).
3714 static inline char *fmt_multiple_name(struct device
*dev
,
3715 struct snd_soc_dai_driver
*dai_drv
)
3717 if (dai_drv
->name
== NULL
) {
3718 dev_err(dev
, "ASoC: error - multiple DAI %s registered with"
3719 " no name\n", dev_name(dev
));
3723 return kstrdup(dai_drv
->name
, GFP_KERNEL
);
3727 * snd_soc_register_dai - Register a DAI with the ASoC core
3729 * @dai: DAI to register
3731 int snd_soc_register_dai(struct device
*dev
,
3732 struct snd_soc_dai_driver
*dai_drv
)
3734 struct snd_soc_codec
*codec
;
3735 struct snd_soc_dai
*dai
;
3737 dev_dbg(dev
, "ASoC: dai register %s\n", dev_name(dev
));
3739 dai
= kzalloc(sizeof(struct snd_soc_dai
), GFP_KERNEL
);
3743 /* create DAI component name */
3744 dai
->name
= fmt_single_name(dev
, &dai
->id
);
3745 if (dai
->name
== NULL
) {
3751 dai
->driver
= dai_drv
;
3752 dai
->dapm
.dev
= dev
;
3753 if (!dai
->driver
->ops
)
3754 dai
->driver
->ops
= &null_dai_ops
;
3756 mutex_lock(&client_mutex
);
3758 list_for_each_entry(codec
, &codec_list
, list
) {
3759 if (codec
->dev
== dev
) {
3760 dev_dbg(dev
, "ASoC: Mapped DAI %s to CODEC %s\n",
3761 dai
->name
, codec
->name
);
3768 dai
->dapm
.idle_bias_off
= 1;
3770 list_add(&dai
->list
, &dai_list
);
3772 mutex_unlock(&client_mutex
);
3774 dev_dbg(dev
, "ASoC: Registered DAI '%s'\n", dai
->name
);
3778 EXPORT_SYMBOL_GPL(snd_soc_register_dai
);
3781 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
3783 * @dai: DAI to unregister
3785 void snd_soc_unregister_dai(struct device
*dev
)
3787 struct snd_soc_dai
*dai
;
3789 list_for_each_entry(dai
, &dai_list
, list
) {
3790 if (dev
== dai
->dev
)
3796 mutex_lock(&client_mutex
);
3797 list_del(&dai
->list
);
3798 mutex_unlock(&client_mutex
);
3800 dev_dbg(dev
, "ASoC: Unregistered DAI '%s'\n", dai
->name
);
3804 EXPORT_SYMBOL_GPL(snd_soc_unregister_dai
);
3807 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3809 * @dai: Array of DAIs to register
3810 * @count: Number of DAIs
3812 int snd_soc_register_dais(struct device
*dev
,
3813 struct snd_soc_dai_driver
*dai_drv
, size_t count
)
3815 struct snd_soc_codec
*codec
;
3816 struct snd_soc_dai
*dai
;
3819 dev_dbg(dev
, "ASoC: dai register %s #%Zu\n", dev_name(dev
), count
);
3821 for (i
= 0; i
< count
; i
++) {
3823 dai
= kzalloc(sizeof(struct snd_soc_dai
), GFP_KERNEL
);
3829 /* create DAI component name */
3830 dai
->name
= fmt_multiple_name(dev
, &dai_drv
[i
]);
3831 if (dai
->name
== NULL
) {
3838 dai
->driver
= &dai_drv
[i
];
3839 if (dai
->driver
->id
)
3840 dai
->id
= dai
->driver
->id
;
3843 dai
->dapm
.dev
= dev
;
3844 if (!dai
->driver
->ops
)
3845 dai
->driver
->ops
= &null_dai_ops
;
3847 mutex_lock(&client_mutex
);
3849 list_for_each_entry(codec
, &codec_list
, list
) {
3850 if (codec
->dev
== dev
) {
3851 dev_dbg(dev
, "ASoC: Mapped DAI %s to "
3852 "CODEC %s\n", dai
->name
, codec
->name
);
3859 dai
->dapm
.idle_bias_off
= 1;
3861 list_add(&dai
->list
, &dai_list
);
3863 mutex_unlock(&client_mutex
);
3865 dev_dbg(dai
->dev
, "ASoC: Registered DAI '%s'\n", dai
->name
);
3871 for (i
--; i
>= 0; i
--)
3872 snd_soc_unregister_dai(dev
);
3876 EXPORT_SYMBOL_GPL(snd_soc_register_dais
);
3879 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
3881 * @dai: Array of DAIs to unregister
3882 * @count: Number of DAIs
3884 void snd_soc_unregister_dais(struct device
*dev
, size_t count
)
3888 for (i
= 0; i
< count
; i
++)
3889 snd_soc_unregister_dai(dev
);
3891 EXPORT_SYMBOL_GPL(snd_soc_unregister_dais
);
3894 * snd_soc_register_platform - Register a platform with the ASoC core
3896 * @platform: platform to register
3898 int snd_soc_register_platform(struct device
*dev
,
3899 struct snd_soc_platform_driver
*platform_drv
)
3901 struct snd_soc_platform
*platform
;
3903 dev_dbg(dev
, "ASoC: platform register %s\n", dev_name(dev
));
3905 platform
= kzalloc(sizeof(struct snd_soc_platform
), GFP_KERNEL
);
3906 if (platform
== NULL
)
3909 /* create platform component name */
3910 platform
->name
= fmt_single_name(dev
, &platform
->id
);
3911 if (platform
->name
== NULL
) {
3916 platform
->dev
= dev
;
3917 platform
->driver
= platform_drv
;
3918 platform
->dapm
.dev
= dev
;
3919 platform
->dapm
.platform
= platform
;
3920 platform
->dapm
.stream_event
= platform_drv
->stream_event
;
3921 mutex_init(&platform
->mutex
);
3923 mutex_lock(&client_mutex
);
3924 list_add(&platform
->list
, &platform_list
);
3925 mutex_unlock(&client_mutex
);
3927 dev_dbg(dev
, "ASoC: Registered platform '%s'\n", platform
->name
);
3931 EXPORT_SYMBOL_GPL(snd_soc_register_platform
);
3934 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
3936 * @platform: platform to unregister
3938 void snd_soc_unregister_platform(struct device
*dev
)
3940 struct snd_soc_platform
*platform
;
3942 list_for_each_entry(platform
, &platform_list
, list
) {
3943 if (dev
== platform
->dev
)
3949 mutex_lock(&client_mutex
);
3950 list_del(&platform
->list
);
3951 mutex_unlock(&client_mutex
);
3953 dev_dbg(dev
, "ASoC: Unregistered platform '%s'\n", platform
->name
);
3954 kfree(platform
->name
);
3957 EXPORT_SYMBOL_GPL(snd_soc_unregister_platform
);
3959 static u64 codec_format_map
[] = {
3960 SNDRV_PCM_FMTBIT_S16_LE
| SNDRV_PCM_FMTBIT_S16_BE
,
3961 SNDRV_PCM_FMTBIT_U16_LE
| SNDRV_PCM_FMTBIT_U16_BE
,
3962 SNDRV_PCM_FMTBIT_S24_LE
| SNDRV_PCM_FMTBIT_S24_BE
,
3963 SNDRV_PCM_FMTBIT_U24_LE
| SNDRV_PCM_FMTBIT_U24_BE
,
3964 SNDRV_PCM_FMTBIT_S32_LE
| SNDRV_PCM_FMTBIT_S32_BE
,
3965 SNDRV_PCM_FMTBIT_U32_LE
| SNDRV_PCM_FMTBIT_U32_BE
,
3966 SNDRV_PCM_FMTBIT_S24_3LE
| SNDRV_PCM_FMTBIT_U24_3BE
,
3967 SNDRV_PCM_FMTBIT_U24_3LE
| SNDRV_PCM_FMTBIT_U24_3BE
,
3968 SNDRV_PCM_FMTBIT_S20_3LE
| SNDRV_PCM_FMTBIT_S20_3BE
,
3969 SNDRV_PCM_FMTBIT_U20_3LE
| SNDRV_PCM_FMTBIT_U20_3BE
,
3970 SNDRV_PCM_FMTBIT_S18_3LE
| SNDRV_PCM_FMTBIT_S18_3BE
,
3971 SNDRV_PCM_FMTBIT_U18_3LE
| SNDRV_PCM_FMTBIT_U18_3BE
,
3972 SNDRV_PCM_FMTBIT_FLOAT_LE
| SNDRV_PCM_FMTBIT_FLOAT_BE
,
3973 SNDRV_PCM_FMTBIT_FLOAT64_LE
| SNDRV_PCM_FMTBIT_FLOAT64_BE
,
3974 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
3975 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE
,
3978 /* Fix up the DAI formats for endianness: codecs don't actually see
3979 * the endianness of the data but we're using the CPU format
3980 * definitions which do need to include endianness so we ensure that
3981 * codec DAIs always have both big and little endian variants set.
3983 static void fixup_codec_formats(struct snd_soc_pcm_stream
*stream
)
3987 for (i
= 0; i
< ARRAY_SIZE(codec_format_map
); i
++)
3988 if (stream
->formats
& codec_format_map
[i
])
3989 stream
->formats
|= codec_format_map
[i
];
3993 * snd_soc_register_codec - Register a codec with the ASoC core
3995 * @codec: codec to register
3997 int snd_soc_register_codec(struct device
*dev
,
3998 const struct snd_soc_codec_driver
*codec_drv
,
3999 struct snd_soc_dai_driver
*dai_drv
,
4003 struct snd_soc_codec
*codec
;
4006 dev_dbg(dev
, "codec register %s\n", dev_name(dev
));
4008 codec
= kzalloc(sizeof(struct snd_soc_codec
), GFP_KERNEL
);
4012 /* create CODEC component name */
4013 codec
->name
= fmt_single_name(dev
, &codec
->id
);
4014 if (codec
->name
== NULL
) {
4019 if (codec_drv
->compress_type
)
4020 codec
->compress_type
= codec_drv
->compress_type
;
4022 codec
->compress_type
= SND_SOC_FLAT_COMPRESSION
;
4024 codec
->write
= codec_drv
->write
;
4025 codec
->read
= codec_drv
->read
;
4026 codec
->volatile_register
= codec_drv
->volatile_register
;
4027 codec
->readable_register
= codec_drv
->readable_register
;
4028 codec
->writable_register
= codec_drv
->writable_register
;
4029 codec
->ignore_pmdown_time
= codec_drv
->ignore_pmdown_time
;
4030 codec
->dapm
.bias_level
= SND_SOC_BIAS_OFF
;
4031 codec
->dapm
.dev
= dev
;
4032 codec
->dapm
.codec
= codec
;
4033 codec
->dapm
.seq_notifier
= codec_drv
->seq_notifier
;
4034 codec
->dapm
.stream_event
= codec_drv
->stream_event
;
4036 codec
->driver
= codec_drv
;
4037 codec
->num_dai
= num_dai
;
4038 mutex_init(&codec
->mutex
);
4040 /* allocate CODEC register cache */
4041 if (codec_drv
->reg_cache_size
&& codec_drv
->reg_word_size
) {
4042 reg_size
= codec_drv
->reg_cache_size
* codec_drv
->reg_word_size
;
4043 codec
->reg_size
= reg_size
;
4044 /* it is necessary to make a copy of the default register cache
4045 * because in the case of using a compression type that requires
4046 * the default register cache to be marked as the
4047 * kernel might have freed the array by the time we initialize
4050 if (codec_drv
->reg_cache_default
) {
4051 codec
->reg_def_copy
= kmemdup(codec_drv
->reg_cache_default
,
4052 reg_size
, GFP_KERNEL
);
4053 if (!codec
->reg_def_copy
) {
4060 if (codec_drv
->reg_access_size
&& codec_drv
->reg_access_default
) {
4061 if (!codec
->volatile_register
)
4062 codec
->volatile_register
= snd_soc_default_volatile_register
;
4063 if (!codec
->readable_register
)
4064 codec
->readable_register
= snd_soc_default_readable_register
;
4065 if (!codec
->writable_register
)
4066 codec
->writable_register
= snd_soc_default_writable_register
;
4069 for (i
= 0; i
< num_dai
; i
++) {
4070 fixup_codec_formats(&dai_drv
[i
].playback
);
4071 fixup_codec_formats(&dai_drv
[i
].capture
);
4074 mutex_lock(&client_mutex
);
4075 list_add(&codec
->list
, &codec_list
);
4076 mutex_unlock(&client_mutex
);
4078 /* register any DAIs */
4080 ret
= snd_soc_register_dais(dev
, dai_drv
, num_dai
);
4082 dev_err(codec
->dev
, "ASoC: Failed to regster"
4083 " DAIs: %d\n", ret
);
4086 dev_dbg(codec
->dev
, "ASoC: Registered codec '%s'\n", codec
->name
);
4094 EXPORT_SYMBOL_GPL(snd_soc_register_codec
);
4097 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
4099 * @codec: codec to unregister
4101 void snd_soc_unregister_codec(struct device
*dev
)
4103 struct snd_soc_codec
*codec
;
4106 list_for_each_entry(codec
, &codec_list
, list
) {
4107 if (dev
== codec
->dev
)
4114 for (i
= 0; i
< codec
->num_dai
; i
++)
4115 snd_soc_unregister_dai(dev
);
4117 mutex_lock(&client_mutex
);
4118 list_del(&codec
->list
);
4119 mutex_unlock(&client_mutex
);
4121 dev_dbg(codec
->dev
, "ASoC: Unregistered codec '%s'\n", codec
->name
);
4123 snd_soc_cache_exit(codec
);
4124 kfree(codec
->reg_def_copy
);
4128 EXPORT_SYMBOL_GPL(snd_soc_unregister_codec
);
4130 /* Retrieve a card's name from device tree */
4131 int snd_soc_of_parse_card_name(struct snd_soc_card
*card
,
4132 const char *propname
)
4134 struct device_node
*np
= card
->dev
->of_node
;
4137 ret
= of_property_read_string_index(np
, propname
, 0, &card
->name
);
4139 * EINVAL means the property does not exist. This is fine providing
4140 * card->name was previously set, which is checked later in
4141 * snd_soc_register_card.
4143 if (ret
< 0 && ret
!= -EINVAL
) {
4145 "ASoC: Property '%s' could not be read: %d\n",
4152 EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name
);
4154 int snd_soc_of_parse_audio_routing(struct snd_soc_card
*card
,
4155 const char *propname
)
4157 struct device_node
*np
= card
->dev
->of_node
;
4159 struct snd_soc_dapm_route
*routes
;
4162 num_routes
= of_property_count_strings(np
, propname
);
4163 if (num_routes
< 0 || num_routes
& 1) {
4164 dev_err(card
->dev
, "ASoC: Property '%s' does not exist or its"
4165 " length is not even\n", propname
);
4170 dev_err(card
->dev
, "ASoC: Property '%s's length is zero\n",
4175 routes
= devm_kzalloc(card
->dev
, num_routes
* sizeof(*routes
),
4179 "ASoC: Could not allocate DAPM route table\n");
4183 for (i
= 0; i
< num_routes
; i
++) {
4184 ret
= of_property_read_string_index(np
, propname
,
4185 2 * i
, &routes
[i
].sink
);
4188 "ASoC: Property '%s' index %d could not be read: %d\n",
4189 propname
, 2 * i
, ret
);
4193 ret
= of_property_read_string_index(np
, propname
,
4194 (2 * i
) + 1, &routes
[i
].source
);
4197 "ASoC: Property '%s' index %d could not be read: %d\n",
4198 propname
, (2 * i
) + 1, ret
);
4204 card
->num_dapm_routes
= num_routes
;
4205 card
->dapm_routes
= routes
;
4209 EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing
);
4211 static int __init
snd_soc_init(void)
4213 #ifdef CONFIG_DEBUG_FS
4214 snd_soc_debugfs_root
= debugfs_create_dir("asoc", NULL
);
4215 if (IS_ERR(snd_soc_debugfs_root
) || !snd_soc_debugfs_root
) {
4216 pr_warn("ASoC: Failed to create debugfs directory\n");
4217 snd_soc_debugfs_root
= NULL
;
4220 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root
, NULL
,
4222 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
4224 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root
, NULL
,
4226 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
4228 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root
, NULL
,
4229 &platform_list_fops
))
4230 pr_warn("ASoC: Failed to create platform list debugfs file\n");
4233 snd_soc_util_init();
4235 return platform_driver_register(&soc_driver
);
4237 module_init(snd_soc_init
);
4239 static void __exit
snd_soc_exit(void)
4241 snd_soc_util_exit();
4243 #ifdef CONFIG_DEBUG_FS
4244 debugfs_remove_recursive(snd_soc_debugfs_root
);
4246 platform_driver_unregister(&soc_driver
);
4248 module_exit(snd_soc_exit
);
4250 /* Module information */
4251 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
4252 MODULE_DESCRIPTION("ALSA SoC Core");
4253 MODULE_LICENSE("GPL");
4254 MODULE_ALIAS("platform:soc-audio");