2 * Universal Interface for Intel High Definition Audio Codec
4 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
7 * This driver is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This driver is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/init.h>
23 #include <linux/delay.h>
24 #include <linux/slab.h>
25 #include <linux/mutex.h>
26 #include <linux/module.h>
28 #include <linux/pm_runtime.h>
29 #include <sound/core.h>
30 #include "hda_codec.h"
31 #include <sound/asoundef.h>
32 #include <sound/tlv.h>
33 #include <sound/initval.h>
34 #include <sound/jack.h>
35 #include "hda_local.h"
38 #include <sound/hda_hwdep.h>
41 #define codec_in_pm(codec) atomic_read(&(codec)->core.in_pm)
42 #define hda_codec_is_power_on(codec) \
43 (!pm_runtime_suspended(hda_codec_dev(codec)))
45 #define codec_in_pm(codec) 0
46 #define hda_codec_is_power_on(codec) 1
49 #define codec_has_epss(codec) \
50 ((codec)->core.power_caps & AC_PWRST_EPSS)
51 #define codec_has_clkstop(codec) \
52 ((codec)->core.power_caps & AC_PWRST_CLKSTOP)
55 * Send and receive a verb - passed to exec_verb override for hdac_device
57 static int codec_exec_verb(struct hdac_device
*dev
, unsigned int cmd
,
58 unsigned int flags
, unsigned int *res
)
60 struct hda_codec
*codec
= container_of(dev
, struct hda_codec
, core
);
61 struct hda_bus
*bus
= codec
->bus
;
68 snd_hda_power_up_pm(codec
);
69 mutex_lock(&bus
->core
.cmd_mutex
);
70 if (flags
& HDA_RW_NO_RESPONSE_FALLBACK
)
71 bus
->no_response_fallback
= 1;
72 err
= snd_hdac_bus_exec_verb_unlocked(&bus
->core
, codec
->core
.addr
,
74 bus
->no_response_fallback
= 0;
75 mutex_unlock(&bus
->core
.cmd_mutex
);
76 snd_hda_power_down_pm(codec
);
77 if (!codec_in_pm(codec
) && res
&& err
== -EAGAIN
) {
78 if (bus
->response_reset
) {
80 "resetting BUS due to fatal communication error\n");
81 snd_hda_bus_reset(bus
);
85 /* clear reset-flag when the communication gets recovered */
86 if (!err
|| codec_in_pm(codec
))
87 bus
->response_reset
= 0;
92 * snd_hda_sequence_write - sequence writes
93 * @codec: the HDA codec
94 * @seq: VERB array to send
96 * Send the commands sequentially from the given array.
97 * The array must be terminated with NID=0.
99 void snd_hda_sequence_write(struct hda_codec
*codec
, const struct hda_verb
*seq
)
101 for (; seq
->nid
; seq
++)
102 snd_hda_codec_write(codec
, seq
->nid
, 0, seq
->verb
, seq
->param
);
104 EXPORT_SYMBOL_GPL(snd_hda_sequence_write
);
106 /* connection list element */
107 struct hda_conn_list
{
108 struct list_head list
;
114 /* look up the cached results */
115 static struct hda_conn_list
*
116 lookup_conn_list(struct hda_codec
*codec
, hda_nid_t nid
)
118 struct hda_conn_list
*p
;
119 list_for_each_entry(p
, &codec
->conn_list
, list
) {
126 static int add_conn_list(struct hda_codec
*codec
, hda_nid_t nid
, int len
,
127 const hda_nid_t
*list
)
129 struct hda_conn_list
*p
;
131 p
= kmalloc(sizeof(*p
) + len
* sizeof(hda_nid_t
), GFP_KERNEL
);
136 memcpy(p
->conns
, list
, len
* sizeof(hda_nid_t
));
137 list_add(&p
->list
, &codec
->conn_list
);
141 static void remove_conn_list(struct hda_codec
*codec
)
143 while (!list_empty(&codec
->conn_list
)) {
144 struct hda_conn_list
*p
;
145 p
= list_first_entry(&codec
->conn_list
, typeof(*p
), list
);
151 /* read the connection and add to the cache */
152 static int read_and_add_raw_conns(struct hda_codec
*codec
, hda_nid_t nid
)
155 hda_nid_t
*result
= list
;
158 len
= snd_hda_get_raw_connections(codec
, nid
, list
, ARRAY_SIZE(list
));
159 if (len
== -ENOSPC
) {
160 len
= snd_hda_get_num_raw_conns(codec
, nid
);
161 result
= kmalloc(sizeof(hda_nid_t
) * len
, GFP_KERNEL
);
164 len
= snd_hda_get_raw_connections(codec
, nid
, result
, len
);
167 len
= snd_hda_override_conn_list(codec
, nid
, len
, result
);
174 * snd_hda_get_conn_list - get connection list
175 * @codec: the HDA codec
177 * @listp: the pointer to store NID list
179 * Parses the connection list of the given widget and stores the pointer
180 * to the list of NIDs.
182 * Returns the number of connections, or a negative error code.
184 * Note that the returned pointer isn't protected against the list
185 * modification. If snd_hda_override_conn_list() might be called
186 * concurrently, protect with a mutex appropriately.
188 int snd_hda_get_conn_list(struct hda_codec
*codec
, hda_nid_t nid
,
189 const hda_nid_t
**listp
)
195 const struct hda_conn_list
*p
;
197 /* if the connection-list is already cached, read it */
198 p
= lookup_conn_list(codec
, nid
);
204 if (snd_BUG_ON(added
))
207 err
= read_and_add_raw_conns(codec
, nid
);
213 EXPORT_SYMBOL_GPL(snd_hda_get_conn_list
);
216 * snd_hda_get_connections - copy connection list
217 * @codec: the HDA codec
219 * @conn_list: connection list array; when NULL, checks only the size
220 * @max_conns: max. number of connections to store
222 * Parses the connection list of the given widget and stores the list
225 * Returns the number of connections, or a negative error code.
227 int snd_hda_get_connections(struct hda_codec
*codec
, hda_nid_t nid
,
228 hda_nid_t
*conn_list
, int max_conns
)
230 const hda_nid_t
*list
;
231 int len
= snd_hda_get_conn_list(codec
, nid
, &list
);
233 if (len
> 0 && conn_list
) {
234 if (len
> max_conns
) {
235 codec_err(codec
, "Too many connections %d for NID 0x%x\n",
239 memcpy(conn_list
, list
, len
* sizeof(hda_nid_t
));
244 EXPORT_SYMBOL_GPL(snd_hda_get_connections
);
247 * snd_hda_override_conn_list - add/modify the connection-list to cache
248 * @codec: the HDA codec
250 * @len: number of connection list entries
251 * @list: the list of connection entries
253 * Add or modify the given connection-list to the cache. If the corresponding
254 * cache already exists, invalidate it and append a new one.
256 * Returns zero or a negative error code.
258 int snd_hda_override_conn_list(struct hda_codec
*codec
, hda_nid_t nid
, int len
,
259 const hda_nid_t
*list
)
261 struct hda_conn_list
*p
;
263 p
= lookup_conn_list(codec
, nid
);
269 return add_conn_list(codec
, nid
, len
, list
);
271 EXPORT_SYMBOL_GPL(snd_hda_override_conn_list
);
274 * snd_hda_get_conn_index - get the connection index of the given NID
275 * @codec: the HDA codec
276 * @mux: NID containing the list
277 * @nid: NID to select
278 * @recursive: 1 when searching NID recursively, otherwise 0
280 * Parses the connection list of the widget @mux and checks whether the
281 * widget @nid is present. If it is, return the connection index.
282 * Otherwise it returns -1.
284 int snd_hda_get_conn_index(struct hda_codec
*codec
, hda_nid_t mux
,
285 hda_nid_t nid
, int recursive
)
287 const hda_nid_t
*conn
;
290 nums
= snd_hda_get_conn_list(codec
, mux
, &conn
);
291 for (i
= 0; i
< nums
; i
++)
296 if (recursive
> 10) {
297 codec_dbg(codec
, "too deep connection for 0x%x\n", nid
);
301 for (i
= 0; i
< nums
; i
++) {
302 unsigned int type
= get_wcaps_type(get_wcaps(codec
, conn
[i
]));
303 if (type
== AC_WID_PIN
|| type
== AC_WID_AUD_OUT
)
305 if (snd_hda_get_conn_index(codec
, conn
[i
], nid
, recursive
) >= 0)
310 EXPORT_SYMBOL_GPL(snd_hda_get_conn_index
);
313 * snd_hda_get_num_devices - get DEVLIST_LEN parameter of the given widget
314 * @codec: the HDA codec
315 * @nid: NID of the pin to parse
317 * Get the device entry number on the given widget. This is a feature of
318 * DP MST audio. Each pin can have several device entries in it.
320 unsigned int snd_hda_get_num_devices(struct hda_codec
*codec
, hda_nid_t nid
)
322 unsigned int wcaps
= get_wcaps(codec
, nid
);
325 if (!codec
->dp_mst
|| !(wcaps
& AC_WCAP_DIGITAL
) ||
326 get_wcaps_type(wcaps
) != AC_WID_PIN
)
329 parm
= snd_hdac_read_parm_uncached(&codec
->core
, nid
, AC_PAR_DEVLIST_LEN
);
332 return parm
& AC_DEV_LIST_LEN_MASK
;
334 EXPORT_SYMBOL_GPL(snd_hda_get_num_devices
);
337 * snd_hda_get_devices - copy device list without cache
338 * @codec: the HDA codec
339 * @nid: NID of the pin to parse
340 * @dev_list: device list array
341 * @max_devices: max. number of devices to store
343 * Copy the device list. This info is dynamic and so not cached.
344 * Currently called only from hda_proc.c, so not exported.
346 int snd_hda_get_devices(struct hda_codec
*codec
, hda_nid_t nid
,
347 u8
*dev_list
, int max_devices
)
350 int i
, dev_len
, devices
;
352 parm
= snd_hda_get_num_devices(codec
, nid
);
353 if (!parm
) /* not multi-stream capable */
357 dev_len
= dev_len
< max_devices
? dev_len
: max_devices
;
360 while (devices
< dev_len
) {
361 if (snd_hdac_read(&codec
->core
, nid
,
362 AC_VERB_GET_DEVICE_LIST
, devices
, &parm
))
365 for (i
= 0; i
< 8; i
++) {
366 dev_list
[devices
] = (u8
)parm
;
369 if (devices
>= dev_len
)
377 * snd_hda_get_dev_select - get device entry select on the pin
378 * @codec: the HDA codec
379 * @nid: NID of the pin to get device entry select
381 * Get the devcie entry select on the pin. Return the device entry
382 * id selected on the pin. Return 0 means the first device entry
383 * is selected or MST is not supported.
385 int snd_hda_get_dev_select(struct hda_codec
*codec
, hda_nid_t nid
)
387 /* not support dp_mst will always return 0, using first dev_entry */
391 return snd_hda_codec_read(codec
, nid
, 0, AC_VERB_GET_DEVICE_SEL
, 0);
393 EXPORT_SYMBOL_GPL(snd_hda_get_dev_select
);
396 * snd_hda_set_dev_select - set device entry select on the pin
397 * @codec: the HDA codec
398 * @nid: NID of the pin to set device entry select
399 * @dev_id: device entry id to be set
401 * Set the device entry select on the pin nid.
403 int snd_hda_set_dev_select(struct hda_codec
*codec
, hda_nid_t nid
, int dev_id
)
405 int ret
, num_devices
;
407 /* not support dp_mst will always return 0, using first dev_entry */
411 /* AC_PAR_DEVLIST_LEN is 0 based. */
412 num_devices
= snd_hda_get_num_devices(codec
, nid
) + 1;
413 /* If Device List Length is 0 (num_device = 1),
414 * the pin is not multi stream capable.
415 * Do nothing in this case.
417 if (num_devices
== 1)
420 /* Behavior of setting index being equal to or greater than
421 * Device List Length is not predictable
423 if (num_devices
<= dev_id
)
426 ret
= snd_hda_codec_write(codec
, nid
, 0,
427 AC_VERB_SET_DEVICE_SEL
, dev_id
);
431 EXPORT_SYMBOL_GPL(snd_hda_set_dev_select
);
434 * read widget caps for each widget and store in cache
436 static int read_widget_caps(struct hda_codec
*codec
, hda_nid_t fg_node
)
441 codec
->wcaps
= kmalloc(codec
->core
.num_nodes
* 4, GFP_KERNEL
);
444 nid
= codec
->core
.start_nid
;
445 for (i
= 0; i
< codec
->core
.num_nodes
; i
++, nid
++)
446 codec
->wcaps
[i
] = snd_hdac_read_parm_uncached(&codec
->core
,
447 nid
, AC_PAR_AUDIO_WIDGET_CAP
);
451 /* read all pin default configurations and save codec->init_pins */
452 static int read_pin_defaults(struct hda_codec
*codec
)
456 for_each_hda_codec_node(nid
, codec
) {
457 struct hda_pincfg
*pin
;
458 unsigned int wcaps
= get_wcaps(codec
, nid
);
459 unsigned int wid_type
= get_wcaps_type(wcaps
);
460 if (wid_type
!= AC_WID_PIN
)
462 pin
= snd_array_new(&codec
->init_pins
);
466 pin
->cfg
= snd_hda_codec_read(codec
, nid
, 0,
467 AC_VERB_GET_CONFIG_DEFAULT
, 0);
469 * all device entries are the same widget control so far
470 * fixme: if any codec is different, need fix here
472 pin
->ctrl
= snd_hda_codec_read(codec
, nid
, 0,
473 AC_VERB_GET_PIN_WIDGET_CONTROL
,
479 /* look up the given pin config list and return the item matching with NID */
480 static struct hda_pincfg
*look_up_pincfg(struct hda_codec
*codec
,
481 struct snd_array
*array
,
485 for (i
= 0; i
< array
->used
; i
++) {
486 struct hda_pincfg
*pin
= snd_array_elem(array
, i
);
493 /* set the current pin config value for the given NID.
494 * the value is cached, and read via snd_hda_codec_get_pincfg()
496 int snd_hda_add_pincfg(struct hda_codec
*codec
, struct snd_array
*list
,
497 hda_nid_t nid
, unsigned int cfg
)
499 struct hda_pincfg
*pin
;
501 /* the check below may be invalid when pins are added by a fixup
502 * dynamically (e.g. via snd_hda_codec_update_widgets()), so disabled
506 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
510 pin
= look_up_pincfg(codec
, list
, nid
);
512 pin
= snd_array_new(list
);
522 * snd_hda_codec_set_pincfg - Override a pin default configuration
523 * @codec: the HDA codec
524 * @nid: NID to set the pin config
525 * @cfg: the pin default config value
527 * Override a pin default configuration value in the cache.
528 * This value can be read by snd_hda_codec_get_pincfg() in a higher
529 * priority than the real hardware value.
531 int snd_hda_codec_set_pincfg(struct hda_codec
*codec
,
532 hda_nid_t nid
, unsigned int cfg
)
534 return snd_hda_add_pincfg(codec
, &codec
->driver_pins
, nid
, cfg
);
536 EXPORT_SYMBOL_GPL(snd_hda_codec_set_pincfg
);
539 * snd_hda_codec_get_pincfg - Obtain a pin-default configuration
540 * @codec: the HDA codec
541 * @nid: NID to get the pin config
543 * Get the current pin config value of the given pin NID.
544 * If the pincfg value is cached or overridden via sysfs or driver,
545 * returns the cached value.
547 unsigned int snd_hda_codec_get_pincfg(struct hda_codec
*codec
, hda_nid_t nid
)
549 struct hda_pincfg
*pin
;
551 #ifdef CONFIG_SND_HDA_RECONFIG
553 unsigned int cfg
= 0;
554 mutex_lock(&codec
->user_mutex
);
555 pin
= look_up_pincfg(codec
, &codec
->user_pins
, nid
);
558 mutex_unlock(&codec
->user_mutex
);
563 pin
= look_up_pincfg(codec
, &codec
->driver_pins
, nid
);
566 pin
= look_up_pincfg(codec
, &codec
->init_pins
, nid
);
571 EXPORT_SYMBOL_GPL(snd_hda_codec_get_pincfg
);
574 * snd_hda_codec_set_pin_target - remember the current pinctl target value
575 * @codec: the HDA codec
577 * @val: assigned pinctl value
579 * This function stores the given value to a pinctl target value in the
580 * pincfg table. This isn't always as same as the actually written value
581 * but can be referred at any time via snd_hda_codec_get_pin_target().
583 int snd_hda_codec_set_pin_target(struct hda_codec
*codec
, hda_nid_t nid
,
586 struct hda_pincfg
*pin
;
588 pin
= look_up_pincfg(codec
, &codec
->init_pins
, nid
);
594 EXPORT_SYMBOL_GPL(snd_hda_codec_set_pin_target
);
597 * snd_hda_codec_get_pin_target - return the current pinctl target value
598 * @codec: the HDA codec
601 int snd_hda_codec_get_pin_target(struct hda_codec
*codec
, hda_nid_t nid
)
603 struct hda_pincfg
*pin
;
605 pin
= look_up_pincfg(codec
, &codec
->init_pins
, nid
);
610 EXPORT_SYMBOL_GPL(snd_hda_codec_get_pin_target
);
613 * snd_hda_shutup_pins - Shut up all pins
614 * @codec: the HDA codec
616 * Clear all pin controls to shup up before suspend for avoiding click noise.
617 * The controls aren't cached so that they can be resumed properly.
619 void snd_hda_shutup_pins(struct hda_codec
*codec
)
622 /* don't shut up pins when unloading the driver; otherwise it breaks
623 * the default pin setup at the next load of the driver
625 if (codec
->bus
->shutdown
)
627 for (i
= 0; i
< codec
->init_pins
.used
; i
++) {
628 struct hda_pincfg
*pin
= snd_array_elem(&codec
->init_pins
, i
);
629 /* use read here for syncing after issuing each verb */
630 snd_hda_codec_read(codec
, pin
->nid
, 0,
631 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
633 codec
->pins_shutup
= 1;
635 EXPORT_SYMBOL_GPL(snd_hda_shutup_pins
);
638 /* Restore the pin controls cleared previously via snd_hda_shutup_pins() */
639 static void restore_shutup_pins(struct hda_codec
*codec
)
642 if (!codec
->pins_shutup
)
644 if (codec
->bus
->shutdown
)
646 for (i
= 0; i
< codec
->init_pins
.used
; i
++) {
647 struct hda_pincfg
*pin
= snd_array_elem(&codec
->init_pins
, i
);
648 snd_hda_codec_write(codec
, pin
->nid
, 0,
649 AC_VERB_SET_PIN_WIDGET_CONTROL
,
652 codec
->pins_shutup
= 0;
656 static void hda_jackpoll_work(struct work_struct
*work
)
658 struct hda_codec
*codec
=
659 container_of(work
, struct hda_codec
, jackpoll_work
.work
);
661 snd_hda_jack_set_dirty_all(codec
);
662 snd_hda_jack_poll_all(codec
);
664 if (!codec
->jackpoll_interval
)
667 schedule_delayed_work(&codec
->jackpoll_work
,
668 codec
->jackpoll_interval
);
671 /* release all pincfg lists */
672 static void free_init_pincfgs(struct hda_codec
*codec
)
674 snd_array_free(&codec
->driver_pins
);
675 #ifdef CONFIG_SND_HDA_RECONFIG
676 snd_array_free(&codec
->user_pins
);
678 snd_array_free(&codec
->init_pins
);
682 * audio-converter setup caches
684 struct hda_cvt_setup
{
689 unsigned char active
; /* cvt is currently used */
690 unsigned char dirty
; /* setups should be cleared */
693 /* get or create a cache entry for the given audio converter NID */
694 static struct hda_cvt_setup
*
695 get_hda_cvt_setup(struct hda_codec
*codec
, hda_nid_t nid
)
697 struct hda_cvt_setup
*p
;
700 for (i
= 0; i
< codec
->cvt_setups
.used
; i
++) {
701 p
= snd_array_elem(&codec
->cvt_setups
, i
);
705 p
= snd_array_new(&codec
->cvt_setups
);
714 static void release_pcm(struct kref
*kref
)
716 struct hda_pcm
*pcm
= container_of(kref
, struct hda_pcm
, kref
);
719 snd_device_free(pcm
->codec
->card
, pcm
->pcm
);
720 clear_bit(pcm
->device
, pcm
->codec
->bus
->pcm_dev_bits
);
725 void snd_hda_codec_pcm_put(struct hda_pcm
*pcm
)
727 kref_put(&pcm
->kref
, release_pcm
);
729 EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_put
);
731 struct hda_pcm
*snd_hda_codec_pcm_new(struct hda_codec
*codec
,
732 const char *fmt
, ...)
737 pcm
= kzalloc(sizeof(*pcm
), GFP_KERNEL
);
742 kref_init(&pcm
->kref
);
744 pcm
->name
= kvasprintf(GFP_KERNEL
, fmt
, args
);
751 list_add_tail(&pcm
->list
, &codec
->pcm_list_head
);
754 EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_new
);
759 static void codec_release_pcms(struct hda_codec
*codec
)
761 struct hda_pcm
*pcm
, *n
;
763 list_for_each_entry_safe(pcm
, n
, &codec
->pcm_list_head
, list
) {
764 list_del_init(&pcm
->list
);
766 snd_device_disconnect(codec
->card
, pcm
->pcm
);
767 snd_hda_codec_pcm_put(pcm
);
771 void snd_hda_codec_cleanup_for_unbind(struct hda_codec
*codec
)
773 if (codec
->registered
) {
774 /* pm_runtime_put() is called in snd_hdac_device_exit() */
775 pm_runtime_get_noresume(hda_codec_dev(codec
));
776 pm_runtime_disable(hda_codec_dev(codec
));
777 codec
->registered
= 0;
780 cancel_delayed_work_sync(&codec
->jackpoll_work
);
781 if (!codec
->in_freeing
)
782 snd_hda_ctls_clear(codec
);
783 codec_release_pcms(codec
);
784 snd_hda_detach_beep_device(codec
);
785 memset(&codec
->patch_ops
, 0, sizeof(codec
->patch_ops
));
786 snd_hda_jack_tbl_clear(codec
);
787 codec
->proc_widget_hook
= NULL
;
790 /* free only driver_pins so that init_pins + user_pins are restored */
791 snd_array_free(&codec
->driver_pins
);
792 snd_array_free(&codec
->cvt_setups
);
793 snd_array_free(&codec
->spdif_out
);
794 snd_array_free(&codec
->verbs
);
795 codec
->preset
= NULL
;
796 codec
->slave_dig_outs
= NULL
;
797 codec
->spdif_status_reset
= 0;
798 snd_array_free(&codec
->mixers
);
799 snd_array_free(&codec
->nids
);
800 remove_conn_list(codec
);
801 snd_hdac_regmap_exit(&codec
->core
);
804 static unsigned int hda_set_power_state(struct hda_codec
*codec
,
805 unsigned int power_state
);
807 /* also called from hda_bind.c */
808 void snd_hda_codec_register(struct hda_codec
*codec
)
810 if (codec
->registered
)
812 if (device_is_registered(hda_codec_dev(codec
))) {
813 snd_hda_register_beep_device(codec
);
814 snd_hdac_link_power(&codec
->core
, true);
815 pm_runtime_enable(hda_codec_dev(codec
));
816 /* it was powered up in snd_hda_codec_new(), now all done */
817 snd_hda_power_down(codec
);
818 codec
->registered
= 1;
822 static int snd_hda_codec_dev_register(struct snd_device
*device
)
824 snd_hda_codec_register(device
->device_data
);
828 static int snd_hda_codec_dev_disconnect(struct snd_device
*device
)
830 struct hda_codec
*codec
= device
->device_data
;
832 snd_hda_detach_beep_device(codec
);
836 static int snd_hda_codec_dev_free(struct snd_device
*device
)
838 struct hda_codec
*codec
= device
->device_data
;
840 codec
->in_freeing
= 1;
841 snd_hdac_device_unregister(&codec
->core
);
842 snd_hdac_link_power(&codec
->core
, false);
843 put_device(hda_codec_dev(codec
));
847 static void snd_hda_codec_dev_release(struct device
*dev
)
849 struct hda_codec
*codec
= dev_to_hda_codec(dev
);
851 free_init_pincfgs(codec
);
852 snd_hdac_device_exit(&codec
->core
);
853 snd_hda_sysfs_clear(codec
);
854 kfree(codec
->modelname
);
860 * snd_hda_codec_new - create a HDA codec
861 * @bus: the bus to assign
862 * @codec_addr: the codec address
863 * @codecp: the pointer to store the generated codec
865 * Returns 0 if successful, or a negative error code.
867 int snd_hda_codec_new(struct hda_bus
*bus
, struct snd_card
*card
,
868 unsigned int codec_addr
, struct hda_codec
**codecp
)
870 struct hda_codec
*codec
;
874 static struct snd_device_ops dev_ops
= {
875 .dev_register
= snd_hda_codec_dev_register
,
876 .dev_disconnect
= snd_hda_codec_dev_disconnect
,
877 .dev_free
= snd_hda_codec_dev_free
,
880 if (snd_BUG_ON(!bus
))
882 if (snd_BUG_ON(codec_addr
> HDA_MAX_CODEC_ADDRESS
))
885 codec
= kzalloc(sizeof(*codec
), GFP_KERNEL
);
889 sprintf(component
, "hdaudioC%dD%d", card
->number
, codec_addr
);
890 err
= snd_hdac_device_init(&codec
->core
, &bus
->core
, component
,
897 codec
->core
.dev
.release
= snd_hda_codec_dev_release
;
898 codec
->core
.type
= HDA_DEV_LEGACY
;
899 codec
->core
.exec_verb
= codec_exec_verb
;
903 codec
->addr
= codec_addr
;
904 mutex_init(&codec
->spdif_mutex
);
905 mutex_init(&codec
->control_mutex
);
906 snd_array_init(&codec
->mixers
, sizeof(struct hda_nid_item
), 32);
907 snd_array_init(&codec
->nids
, sizeof(struct hda_nid_item
), 32);
908 snd_array_init(&codec
->init_pins
, sizeof(struct hda_pincfg
), 16);
909 snd_array_init(&codec
->driver_pins
, sizeof(struct hda_pincfg
), 16);
910 snd_array_init(&codec
->cvt_setups
, sizeof(struct hda_cvt_setup
), 8);
911 snd_array_init(&codec
->spdif_out
, sizeof(struct hda_spdif_out
), 16);
912 snd_array_init(&codec
->jacktbl
, sizeof(struct hda_jack_tbl
), 16);
913 snd_array_init(&codec
->verbs
, sizeof(struct hda_verb
*), 8);
914 INIT_LIST_HEAD(&codec
->conn_list
);
915 INIT_LIST_HEAD(&codec
->pcm_list_head
);
917 INIT_DELAYED_WORK(&codec
->jackpoll_work
, hda_jackpoll_work
);
918 codec
->depop_delay
= -1;
919 codec
->fixup_id
= HDA_FIXUP_ID_NOT_SET
;
922 codec
->power_jiffies
= jiffies
;
925 snd_hda_sysfs_init(codec
);
927 if (codec
->bus
->modelname
) {
928 codec
->modelname
= kstrdup(codec
->bus
->modelname
, GFP_KERNEL
);
929 if (!codec
->modelname
) {
935 fg
= codec
->core
.afg
? codec
->core
.afg
: codec
->core
.mfg
;
936 err
= read_widget_caps(codec
, fg
);
939 err
= read_pin_defaults(codec
);
943 /* power-up all before initialization */
944 hda_set_power_state(codec
, AC_PWRST_D0
);
946 snd_hda_codec_proc_new(codec
);
948 snd_hda_create_hwdep(codec
);
950 sprintf(component
, "HDA:%08x,%08x,%08x", codec
->core
.vendor_id
,
951 codec
->core
.subsystem_id
, codec
->core
.revision_id
);
952 snd_component_add(card
, component
);
954 err
= snd_device_new(card
, SNDRV_DEV_CODEC
, codec
, &dev_ops
);
963 put_device(hda_codec_dev(codec
));
966 EXPORT_SYMBOL_GPL(snd_hda_codec_new
);
969 * snd_hda_codec_update_widgets - Refresh widget caps and pin defaults
970 * @codec: the HDA codec
972 * Forcibly refresh the all widget caps and the init pin configurations of
975 int snd_hda_codec_update_widgets(struct hda_codec
*codec
)
980 err
= snd_hdac_refresh_widgets(&codec
->core
, true);
984 /* Assume the function group node does not change,
985 * only the widget nodes may change.
988 fg
= codec
->core
.afg
? codec
->core
.afg
: codec
->core
.mfg
;
989 err
= read_widget_caps(codec
, fg
);
993 snd_array_free(&codec
->init_pins
);
994 err
= read_pin_defaults(codec
);
998 EXPORT_SYMBOL_GPL(snd_hda_codec_update_widgets
);
1000 /* update the stream-id if changed */
1001 static void update_pcm_stream_id(struct hda_codec
*codec
,
1002 struct hda_cvt_setup
*p
, hda_nid_t nid
,
1003 u32 stream_tag
, int channel_id
)
1005 unsigned int oldval
, newval
;
1007 if (p
->stream_tag
!= stream_tag
|| p
->channel_id
!= channel_id
) {
1008 oldval
= snd_hda_codec_read(codec
, nid
, 0, AC_VERB_GET_CONV
, 0);
1009 newval
= (stream_tag
<< 4) | channel_id
;
1010 if (oldval
!= newval
)
1011 snd_hda_codec_write(codec
, nid
, 0,
1012 AC_VERB_SET_CHANNEL_STREAMID
,
1014 p
->stream_tag
= stream_tag
;
1015 p
->channel_id
= channel_id
;
1019 /* update the format-id if changed */
1020 static void update_pcm_format(struct hda_codec
*codec
, struct hda_cvt_setup
*p
,
1021 hda_nid_t nid
, int format
)
1023 unsigned int oldval
;
1025 if (p
->format_id
!= format
) {
1026 oldval
= snd_hda_codec_read(codec
, nid
, 0,
1027 AC_VERB_GET_STREAM_FORMAT
, 0);
1028 if (oldval
!= format
) {
1030 snd_hda_codec_write(codec
, nid
, 0,
1031 AC_VERB_SET_STREAM_FORMAT
,
1034 p
->format_id
= format
;
1039 * snd_hda_codec_setup_stream - set up the codec for streaming
1040 * @codec: the CODEC to set up
1041 * @nid: the NID to set up
1042 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
1043 * @channel_id: channel id to pass, zero based.
1044 * @format: stream format.
1046 void snd_hda_codec_setup_stream(struct hda_codec
*codec
, hda_nid_t nid
,
1048 int channel_id
, int format
)
1050 struct hda_codec
*c
;
1051 struct hda_cvt_setup
*p
;
1059 "hda_codec_setup_stream: NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
1060 nid
, stream_tag
, channel_id
, format
);
1061 p
= get_hda_cvt_setup(codec
, nid
);
1065 if (codec
->patch_ops
.stream_pm
)
1066 codec
->patch_ops
.stream_pm(codec
, nid
, true);
1067 if (codec
->pcm_format_first
)
1068 update_pcm_format(codec
, p
, nid
, format
);
1069 update_pcm_stream_id(codec
, p
, nid
, stream_tag
, channel_id
);
1070 if (!codec
->pcm_format_first
)
1071 update_pcm_format(codec
, p
, nid
, format
);
1076 /* make other inactive cvts with the same stream-tag dirty */
1077 type
= get_wcaps_type(get_wcaps(codec
, nid
));
1078 list_for_each_codec(c
, codec
->bus
) {
1079 for (i
= 0; i
< c
->cvt_setups
.used
; i
++) {
1080 p
= snd_array_elem(&c
->cvt_setups
, i
);
1081 if (!p
->active
&& p
->stream_tag
== stream_tag
&&
1082 get_wcaps_type(get_wcaps(c
, p
->nid
)) == type
)
1087 EXPORT_SYMBOL_GPL(snd_hda_codec_setup_stream
);
1089 static void really_cleanup_stream(struct hda_codec
*codec
,
1090 struct hda_cvt_setup
*q
);
1093 * __snd_hda_codec_cleanup_stream - clean up the codec for closing
1094 * @codec: the CODEC to clean up
1095 * @nid: the NID to clean up
1096 * @do_now: really clean up the stream instead of clearing the active flag
1098 void __snd_hda_codec_cleanup_stream(struct hda_codec
*codec
, hda_nid_t nid
,
1101 struct hda_cvt_setup
*p
;
1106 if (codec
->no_sticky_stream
)
1109 codec_dbg(codec
, "hda_codec_cleanup_stream: NID=0x%x\n", nid
);
1110 p
= get_hda_cvt_setup(codec
, nid
);
1112 /* here we just clear the active flag when do_now isn't set;
1113 * actual clean-ups will be done later in
1114 * purify_inactive_streams() called from snd_hda_codec_prpapre()
1117 really_cleanup_stream(codec
, p
);
1122 EXPORT_SYMBOL_GPL(__snd_hda_codec_cleanup_stream
);
1124 static void really_cleanup_stream(struct hda_codec
*codec
,
1125 struct hda_cvt_setup
*q
)
1127 hda_nid_t nid
= q
->nid
;
1128 if (q
->stream_tag
|| q
->channel_id
)
1129 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_CHANNEL_STREAMID
, 0);
1131 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_STREAM_FORMAT
, 0
1133 memset(q
, 0, sizeof(*q
));
1135 if (codec
->patch_ops
.stream_pm
)
1136 codec
->patch_ops
.stream_pm(codec
, nid
, false);
1139 /* clean up the all conflicting obsolete streams */
1140 static void purify_inactive_streams(struct hda_codec
*codec
)
1142 struct hda_codec
*c
;
1145 list_for_each_codec(c
, codec
->bus
) {
1146 for (i
= 0; i
< c
->cvt_setups
.used
; i
++) {
1147 struct hda_cvt_setup
*p
;
1148 p
= snd_array_elem(&c
->cvt_setups
, i
);
1150 really_cleanup_stream(c
, p
);
1156 /* clean up all streams; called from suspend */
1157 static void hda_cleanup_all_streams(struct hda_codec
*codec
)
1161 for (i
= 0; i
< codec
->cvt_setups
.used
; i
++) {
1162 struct hda_cvt_setup
*p
= snd_array_elem(&codec
->cvt_setups
, i
);
1164 really_cleanup_stream(codec
, p
);
1170 * amp access functions
1174 * query_amp_caps - query AMP capabilities
1175 * @codec: the HD-auio codec
1176 * @nid: the NID to query
1177 * @direction: either #HDA_INPUT or #HDA_OUTPUT
1179 * Query AMP capabilities for the given widget and direction.
1180 * Returns the obtained capability bits.
1182 * When cap bits have been already read, this doesn't read again but
1183 * returns the cached value.
1185 u32
query_amp_caps(struct hda_codec
*codec
, hda_nid_t nid
, int direction
)
1187 if (!(get_wcaps(codec
, nid
) & AC_WCAP_AMP_OVRD
))
1188 nid
= codec
->core
.afg
;
1189 return snd_hda_param_read(codec
, nid
,
1190 direction
== HDA_OUTPUT
?
1191 AC_PAR_AMP_OUT_CAP
: AC_PAR_AMP_IN_CAP
);
1193 EXPORT_SYMBOL_GPL(query_amp_caps
);
1196 * snd_hda_check_amp_caps - query AMP capabilities
1197 * @codec: the HD-audio codec
1198 * @nid: the NID to query
1199 * @dir: either #HDA_INPUT or #HDA_OUTPUT
1200 * @bits: bit mask to check the result
1202 * Check whether the widget has the given amp capability for the direction.
1204 bool snd_hda_check_amp_caps(struct hda_codec
*codec
, hda_nid_t nid
,
1205 int dir
, unsigned int bits
)
1209 if (get_wcaps(codec
, nid
) & (1 << (dir
+ 1)))
1210 if (query_amp_caps(codec
, nid
, dir
) & bits
)
1214 EXPORT_SYMBOL_GPL(snd_hda_check_amp_caps
);
1217 * snd_hda_override_amp_caps - Override the AMP capabilities
1218 * @codec: the CODEC to clean up
1219 * @nid: the NID to clean up
1220 * @dir: either #HDA_INPUT or #HDA_OUTPUT
1221 * @caps: the capability bits to set
1223 * Override the cached AMP caps bits value by the given one.
1224 * This function is useful if the driver needs to adjust the AMP ranges,
1225 * e.g. limit to 0dB, etc.
1227 * Returns zero if successful or a negative error code.
1229 int snd_hda_override_amp_caps(struct hda_codec
*codec
, hda_nid_t nid
, int dir
,
1234 snd_hda_override_wcaps(codec
, nid
,
1235 get_wcaps(codec
, nid
) | AC_WCAP_AMP_OVRD
);
1236 parm
= dir
== HDA_OUTPUT
? AC_PAR_AMP_OUT_CAP
: AC_PAR_AMP_IN_CAP
;
1237 return snd_hdac_override_parm(&codec
->core
, nid
, parm
, caps
);
1239 EXPORT_SYMBOL_GPL(snd_hda_override_amp_caps
);
1242 * snd_hda_codec_amp_update - update the AMP mono value
1243 * @codec: HD-audio codec
1244 * @nid: NID to read the AMP value
1245 * @ch: channel to update (0 or 1)
1246 * @dir: #HDA_INPUT or #HDA_OUTPUT
1247 * @idx: the index value (only for input direction)
1248 * @mask: bit mask to set
1249 * @val: the bits value to set
1251 * Update the AMP values for the given channel, direction and index.
1253 int snd_hda_codec_amp_update(struct hda_codec
*codec
, hda_nid_t nid
,
1254 int ch
, int dir
, int idx
, int mask
, int val
)
1256 unsigned int cmd
= snd_hdac_regmap_encode_amp(nid
, ch
, dir
, idx
);
1258 /* enable fake mute if no h/w mute but min=mute */
1259 if ((query_amp_caps(codec
, nid
, dir
) &
1260 (AC_AMPCAP_MUTE
| AC_AMPCAP_MIN_MUTE
)) == AC_AMPCAP_MIN_MUTE
)
1261 cmd
|= AC_AMP_FAKE_MUTE
;
1262 return snd_hdac_regmap_update_raw(&codec
->core
, cmd
, mask
, val
);
1264 EXPORT_SYMBOL_GPL(snd_hda_codec_amp_update
);
1267 * snd_hda_codec_amp_stereo - update the AMP stereo values
1268 * @codec: HD-audio codec
1269 * @nid: NID to read the AMP value
1270 * @direction: #HDA_INPUT or #HDA_OUTPUT
1271 * @idx: the index value (only for input direction)
1272 * @mask: bit mask to set
1273 * @val: the bits value to set
1275 * Update the AMP values like snd_hda_codec_amp_update(), but for a
1276 * stereo widget with the same mask and value.
1278 int snd_hda_codec_amp_stereo(struct hda_codec
*codec
, hda_nid_t nid
,
1279 int direction
, int idx
, int mask
, int val
)
1283 if (snd_BUG_ON(mask
& ~0xff))
1285 for (ch
= 0; ch
< 2; ch
++)
1286 ret
|= snd_hda_codec_amp_update(codec
, nid
, ch
, direction
,
1290 EXPORT_SYMBOL_GPL(snd_hda_codec_amp_stereo
);
1293 * snd_hda_codec_amp_init - initialize the AMP value
1294 * @codec: the HDA codec
1295 * @nid: NID to read the AMP value
1296 * @ch: channel (left=0 or right=1)
1297 * @dir: #HDA_INPUT or #HDA_OUTPUT
1298 * @idx: the index value (only for input direction)
1299 * @mask: bit mask to set
1300 * @val: the bits value to set
1302 * Works like snd_hda_codec_amp_update() but it writes the value only at
1303 * the first access. If the amp was already initialized / updated beforehand,
1304 * this does nothing.
1306 int snd_hda_codec_amp_init(struct hda_codec
*codec
, hda_nid_t nid
, int ch
,
1307 int dir
, int idx
, int mask
, int val
)
1311 if (!codec
->core
.regmap
)
1313 regcache_cache_only(codec
->core
.regmap
, true);
1314 orig
= snd_hda_codec_amp_read(codec
, nid
, ch
, dir
, idx
);
1315 regcache_cache_only(codec
->core
.regmap
, false);
1318 return snd_hda_codec_amp_update(codec
, nid
, ch
, dir
, idx
, mask
, val
);
1320 EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init
);
1323 * snd_hda_codec_amp_init_stereo - initialize the stereo AMP value
1324 * @codec: the HDA codec
1325 * @nid: NID to read the AMP value
1326 * @dir: #HDA_INPUT or #HDA_OUTPUT
1327 * @idx: the index value (only for input direction)
1328 * @mask: bit mask to set
1329 * @val: the bits value to set
1331 * Call snd_hda_codec_amp_init() for both stereo channels.
1333 int snd_hda_codec_amp_init_stereo(struct hda_codec
*codec
, hda_nid_t nid
,
1334 int dir
, int idx
, int mask
, int val
)
1338 if (snd_BUG_ON(mask
& ~0xff))
1340 for (ch
= 0; ch
< 2; ch
++)
1341 ret
|= snd_hda_codec_amp_init(codec
, nid
, ch
, dir
,
1345 EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init_stereo
);
1347 static u32
get_amp_max_value(struct hda_codec
*codec
, hda_nid_t nid
, int dir
,
1350 u32 caps
= query_amp_caps(codec
, nid
, dir
);
1352 caps
= (caps
& AC_AMPCAP_NUM_STEPS
) >> AC_AMPCAP_NUM_STEPS_SHIFT
;
1359 * snd_hda_mixer_amp_volume_info - Info callback for a standard AMP mixer
1360 * @kcontrol: referred ctl element
1361 * @uinfo: pointer to get/store the data
1363 * The control element is supposed to have the private_value field
1364 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1366 int snd_hda_mixer_amp_volume_info(struct snd_kcontrol
*kcontrol
,
1367 struct snd_ctl_elem_info
*uinfo
)
1369 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1370 u16 nid
= get_amp_nid(kcontrol
);
1371 u8 chs
= get_amp_channels(kcontrol
);
1372 int dir
= get_amp_direction(kcontrol
);
1373 unsigned int ofs
= get_amp_offset(kcontrol
);
1375 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
1376 uinfo
->count
= chs
== 3 ? 2 : 1;
1377 uinfo
->value
.integer
.min
= 0;
1378 uinfo
->value
.integer
.max
= get_amp_max_value(codec
, nid
, dir
, ofs
);
1379 if (!uinfo
->value
.integer
.max
) {
1381 "num_steps = 0 for NID=0x%x (ctl = %s)\n",
1382 nid
, kcontrol
->id
.name
);
1387 EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_info
);
1390 static inline unsigned int
1391 read_amp_value(struct hda_codec
*codec
, hda_nid_t nid
,
1392 int ch
, int dir
, int idx
, unsigned int ofs
)
1395 val
= snd_hda_codec_amp_read(codec
, nid
, ch
, dir
, idx
);
1396 val
&= HDA_AMP_VOLMASK
;
1405 update_amp_value(struct hda_codec
*codec
, hda_nid_t nid
,
1406 int ch
, int dir
, int idx
, unsigned int ofs
,
1409 unsigned int maxval
;
1413 /* ofs = 0: raw max value */
1414 maxval
= get_amp_max_value(codec
, nid
, dir
, 0);
1417 return snd_hda_codec_amp_update(codec
, nid
, ch
, dir
, idx
,
1418 HDA_AMP_VOLMASK
, val
);
1422 * snd_hda_mixer_amp_volume_get - Get callback for a standard AMP mixer volume
1423 * @kcontrol: ctl element
1424 * @ucontrol: pointer to get/store the data
1426 * The control element is supposed to have the private_value field
1427 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1429 int snd_hda_mixer_amp_volume_get(struct snd_kcontrol
*kcontrol
,
1430 struct snd_ctl_elem_value
*ucontrol
)
1432 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1433 hda_nid_t nid
= get_amp_nid(kcontrol
);
1434 int chs
= get_amp_channels(kcontrol
);
1435 int dir
= get_amp_direction(kcontrol
);
1436 int idx
= get_amp_index(kcontrol
);
1437 unsigned int ofs
= get_amp_offset(kcontrol
);
1438 long *valp
= ucontrol
->value
.integer
.value
;
1441 *valp
++ = read_amp_value(codec
, nid
, 0, dir
, idx
, ofs
);
1443 *valp
= read_amp_value(codec
, nid
, 1, dir
, idx
, ofs
);
1446 EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_get
);
1449 * snd_hda_mixer_amp_volume_put - Put callback for a standard AMP mixer volume
1450 * @kcontrol: ctl element
1451 * @ucontrol: pointer to get/store the data
1453 * The control element is supposed to have the private_value field
1454 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1456 int snd_hda_mixer_amp_volume_put(struct snd_kcontrol
*kcontrol
,
1457 struct snd_ctl_elem_value
*ucontrol
)
1459 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1460 hda_nid_t nid
= get_amp_nid(kcontrol
);
1461 int chs
= get_amp_channels(kcontrol
);
1462 int dir
= get_amp_direction(kcontrol
);
1463 int idx
= get_amp_index(kcontrol
);
1464 unsigned int ofs
= get_amp_offset(kcontrol
);
1465 long *valp
= ucontrol
->value
.integer
.value
;
1469 change
= update_amp_value(codec
, nid
, 0, dir
, idx
, ofs
, *valp
);
1473 change
|= update_amp_value(codec
, nid
, 1, dir
, idx
, ofs
, *valp
);
1476 EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_put
);
1478 /* inquiry the amp caps and convert to TLV */
1479 static void get_ctl_amp_tlv(struct snd_kcontrol
*kcontrol
, unsigned int *tlv
)
1481 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1482 hda_nid_t nid
= get_amp_nid(kcontrol
);
1483 int dir
= get_amp_direction(kcontrol
);
1484 unsigned int ofs
= get_amp_offset(kcontrol
);
1485 bool min_mute
= get_amp_min_mute(kcontrol
);
1486 u32 caps
, val1
, val2
;
1488 caps
= query_amp_caps(codec
, nid
, dir
);
1489 val2
= (caps
& AC_AMPCAP_STEP_SIZE
) >> AC_AMPCAP_STEP_SIZE_SHIFT
;
1490 val2
= (val2
+ 1) * 25;
1491 val1
= -((caps
& AC_AMPCAP_OFFSET
) >> AC_AMPCAP_OFFSET_SHIFT
);
1493 val1
= ((int)val1
) * ((int)val2
);
1494 if (min_mute
|| (caps
& AC_AMPCAP_MIN_MUTE
))
1495 val2
|= TLV_DB_SCALE_MUTE
;
1496 tlv
[0] = SNDRV_CTL_TLVT_DB_SCALE
;
1497 tlv
[1] = 2 * sizeof(unsigned int);
1503 * snd_hda_mixer_amp_tlv - TLV callback for a standard AMP mixer volume
1504 * @kcontrol: ctl element
1505 * @op_flag: operation flag
1506 * @size: byte size of input TLV
1509 * The control element is supposed to have the private_value field
1510 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1512 int snd_hda_mixer_amp_tlv(struct snd_kcontrol
*kcontrol
, int op_flag
,
1513 unsigned int size
, unsigned int __user
*_tlv
)
1515 unsigned int tlv
[4];
1517 if (size
< 4 * sizeof(unsigned int))
1519 get_ctl_amp_tlv(kcontrol
, tlv
);
1520 if (copy_to_user(_tlv
, tlv
, sizeof(tlv
)))
1524 EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_tlv
);
1527 * snd_hda_set_vmaster_tlv - Set TLV for a virtual master control
1528 * @codec: HD-audio codec
1529 * @nid: NID of a reference widget
1530 * @dir: #HDA_INPUT or #HDA_OUTPUT
1531 * @tlv: TLV data to be stored, at least 4 elements
1533 * Set (static) TLV data for a virtual master volume using the AMP caps
1534 * obtained from the reference NID.
1535 * The volume range is recalculated as if the max volume is 0dB.
1537 void snd_hda_set_vmaster_tlv(struct hda_codec
*codec
, hda_nid_t nid
, int dir
,
1543 caps
= query_amp_caps(codec
, nid
, dir
);
1544 nums
= (caps
& AC_AMPCAP_NUM_STEPS
) >> AC_AMPCAP_NUM_STEPS_SHIFT
;
1545 step
= (caps
& AC_AMPCAP_STEP_SIZE
) >> AC_AMPCAP_STEP_SIZE_SHIFT
;
1546 step
= (step
+ 1) * 25;
1547 tlv
[0] = SNDRV_CTL_TLVT_DB_SCALE
;
1548 tlv
[1] = 2 * sizeof(unsigned int);
1549 tlv
[2] = -nums
* step
;
1552 EXPORT_SYMBOL_GPL(snd_hda_set_vmaster_tlv
);
1554 /* find a mixer control element with the given name */
1555 static struct snd_kcontrol
*
1556 find_mixer_ctl(struct hda_codec
*codec
, const char *name
, int dev
, int idx
)
1558 struct snd_ctl_elem_id id
;
1559 memset(&id
, 0, sizeof(id
));
1560 id
.iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
1563 if (snd_BUG_ON(strlen(name
) >= sizeof(id
.name
)))
1565 strcpy(id
.name
, name
);
1566 return snd_ctl_find_id(codec
->card
, &id
);
1570 * snd_hda_find_mixer_ctl - Find a mixer control element with the given name
1571 * @codec: HD-audio codec
1572 * @name: ctl id name string
1574 * Get the control element with the given id string and IFACE_MIXER.
1576 struct snd_kcontrol
*snd_hda_find_mixer_ctl(struct hda_codec
*codec
,
1579 return find_mixer_ctl(codec
, name
, 0, 0);
1581 EXPORT_SYMBOL_GPL(snd_hda_find_mixer_ctl
);
1583 static int find_empty_mixer_ctl_idx(struct hda_codec
*codec
, const char *name
,
1587 /* 16 ctlrs should be large enough */
1588 for (i
= 0, idx
= start_idx
; i
< 16; i
++, idx
++) {
1589 if (!find_mixer_ctl(codec
, name
, 0, idx
))
1596 * snd_hda_ctl_add - Add a control element and assign to the codec
1597 * @codec: HD-audio codec
1598 * @nid: corresponding NID (optional)
1599 * @kctl: the control element to assign
1601 * Add the given control element to an array inside the codec instance.
1602 * All control elements belonging to a codec are supposed to be added
1603 * by this function so that a proper clean-up works at the free or
1604 * reconfiguration time.
1606 * If non-zero @nid is passed, the NID is assigned to the control element.
1607 * The assignment is shown in the codec proc file.
1609 * snd_hda_ctl_add() checks the control subdev id field whether
1610 * #HDA_SUBDEV_NID_FLAG bit is set. If set (and @nid is zero), the lower
1611 * bits value is taken as the NID to assign. The #HDA_NID_ITEM_AMP bit
1612 * specifies if kctl->private_value is a HDA amplifier value.
1614 int snd_hda_ctl_add(struct hda_codec
*codec
, hda_nid_t nid
,
1615 struct snd_kcontrol
*kctl
)
1618 unsigned short flags
= 0;
1619 struct hda_nid_item
*item
;
1621 if (kctl
->id
.subdevice
& HDA_SUBDEV_AMP_FLAG
) {
1622 flags
|= HDA_NID_ITEM_AMP
;
1624 nid
= get_amp_nid_(kctl
->private_value
);
1626 if ((kctl
->id
.subdevice
& HDA_SUBDEV_NID_FLAG
) != 0 && nid
== 0)
1627 nid
= kctl
->id
.subdevice
& 0xffff;
1628 if (kctl
->id
.subdevice
& (HDA_SUBDEV_NID_FLAG
|HDA_SUBDEV_AMP_FLAG
))
1629 kctl
->id
.subdevice
= 0;
1630 err
= snd_ctl_add(codec
->card
, kctl
);
1633 item
= snd_array_new(&codec
->mixers
);
1638 item
->flags
= flags
;
1641 EXPORT_SYMBOL_GPL(snd_hda_ctl_add
);
1644 * snd_hda_add_nid - Assign a NID to a control element
1645 * @codec: HD-audio codec
1646 * @nid: corresponding NID (optional)
1647 * @kctl: the control element to assign
1648 * @index: index to kctl
1650 * Add the given control element to an array inside the codec instance.
1651 * This function is used when #snd_hda_ctl_add cannot be used for 1:1
1652 * NID:KCTL mapping - for example "Capture Source" selector.
1654 int snd_hda_add_nid(struct hda_codec
*codec
, struct snd_kcontrol
*kctl
,
1655 unsigned int index
, hda_nid_t nid
)
1657 struct hda_nid_item
*item
;
1660 item
= snd_array_new(&codec
->nids
);
1664 item
->index
= index
;
1668 codec_err(codec
, "no NID for mapping control %s:%d:%d\n",
1669 kctl
->id
.name
, kctl
->id
.index
, index
);
1672 EXPORT_SYMBOL_GPL(snd_hda_add_nid
);
1675 * snd_hda_ctls_clear - Clear all controls assigned to the given codec
1676 * @codec: HD-audio codec
1678 void snd_hda_ctls_clear(struct hda_codec
*codec
)
1681 struct hda_nid_item
*items
= codec
->mixers
.list
;
1682 for (i
= 0; i
< codec
->mixers
.used
; i
++)
1683 snd_ctl_remove(codec
->card
, items
[i
].kctl
);
1684 snd_array_free(&codec
->mixers
);
1685 snd_array_free(&codec
->nids
);
1689 * snd_hda_lock_devices - pseudo device locking
1692 * toggle card->shutdown to allow/disallow the device access (as a hack)
1694 int snd_hda_lock_devices(struct hda_bus
*bus
)
1696 struct snd_card
*card
= bus
->card
;
1697 struct hda_codec
*codec
;
1699 spin_lock(&card
->files_lock
);
1703 if (!list_empty(&card
->ctl_files
))
1706 list_for_each_codec(codec
, bus
) {
1707 struct hda_pcm
*cpcm
;
1708 list_for_each_entry(cpcm
, &codec
->pcm_list_head
, list
) {
1711 if (cpcm
->pcm
->streams
[0].substream_opened
||
1712 cpcm
->pcm
->streams
[1].substream_opened
)
1716 spin_unlock(&card
->files_lock
);
1722 spin_unlock(&card
->files_lock
);
1725 EXPORT_SYMBOL_GPL(snd_hda_lock_devices
);
1728 * snd_hda_unlock_devices - pseudo device unlocking
1731 void snd_hda_unlock_devices(struct hda_bus
*bus
)
1733 struct snd_card
*card
= bus
->card
;
1735 spin_lock(&card
->files_lock
);
1737 spin_unlock(&card
->files_lock
);
1739 EXPORT_SYMBOL_GPL(snd_hda_unlock_devices
);
1742 * snd_hda_codec_reset - Clear all objects assigned to the codec
1743 * @codec: HD-audio codec
1745 * This frees the all PCM and control elements assigned to the codec, and
1746 * clears the caches and restores the pin default configurations.
1748 * When a device is being used, it returns -EBSY. If successfully freed,
1751 int snd_hda_codec_reset(struct hda_codec
*codec
)
1753 struct hda_bus
*bus
= codec
->bus
;
1755 if (snd_hda_lock_devices(bus
) < 0)
1758 /* OK, let it free */
1759 snd_hdac_device_unregister(&codec
->core
);
1761 /* allow device access again */
1762 snd_hda_unlock_devices(bus
);
1766 typedef int (*map_slave_func_t
)(struct hda_codec
*, void *, struct snd_kcontrol
*);
1768 /* apply the function to all matching slave ctls in the mixer list */
1769 static int map_slaves(struct hda_codec
*codec
, const char * const *slaves
,
1770 const char *suffix
, map_slave_func_t func
, void *data
)
1772 struct hda_nid_item
*items
;
1773 const char * const *s
;
1776 items
= codec
->mixers
.list
;
1777 for (i
= 0; i
< codec
->mixers
.used
; i
++) {
1778 struct snd_kcontrol
*sctl
= items
[i
].kctl
;
1779 if (!sctl
|| sctl
->id
.iface
!= SNDRV_CTL_ELEM_IFACE_MIXER
)
1781 for (s
= slaves
; *s
; s
++) {
1782 char tmpname
[sizeof(sctl
->id
.name
)];
1783 const char *name
= *s
;
1785 snprintf(tmpname
, sizeof(tmpname
), "%s %s",
1789 if (!strcmp(sctl
->id
.name
, name
)) {
1790 err
= func(codec
, data
, sctl
);
1800 static int check_slave_present(struct hda_codec
*codec
,
1801 void *data
, struct snd_kcontrol
*sctl
)
1806 /* call kctl->put with the given value(s) */
1807 static int put_kctl_with_value(struct snd_kcontrol
*kctl
, int val
)
1809 struct snd_ctl_elem_value
*ucontrol
;
1810 ucontrol
= kzalloc(sizeof(*ucontrol
), GFP_KERNEL
);
1813 ucontrol
->value
.integer
.value
[0] = val
;
1814 ucontrol
->value
.integer
.value
[1] = val
;
1815 kctl
->put(kctl
, ucontrol
);
1820 struct slave_init_arg
{
1821 struct hda_codec
*codec
;
1825 /* initialize the slave volume with 0dB via snd_ctl_apply_vmaster_slaves() */
1826 static int init_slave_0dB(struct snd_kcontrol
*slave
,
1827 struct snd_kcontrol
*kctl
,
1830 struct slave_init_arg
*arg
= _arg
;
1832 const int *tlv
= NULL
;
1836 if (kctl
->vd
[0].access
& SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK
) {
1837 if (kctl
->tlv
.c
!= snd_hda_mixer_amp_tlv
) {
1838 codec_err(arg
->codec
,
1839 "Unexpected TLV callback for slave %s:%d\n",
1840 kctl
->id
.name
, kctl
->id
.index
);
1841 return 0; /* ignore */
1843 get_ctl_amp_tlv(kctl
, _tlv
);
1845 } else if (kctl
->vd
[0].access
& SNDRV_CTL_ELEM_ACCESS_TLV_READ
)
1848 if (!tlv
|| tlv
[0] != SNDRV_CTL_TLVT_DB_SCALE
)
1852 step
&= ~TLV_DB_SCALE_MUTE
;
1855 if (arg
->step
&& arg
->step
!= step
) {
1856 codec_err(arg
->codec
,
1857 "Mismatching dB step for vmaster slave (%d!=%d)\n",
1863 val
= -tlv
[2] / step
;
1865 put_kctl_with_value(slave
, val
);
1872 /* unmute the slave via snd_ctl_apply_vmaster_slaves() */
1873 static int init_slave_unmute(struct snd_kcontrol
*slave
,
1874 struct snd_kcontrol
*kctl
,
1877 return put_kctl_with_value(slave
, 1);
1880 static int add_slave(struct hda_codec
*codec
,
1881 void *data
, struct snd_kcontrol
*slave
)
1883 return snd_ctl_add_slave(data
, slave
);
1887 * __snd_hda_add_vmaster - create a virtual master control and add slaves
1888 * @codec: HD-audio codec
1889 * @name: vmaster control name
1890 * @tlv: TLV data (optional)
1891 * @slaves: slave control names (optional)
1892 * @suffix: suffix string to each slave name (optional)
1893 * @init_slave_vol: initialize slaves to unmute/0dB
1894 * @ctl_ret: store the vmaster kcontrol in return
1896 * Create a virtual master control with the given name. The TLV data
1897 * must be either NULL or a valid data.
1899 * @slaves is a NULL-terminated array of strings, each of which is a
1900 * slave control name. All controls with these names are assigned to
1901 * the new virtual master control.
1903 * This function returns zero if successful or a negative error code.
1905 int __snd_hda_add_vmaster(struct hda_codec
*codec
, char *name
,
1906 unsigned int *tlv
, const char * const *slaves
,
1907 const char *suffix
, bool init_slave_vol
,
1908 struct snd_kcontrol
**ctl_ret
)
1910 struct snd_kcontrol
*kctl
;
1916 err
= map_slaves(codec
, slaves
, suffix
, check_slave_present
, NULL
);
1918 codec_dbg(codec
, "No slave found for %s\n", name
);
1921 kctl
= snd_ctl_make_virtual_master(name
, tlv
);
1924 err
= snd_hda_ctl_add(codec
, 0, kctl
);
1928 err
= map_slaves(codec
, slaves
, suffix
, add_slave
, kctl
);
1932 /* init with master mute & zero volume */
1933 put_kctl_with_value(kctl
, 0);
1934 if (init_slave_vol
) {
1935 struct slave_init_arg arg
= {
1939 snd_ctl_apply_vmaster_slaves(kctl
,
1940 tlv
? init_slave_0dB
: init_slave_unmute
,
1948 EXPORT_SYMBOL_GPL(__snd_hda_add_vmaster
);
1951 * mute-LED control using vmaster
1953 static int vmaster_mute_mode_info(struct snd_kcontrol
*kcontrol
,
1954 struct snd_ctl_elem_info
*uinfo
)
1956 static const char * const texts
[] = {
1957 "On", "Off", "Follow Master"
1960 return snd_ctl_enum_info(uinfo
, 1, 3, texts
);
1963 static int vmaster_mute_mode_get(struct snd_kcontrol
*kcontrol
,
1964 struct snd_ctl_elem_value
*ucontrol
)
1966 struct hda_vmaster_mute_hook
*hook
= snd_kcontrol_chip(kcontrol
);
1967 ucontrol
->value
.enumerated
.item
[0] = hook
->mute_mode
;
1971 static int vmaster_mute_mode_put(struct snd_kcontrol
*kcontrol
,
1972 struct snd_ctl_elem_value
*ucontrol
)
1974 struct hda_vmaster_mute_hook
*hook
= snd_kcontrol_chip(kcontrol
);
1975 unsigned int old_mode
= hook
->mute_mode
;
1977 hook
->mute_mode
= ucontrol
->value
.enumerated
.item
[0];
1978 if (hook
->mute_mode
> HDA_VMUTE_FOLLOW_MASTER
)
1979 hook
->mute_mode
= HDA_VMUTE_FOLLOW_MASTER
;
1980 if (old_mode
== hook
->mute_mode
)
1982 snd_hda_sync_vmaster_hook(hook
);
1986 static const struct snd_kcontrol_new vmaster_mute_mode
= {
1987 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1988 .name
= "Mute-LED Mode",
1989 .info
= vmaster_mute_mode_info
,
1990 .get
= vmaster_mute_mode_get
,
1991 .put
= vmaster_mute_mode_put
,
1994 /* meta hook to call each driver's vmaster hook */
1995 static void vmaster_hook(void *private_data
, int enabled
)
1997 struct hda_vmaster_mute_hook
*hook
= private_data
;
1999 if (hook
->mute_mode
!= HDA_VMUTE_FOLLOW_MASTER
)
2000 enabled
= hook
->mute_mode
;
2001 hook
->hook(hook
->codec
, enabled
);
2005 * snd_hda_add_vmaster_hook - Add a vmaster hook for mute-LED
2006 * @codec: the HDA codec
2007 * @hook: the vmaster hook object
2008 * @expose_enum_ctl: flag to create an enum ctl
2010 * Add a mute-LED hook with the given vmaster switch kctl.
2011 * When @expose_enum_ctl is set, "Mute-LED Mode" control is automatically
2012 * created and associated with the given hook.
2014 int snd_hda_add_vmaster_hook(struct hda_codec
*codec
,
2015 struct hda_vmaster_mute_hook
*hook
,
2016 bool expose_enum_ctl
)
2018 struct snd_kcontrol
*kctl
;
2020 if (!hook
->hook
|| !hook
->sw_kctl
)
2022 hook
->codec
= codec
;
2023 hook
->mute_mode
= HDA_VMUTE_FOLLOW_MASTER
;
2024 snd_ctl_add_vmaster_hook(hook
->sw_kctl
, vmaster_hook
, hook
);
2025 if (!expose_enum_ctl
)
2027 kctl
= snd_ctl_new1(&vmaster_mute_mode
, hook
);
2030 return snd_hda_ctl_add(codec
, 0, kctl
);
2032 EXPORT_SYMBOL_GPL(snd_hda_add_vmaster_hook
);
2035 * snd_hda_sync_vmaster_hook - Sync vmaster hook
2036 * @hook: the vmaster hook
2038 * Call the hook with the current value for synchronization.
2039 * Should be called in init callback.
2041 void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook
*hook
)
2043 if (!hook
->hook
|| !hook
->codec
)
2045 /* don't call vmaster hook in the destructor since it might have
2046 * been already destroyed
2048 if (hook
->codec
->bus
->shutdown
)
2050 snd_ctl_sync_vmaster_hook(hook
->sw_kctl
);
2052 EXPORT_SYMBOL_GPL(snd_hda_sync_vmaster_hook
);
2056 * snd_hda_mixer_amp_switch_info - Info callback for a standard AMP mixer switch
2057 * @kcontrol: referred ctl element
2058 * @uinfo: pointer to get/store the data
2060 * The control element is supposed to have the private_value field
2061 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2063 int snd_hda_mixer_amp_switch_info(struct snd_kcontrol
*kcontrol
,
2064 struct snd_ctl_elem_info
*uinfo
)
2066 int chs
= get_amp_channels(kcontrol
);
2068 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
2069 uinfo
->count
= chs
== 3 ? 2 : 1;
2070 uinfo
->value
.integer
.min
= 0;
2071 uinfo
->value
.integer
.max
= 1;
2074 EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_info
);
2077 * snd_hda_mixer_amp_switch_get - Get callback for a standard AMP mixer switch
2078 * @kcontrol: ctl element
2079 * @ucontrol: pointer to get/store the data
2081 * The control element is supposed to have the private_value field
2082 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2084 int snd_hda_mixer_amp_switch_get(struct snd_kcontrol
*kcontrol
,
2085 struct snd_ctl_elem_value
*ucontrol
)
2087 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2088 hda_nid_t nid
= get_amp_nid(kcontrol
);
2089 int chs
= get_amp_channels(kcontrol
);
2090 int dir
= get_amp_direction(kcontrol
);
2091 int idx
= get_amp_index(kcontrol
);
2092 long *valp
= ucontrol
->value
.integer
.value
;
2095 *valp
++ = (snd_hda_codec_amp_read(codec
, nid
, 0, dir
, idx
) &
2096 HDA_AMP_MUTE
) ? 0 : 1;
2098 *valp
= (snd_hda_codec_amp_read(codec
, nid
, 1, dir
, idx
) &
2099 HDA_AMP_MUTE
) ? 0 : 1;
2102 EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_get
);
2105 * snd_hda_mixer_amp_switch_put - Put callback for a standard AMP mixer switch
2106 * @kcontrol: ctl element
2107 * @ucontrol: pointer to get/store the data
2109 * The control element is supposed to have the private_value field
2110 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2112 int snd_hda_mixer_amp_switch_put(struct snd_kcontrol
*kcontrol
,
2113 struct snd_ctl_elem_value
*ucontrol
)
2115 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2116 hda_nid_t nid
= get_amp_nid(kcontrol
);
2117 int chs
= get_amp_channels(kcontrol
);
2118 int dir
= get_amp_direction(kcontrol
);
2119 int idx
= get_amp_index(kcontrol
);
2120 long *valp
= ucontrol
->value
.integer
.value
;
2124 change
= snd_hda_codec_amp_update(codec
, nid
, 0, dir
, idx
,
2126 *valp
? 0 : HDA_AMP_MUTE
);
2130 change
|= snd_hda_codec_amp_update(codec
, nid
, 1, dir
, idx
,
2132 *valp
? 0 : HDA_AMP_MUTE
);
2133 hda_call_check_power_status(codec
, nid
);
2136 EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_put
);
2139 * SPDIF out controls
2142 static int snd_hda_spdif_mask_info(struct snd_kcontrol
*kcontrol
,
2143 struct snd_ctl_elem_info
*uinfo
)
2145 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
2150 static int snd_hda_spdif_cmask_get(struct snd_kcontrol
*kcontrol
,
2151 struct snd_ctl_elem_value
*ucontrol
)
2153 ucontrol
->value
.iec958
.status
[0] = IEC958_AES0_PROFESSIONAL
|
2154 IEC958_AES0_NONAUDIO
|
2155 IEC958_AES0_CON_EMPHASIS_5015
|
2156 IEC958_AES0_CON_NOT_COPYRIGHT
;
2157 ucontrol
->value
.iec958
.status
[1] = IEC958_AES1_CON_CATEGORY
|
2158 IEC958_AES1_CON_ORIGINAL
;
2162 static int snd_hda_spdif_pmask_get(struct snd_kcontrol
*kcontrol
,
2163 struct snd_ctl_elem_value
*ucontrol
)
2165 ucontrol
->value
.iec958
.status
[0] = IEC958_AES0_PROFESSIONAL
|
2166 IEC958_AES0_NONAUDIO
|
2167 IEC958_AES0_PRO_EMPHASIS_5015
;
2171 static int snd_hda_spdif_default_get(struct snd_kcontrol
*kcontrol
,
2172 struct snd_ctl_elem_value
*ucontrol
)
2174 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2175 int idx
= kcontrol
->private_value
;
2176 struct hda_spdif_out
*spdif
;
2178 mutex_lock(&codec
->spdif_mutex
);
2179 spdif
= snd_array_elem(&codec
->spdif_out
, idx
);
2180 ucontrol
->value
.iec958
.status
[0] = spdif
->status
& 0xff;
2181 ucontrol
->value
.iec958
.status
[1] = (spdif
->status
>> 8) & 0xff;
2182 ucontrol
->value
.iec958
.status
[2] = (spdif
->status
>> 16) & 0xff;
2183 ucontrol
->value
.iec958
.status
[3] = (spdif
->status
>> 24) & 0xff;
2184 mutex_unlock(&codec
->spdif_mutex
);
2189 /* convert from SPDIF status bits to HDA SPDIF bits
2190 * bit 0 (DigEn) is always set zero (to be filled later)
2192 static unsigned short convert_from_spdif_status(unsigned int sbits
)
2194 unsigned short val
= 0;
2196 if (sbits
& IEC958_AES0_PROFESSIONAL
)
2197 val
|= AC_DIG1_PROFESSIONAL
;
2198 if (sbits
& IEC958_AES0_NONAUDIO
)
2199 val
|= AC_DIG1_NONAUDIO
;
2200 if (sbits
& IEC958_AES0_PROFESSIONAL
) {
2201 if ((sbits
& IEC958_AES0_PRO_EMPHASIS
) ==
2202 IEC958_AES0_PRO_EMPHASIS_5015
)
2203 val
|= AC_DIG1_EMPHASIS
;
2205 if ((sbits
& IEC958_AES0_CON_EMPHASIS
) ==
2206 IEC958_AES0_CON_EMPHASIS_5015
)
2207 val
|= AC_DIG1_EMPHASIS
;
2208 if (!(sbits
& IEC958_AES0_CON_NOT_COPYRIGHT
))
2209 val
|= AC_DIG1_COPYRIGHT
;
2210 if (sbits
& (IEC958_AES1_CON_ORIGINAL
<< 8))
2211 val
|= AC_DIG1_LEVEL
;
2212 val
|= sbits
& (IEC958_AES1_CON_CATEGORY
<< 8);
2217 /* convert to SPDIF status bits from HDA SPDIF bits
2219 static unsigned int convert_to_spdif_status(unsigned short val
)
2221 unsigned int sbits
= 0;
2223 if (val
& AC_DIG1_NONAUDIO
)
2224 sbits
|= IEC958_AES0_NONAUDIO
;
2225 if (val
& AC_DIG1_PROFESSIONAL
)
2226 sbits
|= IEC958_AES0_PROFESSIONAL
;
2227 if (sbits
& IEC958_AES0_PROFESSIONAL
) {
2228 if (val
& AC_DIG1_EMPHASIS
)
2229 sbits
|= IEC958_AES0_PRO_EMPHASIS_5015
;
2231 if (val
& AC_DIG1_EMPHASIS
)
2232 sbits
|= IEC958_AES0_CON_EMPHASIS_5015
;
2233 if (!(val
& AC_DIG1_COPYRIGHT
))
2234 sbits
|= IEC958_AES0_CON_NOT_COPYRIGHT
;
2235 if (val
& AC_DIG1_LEVEL
)
2236 sbits
|= (IEC958_AES1_CON_ORIGINAL
<< 8);
2237 sbits
|= val
& (0x7f << 8);
2242 /* set digital convert verbs both for the given NID and its slaves */
2243 static void set_dig_out(struct hda_codec
*codec
, hda_nid_t nid
,
2248 snd_hdac_regmap_update(&codec
->core
, nid
, AC_VERB_SET_DIGI_CONVERT_1
,
2250 d
= codec
->slave_dig_outs
;
2254 snd_hdac_regmap_update(&codec
->core
, *d
,
2255 AC_VERB_SET_DIGI_CONVERT_1
, mask
, val
);
2258 static inline void set_dig_out_convert(struct hda_codec
*codec
, hda_nid_t nid
,
2261 unsigned int mask
= 0;
2262 unsigned int val
= 0;
2272 set_dig_out(codec
, nid
, mask
, val
);
2275 static int snd_hda_spdif_default_put(struct snd_kcontrol
*kcontrol
,
2276 struct snd_ctl_elem_value
*ucontrol
)
2278 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2279 int idx
= kcontrol
->private_value
;
2280 struct hda_spdif_out
*spdif
;
2285 mutex_lock(&codec
->spdif_mutex
);
2286 spdif
= snd_array_elem(&codec
->spdif_out
, idx
);
2288 spdif
->status
= ucontrol
->value
.iec958
.status
[0] |
2289 ((unsigned int)ucontrol
->value
.iec958
.status
[1] << 8) |
2290 ((unsigned int)ucontrol
->value
.iec958
.status
[2] << 16) |
2291 ((unsigned int)ucontrol
->value
.iec958
.status
[3] << 24);
2292 val
= convert_from_spdif_status(spdif
->status
);
2293 val
|= spdif
->ctls
& 1;
2294 change
= spdif
->ctls
!= val
;
2296 if (change
&& nid
!= (u16
)-1)
2297 set_dig_out_convert(codec
, nid
, val
& 0xff, (val
>> 8) & 0xff);
2298 mutex_unlock(&codec
->spdif_mutex
);
2302 #define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
2304 static int snd_hda_spdif_out_switch_get(struct snd_kcontrol
*kcontrol
,
2305 struct snd_ctl_elem_value
*ucontrol
)
2307 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2308 int idx
= kcontrol
->private_value
;
2309 struct hda_spdif_out
*spdif
;
2311 mutex_lock(&codec
->spdif_mutex
);
2312 spdif
= snd_array_elem(&codec
->spdif_out
, idx
);
2313 ucontrol
->value
.integer
.value
[0] = spdif
->ctls
& AC_DIG1_ENABLE
;
2314 mutex_unlock(&codec
->spdif_mutex
);
2318 static inline void set_spdif_ctls(struct hda_codec
*codec
, hda_nid_t nid
,
2321 set_dig_out_convert(codec
, nid
, dig1
, dig2
);
2322 /* unmute amp switch (if any) */
2323 if ((get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
) &&
2324 (dig1
& AC_DIG1_ENABLE
))
2325 snd_hda_codec_amp_stereo(codec
, nid
, HDA_OUTPUT
, 0,
2329 static int snd_hda_spdif_out_switch_put(struct snd_kcontrol
*kcontrol
,
2330 struct snd_ctl_elem_value
*ucontrol
)
2332 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2333 int idx
= kcontrol
->private_value
;
2334 struct hda_spdif_out
*spdif
;
2339 mutex_lock(&codec
->spdif_mutex
);
2340 spdif
= snd_array_elem(&codec
->spdif_out
, idx
);
2342 val
= spdif
->ctls
& ~AC_DIG1_ENABLE
;
2343 if (ucontrol
->value
.integer
.value
[0])
2344 val
|= AC_DIG1_ENABLE
;
2345 change
= spdif
->ctls
!= val
;
2347 if (change
&& nid
!= (u16
)-1)
2348 set_spdif_ctls(codec
, nid
, val
& 0xff, -1);
2349 mutex_unlock(&codec
->spdif_mutex
);
2353 static struct snd_kcontrol_new dig_mixes
[] = {
2355 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
2356 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2357 .name
= SNDRV_CTL_NAME_IEC958("", PLAYBACK
, CON_MASK
),
2358 .info
= snd_hda_spdif_mask_info
,
2359 .get
= snd_hda_spdif_cmask_get
,
2362 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
2363 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2364 .name
= SNDRV_CTL_NAME_IEC958("", PLAYBACK
, PRO_MASK
),
2365 .info
= snd_hda_spdif_mask_info
,
2366 .get
= snd_hda_spdif_pmask_get
,
2369 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2370 .name
= SNDRV_CTL_NAME_IEC958("", PLAYBACK
, DEFAULT
),
2371 .info
= snd_hda_spdif_mask_info
,
2372 .get
= snd_hda_spdif_default_get
,
2373 .put
= snd_hda_spdif_default_put
,
2376 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2377 .name
= SNDRV_CTL_NAME_IEC958("", PLAYBACK
, SWITCH
),
2378 .info
= snd_hda_spdif_out_switch_info
,
2379 .get
= snd_hda_spdif_out_switch_get
,
2380 .put
= snd_hda_spdif_out_switch_put
,
2386 * snd_hda_create_dig_out_ctls - create Output SPDIF-related controls
2387 * @codec: the HDA codec
2388 * @associated_nid: NID that new ctls associated with
2389 * @cvt_nid: converter NID
2390 * @type: HDA_PCM_TYPE_*
2391 * Creates controls related with the digital output.
2392 * Called from each patch supporting the digital out.
2394 * Returns 0 if successful, or a negative error code.
2396 int snd_hda_create_dig_out_ctls(struct hda_codec
*codec
,
2397 hda_nid_t associated_nid
,
2402 struct snd_kcontrol
*kctl
;
2403 struct snd_kcontrol_new
*dig_mix
;
2406 const int spdif_index
= 16;
2407 struct hda_spdif_out
*spdif
;
2408 struct hda_bus
*bus
= codec
->bus
;
2410 if (bus
->primary_dig_out_type
== HDA_PCM_TYPE_HDMI
&&
2411 type
== HDA_PCM_TYPE_SPDIF
) {
2413 } else if (bus
->primary_dig_out_type
== HDA_PCM_TYPE_SPDIF
&&
2414 type
== HDA_PCM_TYPE_HDMI
) {
2415 /* suppose a single SPDIF device */
2416 for (dig_mix
= dig_mixes
; dig_mix
->name
; dig_mix
++) {
2417 kctl
= find_mixer_ctl(codec
, dig_mix
->name
, 0, 0);
2420 kctl
->id
.index
= spdif_index
;
2422 bus
->primary_dig_out_type
= HDA_PCM_TYPE_HDMI
;
2424 if (!bus
->primary_dig_out_type
)
2425 bus
->primary_dig_out_type
= type
;
2427 idx
= find_empty_mixer_ctl_idx(codec
, "IEC958 Playback Switch", idx
);
2429 codec_err(codec
, "too many IEC958 outputs\n");
2432 spdif
= snd_array_new(&codec
->spdif_out
);
2435 for (dig_mix
= dig_mixes
; dig_mix
->name
; dig_mix
++) {
2436 kctl
= snd_ctl_new1(dig_mix
, codec
);
2439 kctl
->id
.index
= idx
;
2440 kctl
->private_value
= codec
->spdif_out
.used
- 1;
2441 err
= snd_hda_ctl_add(codec
, associated_nid
, kctl
);
2445 spdif
->nid
= cvt_nid
;
2446 snd_hdac_regmap_read(&codec
->core
, cvt_nid
,
2447 AC_VERB_GET_DIGI_CONVERT_1
, &val
);
2449 spdif
->status
= convert_to_spdif_status(spdif
->ctls
);
2452 EXPORT_SYMBOL_GPL(snd_hda_create_dig_out_ctls
);
2455 * snd_hda_spdif_out_of_nid - get the hda_spdif_out entry from the given NID
2456 * @codec: the HDA codec
2459 * call within spdif_mutex lock
2461 struct hda_spdif_out
*snd_hda_spdif_out_of_nid(struct hda_codec
*codec
,
2465 for (i
= 0; i
< codec
->spdif_out
.used
; i
++) {
2466 struct hda_spdif_out
*spdif
=
2467 snd_array_elem(&codec
->spdif_out
, i
);
2468 if (spdif
->nid
== nid
)
2473 EXPORT_SYMBOL_GPL(snd_hda_spdif_out_of_nid
);
2476 * snd_hda_spdif_ctls_unassign - Unassign the given SPDIF ctl
2477 * @codec: the HDA codec
2478 * @idx: the SPDIF ctl index
2480 * Unassign the widget from the given SPDIF control.
2482 void snd_hda_spdif_ctls_unassign(struct hda_codec
*codec
, int idx
)
2484 struct hda_spdif_out
*spdif
;
2486 mutex_lock(&codec
->spdif_mutex
);
2487 spdif
= snd_array_elem(&codec
->spdif_out
, idx
);
2488 spdif
->nid
= (u16
)-1;
2489 mutex_unlock(&codec
->spdif_mutex
);
2491 EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_unassign
);
2494 * snd_hda_spdif_ctls_assign - Assign the SPDIF controls to the given NID
2495 * @codec: the HDA codec
2496 * @idx: the SPDIF ctl idx
2499 * Assign the widget to the SPDIF control with the given index.
2501 void snd_hda_spdif_ctls_assign(struct hda_codec
*codec
, int idx
, hda_nid_t nid
)
2503 struct hda_spdif_out
*spdif
;
2506 mutex_lock(&codec
->spdif_mutex
);
2507 spdif
= snd_array_elem(&codec
->spdif_out
, idx
);
2508 if (spdif
->nid
!= nid
) {
2511 set_spdif_ctls(codec
, nid
, val
& 0xff, (val
>> 8) & 0xff);
2513 mutex_unlock(&codec
->spdif_mutex
);
2515 EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_assign
);
2518 * SPDIF sharing with analog output
2520 static int spdif_share_sw_get(struct snd_kcontrol
*kcontrol
,
2521 struct snd_ctl_elem_value
*ucontrol
)
2523 struct hda_multi_out
*mout
= snd_kcontrol_chip(kcontrol
);
2524 ucontrol
->value
.integer
.value
[0] = mout
->share_spdif
;
2528 static int spdif_share_sw_put(struct snd_kcontrol
*kcontrol
,
2529 struct snd_ctl_elem_value
*ucontrol
)
2531 struct hda_multi_out
*mout
= snd_kcontrol_chip(kcontrol
);
2532 mout
->share_spdif
= !!ucontrol
->value
.integer
.value
[0];
2536 static const struct snd_kcontrol_new spdif_share_sw
= {
2537 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2538 .name
= "IEC958 Default PCM Playback Switch",
2539 .info
= snd_ctl_boolean_mono_info
,
2540 .get
= spdif_share_sw_get
,
2541 .put
= spdif_share_sw_put
,
2545 * snd_hda_create_spdif_share_sw - create Default PCM switch
2546 * @codec: the HDA codec
2547 * @mout: multi-out instance
2549 int snd_hda_create_spdif_share_sw(struct hda_codec
*codec
,
2550 struct hda_multi_out
*mout
)
2552 struct snd_kcontrol
*kctl
;
2554 if (!mout
->dig_out_nid
)
2557 kctl
= snd_ctl_new1(&spdif_share_sw
, mout
);
2560 /* ATTENTION: here mout is passed as private_data, instead of codec */
2561 return snd_hda_ctl_add(codec
, mout
->dig_out_nid
, kctl
);
2563 EXPORT_SYMBOL_GPL(snd_hda_create_spdif_share_sw
);
2569 #define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
2571 static int snd_hda_spdif_in_switch_get(struct snd_kcontrol
*kcontrol
,
2572 struct snd_ctl_elem_value
*ucontrol
)
2574 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2576 ucontrol
->value
.integer
.value
[0] = codec
->spdif_in_enable
;
2580 static int snd_hda_spdif_in_switch_put(struct snd_kcontrol
*kcontrol
,
2581 struct snd_ctl_elem_value
*ucontrol
)
2583 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2584 hda_nid_t nid
= kcontrol
->private_value
;
2585 unsigned int val
= !!ucontrol
->value
.integer
.value
[0];
2588 mutex_lock(&codec
->spdif_mutex
);
2589 change
= codec
->spdif_in_enable
!= val
;
2591 codec
->spdif_in_enable
= val
;
2592 snd_hdac_regmap_write(&codec
->core
, nid
,
2593 AC_VERB_SET_DIGI_CONVERT_1
, val
);
2595 mutex_unlock(&codec
->spdif_mutex
);
2599 static int snd_hda_spdif_in_status_get(struct snd_kcontrol
*kcontrol
,
2600 struct snd_ctl_elem_value
*ucontrol
)
2602 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2603 hda_nid_t nid
= kcontrol
->private_value
;
2607 snd_hdac_regmap_read(&codec
->core
, nid
,
2608 AC_VERB_GET_DIGI_CONVERT_1
, &val
);
2609 sbits
= convert_to_spdif_status(val
);
2610 ucontrol
->value
.iec958
.status
[0] = sbits
;
2611 ucontrol
->value
.iec958
.status
[1] = sbits
>> 8;
2612 ucontrol
->value
.iec958
.status
[2] = sbits
>> 16;
2613 ucontrol
->value
.iec958
.status
[3] = sbits
>> 24;
2617 static struct snd_kcontrol_new dig_in_ctls
[] = {
2619 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2620 .name
= SNDRV_CTL_NAME_IEC958("", CAPTURE
, SWITCH
),
2621 .info
= snd_hda_spdif_in_switch_info
,
2622 .get
= snd_hda_spdif_in_switch_get
,
2623 .put
= snd_hda_spdif_in_switch_put
,
2626 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
2627 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2628 .name
= SNDRV_CTL_NAME_IEC958("", CAPTURE
, DEFAULT
),
2629 .info
= snd_hda_spdif_mask_info
,
2630 .get
= snd_hda_spdif_in_status_get
,
2636 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
2637 * @codec: the HDA codec
2638 * @nid: audio in widget NID
2640 * Creates controls related with the SPDIF input.
2641 * Called from each patch supporting the SPDIF in.
2643 * Returns 0 if successful, or a negative error code.
2645 int snd_hda_create_spdif_in_ctls(struct hda_codec
*codec
, hda_nid_t nid
)
2648 struct snd_kcontrol
*kctl
;
2649 struct snd_kcontrol_new
*dig_mix
;
2652 idx
= find_empty_mixer_ctl_idx(codec
, "IEC958 Capture Switch", 0);
2654 codec_err(codec
, "too many IEC958 inputs\n");
2657 for (dig_mix
= dig_in_ctls
; dig_mix
->name
; dig_mix
++) {
2658 kctl
= snd_ctl_new1(dig_mix
, codec
);
2661 kctl
->private_value
= nid
;
2662 err
= snd_hda_ctl_add(codec
, nid
, kctl
);
2666 codec
->spdif_in_enable
=
2667 snd_hda_codec_read(codec
, nid
, 0,
2668 AC_VERB_GET_DIGI_CONVERT_1
, 0) &
2672 EXPORT_SYMBOL_GPL(snd_hda_create_spdif_in_ctls
);
2675 * snd_hda_codec_set_power_to_all - Set the power state to all widgets
2676 * @codec: the HDA codec
2677 * @fg: function group (not used now)
2678 * @power_state: the power state to set (AC_PWRST_*)
2680 * Set the given power state to all widgets that have the power control.
2681 * If the codec has power_filter set, it evaluates the power state and
2682 * filter out if it's unchanged as D3.
2684 void snd_hda_codec_set_power_to_all(struct hda_codec
*codec
, hda_nid_t fg
,
2685 unsigned int power_state
)
2689 for_each_hda_codec_node(nid
, codec
) {
2690 unsigned int wcaps
= get_wcaps(codec
, nid
);
2691 unsigned int state
= power_state
;
2692 if (!(wcaps
& AC_WCAP_POWER
))
2694 if (codec
->power_filter
) {
2695 state
= codec
->power_filter(codec
, nid
, power_state
);
2696 if (state
!= power_state
&& power_state
== AC_PWRST_D3
)
2699 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_POWER_STATE
,
2703 EXPORT_SYMBOL_GPL(snd_hda_codec_set_power_to_all
);
2706 * wait until the state is reached, returns the current state
2708 static unsigned int hda_sync_power_state(struct hda_codec
*codec
,
2710 unsigned int power_state
)
2712 unsigned long end_time
= jiffies
+ msecs_to_jiffies(500);
2713 unsigned int state
, actual_state
;
2716 state
= snd_hda_codec_read(codec
, fg
, 0,
2717 AC_VERB_GET_POWER_STATE
, 0);
2718 if (state
& AC_PWRST_ERROR
)
2720 actual_state
= (state
>> 4) & 0x0f;
2721 if (actual_state
== power_state
)
2723 if (time_after_eq(jiffies
, end_time
))
2725 /* wait until the codec reachs to the target state */
2732 * snd_hda_codec_eapd_power_filter - A power filter callback for EAPD
2733 * @codec: the HDA codec
2735 * @power_state: power state to evalue
2737 * Don't power down the widget if it controls eapd and EAPD_BTLENABLE is set.
2738 * This can be used a codec power_filter callback.
2740 unsigned int snd_hda_codec_eapd_power_filter(struct hda_codec
*codec
,
2742 unsigned int power_state
)
2744 if (nid
== codec
->core
.afg
|| nid
== codec
->core
.mfg
)
2746 if (power_state
== AC_PWRST_D3
&&
2747 get_wcaps_type(get_wcaps(codec
, nid
)) == AC_WID_PIN
&&
2748 (snd_hda_query_pin_caps(codec
, nid
) & AC_PINCAP_EAPD
)) {
2749 int eapd
= snd_hda_codec_read(codec
, nid
, 0,
2750 AC_VERB_GET_EAPD_BTLENABLE
, 0);
2756 EXPORT_SYMBOL_GPL(snd_hda_codec_eapd_power_filter
);
2759 * set power state of the codec, and return the power state
2761 static unsigned int hda_set_power_state(struct hda_codec
*codec
,
2762 unsigned int power_state
)
2764 hda_nid_t fg
= codec
->core
.afg
? codec
->core
.afg
: codec
->core
.mfg
;
2769 /* this delay seems necessary to avoid click noise at power-down */
2770 if (power_state
== AC_PWRST_D3
) {
2771 if (codec
->depop_delay
< 0)
2772 msleep(codec_has_epss(codec
) ? 10 : 100);
2773 else if (codec
->depop_delay
> 0)
2774 msleep(codec
->depop_delay
);
2775 flags
= HDA_RW_NO_RESPONSE_FALLBACK
;
2778 /* repeat power states setting at most 10 times*/
2779 for (count
= 0; count
< 10; count
++) {
2780 if (codec
->patch_ops
.set_power_state
)
2781 codec
->patch_ops
.set_power_state(codec
, fg
,
2784 state
= power_state
;
2785 if (codec
->power_filter
)
2786 state
= codec
->power_filter(codec
, fg
, state
);
2787 if (state
== power_state
|| power_state
!= AC_PWRST_D3
)
2788 snd_hda_codec_read(codec
, fg
, flags
,
2789 AC_VERB_SET_POWER_STATE
,
2791 snd_hda_codec_set_power_to_all(codec
, fg
, power_state
);
2793 state
= hda_sync_power_state(codec
, fg
, power_state
);
2794 if (!(state
& AC_PWRST_ERROR
))
2801 /* sync power states of all widgets;
2802 * this is called at the end of codec parsing
2804 static void sync_power_up_states(struct hda_codec
*codec
)
2808 /* don't care if no filter is used */
2809 if (!codec
->power_filter
)
2812 for_each_hda_codec_node(nid
, codec
) {
2813 unsigned int wcaps
= get_wcaps(codec
, nid
);
2814 unsigned int target
;
2815 if (!(wcaps
& AC_WCAP_POWER
))
2817 target
= codec
->power_filter(codec
, nid
, AC_PWRST_D0
);
2818 if (target
== AC_PWRST_D0
)
2820 if (!snd_hda_check_power_state(codec
, nid
, target
))
2821 snd_hda_codec_write(codec
, nid
, 0,
2822 AC_VERB_SET_POWER_STATE
, target
);
2826 #ifdef CONFIG_SND_HDA_RECONFIG
2827 /* execute additional init verbs */
2828 static void hda_exec_init_verbs(struct hda_codec
*codec
)
2830 if (codec
->init_verbs
.list
)
2831 snd_hda_sequence_write(codec
, codec
->init_verbs
.list
);
2834 static inline void hda_exec_init_verbs(struct hda_codec
*codec
) {}
2838 /* update the power on/off account with the current jiffies */
2839 static void update_power_acct(struct hda_codec
*codec
, bool on
)
2841 unsigned long delta
= jiffies
- codec
->power_jiffies
;
2844 codec
->power_on_acct
+= delta
;
2846 codec
->power_off_acct
+= delta
;
2847 codec
->power_jiffies
+= delta
;
2850 void snd_hda_update_power_acct(struct hda_codec
*codec
)
2852 update_power_acct(codec
, hda_codec_is_power_on(codec
));
2856 * call suspend and power-down; used both from PM and power-save
2857 * this function returns the power state in the end
2859 static unsigned int hda_call_codec_suspend(struct hda_codec
*codec
)
2863 atomic_inc(&codec
->core
.in_pm
);
2865 if (codec
->patch_ops
.suspend
)
2866 codec
->patch_ops
.suspend(codec
);
2867 hda_cleanup_all_streams(codec
);
2868 state
= hda_set_power_state(codec
, AC_PWRST_D3
);
2869 update_power_acct(codec
, true);
2870 atomic_dec(&codec
->core
.in_pm
);
2875 * kick up codec; used both from PM and power-save
2877 static void hda_call_codec_resume(struct hda_codec
*codec
)
2879 atomic_inc(&codec
->core
.in_pm
);
2881 if (codec
->core
.regmap
)
2882 regcache_mark_dirty(codec
->core
.regmap
);
2884 codec
->power_jiffies
= jiffies
;
2886 hda_set_power_state(codec
, AC_PWRST_D0
);
2887 restore_shutup_pins(codec
);
2888 hda_exec_init_verbs(codec
);
2889 snd_hda_jack_set_dirty_all(codec
);
2890 if (codec
->patch_ops
.resume
)
2891 codec
->patch_ops
.resume(codec
);
2893 if (codec
->patch_ops
.init
)
2894 codec
->patch_ops
.init(codec
);
2895 if (codec
->core
.regmap
)
2896 regcache_sync(codec
->core
.regmap
);
2899 if (codec
->jackpoll_interval
)
2900 hda_jackpoll_work(&codec
->jackpoll_work
.work
);
2902 snd_hda_jack_report_sync(codec
);
2903 atomic_dec(&codec
->core
.in_pm
);
2906 static int hda_codec_runtime_suspend(struct device
*dev
)
2908 struct hda_codec
*codec
= dev_to_hda_codec(dev
);
2909 struct hda_pcm
*pcm
;
2912 cancel_delayed_work_sync(&codec
->jackpoll_work
);
2913 list_for_each_entry(pcm
, &codec
->pcm_list_head
, list
)
2914 snd_pcm_suspend_all(pcm
->pcm
);
2915 state
= hda_call_codec_suspend(codec
);
2916 if (codec_has_clkstop(codec
) && codec_has_epss(codec
) &&
2917 (state
& AC_PWRST_CLK_STOP_OK
))
2918 snd_hdac_codec_link_down(&codec
->core
);
2919 snd_hdac_link_power(&codec
->core
, false);
2923 static int hda_codec_runtime_resume(struct device
*dev
)
2925 struct hda_codec
*codec
= dev_to_hda_codec(dev
);
2927 snd_hdac_link_power(&codec
->core
, true);
2928 snd_hdac_codec_link_up(&codec
->core
);
2929 hda_call_codec_resume(codec
);
2930 pm_runtime_mark_last_busy(dev
);
2933 #endif /* CONFIG_PM */
2935 /* referred in hda_bind.c */
2936 const struct dev_pm_ops hda_codec_driver_pm
= {
2937 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend
,
2938 pm_runtime_force_resume
)
2939 SET_RUNTIME_PM_OPS(hda_codec_runtime_suspend
, hda_codec_runtime_resume
,
2944 * add standard channel maps if not specified
2946 static int add_std_chmaps(struct hda_codec
*codec
)
2948 struct hda_pcm
*pcm
;
2951 list_for_each_entry(pcm
, &codec
->pcm_list_head
, list
) {
2952 for (str
= 0; str
< 2; str
++) {
2953 struct hda_pcm_stream
*hinfo
= &pcm
->stream
[str
];
2954 struct snd_pcm_chmap
*chmap
;
2955 const struct snd_pcm_chmap_elem
*elem
;
2957 if (!pcm
->pcm
|| pcm
->own_chmap
|| !hinfo
->substreams
)
2959 elem
= hinfo
->chmap
? hinfo
->chmap
: snd_pcm_std_chmaps
;
2960 err
= snd_pcm_add_chmap_ctls(pcm
->pcm
, str
, elem
,
2961 hinfo
->channels_max
,
2965 chmap
->channel_mask
= SND_PCM_CHMAP_MASK_2468
;
2971 /* default channel maps for 2.1 speakers;
2972 * since HD-audio supports only stereo, odd number channels are omitted
2974 const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps
[] = {
2976 .map
= { SNDRV_CHMAP_FL
, SNDRV_CHMAP_FR
} },
2978 .map
= { SNDRV_CHMAP_FL
, SNDRV_CHMAP_FR
,
2979 SNDRV_CHMAP_LFE
, SNDRV_CHMAP_LFE
} },
2982 EXPORT_SYMBOL_GPL(snd_pcm_2_1_chmaps
);
2984 int snd_hda_codec_build_controls(struct hda_codec
*codec
)
2987 hda_exec_init_verbs(codec
);
2988 /* continue to initialize... */
2989 if (codec
->patch_ops
.init
)
2990 err
= codec
->patch_ops
.init(codec
);
2991 if (!err
&& codec
->patch_ops
.build_controls
)
2992 err
= codec
->patch_ops
.build_controls(codec
);
2996 /* we create chmaps here instead of build_pcms */
2997 err
= add_std_chmaps(codec
);
3001 if (codec
->jackpoll_interval
)
3002 hda_jackpoll_work(&codec
->jackpoll_work
.work
);
3004 snd_hda_jack_report_sync(codec
); /* call at the last init point */
3005 sync_power_up_states(codec
);
3012 static int hda_pcm_default_open_close(struct hda_pcm_stream
*hinfo
,
3013 struct hda_codec
*codec
,
3014 struct snd_pcm_substream
*substream
)
3019 static int hda_pcm_default_prepare(struct hda_pcm_stream
*hinfo
,
3020 struct hda_codec
*codec
,
3021 unsigned int stream_tag
,
3022 unsigned int format
,
3023 struct snd_pcm_substream
*substream
)
3025 snd_hda_codec_setup_stream(codec
, hinfo
->nid
, stream_tag
, 0, format
);
3029 static int hda_pcm_default_cleanup(struct hda_pcm_stream
*hinfo
,
3030 struct hda_codec
*codec
,
3031 struct snd_pcm_substream
*substream
)
3033 snd_hda_codec_cleanup_stream(codec
, hinfo
->nid
);
3037 static int set_pcm_default_values(struct hda_codec
*codec
,
3038 struct hda_pcm_stream
*info
)
3042 /* query support PCM information from the given NID */
3043 if (info
->nid
&& (!info
->rates
|| !info
->formats
)) {
3044 err
= snd_hda_query_supported_pcm(codec
, info
->nid
,
3045 info
->rates
? NULL
: &info
->rates
,
3046 info
->formats
? NULL
: &info
->formats
,
3047 info
->maxbps
? NULL
: &info
->maxbps
);
3051 if (info
->ops
.open
== NULL
)
3052 info
->ops
.open
= hda_pcm_default_open_close
;
3053 if (info
->ops
.close
== NULL
)
3054 info
->ops
.close
= hda_pcm_default_open_close
;
3055 if (info
->ops
.prepare
== NULL
) {
3056 if (snd_BUG_ON(!info
->nid
))
3058 info
->ops
.prepare
= hda_pcm_default_prepare
;
3060 if (info
->ops
.cleanup
== NULL
) {
3061 if (snd_BUG_ON(!info
->nid
))
3063 info
->ops
.cleanup
= hda_pcm_default_cleanup
;
3069 * codec prepare/cleanup entries
3072 * snd_hda_codec_prepare - Prepare a stream
3073 * @codec: the HDA codec
3074 * @hinfo: PCM information
3075 * @stream: stream tag to assign
3076 * @format: format id to assign
3077 * @substream: PCM substream to assign
3079 * Calls the prepare callback set by the codec with the given arguments.
3080 * Clean up the inactive streams when successful.
3082 int snd_hda_codec_prepare(struct hda_codec
*codec
,
3083 struct hda_pcm_stream
*hinfo
,
3084 unsigned int stream
,
3085 unsigned int format
,
3086 struct snd_pcm_substream
*substream
)
3089 mutex_lock(&codec
->bus
->prepare_mutex
);
3090 if (hinfo
->ops
.prepare
)
3091 ret
= hinfo
->ops
.prepare(hinfo
, codec
, stream
, format
,
3096 purify_inactive_streams(codec
);
3097 mutex_unlock(&codec
->bus
->prepare_mutex
);
3100 EXPORT_SYMBOL_GPL(snd_hda_codec_prepare
);
3103 * snd_hda_codec_cleanup - Prepare a stream
3104 * @codec: the HDA codec
3105 * @hinfo: PCM information
3106 * @substream: PCM substream
3108 * Calls the cleanup callback set by the codec with the given arguments.
3110 void snd_hda_codec_cleanup(struct hda_codec
*codec
,
3111 struct hda_pcm_stream
*hinfo
,
3112 struct snd_pcm_substream
*substream
)
3114 mutex_lock(&codec
->bus
->prepare_mutex
);
3115 if (hinfo
->ops
.cleanup
)
3116 hinfo
->ops
.cleanup(hinfo
, codec
, substream
);
3117 mutex_unlock(&codec
->bus
->prepare_mutex
);
3119 EXPORT_SYMBOL_GPL(snd_hda_codec_cleanup
);
3122 const char *snd_hda_pcm_type_name
[HDA_PCM_NTYPES
] = {
3123 "Audio", "SPDIF", "HDMI", "Modem"
3127 * get the empty PCM device number to assign
3129 static int get_empty_pcm_device(struct hda_bus
*bus
, unsigned int type
)
3131 /* audio device indices; not linear to keep compatibility */
3132 /* assigned to static slots up to dev#10; if more needed, assign
3133 * the later slot dynamically (when CONFIG_SND_DYNAMIC_MINORS=y)
3135 static int audio_idx
[HDA_PCM_NTYPES
][5] = {
3136 [HDA_PCM_TYPE_AUDIO
] = { 0, 2, 4, 5, -1 },
3137 [HDA_PCM_TYPE_SPDIF
] = { 1, -1 },
3138 [HDA_PCM_TYPE_HDMI
] = { 3, 7, 8, 9, -1 },
3139 [HDA_PCM_TYPE_MODEM
] = { 6, -1 },
3143 if (type
>= HDA_PCM_NTYPES
) {
3144 dev_err(bus
->card
->dev
, "Invalid PCM type %d\n", type
);
3148 for (i
= 0; audio_idx
[type
][i
] >= 0; i
++) {
3149 #ifndef CONFIG_SND_DYNAMIC_MINORS
3150 if (audio_idx
[type
][i
] >= 8)
3153 if (!test_and_set_bit(audio_idx
[type
][i
], bus
->pcm_dev_bits
))
3154 return audio_idx
[type
][i
];
3157 #ifdef CONFIG_SND_DYNAMIC_MINORS
3158 /* non-fixed slots starting from 10 */
3159 for (i
= 10; i
< 32; i
++) {
3160 if (!test_and_set_bit(i
, bus
->pcm_dev_bits
))
3165 dev_warn(bus
->card
->dev
, "Too many %s devices\n",
3166 snd_hda_pcm_type_name
[type
]);
3167 #ifndef CONFIG_SND_DYNAMIC_MINORS
3168 dev_warn(bus
->card
->dev
,
3169 "Consider building the kernel with CONFIG_SND_DYNAMIC_MINORS=y\n");
3174 /* call build_pcms ops of the given codec and set up the default parameters */
3175 int snd_hda_codec_parse_pcms(struct hda_codec
*codec
)
3177 struct hda_pcm
*cpcm
;
3180 if (!list_empty(&codec
->pcm_list_head
))
3181 return 0; /* already parsed */
3183 if (!codec
->patch_ops
.build_pcms
)
3186 err
= codec
->patch_ops
.build_pcms(codec
);
3188 codec_err(codec
, "cannot build PCMs for #%d (error %d)\n",
3189 codec
->core
.addr
, err
);
3193 list_for_each_entry(cpcm
, &codec
->pcm_list_head
, list
) {
3196 for (stream
= 0; stream
< 2; stream
++) {
3197 struct hda_pcm_stream
*info
= &cpcm
->stream
[stream
];
3199 if (!info
->substreams
)
3201 err
= set_pcm_default_values(codec
, info
);
3204 "fail to setup default for PCM %s\n",
3214 /* assign all PCMs of the given codec */
3215 int snd_hda_codec_build_pcms(struct hda_codec
*codec
)
3217 struct hda_bus
*bus
= codec
->bus
;
3218 struct hda_pcm
*cpcm
;
3221 err
= snd_hda_codec_parse_pcms(codec
);
3225 /* attach a new PCM streams */
3226 list_for_each_entry(cpcm
, &codec
->pcm_list_head
, list
) {
3228 continue; /* already attached */
3229 if (!cpcm
->stream
[0].substreams
&& !cpcm
->stream
[1].substreams
)
3230 continue; /* no substreams assigned */
3232 dev
= get_empty_pcm_device(bus
, cpcm
->pcm_type
);
3234 cpcm
->device
= SNDRV_PCM_INVALID_DEVICE
;
3235 continue; /* no fatal error */
3238 err
= snd_hda_attach_pcm_stream(bus
, codec
, cpcm
);
3241 "cannot attach PCM stream %d for codec #%d\n",
3242 dev
, codec
->core
.addr
);
3243 continue; /* no fatal error */
3251 * snd_hda_add_new_ctls - create controls from the array
3252 * @codec: the HDA codec
3253 * @knew: the array of struct snd_kcontrol_new
3255 * This helper function creates and add new controls in the given array.
3256 * The array must be terminated with an empty entry as terminator.
3258 * Returns 0 if successful, or a negative error code.
3260 int snd_hda_add_new_ctls(struct hda_codec
*codec
,
3261 const struct snd_kcontrol_new
*knew
)
3265 for (; knew
->name
; knew
++) {
3266 struct snd_kcontrol
*kctl
;
3267 int addr
= 0, idx
= 0;
3268 if (knew
->iface
== -1) /* skip this codec private value */
3271 kctl
= snd_ctl_new1(knew
, codec
);
3275 kctl
->id
.device
= addr
;
3277 kctl
->id
.index
= idx
;
3278 err
= snd_hda_ctl_add(codec
, 0, kctl
);
3281 /* try first with another device index corresponding to
3282 * the codec addr; if it still fails (or it's the
3283 * primary codec), then try another control index
3285 if (!addr
&& codec
->core
.addr
)
3286 addr
= codec
->core
.addr
;
3287 else if (!idx
&& !knew
->index
) {
3288 idx
= find_empty_mixer_ctl_idx(codec
,
3298 EXPORT_SYMBOL_GPL(snd_hda_add_new_ctls
);
3301 static void codec_set_power_save(struct hda_codec
*codec
, int delay
)
3303 struct device
*dev
= hda_codec_dev(codec
);
3305 if (delay
== 0 && codec
->auto_runtime_pm
)
3309 pm_runtime_set_autosuspend_delay(dev
, delay
);
3310 pm_runtime_use_autosuspend(dev
);
3311 pm_runtime_allow(dev
);
3312 if (!pm_runtime_suspended(dev
))
3313 pm_runtime_mark_last_busy(dev
);
3315 pm_runtime_dont_use_autosuspend(dev
);
3316 pm_runtime_forbid(dev
);
3321 * snd_hda_set_power_save - reprogram autosuspend for the given delay
3322 * @bus: HD-audio bus
3323 * @delay: autosuspend delay in msec, 0 = off
3325 * Synchronize the runtime PM autosuspend state from the power_save option.
3327 void snd_hda_set_power_save(struct hda_bus
*bus
, int delay
)
3329 struct hda_codec
*c
;
3331 list_for_each_codec(c
, bus
)
3332 codec_set_power_save(c
, delay
);
3334 EXPORT_SYMBOL_GPL(snd_hda_set_power_save
);
3337 * snd_hda_check_amp_list_power - Check the amp list and update the power
3338 * @codec: HD-audio codec
3339 * @check: the object containing an AMP list and the status
3340 * @nid: NID to check / update
3342 * Check whether the given NID is in the amp list. If it's in the list,
3343 * check the current AMP status, and update the the power-status according
3344 * to the mute status.
3346 * This function is supposed to be set or called from the check_power_status
3349 int snd_hda_check_amp_list_power(struct hda_codec
*codec
,
3350 struct hda_loopback_check
*check
,
3353 const struct hda_amp_list
*p
;
3356 if (!check
->amplist
)
3358 for (p
= check
->amplist
; p
->nid
; p
++) {
3363 return 0; /* nothing changed */
3365 for (p
= check
->amplist
; p
->nid
; p
++) {
3366 for (ch
= 0; ch
< 2; ch
++) {
3367 v
= snd_hda_codec_amp_read(codec
, p
->nid
, ch
, p
->dir
,
3369 if (!(v
& HDA_AMP_MUTE
) && v
> 0) {
3370 if (!check
->power_on
) {
3371 check
->power_on
= 1;
3372 snd_hda_power_up_pm(codec
);
3378 if (check
->power_on
) {
3379 check
->power_on
= 0;
3380 snd_hda_power_down_pm(codec
);
3384 EXPORT_SYMBOL_GPL(snd_hda_check_amp_list_power
);
3392 * snd_hda_input_mux_info_info - Info callback helper for the input-mux enum
3393 * @imux: imux helper object
3394 * @uinfo: pointer to get/store the data
3396 int snd_hda_input_mux_info(const struct hda_input_mux
*imux
,
3397 struct snd_ctl_elem_info
*uinfo
)
3401 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
3403 uinfo
->value
.enumerated
.items
= imux
->num_items
;
3404 if (!imux
->num_items
)
3406 index
= uinfo
->value
.enumerated
.item
;
3407 if (index
>= imux
->num_items
)
3408 index
= imux
->num_items
- 1;
3409 strcpy(uinfo
->value
.enumerated
.name
, imux
->items
[index
].label
);
3412 EXPORT_SYMBOL_GPL(snd_hda_input_mux_info
);
3415 * snd_hda_input_mux_info_put - Put callback helper for the input-mux enum
3416 * @codec: the HDA codec
3417 * @imux: imux helper object
3418 * @ucontrol: pointer to get/store the data
3419 * @nid: input mux NID
3420 * @cur_val: pointer to get/store the current imux value
3422 int snd_hda_input_mux_put(struct hda_codec
*codec
,
3423 const struct hda_input_mux
*imux
,
3424 struct snd_ctl_elem_value
*ucontrol
,
3426 unsigned int *cur_val
)
3430 if (!imux
->num_items
)
3432 idx
= ucontrol
->value
.enumerated
.item
[0];
3433 if (idx
>= imux
->num_items
)
3434 idx
= imux
->num_items
- 1;
3435 if (*cur_val
== idx
)
3437 snd_hda_codec_write_cache(codec
, nid
, 0, AC_VERB_SET_CONNECT_SEL
,
3438 imux
->items
[idx
].index
);
3442 EXPORT_SYMBOL_GPL(snd_hda_input_mux_put
);
3446 * snd_hda_enum_helper_info - Helper for simple enum ctls
3447 * @kcontrol: ctl element
3448 * @uinfo: pointer to get/store the data
3449 * @num_items: number of enum items
3450 * @texts: enum item string array
3452 * process kcontrol info callback of a simple string enum array
3453 * when @num_items is 0 or @texts is NULL, assume a boolean enum array
3455 int snd_hda_enum_helper_info(struct snd_kcontrol
*kcontrol
,
3456 struct snd_ctl_elem_info
*uinfo
,
3457 int num_items
, const char * const *texts
)
3459 static const char * const texts_default
[] = {
3460 "Disabled", "Enabled"
3463 if (!texts
|| !num_items
) {
3465 texts
= texts_default
;
3468 return snd_ctl_enum_info(uinfo
, 1, num_items
, texts
);
3470 EXPORT_SYMBOL_GPL(snd_hda_enum_helper_info
);
3473 * Multi-channel / digital-out PCM helper functions
3476 /* setup SPDIF output stream */
3477 static void setup_dig_out_stream(struct hda_codec
*codec
, hda_nid_t nid
,
3478 unsigned int stream_tag
, unsigned int format
)
3480 struct hda_spdif_out
*spdif
;
3481 unsigned int curr_fmt
;
3484 spdif
= snd_hda_spdif_out_of_nid(codec
, nid
);
3485 /* Add sanity check to pass klockwork check.
3486 * This should never happen.
3488 if (WARN_ON(spdif
== NULL
))
3491 curr_fmt
= snd_hda_codec_read(codec
, nid
, 0,
3492 AC_VERB_GET_STREAM_FORMAT
, 0);
3493 reset
= codec
->spdif_status_reset
&&
3494 (spdif
->ctls
& AC_DIG1_ENABLE
) &&
3497 /* turn off SPDIF if needed; otherwise the IEC958 bits won't be
3500 set_dig_out_convert(codec
, nid
,
3501 spdif
->ctls
& ~AC_DIG1_ENABLE
& 0xff,
3503 snd_hda_codec_setup_stream(codec
, nid
, stream_tag
, 0, format
);
3504 if (codec
->slave_dig_outs
) {
3506 for (d
= codec
->slave_dig_outs
; *d
; d
++)
3507 snd_hda_codec_setup_stream(codec
, *d
, stream_tag
, 0,
3510 /* turn on again (if needed) */
3512 set_dig_out_convert(codec
, nid
,
3513 spdif
->ctls
& 0xff, -1);
3516 static void cleanup_dig_out_stream(struct hda_codec
*codec
, hda_nid_t nid
)
3518 snd_hda_codec_cleanup_stream(codec
, nid
);
3519 if (codec
->slave_dig_outs
) {
3521 for (d
= codec
->slave_dig_outs
; *d
; d
++)
3522 snd_hda_codec_cleanup_stream(codec
, *d
);
3527 * snd_hda_multi_out_dig_open - open the digital out in the exclusive mode
3528 * @codec: the HDA codec
3529 * @mout: hda_multi_out object
3531 int snd_hda_multi_out_dig_open(struct hda_codec
*codec
,
3532 struct hda_multi_out
*mout
)
3534 mutex_lock(&codec
->spdif_mutex
);
3535 if (mout
->dig_out_used
== HDA_DIG_ANALOG_DUP
)
3536 /* already opened as analog dup; reset it once */
3537 cleanup_dig_out_stream(codec
, mout
->dig_out_nid
);
3538 mout
->dig_out_used
= HDA_DIG_EXCLUSIVE
;
3539 mutex_unlock(&codec
->spdif_mutex
);
3542 EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_open
);
3545 * snd_hda_multi_out_dig_prepare - prepare the digital out stream
3546 * @codec: the HDA codec
3547 * @mout: hda_multi_out object
3548 * @stream_tag: stream tag to assign
3549 * @format: format id to assign
3550 * @substream: PCM substream to assign
3552 int snd_hda_multi_out_dig_prepare(struct hda_codec
*codec
,
3553 struct hda_multi_out
*mout
,
3554 unsigned int stream_tag
,
3555 unsigned int format
,
3556 struct snd_pcm_substream
*substream
)
3558 mutex_lock(&codec
->spdif_mutex
);
3559 setup_dig_out_stream(codec
, mout
->dig_out_nid
, stream_tag
, format
);
3560 mutex_unlock(&codec
->spdif_mutex
);
3563 EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_prepare
);
3566 * snd_hda_multi_out_dig_cleanup - clean-up the digital out stream
3567 * @codec: the HDA codec
3568 * @mout: hda_multi_out object
3570 int snd_hda_multi_out_dig_cleanup(struct hda_codec
*codec
,
3571 struct hda_multi_out
*mout
)
3573 mutex_lock(&codec
->spdif_mutex
);
3574 cleanup_dig_out_stream(codec
, mout
->dig_out_nid
);
3575 mutex_unlock(&codec
->spdif_mutex
);
3578 EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_cleanup
);
3581 * snd_hda_multi_out_dig_close - release the digital out stream
3582 * @codec: the HDA codec
3583 * @mout: hda_multi_out object
3585 int snd_hda_multi_out_dig_close(struct hda_codec
*codec
,
3586 struct hda_multi_out
*mout
)
3588 mutex_lock(&codec
->spdif_mutex
);
3589 mout
->dig_out_used
= 0;
3590 mutex_unlock(&codec
->spdif_mutex
);
3593 EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_close
);
3596 * snd_hda_multi_out_analog_open - open analog outputs
3597 * @codec: the HDA codec
3598 * @mout: hda_multi_out object
3599 * @substream: PCM substream to assign
3600 * @hinfo: PCM information to assign
3602 * Open analog outputs and set up the hw-constraints.
3603 * If the digital outputs can be opened as slave, open the digital
3606 int snd_hda_multi_out_analog_open(struct hda_codec
*codec
,
3607 struct hda_multi_out
*mout
,
3608 struct snd_pcm_substream
*substream
,
3609 struct hda_pcm_stream
*hinfo
)
3611 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
3612 runtime
->hw
.channels_max
= mout
->max_channels
;
3613 if (mout
->dig_out_nid
) {
3614 if (!mout
->analog_rates
) {
3615 mout
->analog_rates
= hinfo
->rates
;
3616 mout
->analog_formats
= hinfo
->formats
;
3617 mout
->analog_maxbps
= hinfo
->maxbps
;
3619 runtime
->hw
.rates
= mout
->analog_rates
;
3620 runtime
->hw
.formats
= mout
->analog_formats
;
3621 hinfo
->maxbps
= mout
->analog_maxbps
;
3623 if (!mout
->spdif_rates
) {
3624 snd_hda_query_supported_pcm(codec
, mout
->dig_out_nid
,
3626 &mout
->spdif_formats
,
3627 &mout
->spdif_maxbps
);
3629 mutex_lock(&codec
->spdif_mutex
);
3630 if (mout
->share_spdif
) {
3631 if ((runtime
->hw
.rates
& mout
->spdif_rates
) &&
3632 (runtime
->hw
.formats
& mout
->spdif_formats
)) {
3633 runtime
->hw
.rates
&= mout
->spdif_rates
;
3634 runtime
->hw
.formats
&= mout
->spdif_formats
;
3635 if (mout
->spdif_maxbps
< hinfo
->maxbps
)
3636 hinfo
->maxbps
= mout
->spdif_maxbps
;
3638 mout
->share_spdif
= 0;
3639 /* FIXME: need notify? */
3642 mutex_unlock(&codec
->spdif_mutex
);
3644 return snd_pcm_hw_constraint_step(substream
->runtime
, 0,
3645 SNDRV_PCM_HW_PARAM_CHANNELS
, 2);
3647 EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_open
);
3650 * snd_hda_multi_out_analog_prepare - Preapre the analog outputs.
3651 * @codec: the HDA codec
3652 * @mout: hda_multi_out object
3653 * @stream_tag: stream tag to assign
3654 * @format: format id to assign
3655 * @substream: PCM substream to assign
3657 * Set up the i/o for analog out.
3658 * When the digital out is available, copy the front out to digital out, too.
3660 int snd_hda_multi_out_analog_prepare(struct hda_codec
*codec
,
3661 struct hda_multi_out
*mout
,
3662 unsigned int stream_tag
,
3663 unsigned int format
,
3664 struct snd_pcm_substream
*substream
)
3666 const hda_nid_t
*nids
= mout
->dac_nids
;
3667 int chs
= substream
->runtime
->channels
;
3668 struct hda_spdif_out
*spdif
;
3671 mutex_lock(&codec
->spdif_mutex
);
3672 spdif
= snd_hda_spdif_out_of_nid(codec
, mout
->dig_out_nid
);
3673 if (mout
->dig_out_nid
&& mout
->share_spdif
&&
3674 mout
->dig_out_used
!= HDA_DIG_EXCLUSIVE
) {
3675 if (chs
== 2 && spdif
!= NULL
&&
3676 snd_hda_is_supported_format(codec
, mout
->dig_out_nid
,
3678 !(spdif
->status
& IEC958_AES0_NONAUDIO
)) {
3679 mout
->dig_out_used
= HDA_DIG_ANALOG_DUP
;
3680 setup_dig_out_stream(codec
, mout
->dig_out_nid
,
3681 stream_tag
, format
);
3683 mout
->dig_out_used
= 0;
3684 cleanup_dig_out_stream(codec
, mout
->dig_out_nid
);
3687 mutex_unlock(&codec
->spdif_mutex
);
3690 snd_hda_codec_setup_stream(codec
, nids
[HDA_FRONT
], stream_tag
,
3692 if (!mout
->no_share_stream
&&
3693 mout
->hp_nid
&& mout
->hp_nid
!= nids
[HDA_FRONT
])
3694 /* headphone out will just decode front left/right (stereo) */
3695 snd_hda_codec_setup_stream(codec
, mout
->hp_nid
, stream_tag
,
3697 /* extra outputs copied from front */
3698 for (i
= 0; i
< ARRAY_SIZE(mout
->hp_out_nid
); i
++)
3699 if (!mout
->no_share_stream
&& mout
->hp_out_nid
[i
])
3700 snd_hda_codec_setup_stream(codec
,
3701 mout
->hp_out_nid
[i
],
3702 stream_tag
, 0, format
);
3705 for (i
= 1; i
< mout
->num_dacs
; i
++) {
3706 if (chs
>= (i
+ 1) * 2) /* independent out */
3707 snd_hda_codec_setup_stream(codec
, nids
[i
], stream_tag
,
3709 else if (!mout
->no_share_stream
) /* copy front */
3710 snd_hda_codec_setup_stream(codec
, nids
[i
], stream_tag
,
3714 /* extra surrounds */
3715 for (i
= 0; i
< ARRAY_SIZE(mout
->extra_out_nid
); i
++) {
3717 if (!mout
->extra_out_nid
[i
])
3719 if (chs
>= (i
+ 1) * 2)
3721 else if (!mout
->no_share_stream
)
3723 snd_hda_codec_setup_stream(codec
, mout
->extra_out_nid
[i
],
3724 stream_tag
, ch
, format
);
3729 EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_prepare
);
3732 * snd_hda_multi_out_analog_cleanup - clean up the setting for analog out
3733 * @codec: the HDA codec
3734 * @mout: hda_multi_out object
3736 int snd_hda_multi_out_analog_cleanup(struct hda_codec
*codec
,
3737 struct hda_multi_out
*mout
)
3739 const hda_nid_t
*nids
= mout
->dac_nids
;
3742 for (i
= 0; i
< mout
->num_dacs
; i
++)
3743 snd_hda_codec_cleanup_stream(codec
, nids
[i
]);
3745 snd_hda_codec_cleanup_stream(codec
, mout
->hp_nid
);
3746 for (i
= 0; i
< ARRAY_SIZE(mout
->hp_out_nid
); i
++)
3747 if (mout
->hp_out_nid
[i
])
3748 snd_hda_codec_cleanup_stream(codec
,
3749 mout
->hp_out_nid
[i
]);
3750 for (i
= 0; i
< ARRAY_SIZE(mout
->extra_out_nid
); i
++)
3751 if (mout
->extra_out_nid
[i
])
3752 snd_hda_codec_cleanup_stream(codec
,
3753 mout
->extra_out_nid
[i
]);
3754 mutex_lock(&codec
->spdif_mutex
);
3755 if (mout
->dig_out_nid
&& mout
->dig_out_used
== HDA_DIG_ANALOG_DUP
) {
3756 cleanup_dig_out_stream(codec
, mout
->dig_out_nid
);
3757 mout
->dig_out_used
= 0;
3759 mutex_unlock(&codec
->spdif_mutex
);
3762 EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_cleanup
);
3765 * snd_hda_get_default_vref - Get the default (mic) VREF pin bits
3766 * @codec: the HDA codec
3767 * @pin: referred pin NID
3769 * Guess the suitable VREF pin bits to be set as the pin-control value.
3770 * Note: the function doesn't set the AC_PINCTL_IN_EN bit.
3772 unsigned int snd_hda_get_default_vref(struct hda_codec
*codec
, hda_nid_t pin
)
3774 unsigned int pincap
;
3775 unsigned int oldval
;
3776 oldval
= snd_hda_codec_read(codec
, pin
, 0,
3777 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
3778 pincap
= snd_hda_query_pin_caps(codec
, pin
);
3779 pincap
= (pincap
& AC_PINCAP_VREF
) >> AC_PINCAP_VREF_SHIFT
;
3780 /* Exception: if the default pin setup is vref50, we give it priority */
3781 if ((pincap
& AC_PINCAP_VREF_80
) && oldval
!= PIN_VREF50
)
3782 return AC_PINCTL_VREF_80
;
3783 else if (pincap
& AC_PINCAP_VREF_50
)
3784 return AC_PINCTL_VREF_50
;
3785 else if (pincap
& AC_PINCAP_VREF_100
)
3786 return AC_PINCTL_VREF_100
;
3787 else if (pincap
& AC_PINCAP_VREF_GRD
)
3788 return AC_PINCTL_VREF_GRD
;
3789 return AC_PINCTL_VREF_HIZ
;
3791 EXPORT_SYMBOL_GPL(snd_hda_get_default_vref
);
3794 * snd_hda_correct_pin_ctl - correct the pin ctl value for matching with the pin cap
3795 * @codec: the HDA codec
3796 * @pin: referred pin NID
3797 * @val: pin ctl value to audit
3799 unsigned int snd_hda_correct_pin_ctl(struct hda_codec
*codec
,
3800 hda_nid_t pin
, unsigned int val
)
3802 static unsigned int cap_lists
[][2] = {
3803 { AC_PINCTL_VREF_100
, AC_PINCAP_VREF_100
},
3804 { AC_PINCTL_VREF_80
, AC_PINCAP_VREF_80
},
3805 { AC_PINCTL_VREF_50
, AC_PINCAP_VREF_50
},
3806 { AC_PINCTL_VREF_GRD
, AC_PINCAP_VREF_GRD
},
3812 cap
= snd_hda_query_pin_caps(codec
, pin
);
3814 return val
; /* don't know what to do... */
3816 if (val
& AC_PINCTL_OUT_EN
) {
3817 if (!(cap
& AC_PINCAP_OUT
))
3818 val
&= ~(AC_PINCTL_OUT_EN
| AC_PINCTL_HP_EN
);
3819 else if ((val
& AC_PINCTL_HP_EN
) && !(cap
& AC_PINCAP_HP_DRV
))
3820 val
&= ~AC_PINCTL_HP_EN
;
3823 if (val
& AC_PINCTL_IN_EN
) {
3824 if (!(cap
& AC_PINCAP_IN
))
3825 val
&= ~(AC_PINCTL_IN_EN
| AC_PINCTL_VREFEN
);
3827 unsigned int vcap
, vref
;
3829 vcap
= (cap
& AC_PINCAP_VREF
) >> AC_PINCAP_VREF_SHIFT
;
3830 vref
= val
& AC_PINCTL_VREFEN
;
3831 for (i
= 0; i
< ARRAY_SIZE(cap_lists
); i
++) {
3832 if (vref
== cap_lists
[i
][0] &&
3833 !(vcap
& cap_lists
[i
][1])) {
3834 if (i
== ARRAY_SIZE(cap_lists
) - 1)
3835 vref
= AC_PINCTL_VREF_HIZ
;
3837 vref
= cap_lists
[i
+ 1][0];
3840 val
&= ~AC_PINCTL_VREFEN
;
3847 EXPORT_SYMBOL_GPL(snd_hda_correct_pin_ctl
);
3850 * _snd_hda_pin_ctl - Helper to set pin ctl value
3851 * @codec: the HDA codec
3852 * @pin: referred pin NID
3853 * @val: pin control value to set
3854 * @cached: access over codec pinctl cache or direct write
3856 * This function is a helper to set a pin ctl value more safely.
3857 * It corrects the pin ctl value via snd_hda_correct_pin_ctl(), stores the
3858 * value in pin target array via snd_hda_codec_set_pin_target(), then
3859 * actually writes the value via either snd_hda_codec_update_cache() or
3860 * snd_hda_codec_write() depending on @cached flag.
3862 int _snd_hda_set_pin_ctl(struct hda_codec
*codec
, hda_nid_t pin
,
3863 unsigned int val
, bool cached
)
3865 val
= snd_hda_correct_pin_ctl(codec
, pin
, val
);
3866 snd_hda_codec_set_pin_target(codec
, pin
, val
);
3868 return snd_hda_codec_update_cache(codec
, pin
, 0,
3869 AC_VERB_SET_PIN_WIDGET_CONTROL
, val
);
3871 return snd_hda_codec_write(codec
, pin
, 0,
3872 AC_VERB_SET_PIN_WIDGET_CONTROL
, val
);
3874 EXPORT_SYMBOL_GPL(_snd_hda_set_pin_ctl
);
3877 * snd_hda_add_imux_item - Add an item to input_mux
3878 * @codec: the HDA codec
3879 * @imux: imux helper object
3880 * @label: the name of imux item to assign
3881 * @index: index number of imux item to assign
3882 * @type_idx: pointer to store the resultant label index
3884 * When the same label is used already in the existing items, the number
3885 * suffix is appended to the label. This label index number is stored
3886 * to type_idx when non-NULL pointer is given.
3888 int snd_hda_add_imux_item(struct hda_codec
*codec
,
3889 struct hda_input_mux
*imux
, const char *label
,
3890 int index
, int *type_idx
)
3892 int i
, label_idx
= 0;
3893 if (imux
->num_items
>= HDA_MAX_NUM_INPUTS
) {
3894 codec_err(codec
, "hda_codec: Too many imux items!\n");
3897 for (i
= 0; i
< imux
->num_items
; i
++) {
3898 if (!strncmp(label
, imux
->items
[i
].label
, strlen(label
)))
3902 *type_idx
= label_idx
;
3904 snprintf(imux
->items
[imux
->num_items
].label
,
3905 sizeof(imux
->items
[imux
->num_items
].label
),
3906 "%s %d", label
, label_idx
);
3908 strlcpy(imux
->items
[imux
->num_items
].label
, label
,
3909 sizeof(imux
->items
[imux
->num_items
].label
));
3910 imux
->items
[imux
->num_items
].index
= index
;
3914 EXPORT_SYMBOL_GPL(snd_hda_add_imux_item
);
3917 * snd_hda_bus_reset_codecs - Reset the bus
3918 * @bus: HD-audio bus
3920 void snd_hda_bus_reset_codecs(struct hda_bus
*bus
)
3922 struct hda_codec
*codec
;
3924 list_for_each_codec(codec
, bus
) {
3925 /* FIXME: maybe a better way needed for forced reset */
3926 cancel_delayed_work_sync(&codec
->jackpoll_work
);
3928 if (hda_codec_is_power_on(codec
)) {
3929 hda_call_codec_suspend(codec
);
3930 hda_call_codec_resume(codec
);
3937 * snd_print_pcm_bits - Print the supported PCM fmt bits to the string buffer
3938 * @pcm: PCM caps bits
3939 * @buf: the string buffer to write
3940 * @buflen: the max buffer length
3942 * used by hda_proc.c and hda_eld.c
3944 void snd_print_pcm_bits(int pcm
, char *buf
, int buflen
)
3946 static unsigned int bits
[] = { 8, 16, 20, 24, 32 };
3949 for (i
= 0, j
= 0; i
< ARRAY_SIZE(bits
); i
++)
3950 if (pcm
& (AC_SUPPCM_BITS_8
<< i
))
3951 j
+= snprintf(buf
+ j
, buflen
- j
, " %d", bits
[i
]);
3953 buf
[j
] = '\0'; /* necessary when j == 0 */
3955 EXPORT_SYMBOL_GPL(snd_print_pcm_bits
);
3957 MODULE_DESCRIPTION("HDA codec core");
3958 MODULE_LICENSE("GPL");