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
23 #include <linux/init.h>
24 #include <linux/delay.h>
25 #include <linux/slab.h>
26 #include <linux/pci.h>
27 #include <linux/mutex.h>
28 #include <linux/module.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>
40 #define CREATE_TRACE_POINTS
41 #include "hda_trace.h"
44 * vendor / preset table
47 struct hda_vendor_id
{
52 /* codec vendor labels */
53 static struct hda_vendor_id hda_vendor_ids
[] = {
55 { 0x1013, "Cirrus Logic" },
56 { 0x1057, "Motorola" },
57 { 0x1095, "Silicon Image" },
59 { 0x10ec, "Realtek" },
60 { 0x1102, "Creative" },
64 { 0x11d4, "Analog Devices" },
65 { 0x13f6, "C-Media" },
66 { 0x14f1, "Conexant" },
67 { 0x17e8, "Chrontel" },
69 { 0x1aec, "Wolfson Microelectronics" },
70 { 0x434d, "C-Media" },
72 { 0x8384, "SigmaTel" },
76 static DEFINE_MUTEX(preset_mutex
);
77 static LIST_HEAD(hda_preset_tables
);
79 int snd_hda_add_codec_preset(struct hda_codec_preset_list
*preset
)
81 mutex_lock(&preset_mutex
);
82 list_add_tail(&preset
->list
, &hda_preset_tables
);
83 mutex_unlock(&preset_mutex
);
86 EXPORT_SYMBOL_HDA(snd_hda_add_codec_preset
);
88 int snd_hda_delete_codec_preset(struct hda_codec_preset_list
*preset
)
90 mutex_lock(&preset_mutex
);
91 list_del(&preset
->list
);
92 mutex_unlock(&preset_mutex
);
95 EXPORT_SYMBOL_HDA(snd_hda_delete_codec_preset
);
97 #ifdef CONFIG_SND_HDA_POWER_SAVE
98 static void hda_power_work(struct work_struct
*work
);
99 static void hda_keep_power_on(struct hda_codec
*codec
);
100 #define hda_codec_is_power_on(codec) ((codec)->power_on)
102 static inline void hda_keep_power_on(struct hda_codec
*codec
) {}
103 #define hda_codec_is_power_on(codec) 1
107 * snd_hda_get_jack_location - Give a location string of the jack
108 * @cfg: pin default config value
110 * Parse the pin default config value and returns the string of the
111 * jack location, e.g. "Rear", "Front", etc.
113 const char *snd_hda_get_jack_location(u32 cfg
)
115 static char *bases
[7] = {
116 "N/A", "Rear", "Front", "Left", "Right", "Top", "Bottom",
118 static unsigned char specials_idx
[] = {
123 static char *specials
[] = {
124 "Rear Panel", "Drive Bar",
125 "Riser", "HDMI", "ATAPI",
126 "Mobile-In", "Mobile-Out"
129 cfg
= (cfg
& AC_DEFCFG_LOCATION
) >> AC_DEFCFG_LOCATION_SHIFT
;
130 if ((cfg
& 0x0f) < 7)
131 return bases
[cfg
& 0x0f];
132 for (i
= 0; i
< ARRAY_SIZE(specials_idx
); i
++) {
133 if (cfg
== specials_idx
[i
])
138 EXPORT_SYMBOL_HDA(snd_hda_get_jack_location
);
141 * snd_hda_get_jack_connectivity - Give a connectivity string of the jack
142 * @cfg: pin default config value
144 * Parse the pin default config value and returns the string of the
145 * jack connectivity, i.e. external or internal connection.
147 const char *snd_hda_get_jack_connectivity(u32 cfg
)
149 static char *jack_locations
[4] = { "Ext", "Int", "Sep", "Oth" };
151 return jack_locations
[(cfg
>> (AC_DEFCFG_LOCATION_SHIFT
+ 4)) & 3];
153 EXPORT_SYMBOL_HDA(snd_hda_get_jack_connectivity
);
156 * snd_hda_get_jack_type - Give a type string of the jack
157 * @cfg: pin default config value
159 * Parse the pin default config value and returns the string of the
160 * jack type, i.e. the purpose of the jack, such as Line-Out or CD.
162 const char *snd_hda_get_jack_type(u32 cfg
)
164 static char *jack_types
[16] = {
165 "Line Out", "Speaker", "HP Out", "CD",
166 "SPDIF Out", "Digital Out", "Modem Line", "Modem Hand",
167 "Line In", "Aux", "Mic", "Telephony",
168 "SPDIF In", "Digitial In", "Reserved", "Other"
171 return jack_types
[(cfg
& AC_DEFCFG_DEVICE
)
172 >> AC_DEFCFG_DEVICE_SHIFT
];
174 EXPORT_SYMBOL_HDA(snd_hda_get_jack_type
);
177 * Compose a 32bit command word to be sent to the HD-audio controller
179 static inline unsigned int
180 make_codec_cmd(struct hda_codec
*codec
, hda_nid_t nid
, int direct
,
181 unsigned int verb
, unsigned int parm
)
185 if ((codec
->addr
& ~0xf) || (direct
& ~1) || (nid
& ~0x7f) ||
186 (verb
& ~0xfff) || (parm
& ~0xffff)) {
187 printk(KERN_ERR
"hda-codec: out of range cmd %x:%x:%x:%x:%x\n",
188 codec
->addr
, direct
, nid
, verb
, parm
);
192 val
= (u32
)codec
->addr
<< 28;
193 val
|= (u32
)direct
<< 27;
194 val
|= (u32
)nid
<< 20;
201 * Send and receive a verb
203 static int codec_exec_verb(struct hda_codec
*codec
, unsigned int cmd
,
206 struct hda_bus
*bus
= codec
->bus
;
215 snd_hda_power_up(codec
);
216 mutex_lock(&bus
->cmd_mutex
);
217 trace_hda_send_cmd(codec
, cmd
);
218 err
= bus
->ops
.command(bus
, cmd
);
220 *res
= bus
->ops
.get_response(bus
, codec
->addr
);
221 trace_hda_get_response(codec
, *res
);
223 mutex_unlock(&bus
->cmd_mutex
);
224 snd_hda_power_down(codec
);
225 if (res
&& *res
== -1 && bus
->rirb_error
) {
226 if (bus
->response_reset
) {
227 snd_printd("hda_codec: resetting BUS due to "
228 "fatal communication error\n");
229 trace_hda_bus_reset(bus
);
230 bus
->ops
.bus_reset(bus
);
234 /* clear reset-flag when the communication gets recovered */
236 bus
->response_reset
= 0;
241 * snd_hda_codec_read - send a command and get the response
242 * @codec: the HDA codec
243 * @nid: NID to send the command
244 * @direct: direct flag
245 * @verb: the verb to send
246 * @parm: the parameter for the verb
248 * Send a single command and read the corresponding response.
250 * Returns the obtained response value, or -1 for an error.
252 unsigned int snd_hda_codec_read(struct hda_codec
*codec
, hda_nid_t nid
,
254 unsigned int verb
, unsigned int parm
)
256 unsigned cmd
= make_codec_cmd(codec
, nid
, direct
, verb
, parm
);
258 if (codec_exec_verb(codec
, cmd
, &res
))
262 EXPORT_SYMBOL_HDA(snd_hda_codec_read
);
265 * snd_hda_codec_write - send a single command without waiting for response
266 * @codec: the HDA codec
267 * @nid: NID to send the command
268 * @direct: direct flag
269 * @verb: the verb to send
270 * @parm: the parameter for the verb
272 * Send a single command without waiting for response.
274 * Returns 0 if successful, or a negative error code.
276 int snd_hda_codec_write(struct hda_codec
*codec
, hda_nid_t nid
, int direct
,
277 unsigned int verb
, unsigned int parm
)
279 unsigned int cmd
= make_codec_cmd(codec
, nid
, direct
, verb
, parm
);
281 return codec_exec_verb(codec
, cmd
,
282 codec
->bus
->sync_write
? &res
: NULL
);
284 EXPORT_SYMBOL_HDA(snd_hda_codec_write
);
287 * snd_hda_sequence_write - sequence writes
288 * @codec: the HDA codec
289 * @seq: VERB array to send
291 * Send the commands sequentially from the given array.
292 * The array must be terminated with NID=0.
294 void snd_hda_sequence_write(struct hda_codec
*codec
, const struct hda_verb
*seq
)
296 for (; seq
->nid
; seq
++)
297 snd_hda_codec_write(codec
, seq
->nid
, 0, seq
->verb
, seq
->param
);
299 EXPORT_SYMBOL_HDA(snd_hda_sequence_write
);
302 * snd_hda_get_sub_nodes - get the range of sub nodes
303 * @codec: the HDA codec
305 * @start_id: the pointer to store the start NID
307 * Parse the NID and store the start NID of its sub-nodes.
308 * Returns the number of sub-nodes.
310 int snd_hda_get_sub_nodes(struct hda_codec
*codec
, hda_nid_t nid
,
315 parm
= snd_hda_param_read(codec
, nid
, AC_PAR_NODE_COUNT
);
318 *start_id
= (parm
>> 16) & 0x7fff;
319 return (int)(parm
& 0x7fff);
321 EXPORT_SYMBOL_HDA(snd_hda_get_sub_nodes
);
323 /* look up the cached results */
324 static hda_nid_t
*lookup_conn_list(struct snd_array
*array
, hda_nid_t nid
)
327 for (i
= 0; i
< array
->used
; ) {
328 hda_nid_t
*p
= snd_array_elem(array
, i
);
337 /* read the connection and add to the cache */
338 static int read_and_add_raw_conns(struct hda_codec
*codec
, hda_nid_t nid
)
340 hda_nid_t list
[HDA_MAX_CONNECTIONS
];
343 len
= snd_hda_get_raw_connections(codec
, nid
, list
, ARRAY_SIZE(list
));
346 return snd_hda_override_conn_list(codec
, nid
, len
, list
);
350 * snd_hda_get_connections - copy connection list
351 * @codec: the HDA codec
353 * @conn_list: connection list array; when NULL, checks only the size
354 * @max_conns: max. number of connections to store
356 * Parses the connection list of the given widget and stores the list
359 * Returns the number of connections, or a negative error code.
361 int snd_hda_get_connections(struct hda_codec
*codec
, hda_nid_t nid
,
362 hda_nid_t
*conn_list
, int max_conns
)
364 struct snd_array
*array
= &codec
->conn_lists
;
370 mutex_lock(&codec
->hash_mutex
);
372 /* if the connection-list is already cached, read it */
373 p
= lookup_conn_list(array
, nid
);
376 if (conn_list
&& len
> max_conns
) {
377 snd_printk(KERN_ERR
"hda_codec: "
378 "Too many connections %d for NID 0x%x\n",
380 mutex_unlock(&codec
->hash_mutex
);
383 if (conn_list
&& len
)
384 memcpy(conn_list
, p
+ 2, len
* sizeof(hda_nid_t
));
386 mutex_unlock(&codec
->hash_mutex
);
389 if (snd_BUG_ON(added
))
392 len
= read_and_add_raw_conns(codec
, nid
);
398 EXPORT_SYMBOL_HDA(snd_hda_get_connections
);
401 * snd_hda_get_raw_connections - copy connection list without cache
402 * @codec: the HDA codec
404 * @conn_list: connection list array
405 * @max_conns: max. number of connections to store
407 * Like snd_hda_get_connections(), copy the connection list but without
408 * checking through the connection-list cache.
409 * Currently called only from hda_proc.c, so not exported.
411 int snd_hda_get_raw_connections(struct hda_codec
*codec
, hda_nid_t nid
,
412 hda_nid_t
*conn_list
, int max_conns
)
415 int i
, conn_len
, conns
;
416 unsigned int shift
, num_elems
, mask
;
420 if (snd_BUG_ON(!conn_list
|| max_conns
<= 0))
423 wcaps
= get_wcaps(codec
, nid
);
424 if (!(wcaps
& AC_WCAP_CONN_LIST
) &&
425 get_wcaps_type(wcaps
) != AC_WID_VOL_KNB
)
428 parm
= snd_hda_param_read(codec
, nid
, AC_PAR_CONNLIST_LEN
);
429 if (parm
& AC_CLIST_LONG
) {
438 conn_len
= parm
& AC_CLIST_LENGTH
;
439 mask
= (1 << (shift
-1)) - 1;
442 return 0; /* no connection */
445 /* single connection */
446 parm
= snd_hda_codec_read(codec
, nid
, 0,
447 AC_VERB_GET_CONNECT_LIST
, 0);
448 if (parm
== -1 && codec
->bus
->rirb_error
)
450 conn_list
[0] = parm
& mask
;
454 /* multi connection */
457 for (i
= 0; i
< conn_len
; i
++) {
461 if (i
% num_elems
== 0) {
462 parm
= snd_hda_codec_read(codec
, nid
, 0,
463 AC_VERB_GET_CONNECT_LIST
, i
);
464 if (parm
== -1 && codec
->bus
->rirb_error
)
467 range_val
= !!(parm
& (1 << (shift
-1))); /* ranges */
470 snd_printk(KERN_WARNING
"hda_codec: "
471 "invalid CONNECT_LIST verb %x[%i]:%x\n",
477 /* ranges between the previous and this one */
478 if (!prev_nid
|| prev_nid
>= val
) {
479 snd_printk(KERN_WARNING
"hda_codec: "
480 "invalid dep_range_val %x:%x\n",
484 for (n
= prev_nid
+ 1; n
<= val
; n
++) {
485 if (conns
>= max_conns
) {
486 snd_printk(KERN_ERR
"hda_codec: "
487 "Too many connections %d for NID 0x%x\n",
491 conn_list
[conns
++] = n
;
494 if (conns
>= max_conns
) {
495 snd_printk(KERN_ERR
"hda_codec: "
496 "Too many connections %d for NID 0x%x\n",
500 conn_list
[conns
++] = val
;
507 static bool add_conn_list(struct snd_array
*array
, hda_nid_t nid
)
509 hda_nid_t
*p
= snd_array_new(array
);
517 * snd_hda_override_conn_list - add/modify the connection-list to cache
518 * @codec: the HDA codec
520 * @len: number of connection list entries
521 * @list: the list of connection entries
523 * Add or modify the given connection-list to the cache. If the corresponding
524 * cache already exists, invalidate it and append a new one.
526 * Returns zero or a negative error code.
528 int snd_hda_override_conn_list(struct hda_codec
*codec
, hda_nid_t nid
, int len
,
529 const hda_nid_t
*list
)
531 struct snd_array
*array
= &codec
->conn_lists
;
535 mutex_lock(&codec
->hash_mutex
);
536 p
= lookup_conn_list(array
, nid
);
538 *p
= -1; /* invalidate the old entry */
540 old_used
= array
->used
;
541 if (!add_conn_list(array
, nid
) || !add_conn_list(array
, len
))
543 for (i
= 0; i
< len
; i
++)
544 if (!add_conn_list(array
, list
[i
]))
546 mutex_unlock(&codec
->hash_mutex
);
550 array
->used
= old_used
;
551 mutex_unlock(&codec
->hash_mutex
);
554 EXPORT_SYMBOL_HDA(snd_hda_override_conn_list
);
557 * snd_hda_get_conn_index - get the connection index of the given NID
558 * @codec: the HDA codec
559 * @mux: NID containing the list
560 * @nid: NID to select
561 * @recursive: 1 when searching NID recursively, otherwise 0
563 * Parses the connection list of the widget @mux and checks whether the
564 * widget @nid is present. If it is, return the connection index.
565 * Otherwise it returns -1.
567 int snd_hda_get_conn_index(struct hda_codec
*codec
, hda_nid_t mux
,
568 hda_nid_t nid
, int recursive
)
570 hda_nid_t conn
[HDA_MAX_NUM_INPUTS
];
573 nums
= snd_hda_get_connections(codec
, mux
, conn
, ARRAY_SIZE(conn
));
574 for (i
= 0; i
< nums
; i
++)
580 snd_printd("hda_codec: too deep connection for 0x%x\n", nid
);
584 for (i
= 0; i
< nums
; i
++) {
585 unsigned int type
= get_wcaps_type(get_wcaps(codec
, conn
[i
]));
586 if (type
== AC_WID_PIN
|| type
== AC_WID_AUD_OUT
)
588 if (snd_hda_get_conn_index(codec
, conn
[i
], nid
, recursive
) >= 0)
593 EXPORT_SYMBOL_HDA(snd_hda_get_conn_index
);
596 * snd_hda_queue_unsol_event - add an unsolicited event to queue
598 * @res: unsolicited event (lower 32bit of RIRB entry)
599 * @res_ex: codec addr and flags (upper 32bit or RIRB entry)
601 * Adds the given event to the queue. The events are processed in
602 * the workqueue asynchronously. Call this function in the interrupt
603 * hanlder when RIRB receives an unsolicited event.
605 * Returns 0 if successful, or a negative error code.
607 int snd_hda_queue_unsol_event(struct hda_bus
*bus
, u32 res
, u32 res_ex
)
609 struct hda_bus_unsolicited
*unsol
;
612 trace_hda_unsol_event(bus
, res
, res_ex
);
617 wp
= (unsol
->wp
+ 1) % HDA_UNSOL_QUEUE_SIZE
;
621 unsol
->queue
[wp
] = res
;
622 unsol
->queue
[wp
+ 1] = res_ex
;
624 queue_work(bus
->workq
, &unsol
->work
);
628 EXPORT_SYMBOL_HDA(snd_hda_queue_unsol_event
);
631 * process queued unsolicited events
633 static void process_unsol_events(struct work_struct
*work
)
635 struct hda_bus_unsolicited
*unsol
=
636 container_of(work
, struct hda_bus_unsolicited
, work
);
637 struct hda_bus
*bus
= unsol
->bus
;
638 struct hda_codec
*codec
;
639 unsigned int rp
, caddr
, res
;
641 while (unsol
->rp
!= unsol
->wp
) {
642 rp
= (unsol
->rp
+ 1) % HDA_UNSOL_QUEUE_SIZE
;
645 res
= unsol
->queue
[rp
];
646 caddr
= unsol
->queue
[rp
+ 1];
647 if (!(caddr
& (1 << 4))) /* no unsolicited event? */
649 codec
= bus
->caddr_tbl
[caddr
& 0x0f];
650 if (codec
&& codec
->patch_ops
.unsol_event
)
651 codec
->patch_ops
.unsol_event(codec
, res
);
656 * initialize unsolicited queue
658 static int init_unsol_queue(struct hda_bus
*bus
)
660 struct hda_bus_unsolicited
*unsol
;
662 if (bus
->unsol
) /* already initialized */
665 unsol
= kzalloc(sizeof(*unsol
), GFP_KERNEL
);
667 snd_printk(KERN_ERR
"hda_codec: "
668 "can't allocate unsolicited queue\n");
671 INIT_WORK(&unsol
->work
, process_unsol_events
);
680 static void snd_hda_codec_free(struct hda_codec
*codec
);
682 static int snd_hda_bus_free(struct hda_bus
*bus
)
684 struct hda_codec
*codec
, *n
;
689 flush_workqueue(bus
->workq
);
692 list_for_each_entry_safe(codec
, n
, &bus
->codec_list
, list
) {
693 snd_hda_codec_free(codec
);
695 if (bus
->ops
.private_free
)
696 bus
->ops
.private_free(bus
);
698 destroy_workqueue(bus
->workq
);
703 static int snd_hda_bus_dev_free(struct snd_device
*device
)
705 struct hda_bus
*bus
= device
->device_data
;
707 return snd_hda_bus_free(bus
);
710 #ifdef CONFIG_SND_HDA_HWDEP
711 static int snd_hda_bus_dev_register(struct snd_device
*device
)
713 struct hda_bus
*bus
= device
->device_data
;
714 struct hda_codec
*codec
;
715 list_for_each_entry(codec
, &bus
->codec_list
, list
) {
716 snd_hda_hwdep_add_sysfs(codec
);
717 snd_hda_hwdep_add_power_sysfs(codec
);
722 #define snd_hda_bus_dev_register NULL
726 * snd_hda_bus_new - create a HDA bus
727 * @card: the card entry
728 * @temp: the template for hda_bus information
729 * @busp: the pointer to store the created bus instance
731 * Returns 0 if successful, or a negative error code.
733 int /*__devinit*/ snd_hda_bus_new(struct snd_card
*card
,
734 const struct hda_bus_template
*temp
,
735 struct hda_bus
**busp
)
739 static struct snd_device_ops dev_ops
= {
740 .dev_register
= snd_hda_bus_dev_register
,
741 .dev_free
= snd_hda_bus_dev_free
,
744 if (snd_BUG_ON(!temp
))
746 if (snd_BUG_ON(!temp
->ops
.command
|| !temp
->ops
.get_response
))
752 bus
= kzalloc(sizeof(*bus
), GFP_KERNEL
);
754 snd_printk(KERN_ERR
"can't allocate struct hda_bus\n");
759 bus
->private_data
= temp
->private_data
;
760 bus
->pci
= temp
->pci
;
761 bus
->modelname
= temp
->modelname
;
762 bus
->power_save
= temp
->power_save
;
763 bus
->ops
= temp
->ops
;
765 mutex_init(&bus
->cmd_mutex
);
766 mutex_init(&bus
->prepare_mutex
);
767 INIT_LIST_HEAD(&bus
->codec_list
);
769 snprintf(bus
->workq_name
, sizeof(bus
->workq_name
),
770 "hd-audio%d", card
->number
);
771 bus
->workq
= create_singlethread_workqueue(bus
->workq_name
);
773 snd_printk(KERN_ERR
"cannot create workqueue %s\n",
779 err
= snd_device_new(card
, SNDRV_DEV_BUS
, bus
, &dev_ops
);
781 snd_hda_bus_free(bus
);
788 EXPORT_SYMBOL_HDA(snd_hda_bus_new
);
790 #ifdef CONFIG_SND_HDA_GENERIC
791 #define is_generic_config(codec) \
792 (codec->modelname && !strcmp(codec->modelname, "generic"))
794 #define is_generic_config(codec) 0
798 #define HDA_MODREQ_MAX_COUNT 2 /* two request_modules()'s */
800 #define HDA_MODREQ_MAX_COUNT 0 /* all presets are statically linked */
804 * find a matching codec preset
806 static const struct hda_codec_preset
*
807 find_codec_preset(struct hda_codec
*codec
)
809 struct hda_codec_preset_list
*tbl
;
810 const struct hda_codec_preset
*preset
;
811 int mod_requested
= 0;
813 if (is_generic_config(codec
))
814 return NULL
; /* use the generic parser */
817 mutex_lock(&preset_mutex
);
818 list_for_each_entry(tbl
, &hda_preset_tables
, list
) {
819 if (!try_module_get(tbl
->owner
)) {
820 snd_printk(KERN_ERR
"hda_codec: cannot module_get\n");
823 for (preset
= tbl
->preset
; preset
->id
; preset
++) {
824 u32 mask
= preset
->mask
;
825 if (preset
->afg
&& preset
->afg
!= codec
->afg
)
827 if (preset
->mfg
&& preset
->mfg
!= codec
->mfg
)
831 if (preset
->id
== (codec
->vendor_id
& mask
) &&
833 preset
->rev
== codec
->revision_id
)) {
834 mutex_unlock(&preset_mutex
);
835 codec
->owner
= tbl
->owner
;
839 module_put(tbl
->owner
);
841 mutex_unlock(&preset_mutex
);
843 if (mod_requested
< HDA_MODREQ_MAX_COUNT
) {
846 snprintf(name
, sizeof(name
), "snd-hda-codec-id:%08x",
849 snprintf(name
, sizeof(name
), "snd-hda-codec-id:%04x*",
850 (codec
->vendor_id
>> 16) & 0xffff);
851 request_module(name
);
859 * get_codec_name - store the codec name
861 static int get_codec_name(struct hda_codec
*codec
)
863 const struct hda_vendor_id
*c
;
864 const char *vendor
= NULL
;
865 u16 vendor_id
= codec
->vendor_id
>> 16;
868 if (codec
->vendor_name
)
871 for (c
= hda_vendor_ids
; c
->id
; c
++) {
872 if (c
->id
== vendor_id
) {
878 sprintf(tmp
, "Generic %04x", vendor_id
);
881 codec
->vendor_name
= kstrdup(vendor
, GFP_KERNEL
);
882 if (!codec
->vendor_name
)
886 if (codec
->chip_name
)
889 if (codec
->preset
&& codec
->preset
->name
)
890 codec
->chip_name
= kstrdup(codec
->preset
->name
, GFP_KERNEL
);
892 sprintf(tmp
, "ID %x", codec
->vendor_id
& 0xffff);
893 codec
->chip_name
= kstrdup(tmp
, GFP_KERNEL
);
895 if (!codec
->chip_name
)
901 * look for an AFG and MFG nodes
903 static void /*__devinit*/ setup_fg_nodes(struct hda_codec
*codec
)
905 int i
, total_nodes
, function_id
;
908 total_nodes
= snd_hda_get_sub_nodes(codec
, AC_NODE_ROOT
, &nid
);
909 for (i
= 0; i
< total_nodes
; i
++, nid
++) {
910 function_id
= snd_hda_param_read(codec
, nid
,
911 AC_PAR_FUNCTION_TYPE
);
912 switch (function_id
& 0xff) {
913 case AC_GRP_AUDIO_FUNCTION
:
915 codec
->afg_function_id
= function_id
& 0xff;
916 codec
->afg_unsol
= (function_id
>> 8) & 1;
918 case AC_GRP_MODEM_FUNCTION
:
920 codec
->mfg_function_id
= function_id
& 0xff;
921 codec
->mfg_unsol
= (function_id
>> 8) & 1;
930 * read widget caps for each widget and store in cache
932 static int read_widget_caps(struct hda_codec
*codec
, hda_nid_t fg_node
)
937 codec
->num_nodes
= snd_hda_get_sub_nodes(codec
, fg_node
,
939 codec
->wcaps
= kmalloc(codec
->num_nodes
* 4, GFP_KERNEL
);
942 nid
= codec
->start_nid
;
943 for (i
= 0; i
< codec
->num_nodes
; i
++, nid
++)
944 codec
->wcaps
[i
] = snd_hda_param_read(codec
, nid
,
945 AC_PAR_AUDIO_WIDGET_CAP
);
949 /* read all pin default configurations and save codec->init_pins */
950 static int read_pin_defaults(struct hda_codec
*codec
)
953 hda_nid_t nid
= codec
->start_nid
;
955 for (i
= 0; i
< codec
->num_nodes
; i
++, nid
++) {
956 struct hda_pincfg
*pin
;
957 unsigned int wcaps
= get_wcaps(codec
, nid
);
958 unsigned int wid_type
= get_wcaps_type(wcaps
);
959 if (wid_type
!= AC_WID_PIN
)
961 pin
= snd_array_new(&codec
->init_pins
);
965 pin
->cfg
= snd_hda_codec_read(codec
, nid
, 0,
966 AC_VERB_GET_CONFIG_DEFAULT
, 0);
967 pin
->ctrl
= snd_hda_codec_read(codec
, nid
, 0,
968 AC_VERB_GET_PIN_WIDGET_CONTROL
,
974 /* look up the given pin config list and return the item matching with NID */
975 static struct hda_pincfg
*look_up_pincfg(struct hda_codec
*codec
,
976 struct snd_array
*array
,
980 for (i
= 0; i
< array
->used
; i
++) {
981 struct hda_pincfg
*pin
= snd_array_elem(array
, i
);
988 /* write a config value for the given NID */
989 static void set_pincfg(struct hda_codec
*codec
, hda_nid_t nid
,
993 for (i
= 0; i
< 4; i
++) {
994 snd_hda_codec_write(codec
, nid
, 0,
995 AC_VERB_SET_CONFIG_DEFAULT_BYTES_0
+ i
,
1001 /* set the current pin config value for the given NID.
1002 * the value is cached, and read via snd_hda_codec_get_pincfg()
1004 int snd_hda_add_pincfg(struct hda_codec
*codec
, struct snd_array
*list
,
1005 hda_nid_t nid
, unsigned int cfg
)
1007 struct hda_pincfg
*pin
;
1008 unsigned int oldcfg
;
1010 if (get_wcaps_type(get_wcaps(codec
, nid
)) != AC_WID_PIN
)
1013 oldcfg
= snd_hda_codec_get_pincfg(codec
, nid
);
1014 pin
= look_up_pincfg(codec
, list
, nid
);
1016 pin
= snd_array_new(list
);
1023 /* change only when needed; e.g. if the pincfg is already present
1024 * in user_pins[], don't write it
1026 cfg
= snd_hda_codec_get_pincfg(codec
, nid
);
1028 set_pincfg(codec
, nid
, cfg
);
1033 * snd_hda_codec_set_pincfg - Override a pin default configuration
1034 * @codec: the HDA codec
1035 * @nid: NID to set the pin config
1036 * @cfg: the pin default config value
1038 * Override a pin default configuration value in the cache.
1039 * This value can be read by snd_hda_codec_get_pincfg() in a higher
1040 * priority than the real hardware value.
1042 int snd_hda_codec_set_pincfg(struct hda_codec
*codec
,
1043 hda_nid_t nid
, unsigned int cfg
)
1045 return snd_hda_add_pincfg(codec
, &codec
->driver_pins
, nid
, cfg
);
1047 EXPORT_SYMBOL_HDA(snd_hda_codec_set_pincfg
);
1050 * snd_hda_codec_get_pincfg - Obtain a pin-default configuration
1051 * @codec: the HDA codec
1052 * @nid: NID to get the pin config
1054 * Get the current pin config value of the given pin NID.
1055 * If the pincfg value is cached or overridden via sysfs or driver,
1056 * returns the cached value.
1058 unsigned int snd_hda_codec_get_pincfg(struct hda_codec
*codec
, hda_nid_t nid
)
1060 struct hda_pincfg
*pin
;
1062 #ifdef CONFIG_SND_HDA_HWDEP
1063 pin
= look_up_pincfg(codec
, &codec
->user_pins
, nid
);
1067 pin
= look_up_pincfg(codec
, &codec
->driver_pins
, nid
);
1070 pin
= look_up_pincfg(codec
, &codec
->init_pins
, nid
);
1075 EXPORT_SYMBOL_HDA(snd_hda_codec_get_pincfg
);
1077 /* restore all current pin configs */
1078 static void restore_pincfgs(struct hda_codec
*codec
)
1081 for (i
= 0; i
< codec
->init_pins
.used
; i
++) {
1082 struct hda_pincfg
*pin
= snd_array_elem(&codec
->init_pins
, i
);
1083 set_pincfg(codec
, pin
->nid
,
1084 snd_hda_codec_get_pincfg(codec
, pin
->nid
));
1089 * snd_hda_shutup_pins - Shut up all pins
1090 * @codec: the HDA codec
1092 * Clear all pin controls to shup up before suspend for avoiding click noise.
1093 * The controls aren't cached so that they can be resumed properly.
1095 void snd_hda_shutup_pins(struct hda_codec
*codec
)
1098 /* don't shut up pins when unloading the driver; otherwise it breaks
1099 * the default pin setup at the next load of the driver
1101 if (codec
->bus
->shutdown
)
1103 for (i
= 0; i
< codec
->init_pins
.used
; i
++) {
1104 struct hda_pincfg
*pin
= snd_array_elem(&codec
->init_pins
, i
);
1105 /* use read here for syncing after issuing each verb */
1106 snd_hda_codec_read(codec
, pin
->nid
, 0,
1107 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
1109 codec
->pins_shutup
= 1;
1111 EXPORT_SYMBOL_HDA(snd_hda_shutup_pins
);
1114 /* Restore the pin controls cleared previously via snd_hda_shutup_pins() */
1115 static void restore_shutup_pins(struct hda_codec
*codec
)
1118 if (!codec
->pins_shutup
)
1120 if (codec
->bus
->shutdown
)
1122 for (i
= 0; i
< codec
->init_pins
.used
; i
++) {
1123 struct hda_pincfg
*pin
= snd_array_elem(&codec
->init_pins
, i
);
1124 snd_hda_codec_write(codec
, pin
->nid
, 0,
1125 AC_VERB_SET_PIN_WIDGET_CONTROL
,
1128 codec
->pins_shutup
= 0;
1132 static void init_hda_cache(struct hda_cache_rec
*cache
,
1133 unsigned int record_size
);
1134 static void free_hda_cache(struct hda_cache_rec
*cache
);
1136 /* restore the initial pin cfgs and release all pincfg lists */
1137 static void restore_init_pincfgs(struct hda_codec
*codec
)
1139 /* first free driver_pins and user_pins, then call restore_pincfg
1140 * so that only the values in init_pins are restored
1142 snd_array_free(&codec
->driver_pins
);
1143 #ifdef CONFIG_SND_HDA_HWDEP
1144 snd_array_free(&codec
->user_pins
);
1146 restore_pincfgs(codec
);
1147 snd_array_free(&codec
->init_pins
);
1151 * audio-converter setup caches
1153 struct hda_cvt_setup
{
1158 unsigned char active
; /* cvt is currently used */
1159 unsigned char dirty
; /* setups should be cleared */
1162 /* get or create a cache entry for the given audio converter NID */
1163 static struct hda_cvt_setup
*
1164 get_hda_cvt_setup(struct hda_codec
*codec
, hda_nid_t nid
)
1166 struct hda_cvt_setup
*p
;
1169 for (i
= 0; i
< codec
->cvt_setups
.used
; i
++) {
1170 p
= snd_array_elem(&codec
->cvt_setups
, i
);
1174 p
= snd_array_new(&codec
->cvt_setups
);
1183 static void snd_hda_codec_free(struct hda_codec
*codec
)
1187 snd_hda_jack_tbl_clear(codec
);
1188 restore_init_pincfgs(codec
);
1189 #ifdef CONFIG_SND_HDA_POWER_SAVE
1190 cancel_delayed_work(&codec
->power_work
);
1191 flush_workqueue(codec
->bus
->workq
);
1193 list_del(&codec
->list
);
1194 snd_array_free(&codec
->mixers
);
1195 snd_array_free(&codec
->nids
);
1196 snd_array_free(&codec
->cvt_setups
);
1197 snd_array_free(&codec
->conn_lists
);
1198 snd_array_free(&codec
->spdif_out
);
1199 codec
->bus
->caddr_tbl
[codec
->addr
] = NULL
;
1200 if (codec
->patch_ops
.free
)
1201 codec
->patch_ops
.free(codec
);
1202 module_put(codec
->owner
);
1203 free_hda_cache(&codec
->amp_cache
);
1204 free_hda_cache(&codec
->cmd_cache
);
1205 kfree(codec
->vendor_name
);
1206 kfree(codec
->chip_name
);
1207 kfree(codec
->modelname
);
1208 kfree(codec
->wcaps
);
1212 static bool snd_hda_codec_get_supported_ps(struct hda_codec
*codec
,
1213 hda_nid_t fg
, unsigned int power_state
);
1215 static void hda_set_power_state(struct hda_codec
*codec
, hda_nid_t fg
,
1216 unsigned int power_state
);
1219 * snd_hda_codec_new - create a HDA codec
1220 * @bus: the bus to assign
1221 * @codec_addr: the codec address
1222 * @codecp: the pointer to store the generated codec
1224 * Returns 0 if successful, or a negative error code.
1226 int /*__devinit*/ snd_hda_codec_new(struct hda_bus
*bus
,
1227 unsigned int codec_addr
,
1228 struct hda_codec
**codecp
)
1230 struct hda_codec
*codec
;
1234 if (snd_BUG_ON(!bus
))
1236 if (snd_BUG_ON(codec_addr
> HDA_MAX_CODEC_ADDRESS
))
1239 if (bus
->caddr_tbl
[codec_addr
]) {
1240 snd_printk(KERN_ERR
"hda_codec: "
1241 "address 0x%x is already occupied\n", codec_addr
);
1245 codec
= kzalloc(sizeof(*codec
), GFP_KERNEL
);
1246 if (codec
== NULL
) {
1247 snd_printk(KERN_ERR
"can't allocate struct hda_codec\n");
1252 codec
->addr
= codec_addr
;
1253 mutex_init(&codec
->spdif_mutex
);
1254 mutex_init(&codec
->control_mutex
);
1255 mutex_init(&codec
->hash_mutex
);
1256 init_hda_cache(&codec
->amp_cache
, sizeof(struct hda_amp_info
));
1257 init_hda_cache(&codec
->cmd_cache
, sizeof(struct hda_cache_head
));
1258 snd_array_init(&codec
->mixers
, sizeof(struct hda_nid_item
), 32);
1259 snd_array_init(&codec
->nids
, sizeof(struct hda_nid_item
), 32);
1260 snd_array_init(&codec
->init_pins
, sizeof(struct hda_pincfg
), 16);
1261 snd_array_init(&codec
->driver_pins
, sizeof(struct hda_pincfg
), 16);
1262 snd_array_init(&codec
->cvt_setups
, sizeof(struct hda_cvt_setup
), 8);
1263 snd_array_init(&codec
->conn_lists
, sizeof(hda_nid_t
), 64);
1264 snd_array_init(&codec
->spdif_out
, sizeof(struct hda_spdif_out
), 16);
1266 #ifdef CONFIG_SND_HDA_POWER_SAVE
1267 spin_lock_init(&codec
->power_lock
);
1268 INIT_DELAYED_WORK(&codec
->power_work
, hda_power_work
);
1269 /* snd_hda_codec_new() marks the codec as power-up, and leave it as is.
1270 * the caller has to power down appropriatley after initialization
1273 hda_keep_power_on(codec
);
1276 if (codec
->bus
->modelname
) {
1277 codec
->modelname
= kstrdup(codec
->bus
->modelname
, GFP_KERNEL
);
1278 if (!codec
->modelname
) {
1279 snd_hda_codec_free(codec
);
1284 list_add_tail(&codec
->list
, &bus
->codec_list
);
1285 bus
->caddr_tbl
[codec_addr
] = codec
;
1287 codec
->vendor_id
= snd_hda_param_read(codec
, AC_NODE_ROOT
,
1289 if (codec
->vendor_id
== -1)
1290 /* read again, hopefully the access method was corrected
1291 * in the last read...
1293 codec
->vendor_id
= snd_hda_param_read(codec
, AC_NODE_ROOT
,
1295 codec
->subsystem_id
= snd_hda_param_read(codec
, AC_NODE_ROOT
,
1296 AC_PAR_SUBSYSTEM_ID
);
1297 codec
->revision_id
= snd_hda_param_read(codec
, AC_NODE_ROOT
,
1300 setup_fg_nodes(codec
);
1301 if (!codec
->afg
&& !codec
->mfg
) {
1302 snd_printdd("hda_codec: no AFG or MFG node found\n");
1307 err
= read_widget_caps(codec
, codec
->afg
? codec
->afg
: codec
->mfg
);
1309 snd_printk(KERN_ERR
"hda_codec: cannot malloc\n");
1312 err
= read_pin_defaults(codec
);
1316 if (!codec
->subsystem_id
) {
1317 hda_nid_t nid
= codec
->afg
? codec
->afg
: codec
->mfg
;
1318 codec
->subsystem_id
=
1319 snd_hda_codec_read(codec
, nid
, 0,
1320 AC_VERB_GET_SUBSYSTEM_ID
, 0);
1323 codec
->epss
= snd_hda_codec_get_supported_ps(codec
,
1324 codec
->afg
? codec
->afg
: codec
->mfg
,
1327 /* power-up all before initialization */
1328 hda_set_power_state(codec
,
1329 codec
->afg
? codec
->afg
: codec
->mfg
,
1332 snd_hda_codec_proc_new(codec
);
1334 snd_hda_create_hwdep(codec
);
1336 sprintf(component
, "HDA:%08x,%08x,%08x", codec
->vendor_id
,
1337 codec
->subsystem_id
, codec
->revision_id
);
1338 snd_component_add(codec
->bus
->card
, component
);
1345 snd_hda_codec_free(codec
);
1348 EXPORT_SYMBOL_HDA(snd_hda_codec_new
);
1351 * snd_hda_codec_configure - (Re-)configure the HD-audio codec
1352 * @codec: the HDA codec
1354 * Start parsing of the given codec tree and (re-)initialize the whole
1357 * Returns 0 if successful or a negative error code.
1359 int snd_hda_codec_configure(struct hda_codec
*codec
)
1363 codec
->preset
= find_codec_preset(codec
);
1364 if (!codec
->vendor_name
|| !codec
->chip_name
) {
1365 err
= get_codec_name(codec
);
1370 if (is_generic_config(codec
)) {
1371 err
= snd_hda_parse_generic_codec(codec
);
1374 if (codec
->preset
&& codec
->preset
->patch
) {
1375 err
= codec
->preset
->patch(codec
);
1379 /* call the default parser */
1380 err
= snd_hda_parse_generic_codec(codec
);
1382 printk(KERN_ERR
"hda-codec: No codec parser is available\n");
1385 if (!err
&& codec
->patch_ops
.unsol_event
)
1386 err
= init_unsol_queue(codec
->bus
);
1387 /* audio codec should override the mixer name */
1388 if (!err
&& (codec
->afg
|| !*codec
->bus
->card
->mixername
))
1389 snprintf(codec
->bus
->card
->mixername
,
1390 sizeof(codec
->bus
->card
->mixername
),
1391 "%s %s", codec
->vendor_name
, codec
->chip_name
);
1394 EXPORT_SYMBOL_HDA(snd_hda_codec_configure
);
1396 /* update the stream-id if changed */
1397 static void update_pcm_stream_id(struct hda_codec
*codec
,
1398 struct hda_cvt_setup
*p
, hda_nid_t nid
,
1399 u32 stream_tag
, int channel_id
)
1401 unsigned int oldval
, newval
;
1403 if (p
->stream_tag
!= stream_tag
|| p
->channel_id
!= channel_id
) {
1404 oldval
= snd_hda_codec_read(codec
, nid
, 0, AC_VERB_GET_CONV
, 0);
1405 newval
= (stream_tag
<< 4) | channel_id
;
1406 if (oldval
!= newval
)
1407 snd_hda_codec_write(codec
, nid
, 0,
1408 AC_VERB_SET_CHANNEL_STREAMID
,
1410 p
->stream_tag
= stream_tag
;
1411 p
->channel_id
= channel_id
;
1415 /* update the format-id if changed */
1416 static void update_pcm_format(struct hda_codec
*codec
, struct hda_cvt_setup
*p
,
1417 hda_nid_t nid
, int format
)
1419 unsigned int oldval
;
1421 if (p
->format_id
!= format
) {
1422 oldval
= snd_hda_codec_read(codec
, nid
, 0,
1423 AC_VERB_GET_STREAM_FORMAT
, 0);
1424 if (oldval
!= format
) {
1426 snd_hda_codec_write(codec
, nid
, 0,
1427 AC_VERB_SET_STREAM_FORMAT
,
1430 p
->format_id
= format
;
1435 * snd_hda_codec_setup_stream - set up the codec for streaming
1436 * @codec: the CODEC to set up
1437 * @nid: the NID to set up
1438 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
1439 * @channel_id: channel id to pass, zero based.
1440 * @format: stream format.
1442 void snd_hda_codec_setup_stream(struct hda_codec
*codec
, hda_nid_t nid
,
1444 int channel_id
, int format
)
1446 struct hda_codec
*c
;
1447 struct hda_cvt_setup
*p
;
1454 snd_printdd("hda_codec_setup_stream: "
1455 "NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
1456 nid
, stream_tag
, channel_id
, format
);
1457 p
= get_hda_cvt_setup(codec
, nid
);
1461 if (codec
->pcm_format_first
)
1462 update_pcm_format(codec
, p
, nid
, format
);
1463 update_pcm_stream_id(codec
, p
, nid
, stream_tag
, channel_id
);
1464 if (!codec
->pcm_format_first
)
1465 update_pcm_format(codec
, p
, nid
, format
);
1470 /* make other inactive cvts with the same stream-tag dirty */
1471 type
= get_wcaps_type(get_wcaps(codec
, nid
));
1472 list_for_each_entry(c
, &codec
->bus
->codec_list
, list
) {
1473 for (i
= 0; i
< c
->cvt_setups
.used
; i
++) {
1474 p
= snd_array_elem(&c
->cvt_setups
, i
);
1475 if (!p
->active
&& p
->stream_tag
== stream_tag
&&
1476 get_wcaps_type(get_wcaps(c
, p
->nid
)) == type
)
1481 EXPORT_SYMBOL_HDA(snd_hda_codec_setup_stream
);
1483 static void really_cleanup_stream(struct hda_codec
*codec
,
1484 struct hda_cvt_setup
*q
);
1487 * __snd_hda_codec_cleanup_stream - clean up the codec for closing
1488 * @codec: the CODEC to clean up
1489 * @nid: the NID to clean up
1490 * @do_now: really clean up the stream instead of clearing the active flag
1492 void __snd_hda_codec_cleanup_stream(struct hda_codec
*codec
, hda_nid_t nid
,
1495 struct hda_cvt_setup
*p
;
1500 if (codec
->no_sticky_stream
)
1503 snd_printdd("hda_codec_cleanup_stream: NID=0x%x\n", nid
);
1504 p
= get_hda_cvt_setup(codec
, nid
);
1506 /* here we just clear the active flag when do_now isn't set;
1507 * actual clean-ups will be done later in
1508 * purify_inactive_streams() called from snd_hda_codec_prpapre()
1511 really_cleanup_stream(codec
, p
);
1516 EXPORT_SYMBOL_HDA(__snd_hda_codec_cleanup_stream
);
1518 static void really_cleanup_stream(struct hda_codec
*codec
,
1519 struct hda_cvt_setup
*q
)
1521 hda_nid_t nid
= q
->nid
;
1522 if (q
->stream_tag
|| q
->channel_id
)
1523 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_CHANNEL_STREAMID
, 0);
1525 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_STREAM_FORMAT
, 0
1527 memset(q
, 0, sizeof(*q
));
1531 /* clean up the all conflicting obsolete streams */
1532 static void purify_inactive_streams(struct hda_codec
*codec
)
1534 struct hda_codec
*c
;
1537 list_for_each_entry(c
, &codec
->bus
->codec_list
, list
) {
1538 for (i
= 0; i
< c
->cvt_setups
.used
; i
++) {
1539 struct hda_cvt_setup
*p
;
1540 p
= snd_array_elem(&c
->cvt_setups
, i
);
1542 really_cleanup_stream(c
, p
);
1548 /* clean up all streams; called from suspend */
1549 static void hda_cleanup_all_streams(struct hda_codec
*codec
)
1553 for (i
= 0; i
< codec
->cvt_setups
.used
; i
++) {
1554 struct hda_cvt_setup
*p
= snd_array_elem(&codec
->cvt_setups
, i
);
1556 really_cleanup_stream(codec
, p
);
1562 * amp access functions
1565 /* FIXME: more better hash key? */
1566 #define HDA_HASH_KEY(nid, dir, idx) (u32)((nid) + ((idx) << 16) + ((dir) << 24))
1567 #define HDA_HASH_PINCAP_KEY(nid) (u32)((nid) + (0x02 << 24))
1568 #define HDA_HASH_PARPCM_KEY(nid) (u32)((nid) + (0x03 << 24))
1569 #define HDA_HASH_PARSTR_KEY(nid) (u32)((nid) + (0x04 << 24))
1570 #define INFO_AMP_CAPS (1<<0)
1571 #define INFO_AMP_VOL(ch) (1 << (1 + (ch)))
1573 /* initialize the hash table */
1574 static void /*__devinit*/ init_hda_cache(struct hda_cache_rec
*cache
,
1575 unsigned int record_size
)
1577 memset(cache
, 0, sizeof(*cache
));
1578 memset(cache
->hash
, 0xff, sizeof(cache
->hash
));
1579 snd_array_init(&cache
->buf
, record_size
, 64);
1582 static void free_hda_cache(struct hda_cache_rec
*cache
)
1584 snd_array_free(&cache
->buf
);
1587 /* query the hash. allocate an entry if not found. */
1588 static struct hda_cache_head
*get_hash(struct hda_cache_rec
*cache
, u32 key
)
1590 u16 idx
= key
% (u16
)ARRAY_SIZE(cache
->hash
);
1591 u16 cur
= cache
->hash
[idx
];
1592 struct hda_cache_head
*info
;
1594 while (cur
!= 0xffff) {
1595 info
= snd_array_elem(&cache
->buf
, cur
);
1596 if (info
->key
== key
)
1603 /* query the hash. allocate an entry if not found. */
1604 static struct hda_cache_head
*get_alloc_hash(struct hda_cache_rec
*cache
,
1607 struct hda_cache_head
*info
= get_hash(cache
, key
);
1610 /* add a new hash entry */
1611 info
= snd_array_new(&cache
->buf
);
1614 cur
= snd_array_index(&cache
->buf
, info
);
1617 idx
= key
% (u16
)ARRAY_SIZE(cache
->hash
);
1618 info
->next
= cache
->hash
[idx
];
1619 cache
->hash
[idx
] = cur
;
1624 /* query and allocate an amp hash entry */
1625 static inline struct hda_amp_info
*
1626 get_alloc_amp_hash(struct hda_codec
*codec
, u32 key
)
1628 return (struct hda_amp_info
*)get_alloc_hash(&codec
->amp_cache
, key
);
1631 /* overwrite the value with the key in the caps hash */
1632 static int write_caps_hash(struct hda_codec
*codec
, u32 key
, unsigned int val
)
1634 struct hda_amp_info
*info
;
1636 mutex_lock(&codec
->hash_mutex
);
1637 info
= get_alloc_amp_hash(codec
, key
);
1639 mutex_unlock(&codec
->hash_mutex
);
1642 info
->amp_caps
= val
;
1643 info
->head
.val
|= INFO_AMP_CAPS
;
1644 mutex_unlock(&codec
->hash_mutex
);
1648 /* query the value from the caps hash; if not found, fetch the current
1649 * value from the given function and store in the hash
1652 query_caps_hash(struct hda_codec
*codec
, hda_nid_t nid
, int dir
, u32 key
,
1653 unsigned int (*func
)(struct hda_codec
*, hda_nid_t
, int))
1655 struct hda_amp_info
*info
;
1658 mutex_lock(&codec
->hash_mutex
);
1659 info
= get_alloc_amp_hash(codec
, key
);
1661 mutex_unlock(&codec
->hash_mutex
);
1664 if (!(info
->head
.val
& INFO_AMP_CAPS
)) {
1665 mutex_unlock(&codec
->hash_mutex
); /* for reentrance */
1666 val
= func(codec
, nid
, dir
);
1667 write_caps_hash(codec
, key
, val
);
1669 val
= info
->amp_caps
;
1670 mutex_unlock(&codec
->hash_mutex
);
1675 static unsigned int read_amp_cap(struct hda_codec
*codec
, hda_nid_t nid
,
1678 if (!(get_wcaps(codec
, nid
) & AC_WCAP_AMP_OVRD
))
1680 return snd_hda_param_read(codec
, nid
,
1681 direction
== HDA_OUTPUT
?
1682 AC_PAR_AMP_OUT_CAP
: AC_PAR_AMP_IN_CAP
);
1686 * query_amp_caps - query AMP capabilities
1687 * @codec: the HD-auio codec
1688 * @nid: the NID to query
1689 * @direction: either #HDA_INPUT or #HDA_OUTPUT
1691 * Query AMP capabilities for the given widget and direction.
1692 * Returns the obtained capability bits.
1694 * When cap bits have been already read, this doesn't read again but
1695 * returns the cached value.
1697 u32
query_amp_caps(struct hda_codec
*codec
, hda_nid_t nid
, int direction
)
1699 return query_caps_hash(codec
, nid
, direction
,
1700 HDA_HASH_KEY(nid
, direction
, 0),
1703 EXPORT_SYMBOL_HDA(query_amp_caps
);
1706 * snd_hda_override_amp_caps - Override the AMP capabilities
1707 * @codec: the CODEC to clean up
1708 * @nid: the NID to clean up
1709 * @direction: either #HDA_INPUT or #HDA_OUTPUT
1710 * @caps: the capability bits to set
1712 * Override the cached AMP caps bits value by the given one.
1713 * This function is useful if the driver needs to adjust the AMP ranges,
1714 * e.g. limit to 0dB, etc.
1716 * Returns zero if successful or a negative error code.
1718 int snd_hda_override_amp_caps(struct hda_codec
*codec
, hda_nid_t nid
, int dir
,
1721 return write_caps_hash(codec
, HDA_HASH_KEY(nid
, dir
, 0), caps
);
1723 EXPORT_SYMBOL_HDA(snd_hda_override_amp_caps
);
1725 static unsigned int read_pin_cap(struct hda_codec
*codec
, hda_nid_t nid
,
1728 return snd_hda_param_read(codec
, nid
, AC_PAR_PIN_CAP
);
1732 * snd_hda_query_pin_caps - Query PIN capabilities
1733 * @codec: the HD-auio codec
1734 * @nid: the NID to query
1736 * Query PIN capabilities for the given widget.
1737 * Returns the obtained capability bits.
1739 * When cap bits have been already read, this doesn't read again but
1740 * returns the cached value.
1742 u32
snd_hda_query_pin_caps(struct hda_codec
*codec
, hda_nid_t nid
)
1744 return query_caps_hash(codec
, nid
, 0, HDA_HASH_PINCAP_KEY(nid
),
1747 EXPORT_SYMBOL_HDA(snd_hda_query_pin_caps
);
1750 * snd_hda_override_pin_caps - Override the pin capabilities
1752 * @nid: the NID to override
1753 * @caps: the capability bits to set
1755 * Override the cached PIN capabilitiy bits value by the given one.
1757 * Returns zero if successful or a negative error code.
1759 int snd_hda_override_pin_caps(struct hda_codec
*codec
, hda_nid_t nid
,
1762 return write_caps_hash(codec
, HDA_HASH_PINCAP_KEY(nid
), caps
);
1764 EXPORT_SYMBOL_HDA(snd_hda_override_pin_caps
);
1766 /* read or sync the hash value with the current value;
1767 * call within hash_mutex
1769 static struct hda_amp_info
*
1770 update_amp_hash(struct hda_codec
*codec
, hda_nid_t nid
, int ch
,
1771 int direction
, int index
)
1773 struct hda_amp_info
*info
;
1774 unsigned int parm
, val
= 0;
1775 bool val_read
= false;
1778 info
= get_alloc_amp_hash(codec
, HDA_HASH_KEY(nid
, direction
, index
));
1781 if (!(info
->head
.val
& INFO_AMP_VOL(ch
))) {
1783 mutex_unlock(&codec
->hash_mutex
);
1784 parm
= ch
? AC_AMP_GET_RIGHT
: AC_AMP_GET_LEFT
;
1785 parm
|= direction
== HDA_OUTPUT
?
1786 AC_AMP_GET_OUTPUT
: AC_AMP_GET_INPUT
;
1788 val
= snd_hda_codec_read(codec
, nid
, 0,
1789 AC_VERB_GET_AMP_GAIN_MUTE
, parm
);
1792 mutex_lock(&codec
->hash_mutex
);
1795 info
->vol
[ch
] = val
;
1796 info
->head
.val
|= INFO_AMP_VOL(ch
);
1802 * write the current volume in info to the h/w
1804 static void put_vol_mute(struct hda_codec
*codec
, struct hda_amp_info
*info
,
1805 hda_nid_t nid
, int ch
, int direction
, int index
,
1810 parm
= ch
? AC_AMP_SET_RIGHT
: AC_AMP_SET_LEFT
;
1811 parm
|= direction
== HDA_OUTPUT
? AC_AMP_SET_OUTPUT
: AC_AMP_SET_INPUT
;
1812 parm
|= index
<< AC_AMP_SET_INDEX_SHIFT
;
1813 if ((val
& HDA_AMP_MUTE
) && !(info
->amp_caps
& AC_AMPCAP_MUTE
) &&
1814 (info
->amp_caps
& AC_AMPCAP_MIN_MUTE
))
1815 ; /* set the zero value as a fake mute */
1818 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_AMP_GAIN_MUTE
, parm
);
1822 * snd_hda_codec_amp_read - Read AMP value
1823 * @codec: HD-audio codec
1824 * @nid: NID to read the AMP value
1825 * @ch: channel (left=0 or right=1)
1826 * @direction: #HDA_INPUT or #HDA_OUTPUT
1827 * @index: the index value (only for input direction)
1829 * Read AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit.
1831 int snd_hda_codec_amp_read(struct hda_codec
*codec
, hda_nid_t nid
, int ch
,
1832 int direction
, int index
)
1834 struct hda_amp_info
*info
;
1835 unsigned int val
= 0;
1837 mutex_lock(&codec
->hash_mutex
);
1838 info
= update_amp_hash(codec
, nid
, ch
, direction
, index
);
1840 val
= info
->vol
[ch
];
1841 mutex_unlock(&codec
->hash_mutex
);
1844 EXPORT_SYMBOL_HDA(snd_hda_codec_amp_read
);
1847 * snd_hda_codec_amp_update - update the AMP value
1848 * @codec: HD-audio codec
1849 * @nid: NID to read the AMP value
1850 * @ch: channel (left=0 or right=1)
1851 * @direction: #HDA_INPUT or #HDA_OUTPUT
1852 * @idx: the index value (only for input direction)
1853 * @mask: bit mask to set
1854 * @val: the bits value to set
1856 * Update the AMP value with a bit mask.
1857 * Returns 0 if the value is unchanged, 1 if changed.
1859 int snd_hda_codec_amp_update(struct hda_codec
*codec
, hda_nid_t nid
, int ch
,
1860 int direction
, int idx
, int mask
, int val
)
1862 struct hda_amp_info
*info
;
1864 if (snd_BUG_ON(mask
& ~0xff))
1868 mutex_lock(&codec
->hash_mutex
);
1869 info
= update_amp_hash(codec
, nid
, ch
, direction
, idx
);
1871 mutex_unlock(&codec
->hash_mutex
);
1874 val
|= info
->vol
[ch
] & ~mask
;
1875 if (info
->vol
[ch
] == val
) {
1876 mutex_unlock(&codec
->hash_mutex
);
1879 info
->vol
[ch
] = val
;
1880 mutex_unlock(&codec
->hash_mutex
);
1881 put_vol_mute(codec
, info
, nid
, ch
, direction
, idx
, val
);
1884 EXPORT_SYMBOL_HDA(snd_hda_codec_amp_update
);
1887 * snd_hda_codec_amp_stereo - update the AMP stereo values
1888 * @codec: HD-audio codec
1889 * @nid: NID to read the AMP value
1890 * @direction: #HDA_INPUT or #HDA_OUTPUT
1891 * @idx: the index value (only for input direction)
1892 * @mask: bit mask to set
1893 * @val: the bits value to set
1895 * Update the AMP values like snd_hda_codec_amp_update(), but for a
1896 * stereo widget with the same mask and value.
1898 int snd_hda_codec_amp_stereo(struct hda_codec
*codec
, hda_nid_t nid
,
1899 int direction
, int idx
, int mask
, int val
)
1903 if (snd_BUG_ON(mask
& ~0xff))
1905 for (ch
= 0; ch
< 2; ch
++)
1906 ret
|= snd_hda_codec_amp_update(codec
, nid
, ch
, direction
,
1910 EXPORT_SYMBOL_HDA(snd_hda_codec_amp_stereo
);
1914 * snd_hda_codec_resume_amp - Resume all AMP commands from the cache
1915 * @codec: HD-audio codec
1917 * Resume the all amp commands from the cache.
1919 void snd_hda_codec_resume_amp(struct hda_codec
*codec
)
1921 struct hda_amp_info
*buffer
= codec
->amp_cache
.buf
.list
;
1924 for (i
= 0; i
< codec
->amp_cache
.buf
.used
; i
++, buffer
++) {
1925 u32 key
= buffer
->head
.key
;
1927 unsigned int idx
, dir
, ch
;
1931 idx
= (key
>> 16) & 0xff;
1932 dir
= (key
>> 24) & 0xff;
1933 for (ch
= 0; ch
< 2; ch
++) {
1934 if (!(buffer
->head
.val
& INFO_AMP_VOL(ch
)))
1936 put_vol_mute(codec
, buffer
, nid
, ch
, dir
, idx
,
1941 EXPORT_SYMBOL_HDA(snd_hda_codec_resume_amp
);
1942 #endif /* CONFIG_PM */
1944 static u32
get_amp_max_value(struct hda_codec
*codec
, hda_nid_t nid
, int dir
,
1947 u32 caps
= query_amp_caps(codec
, nid
, dir
);
1949 caps
= (caps
& AC_AMPCAP_NUM_STEPS
) >> AC_AMPCAP_NUM_STEPS_SHIFT
;
1956 * snd_hda_mixer_amp_volume_info - Info callback for a standard AMP mixer
1958 * The control element is supposed to have the private_value field
1959 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1961 int snd_hda_mixer_amp_volume_info(struct snd_kcontrol
*kcontrol
,
1962 struct snd_ctl_elem_info
*uinfo
)
1964 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1965 u16 nid
= get_amp_nid(kcontrol
);
1966 u8 chs
= get_amp_channels(kcontrol
);
1967 int dir
= get_amp_direction(kcontrol
);
1968 unsigned int ofs
= get_amp_offset(kcontrol
);
1970 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
1971 uinfo
->count
= chs
== 3 ? 2 : 1;
1972 uinfo
->value
.integer
.min
= 0;
1973 uinfo
->value
.integer
.max
= get_amp_max_value(codec
, nid
, dir
, ofs
);
1974 if (!uinfo
->value
.integer
.max
) {
1975 printk(KERN_WARNING
"hda_codec: "
1976 "num_steps = 0 for NID=0x%x (ctl = %s)\n", nid
,
1982 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_info
);
1985 static inline unsigned int
1986 read_amp_value(struct hda_codec
*codec
, hda_nid_t nid
,
1987 int ch
, int dir
, int idx
, unsigned int ofs
)
1990 val
= snd_hda_codec_amp_read(codec
, nid
, ch
, dir
, idx
);
1991 val
&= HDA_AMP_VOLMASK
;
2000 update_amp_value(struct hda_codec
*codec
, hda_nid_t nid
,
2001 int ch
, int dir
, int idx
, unsigned int ofs
,
2004 unsigned int maxval
;
2008 /* ofs = 0: raw max value */
2009 maxval
= get_amp_max_value(codec
, nid
, dir
, 0);
2012 return snd_hda_codec_amp_update(codec
, nid
, ch
, dir
, idx
,
2013 HDA_AMP_VOLMASK
, val
);
2017 * snd_hda_mixer_amp_volume_get - Get callback for a standard AMP mixer volume
2019 * The control element is supposed to have the private_value field
2020 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2022 int snd_hda_mixer_amp_volume_get(struct snd_kcontrol
*kcontrol
,
2023 struct snd_ctl_elem_value
*ucontrol
)
2025 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2026 hda_nid_t nid
= get_amp_nid(kcontrol
);
2027 int chs
= get_amp_channels(kcontrol
);
2028 int dir
= get_amp_direction(kcontrol
);
2029 int idx
= get_amp_index(kcontrol
);
2030 unsigned int ofs
= get_amp_offset(kcontrol
);
2031 long *valp
= ucontrol
->value
.integer
.value
;
2034 *valp
++ = read_amp_value(codec
, nid
, 0, dir
, idx
, ofs
);
2036 *valp
= read_amp_value(codec
, nid
, 1, dir
, idx
, ofs
);
2039 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_get
);
2042 * snd_hda_mixer_amp_volume_put - Put callback for a standard AMP mixer volume
2044 * The control element is supposed to have the private_value field
2045 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2047 int snd_hda_mixer_amp_volume_put(struct snd_kcontrol
*kcontrol
,
2048 struct snd_ctl_elem_value
*ucontrol
)
2050 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2051 hda_nid_t nid
= get_amp_nid(kcontrol
);
2052 int chs
= get_amp_channels(kcontrol
);
2053 int dir
= get_amp_direction(kcontrol
);
2054 int idx
= get_amp_index(kcontrol
);
2055 unsigned int ofs
= get_amp_offset(kcontrol
);
2056 long *valp
= ucontrol
->value
.integer
.value
;
2059 snd_hda_power_up(codec
);
2061 change
= update_amp_value(codec
, nid
, 0, dir
, idx
, ofs
, *valp
);
2065 change
|= update_amp_value(codec
, nid
, 1, dir
, idx
, ofs
, *valp
);
2066 snd_hda_power_down(codec
);
2069 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_put
);
2072 * snd_hda_mixer_amp_volume_put - TLV callback for a standard AMP mixer volume
2074 * The control element is supposed to have the private_value field
2075 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2077 int snd_hda_mixer_amp_tlv(struct snd_kcontrol
*kcontrol
, int op_flag
,
2078 unsigned int size
, unsigned int __user
*_tlv
)
2080 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2081 hda_nid_t nid
= get_amp_nid(kcontrol
);
2082 int dir
= get_amp_direction(kcontrol
);
2083 unsigned int ofs
= get_amp_offset(kcontrol
);
2084 bool min_mute
= get_amp_min_mute(kcontrol
);
2085 u32 caps
, val1
, val2
;
2087 if (size
< 4 * sizeof(unsigned int))
2089 caps
= query_amp_caps(codec
, nid
, dir
);
2090 val2
= (caps
& AC_AMPCAP_STEP_SIZE
) >> AC_AMPCAP_STEP_SIZE_SHIFT
;
2091 val2
= (val2
+ 1) * 25;
2092 val1
= -((caps
& AC_AMPCAP_OFFSET
) >> AC_AMPCAP_OFFSET_SHIFT
);
2094 val1
= ((int)val1
) * ((int)val2
);
2095 if (min_mute
|| (caps
& AC_AMPCAP_MIN_MUTE
))
2096 val2
|= TLV_DB_SCALE_MUTE
;
2097 if (put_user(SNDRV_CTL_TLVT_DB_SCALE
, _tlv
))
2099 if (put_user(2 * sizeof(unsigned int), _tlv
+ 1))
2101 if (put_user(val1
, _tlv
+ 2))
2103 if (put_user(val2
, _tlv
+ 3))
2107 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_tlv
);
2110 * snd_hda_set_vmaster_tlv - Set TLV for a virtual master control
2111 * @codec: HD-audio codec
2112 * @nid: NID of a reference widget
2113 * @dir: #HDA_INPUT or #HDA_OUTPUT
2114 * @tlv: TLV data to be stored, at least 4 elements
2116 * Set (static) TLV data for a virtual master volume using the AMP caps
2117 * obtained from the reference NID.
2118 * The volume range is recalculated as if the max volume is 0dB.
2120 void snd_hda_set_vmaster_tlv(struct hda_codec
*codec
, hda_nid_t nid
, int dir
,
2126 caps
= query_amp_caps(codec
, nid
, dir
);
2127 nums
= (caps
& AC_AMPCAP_NUM_STEPS
) >> AC_AMPCAP_NUM_STEPS_SHIFT
;
2128 step
= (caps
& AC_AMPCAP_STEP_SIZE
) >> AC_AMPCAP_STEP_SIZE_SHIFT
;
2129 step
= (step
+ 1) * 25;
2130 tlv
[0] = SNDRV_CTL_TLVT_DB_SCALE
;
2131 tlv
[1] = 2 * sizeof(unsigned int);
2132 tlv
[2] = -nums
* step
;
2135 EXPORT_SYMBOL_HDA(snd_hda_set_vmaster_tlv
);
2137 /* find a mixer control element with the given name */
2138 static struct snd_kcontrol
*
2139 _snd_hda_find_mixer_ctl(struct hda_codec
*codec
,
2140 const char *name
, int idx
)
2142 struct snd_ctl_elem_id id
;
2143 memset(&id
, 0, sizeof(id
));
2144 id
.iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
2146 if (snd_BUG_ON(strlen(name
) >= sizeof(id
.name
)))
2148 strcpy(id
.name
, name
);
2149 return snd_ctl_find_id(codec
->bus
->card
, &id
);
2153 * snd_hda_find_mixer_ctl - Find a mixer control element with the given name
2154 * @codec: HD-audio codec
2155 * @name: ctl id name string
2157 * Get the control element with the given id string and IFACE_MIXER.
2159 struct snd_kcontrol
*snd_hda_find_mixer_ctl(struct hda_codec
*codec
,
2162 return _snd_hda_find_mixer_ctl(codec
, name
, 0);
2164 EXPORT_SYMBOL_HDA(snd_hda_find_mixer_ctl
);
2166 static int find_empty_mixer_ctl_idx(struct hda_codec
*codec
, const char *name
)
2169 for (idx
= 0; idx
< 16; idx
++) { /* 16 ctlrs should be large enough */
2170 if (!_snd_hda_find_mixer_ctl(codec
, name
, idx
))
2177 * snd_hda_ctl_add - Add a control element and assign to the codec
2178 * @codec: HD-audio codec
2179 * @nid: corresponding NID (optional)
2180 * @kctl: the control element to assign
2182 * Add the given control element to an array inside the codec instance.
2183 * All control elements belonging to a codec are supposed to be added
2184 * by this function so that a proper clean-up works at the free or
2185 * reconfiguration time.
2187 * If non-zero @nid is passed, the NID is assigned to the control element.
2188 * The assignment is shown in the codec proc file.
2190 * snd_hda_ctl_add() checks the control subdev id field whether
2191 * #HDA_SUBDEV_NID_FLAG bit is set. If set (and @nid is zero), the lower
2192 * bits value is taken as the NID to assign. The #HDA_NID_ITEM_AMP bit
2193 * specifies if kctl->private_value is a HDA amplifier value.
2195 int snd_hda_ctl_add(struct hda_codec
*codec
, hda_nid_t nid
,
2196 struct snd_kcontrol
*kctl
)
2199 unsigned short flags
= 0;
2200 struct hda_nid_item
*item
;
2202 if (kctl
->id
.subdevice
& HDA_SUBDEV_AMP_FLAG
) {
2203 flags
|= HDA_NID_ITEM_AMP
;
2205 nid
= get_amp_nid_(kctl
->private_value
);
2207 if ((kctl
->id
.subdevice
& HDA_SUBDEV_NID_FLAG
) != 0 && nid
== 0)
2208 nid
= kctl
->id
.subdevice
& 0xffff;
2209 if (kctl
->id
.subdevice
& (HDA_SUBDEV_NID_FLAG
|HDA_SUBDEV_AMP_FLAG
))
2210 kctl
->id
.subdevice
= 0;
2211 err
= snd_ctl_add(codec
->bus
->card
, kctl
);
2214 item
= snd_array_new(&codec
->mixers
);
2219 item
->flags
= flags
;
2222 EXPORT_SYMBOL_HDA(snd_hda_ctl_add
);
2225 * snd_hda_add_nid - Assign a NID to a control element
2226 * @codec: HD-audio codec
2227 * @nid: corresponding NID (optional)
2228 * @kctl: the control element to assign
2229 * @index: index to kctl
2231 * Add the given control element to an array inside the codec instance.
2232 * This function is used when #snd_hda_ctl_add cannot be used for 1:1
2233 * NID:KCTL mapping - for example "Capture Source" selector.
2235 int snd_hda_add_nid(struct hda_codec
*codec
, struct snd_kcontrol
*kctl
,
2236 unsigned int index
, hda_nid_t nid
)
2238 struct hda_nid_item
*item
;
2241 item
= snd_array_new(&codec
->nids
);
2245 item
->index
= index
;
2249 printk(KERN_ERR
"hda-codec: no NID for mapping control %s:%d:%d\n",
2250 kctl
->id
.name
, kctl
->id
.index
, index
);
2253 EXPORT_SYMBOL_HDA(snd_hda_add_nid
);
2256 * snd_hda_ctls_clear - Clear all controls assigned to the given codec
2257 * @codec: HD-audio codec
2259 void snd_hda_ctls_clear(struct hda_codec
*codec
)
2262 struct hda_nid_item
*items
= codec
->mixers
.list
;
2263 for (i
= 0; i
< codec
->mixers
.used
; i
++)
2264 snd_ctl_remove(codec
->bus
->card
, items
[i
].kctl
);
2265 snd_array_free(&codec
->mixers
);
2266 snd_array_free(&codec
->nids
);
2269 /* pseudo device locking
2270 * toggle card->shutdown to allow/disallow the device access (as a hack)
2272 int snd_hda_lock_devices(struct hda_bus
*bus
)
2274 struct snd_card
*card
= bus
->card
;
2275 struct hda_codec
*codec
;
2277 spin_lock(&card
->files_lock
);
2281 if (!list_empty(&card
->ctl_files
))
2284 list_for_each_entry(codec
, &bus
->codec_list
, list
) {
2286 for (pcm
= 0; pcm
< codec
->num_pcms
; pcm
++) {
2287 struct hda_pcm
*cpcm
= &codec
->pcm_info
[pcm
];
2290 if (cpcm
->pcm
->streams
[0].substream_opened
||
2291 cpcm
->pcm
->streams
[1].substream_opened
)
2295 spin_unlock(&card
->files_lock
);
2301 spin_unlock(&card
->files_lock
);
2304 EXPORT_SYMBOL_HDA(snd_hda_lock_devices
);
2306 void snd_hda_unlock_devices(struct hda_bus
*bus
)
2308 struct snd_card
*card
= bus
->card
;
2311 spin_lock(&card
->files_lock
);
2313 spin_unlock(&card
->files_lock
);
2315 EXPORT_SYMBOL_HDA(snd_hda_unlock_devices
);
2318 * snd_hda_codec_reset - Clear all objects assigned to the codec
2319 * @codec: HD-audio codec
2321 * This frees the all PCM and control elements assigned to the codec, and
2322 * clears the caches and restores the pin default configurations.
2324 * When a device is being used, it returns -EBSY. If successfully freed,
2327 int snd_hda_codec_reset(struct hda_codec
*codec
)
2329 struct hda_bus
*bus
= codec
->bus
;
2330 struct snd_card
*card
= bus
->card
;
2333 if (snd_hda_lock_devices(bus
) < 0)
2336 /* OK, let it free */
2338 #ifdef CONFIG_SND_HDA_POWER_SAVE
2339 cancel_delayed_work_sync(&codec
->power_work
);
2340 codec
->power_on
= 0;
2341 codec
->power_transition
= 0;
2342 codec
->power_jiffies
= jiffies
;
2343 flush_workqueue(bus
->workq
);
2345 snd_hda_ctls_clear(codec
);
2347 for (i
= 0; i
< codec
->num_pcms
; i
++) {
2348 if (codec
->pcm_info
[i
].pcm
) {
2349 snd_device_free(card
, codec
->pcm_info
[i
].pcm
);
2350 clear_bit(codec
->pcm_info
[i
].device
,
2354 if (codec
->patch_ops
.free
)
2355 codec
->patch_ops
.free(codec
);
2356 memset(&codec
->patch_ops
, 0, sizeof(codec
->patch_ops
));
2357 snd_hda_jack_tbl_clear(codec
);
2358 codec
->proc_widget_hook
= NULL
;
2360 free_hda_cache(&codec
->amp_cache
);
2361 free_hda_cache(&codec
->cmd_cache
);
2362 init_hda_cache(&codec
->amp_cache
, sizeof(struct hda_amp_info
));
2363 init_hda_cache(&codec
->cmd_cache
, sizeof(struct hda_cache_head
));
2364 /* free only driver_pins so that init_pins + user_pins are restored */
2365 snd_array_free(&codec
->driver_pins
);
2366 restore_pincfgs(codec
);
2367 snd_array_free(&codec
->cvt_setups
);
2368 snd_array_free(&codec
->spdif_out
);
2369 codec
->num_pcms
= 0;
2370 codec
->pcm_info
= NULL
;
2371 codec
->preset
= NULL
;
2372 codec
->slave_dig_outs
= NULL
;
2373 codec
->spdif_status_reset
= 0;
2374 module_put(codec
->owner
);
2375 codec
->owner
= NULL
;
2377 /* allow device access again */
2378 snd_hda_unlock_devices(bus
);
2382 typedef int (*map_slave_func_t
)(void *, struct snd_kcontrol
*);
2384 /* apply the function to all matching slave ctls in the mixer list */
2385 static int map_slaves(struct hda_codec
*codec
, const char * const *slaves
,
2386 const char *suffix
, map_slave_func_t func
, void *data
)
2388 struct hda_nid_item
*items
;
2389 const char * const *s
;
2392 items
= codec
->mixers
.list
;
2393 for (i
= 0; i
< codec
->mixers
.used
; i
++) {
2394 struct snd_kcontrol
*sctl
= items
[i
].kctl
;
2395 if (!sctl
|| !sctl
->id
.name
||
2396 sctl
->id
.iface
!= SNDRV_CTL_ELEM_IFACE_MIXER
)
2398 for (s
= slaves
; *s
; s
++) {
2399 char tmpname
[sizeof(sctl
->id
.name
)];
2400 const char *name
= *s
;
2402 snprintf(tmpname
, sizeof(tmpname
), "%s %s",
2406 if (!strcmp(sctl
->id
.name
, name
)) {
2407 err
= func(data
, sctl
);
2417 static int check_slave_present(void *data
, struct snd_kcontrol
*sctl
)
2422 /* guess the value corresponding to 0dB */
2423 static int get_kctl_0dB_offset(struct snd_kcontrol
*kctl
)
2426 const int *tlv
= NULL
;
2429 if (kctl
->vd
[0].access
& SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK
) {
2430 /* FIXME: set_fs() hack for obtaining user-space TLV data */
2431 mm_segment_t fs
= get_fs();
2433 if (!kctl
->tlv
.c(kctl
, 0, sizeof(_tlv
), _tlv
))
2436 } else if (kctl
->vd
[0].access
& SNDRV_CTL_ELEM_ACCESS_TLV_READ
)
2438 if (tlv
&& tlv
[0] == SNDRV_CTL_TLVT_DB_SCALE
)
2439 val
= -tlv
[2] / tlv
[3];
2443 /* call kctl->put with the given value(s) */
2444 static int put_kctl_with_value(struct snd_kcontrol
*kctl
, int val
)
2446 struct snd_ctl_elem_value
*ucontrol
;
2447 ucontrol
= kzalloc(sizeof(*ucontrol
), GFP_KERNEL
);
2450 ucontrol
->value
.integer
.value
[0] = val
;
2451 ucontrol
->value
.integer
.value
[1] = val
;
2452 kctl
->put(kctl
, ucontrol
);
2457 /* initialize the slave volume with 0dB */
2458 static int init_slave_0dB(void *data
, struct snd_kcontrol
*slave
)
2460 int offset
= get_kctl_0dB_offset(slave
);
2462 put_kctl_with_value(slave
, offset
);
2466 /* unmute the slave */
2467 static int init_slave_unmute(void *data
, struct snd_kcontrol
*slave
)
2469 return put_kctl_with_value(slave
, 1);
2473 * snd_hda_add_vmaster - create a virtual master control and add slaves
2474 * @codec: HD-audio codec
2475 * @name: vmaster control name
2476 * @tlv: TLV data (optional)
2477 * @slaves: slave control names (optional)
2478 * @suffix: suffix string to each slave name (optional)
2479 * @init_slave_vol: initialize slaves to unmute/0dB
2480 * @ctl_ret: store the vmaster kcontrol in return
2482 * Create a virtual master control with the given name. The TLV data
2483 * must be either NULL or a valid data.
2485 * @slaves is a NULL-terminated array of strings, each of which is a
2486 * slave control name. All controls with these names are assigned to
2487 * the new virtual master control.
2489 * This function returns zero if successful or a negative error code.
2491 int __snd_hda_add_vmaster(struct hda_codec
*codec
, char *name
,
2492 unsigned int *tlv
, const char * const *slaves
,
2493 const char *suffix
, bool init_slave_vol
,
2494 struct snd_kcontrol
**ctl_ret
)
2496 struct snd_kcontrol
*kctl
;
2502 err
= map_slaves(codec
, slaves
, suffix
, check_slave_present
, NULL
);
2504 snd_printdd("No slave found for %s\n", name
);
2507 kctl
= snd_ctl_make_virtual_master(name
, tlv
);
2510 err
= snd_hda_ctl_add(codec
, 0, kctl
);
2514 err
= map_slaves(codec
, slaves
, suffix
,
2515 (map_slave_func_t
)snd_ctl_add_slave
, kctl
);
2519 /* init with master mute & zero volume */
2520 put_kctl_with_value(kctl
, 0);
2522 map_slaves(codec
, slaves
, suffix
,
2523 tlv
? init_slave_0dB
: init_slave_unmute
, kctl
);
2529 EXPORT_SYMBOL_HDA(__snd_hda_add_vmaster
);
2532 * mute-LED control using vmaster
2534 static int vmaster_mute_mode_info(struct snd_kcontrol
*kcontrol
,
2535 struct snd_ctl_elem_info
*uinfo
)
2537 static const char * const texts
[] = {
2538 "Off", "On", "Follow Master"
2542 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2544 uinfo
->value
.enumerated
.items
= 3;
2545 index
= uinfo
->value
.enumerated
.item
;
2548 strcpy(uinfo
->value
.enumerated
.name
, texts
[index
]);
2552 static int vmaster_mute_mode_get(struct snd_kcontrol
*kcontrol
,
2553 struct snd_ctl_elem_value
*ucontrol
)
2555 struct hda_vmaster_mute_hook
*hook
= snd_kcontrol_chip(kcontrol
);
2556 ucontrol
->value
.enumerated
.item
[0] = hook
->mute_mode
;
2560 static int vmaster_mute_mode_put(struct snd_kcontrol
*kcontrol
,
2561 struct snd_ctl_elem_value
*ucontrol
)
2563 struct hda_vmaster_mute_hook
*hook
= snd_kcontrol_chip(kcontrol
);
2564 unsigned int old_mode
= hook
->mute_mode
;
2566 hook
->mute_mode
= ucontrol
->value
.enumerated
.item
[0];
2567 if (hook
->mute_mode
> HDA_VMUTE_FOLLOW_MASTER
)
2568 hook
->mute_mode
= HDA_VMUTE_FOLLOW_MASTER
;
2569 if (old_mode
== hook
->mute_mode
)
2571 snd_hda_sync_vmaster_hook(hook
);
2575 static struct snd_kcontrol_new vmaster_mute_mode
= {
2576 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2577 .name
= "Mute-LED Mode",
2578 .info
= vmaster_mute_mode_info
,
2579 .get
= vmaster_mute_mode_get
,
2580 .put
= vmaster_mute_mode_put
,
2584 * Add a mute-LED hook with the given vmaster switch kctl
2585 * "Mute-LED Mode" control is automatically created and associated with
2588 int snd_hda_add_vmaster_hook(struct hda_codec
*codec
,
2589 struct hda_vmaster_mute_hook
*hook
,
2590 bool expose_enum_ctl
)
2592 struct snd_kcontrol
*kctl
;
2594 if (!hook
->hook
|| !hook
->sw_kctl
)
2596 snd_ctl_add_vmaster_hook(hook
->sw_kctl
, hook
->hook
, codec
);
2597 hook
->codec
= codec
;
2598 hook
->mute_mode
= HDA_VMUTE_FOLLOW_MASTER
;
2599 if (!expose_enum_ctl
)
2601 kctl
= snd_ctl_new1(&vmaster_mute_mode
, hook
);
2604 return snd_hda_ctl_add(codec
, 0, kctl
);
2606 EXPORT_SYMBOL_HDA(snd_hda_add_vmaster_hook
);
2609 * Call the hook with the current value for synchronization
2610 * Should be called in init callback
2612 void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook
*hook
)
2614 if (!hook
->hook
|| !hook
->codec
)
2616 switch (hook
->mute_mode
) {
2617 case HDA_VMUTE_FOLLOW_MASTER
:
2618 snd_ctl_sync_vmaster_hook(hook
->sw_kctl
);
2621 hook
->hook(hook
->codec
, hook
->mute_mode
);
2625 EXPORT_SYMBOL_HDA(snd_hda_sync_vmaster_hook
);
2629 * snd_hda_mixer_amp_switch_info - Info callback for a standard AMP mixer switch
2631 * The control element is supposed to have the private_value field
2632 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2634 int snd_hda_mixer_amp_switch_info(struct snd_kcontrol
*kcontrol
,
2635 struct snd_ctl_elem_info
*uinfo
)
2637 int chs
= get_amp_channels(kcontrol
);
2639 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
2640 uinfo
->count
= chs
== 3 ? 2 : 1;
2641 uinfo
->value
.integer
.min
= 0;
2642 uinfo
->value
.integer
.max
= 1;
2645 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_info
);
2648 * snd_hda_mixer_amp_switch_get - Get callback for a standard AMP mixer switch
2650 * The control element is supposed to have the private_value field
2651 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2653 int snd_hda_mixer_amp_switch_get(struct snd_kcontrol
*kcontrol
,
2654 struct snd_ctl_elem_value
*ucontrol
)
2656 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2657 hda_nid_t nid
= get_amp_nid(kcontrol
);
2658 int chs
= get_amp_channels(kcontrol
);
2659 int dir
= get_amp_direction(kcontrol
);
2660 int idx
= get_amp_index(kcontrol
);
2661 long *valp
= ucontrol
->value
.integer
.value
;
2664 *valp
++ = (snd_hda_codec_amp_read(codec
, nid
, 0, dir
, idx
) &
2665 HDA_AMP_MUTE
) ? 0 : 1;
2667 *valp
= (snd_hda_codec_amp_read(codec
, nid
, 1, dir
, idx
) &
2668 HDA_AMP_MUTE
) ? 0 : 1;
2671 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_get
);
2674 * snd_hda_mixer_amp_switch_put - Put callback for a standard AMP mixer switch
2676 * The control element is supposed to have the private_value field
2677 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2679 int snd_hda_mixer_amp_switch_put(struct snd_kcontrol
*kcontrol
,
2680 struct snd_ctl_elem_value
*ucontrol
)
2682 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2683 hda_nid_t nid
= get_amp_nid(kcontrol
);
2684 int chs
= get_amp_channels(kcontrol
);
2685 int dir
= get_amp_direction(kcontrol
);
2686 int idx
= get_amp_index(kcontrol
);
2687 long *valp
= ucontrol
->value
.integer
.value
;
2690 snd_hda_power_up(codec
);
2692 change
= snd_hda_codec_amp_update(codec
, nid
, 0, dir
, idx
,
2694 *valp
? 0 : HDA_AMP_MUTE
);
2698 change
|= snd_hda_codec_amp_update(codec
, nid
, 1, dir
, idx
,
2700 *valp
? 0 : HDA_AMP_MUTE
);
2701 hda_call_check_power_status(codec
, nid
);
2702 snd_hda_power_down(codec
);
2705 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_put
);
2708 * bound volume controls
2710 * bind multiple volumes (# indices, from 0)
2713 #define AMP_VAL_IDX_SHIFT 19
2714 #define AMP_VAL_IDX_MASK (0x0f<<19)
2717 * snd_hda_mixer_bind_switch_get - Get callback for a bound volume control
2719 * The control element is supposed to have the private_value field
2720 * set up via HDA_BIND_MUTE*() macros.
2722 int snd_hda_mixer_bind_switch_get(struct snd_kcontrol
*kcontrol
,
2723 struct snd_ctl_elem_value
*ucontrol
)
2725 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2729 mutex_lock(&codec
->control_mutex
);
2730 pval
= kcontrol
->private_value
;
2731 kcontrol
->private_value
= pval
& ~AMP_VAL_IDX_MASK
; /* index 0 */
2732 err
= snd_hda_mixer_amp_switch_get(kcontrol
, ucontrol
);
2733 kcontrol
->private_value
= pval
;
2734 mutex_unlock(&codec
->control_mutex
);
2737 EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_get
);
2740 * snd_hda_mixer_bind_switch_put - Put callback for a bound volume control
2742 * The control element is supposed to have the private_value field
2743 * set up via HDA_BIND_MUTE*() macros.
2745 int snd_hda_mixer_bind_switch_put(struct snd_kcontrol
*kcontrol
,
2746 struct snd_ctl_elem_value
*ucontrol
)
2748 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2750 int i
, indices
, err
= 0, change
= 0;
2752 mutex_lock(&codec
->control_mutex
);
2753 pval
= kcontrol
->private_value
;
2754 indices
= (pval
& AMP_VAL_IDX_MASK
) >> AMP_VAL_IDX_SHIFT
;
2755 for (i
= 0; i
< indices
; i
++) {
2756 kcontrol
->private_value
= (pval
& ~AMP_VAL_IDX_MASK
) |
2757 (i
<< AMP_VAL_IDX_SHIFT
);
2758 err
= snd_hda_mixer_amp_switch_put(kcontrol
, ucontrol
);
2763 kcontrol
->private_value
= pval
;
2764 mutex_unlock(&codec
->control_mutex
);
2765 return err
< 0 ? err
: change
;
2767 EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_put
);
2770 * snd_hda_mixer_bind_ctls_info - Info callback for a generic bound control
2772 * The control element is supposed to have the private_value field
2773 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
2775 int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol
*kcontrol
,
2776 struct snd_ctl_elem_info
*uinfo
)
2778 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2779 struct hda_bind_ctls
*c
;
2782 mutex_lock(&codec
->control_mutex
);
2783 c
= (struct hda_bind_ctls
*)kcontrol
->private_value
;
2784 kcontrol
->private_value
= *c
->values
;
2785 err
= c
->ops
->info(kcontrol
, uinfo
);
2786 kcontrol
->private_value
= (long)c
;
2787 mutex_unlock(&codec
->control_mutex
);
2790 EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_info
);
2793 * snd_hda_mixer_bind_ctls_get - Get callback for a generic bound control
2795 * The control element is supposed to have the private_value field
2796 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
2798 int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol
*kcontrol
,
2799 struct snd_ctl_elem_value
*ucontrol
)
2801 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2802 struct hda_bind_ctls
*c
;
2805 mutex_lock(&codec
->control_mutex
);
2806 c
= (struct hda_bind_ctls
*)kcontrol
->private_value
;
2807 kcontrol
->private_value
= *c
->values
;
2808 err
= c
->ops
->get(kcontrol
, ucontrol
);
2809 kcontrol
->private_value
= (long)c
;
2810 mutex_unlock(&codec
->control_mutex
);
2813 EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_get
);
2816 * snd_hda_mixer_bind_ctls_put - Put callback for a generic bound control
2818 * The control element is supposed to have the private_value field
2819 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
2821 int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol
*kcontrol
,
2822 struct snd_ctl_elem_value
*ucontrol
)
2824 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2825 struct hda_bind_ctls
*c
;
2826 unsigned long *vals
;
2827 int err
= 0, change
= 0;
2829 mutex_lock(&codec
->control_mutex
);
2830 c
= (struct hda_bind_ctls
*)kcontrol
->private_value
;
2831 for (vals
= c
->values
; *vals
; vals
++) {
2832 kcontrol
->private_value
= *vals
;
2833 err
= c
->ops
->put(kcontrol
, ucontrol
);
2838 kcontrol
->private_value
= (long)c
;
2839 mutex_unlock(&codec
->control_mutex
);
2840 return err
< 0 ? err
: change
;
2842 EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_put
);
2845 * snd_hda_mixer_bind_tlv - TLV callback for a generic bound control
2847 * The control element is supposed to have the private_value field
2848 * set up via HDA_BIND_VOL() macro.
2850 int snd_hda_mixer_bind_tlv(struct snd_kcontrol
*kcontrol
, int op_flag
,
2851 unsigned int size
, unsigned int __user
*tlv
)
2853 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2854 struct hda_bind_ctls
*c
;
2857 mutex_lock(&codec
->control_mutex
);
2858 c
= (struct hda_bind_ctls
*)kcontrol
->private_value
;
2859 kcontrol
->private_value
= *c
->values
;
2860 err
= c
->ops
->tlv(kcontrol
, op_flag
, size
, tlv
);
2861 kcontrol
->private_value
= (long)c
;
2862 mutex_unlock(&codec
->control_mutex
);
2865 EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_tlv
);
2867 struct hda_ctl_ops snd_hda_bind_vol
= {
2868 .info
= snd_hda_mixer_amp_volume_info
,
2869 .get
= snd_hda_mixer_amp_volume_get
,
2870 .put
= snd_hda_mixer_amp_volume_put
,
2871 .tlv
= snd_hda_mixer_amp_tlv
2873 EXPORT_SYMBOL_HDA(snd_hda_bind_vol
);
2875 struct hda_ctl_ops snd_hda_bind_sw
= {
2876 .info
= snd_hda_mixer_amp_switch_info
,
2877 .get
= snd_hda_mixer_amp_switch_get
,
2878 .put
= snd_hda_mixer_amp_switch_put
,
2879 .tlv
= snd_hda_mixer_amp_tlv
2881 EXPORT_SYMBOL_HDA(snd_hda_bind_sw
);
2884 * SPDIF out controls
2887 static int snd_hda_spdif_mask_info(struct snd_kcontrol
*kcontrol
,
2888 struct snd_ctl_elem_info
*uinfo
)
2890 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
2895 static int snd_hda_spdif_cmask_get(struct snd_kcontrol
*kcontrol
,
2896 struct snd_ctl_elem_value
*ucontrol
)
2898 ucontrol
->value
.iec958
.status
[0] = IEC958_AES0_PROFESSIONAL
|
2899 IEC958_AES0_NONAUDIO
|
2900 IEC958_AES0_CON_EMPHASIS_5015
|
2901 IEC958_AES0_CON_NOT_COPYRIGHT
;
2902 ucontrol
->value
.iec958
.status
[1] = IEC958_AES1_CON_CATEGORY
|
2903 IEC958_AES1_CON_ORIGINAL
;
2907 static int snd_hda_spdif_pmask_get(struct snd_kcontrol
*kcontrol
,
2908 struct snd_ctl_elem_value
*ucontrol
)
2910 ucontrol
->value
.iec958
.status
[0] = IEC958_AES0_PROFESSIONAL
|
2911 IEC958_AES0_NONAUDIO
|
2912 IEC958_AES0_PRO_EMPHASIS_5015
;
2916 static int snd_hda_spdif_default_get(struct snd_kcontrol
*kcontrol
,
2917 struct snd_ctl_elem_value
*ucontrol
)
2919 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2920 int idx
= kcontrol
->private_value
;
2921 struct hda_spdif_out
*spdif
;
2923 mutex_lock(&codec
->spdif_mutex
);
2924 spdif
= snd_array_elem(&codec
->spdif_out
, idx
);
2925 ucontrol
->value
.iec958
.status
[0] = spdif
->status
& 0xff;
2926 ucontrol
->value
.iec958
.status
[1] = (spdif
->status
>> 8) & 0xff;
2927 ucontrol
->value
.iec958
.status
[2] = (spdif
->status
>> 16) & 0xff;
2928 ucontrol
->value
.iec958
.status
[3] = (spdif
->status
>> 24) & 0xff;
2929 mutex_unlock(&codec
->spdif_mutex
);
2934 /* convert from SPDIF status bits to HDA SPDIF bits
2935 * bit 0 (DigEn) is always set zero (to be filled later)
2937 static unsigned short convert_from_spdif_status(unsigned int sbits
)
2939 unsigned short val
= 0;
2941 if (sbits
& IEC958_AES0_PROFESSIONAL
)
2942 val
|= AC_DIG1_PROFESSIONAL
;
2943 if (sbits
& IEC958_AES0_NONAUDIO
)
2944 val
|= AC_DIG1_NONAUDIO
;
2945 if (sbits
& IEC958_AES0_PROFESSIONAL
) {
2946 if ((sbits
& IEC958_AES0_PRO_EMPHASIS
) ==
2947 IEC958_AES0_PRO_EMPHASIS_5015
)
2948 val
|= AC_DIG1_EMPHASIS
;
2950 if ((sbits
& IEC958_AES0_CON_EMPHASIS
) ==
2951 IEC958_AES0_CON_EMPHASIS_5015
)
2952 val
|= AC_DIG1_EMPHASIS
;
2953 if (!(sbits
& IEC958_AES0_CON_NOT_COPYRIGHT
))
2954 val
|= AC_DIG1_COPYRIGHT
;
2955 if (sbits
& (IEC958_AES1_CON_ORIGINAL
<< 8))
2956 val
|= AC_DIG1_LEVEL
;
2957 val
|= sbits
& (IEC958_AES1_CON_CATEGORY
<< 8);
2962 /* convert to SPDIF status bits from HDA SPDIF bits
2964 static unsigned int convert_to_spdif_status(unsigned short val
)
2966 unsigned int sbits
= 0;
2968 if (val
& AC_DIG1_NONAUDIO
)
2969 sbits
|= IEC958_AES0_NONAUDIO
;
2970 if (val
& AC_DIG1_PROFESSIONAL
)
2971 sbits
|= IEC958_AES0_PROFESSIONAL
;
2972 if (sbits
& IEC958_AES0_PROFESSIONAL
) {
2973 if (sbits
& AC_DIG1_EMPHASIS
)
2974 sbits
|= IEC958_AES0_PRO_EMPHASIS_5015
;
2976 if (val
& AC_DIG1_EMPHASIS
)
2977 sbits
|= IEC958_AES0_CON_EMPHASIS_5015
;
2978 if (!(val
& AC_DIG1_COPYRIGHT
))
2979 sbits
|= IEC958_AES0_CON_NOT_COPYRIGHT
;
2980 if (val
& AC_DIG1_LEVEL
)
2981 sbits
|= (IEC958_AES1_CON_ORIGINAL
<< 8);
2982 sbits
|= val
& (0x7f << 8);
2987 /* set digital convert verbs both for the given NID and its slaves */
2988 static void set_dig_out(struct hda_codec
*codec
, hda_nid_t nid
,
2993 snd_hda_codec_write_cache(codec
, nid
, 0, verb
, val
);
2994 d
= codec
->slave_dig_outs
;
2998 snd_hda_codec_write_cache(codec
, *d
, 0, verb
, val
);
3001 static inline void set_dig_out_convert(struct hda_codec
*codec
, hda_nid_t nid
,
3005 set_dig_out(codec
, nid
, AC_VERB_SET_DIGI_CONVERT_1
, dig1
);
3007 set_dig_out(codec
, nid
, AC_VERB_SET_DIGI_CONVERT_2
, dig2
);
3010 static int snd_hda_spdif_default_put(struct snd_kcontrol
*kcontrol
,
3011 struct snd_ctl_elem_value
*ucontrol
)
3013 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3014 int idx
= kcontrol
->private_value
;
3015 struct hda_spdif_out
*spdif
;
3020 mutex_lock(&codec
->spdif_mutex
);
3021 spdif
= snd_array_elem(&codec
->spdif_out
, idx
);
3023 spdif
->status
= ucontrol
->value
.iec958
.status
[0] |
3024 ((unsigned int)ucontrol
->value
.iec958
.status
[1] << 8) |
3025 ((unsigned int)ucontrol
->value
.iec958
.status
[2] << 16) |
3026 ((unsigned int)ucontrol
->value
.iec958
.status
[3] << 24);
3027 val
= convert_from_spdif_status(spdif
->status
);
3028 val
|= spdif
->ctls
& 1;
3029 change
= spdif
->ctls
!= val
;
3031 if (change
&& nid
!= (u16
)-1)
3032 set_dig_out_convert(codec
, nid
, val
& 0xff, (val
>> 8) & 0xff);
3033 mutex_unlock(&codec
->spdif_mutex
);
3037 #define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
3039 static int snd_hda_spdif_out_switch_get(struct snd_kcontrol
*kcontrol
,
3040 struct snd_ctl_elem_value
*ucontrol
)
3042 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3043 int idx
= kcontrol
->private_value
;
3044 struct hda_spdif_out
*spdif
;
3046 mutex_lock(&codec
->spdif_mutex
);
3047 spdif
= snd_array_elem(&codec
->spdif_out
, idx
);
3048 ucontrol
->value
.integer
.value
[0] = spdif
->ctls
& AC_DIG1_ENABLE
;
3049 mutex_unlock(&codec
->spdif_mutex
);
3053 static inline void set_spdif_ctls(struct hda_codec
*codec
, hda_nid_t nid
,
3056 set_dig_out_convert(codec
, nid
, dig1
, dig2
);
3057 /* unmute amp switch (if any) */
3058 if ((get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
) &&
3059 (dig1
& AC_DIG1_ENABLE
))
3060 snd_hda_codec_amp_stereo(codec
, nid
, HDA_OUTPUT
, 0,
3064 static int snd_hda_spdif_out_switch_put(struct snd_kcontrol
*kcontrol
,
3065 struct snd_ctl_elem_value
*ucontrol
)
3067 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3068 int idx
= kcontrol
->private_value
;
3069 struct hda_spdif_out
*spdif
;
3074 mutex_lock(&codec
->spdif_mutex
);
3075 spdif
= snd_array_elem(&codec
->spdif_out
, idx
);
3077 val
= spdif
->ctls
& ~AC_DIG1_ENABLE
;
3078 if (ucontrol
->value
.integer
.value
[0])
3079 val
|= AC_DIG1_ENABLE
;
3080 change
= spdif
->ctls
!= val
;
3082 if (change
&& nid
!= (u16
)-1)
3083 set_spdif_ctls(codec
, nid
, val
& 0xff, -1);
3084 mutex_unlock(&codec
->spdif_mutex
);
3088 static struct snd_kcontrol_new dig_mixes
[] = {
3090 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
3091 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3092 .name
= SNDRV_CTL_NAME_IEC958("", PLAYBACK
, CON_MASK
),
3093 .info
= snd_hda_spdif_mask_info
,
3094 .get
= snd_hda_spdif_cmask_get
,
3097 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
3098 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3099 .name
= SNDRV_CTL_NAME_IEC958("", PLAYBACK
, PRO_MASK
),
3100 .info
= snd_hda_spdif_mask_info
,
3101 .get
= snd_hda_spdif_pmask_get
,
3104 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3105 .name
= SNDRV_CTL_NAME_IEC958("", PLAYBACK
, DEFAULT
),
3106 .info
= snd_hda_spdif_mask_info
,
3107 .get
= snd_hda_spdif_default_get
,
3108 .put
= snd_hda_spdif_default_put
,
3111 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3112 .name
= SNDRV_CTL_NAME_IEC958("", PLAYBACK
, SWITCH
),
3113 .info
= snd_hda_spdif_out_switch_info
,
3114 .get
= snd_hda_spdif_out_switch_get
,
3115 .put
= snd_hda_spdif_out_switch_put
,
3121 * snd_hda_create_spdif_out_ctls - create Output SPDIF-related controls
3122 * @codec: the HDA codec
3123 * @nid: audio out widget NID
3125 * Creates controls related with the SPDIF output.
3126 * Called from each patch supporting the SPDIF out.
3128 * Returns 0 if successful, or a negative error code.
3130 int snd_hda_create_spdif_out_ctls(struct hda_codec
*codec
,
3131 hda_nid_t associated_nid
,
3135 struct snd_kcontrol
*kctl
;
3136 struct snd_kcontrol_new
*dig_mix
;
3138 struct hda_spdif_out
*spdif
;
3140 idx
= find_empty_mixer_ctl_idx(codec
, "IEC958 Playback Switch");
3142 printk(KERN_ERR
"hda_codec: too many IEC958 outputs\n");
3145 spdif
= snd_array_new(&codec
->spdif_out
);
3146 for (dig_mix
= dig_mixes
; dig_mix
->name
; dig_mix
++) {
3147 kctl
= snd_ctl_new1(dig_mix
, codec
);
3150 kctl
->id
.index
= idx
;
3151 kctl
->private_value
= codec
->spdif_out
.used
- 1;
3152 err
= snd_hda_ctl_add(codec
, associated_nid
, kctl
);
3156 spdif
->nid
= cvt_nid
;
3157 spdif
->ctls
= snd_hda_codec_read(codec
, cvt_nid
, 0,
3158 AC_VERB_GET_DIGI_CONVERT_1
, 0);
3159 spdif
->status
= convert_to_spdif_status(spdif
->ctls
);
3162 EXPORT_SYMBOL_HDA(snd_hda_create_spdif_out_ctls
);
3164 /* get the hda_spdif_out entry from the given NID
3165 * call within spdif_mutex lock
3167 struct hda_spdif_out
*snd_hda_spdif_out_of_nid(struct hda_codec
*codec
,
3171 for (i
= 0; i
< codec
->spdif_out
.used
; i
++) {
3172 struct hda_spdif_out
*spdif
=
3173 snd_array_elem(&codec
->spdif_out
, i
);
3174 if (spdif
->nid
== nid
)
3179 EXPORT_SYMBOL_HDA(snd_hda_spdif_out_of_nid
);
3181 void snd_hda_spdif_ctls_unassign(struct hda_codec
*codec
, int idx
)
3183 struct hda_spdif_out
*spdif
;
3185 mutex_lock(&codec
->spdif_mutex
);
3186 spdif
= snd_array_elem(&codec
->spdif_out
, idx
);
3187 spdif
->nid
= (u16
)-1;
3188 mutex_unlock(&codec
->spdif_mutex
);
3190 EXPORT_SYMBOL_HDA(snd_hda_spdif_ctls_unassign
);
3192 void snd_hda_spdif_ctls_assign(struct hda_codec
*codec
, int idx
, hda_nid_t nid
)
3194 struct hda_spdif_out
*spdif
;
3197 mutex_lock(&codec
->spdif_mutex
);
3198 spdif
= snd_array_elem(&codec
->spdif_out
, idx
);
3199 if (spdif
->nid
!= nid
) {
3202 set_spdif_ctls(codec
, nid
, val
& 0xff, (val
>> 8) & 0xff);
3204 mutex_unlock(&codec
->spdif_mutex
);
3206 EXPORT_SYMBOL_HDA(snd_hda_spdif_ctls_assign
);
3209 * SPDIF sharing with analog output
3211 static int spdif_share_sw_get(struct snd_kcontrol
*kcontrol
,
3212 struct snd_ctl_elem_value
*ucontrol
)
3214 struct hda_multi_out
*mout
= snd_kcontrol_chip(kcontrol
);
3215 ucontrol
->value
.integer
.value
[0] = mout
->share_spdif
;
3219 static int spdif_share_sw_put(struct snd_kcontrol
*kcontrol
,
3220 struct snd_ctl_elem_value
*ucontrol
)
3222 struct hda_multi_out
*mout
= snd_kcontrol_chip(kcontrol
);
3223 mout
->share_spdif
= !!ucontrol
->value
.integer
.value
[0];
3227 static struct snd_kcontrol_new spdif_share_sw
= {
3228 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3229 .name
= "IEC958 Default PCM Playback Switch",
3230 .info
= snd_ctl_boolean_mono_info
,
3231 .get
= spdif_share_sw_get
,
3232 .put
= spdif_share_sw_put
,
3236 * snd_hda_create_spdif_share_sw - create Default PCM switch
3237 * @codec: the HDA codec
3238 * @mout: multi-out instance
3240 int snd_hda_create_spdif_share_sw(struct hda_codec
*codec
,
3241 struct hda_multi_out
*mout
)
3243 if (!mout
->dig_out_nid
)
3245 /* ATTENTION: here mout is passed as private_data, instead of codec */
3246 return snd_hda_ctl_add(codec
, mout
->dig_out_nid
,
3247 snd_ctl_new1(&spdif_share_sw
, mout
));
3249 EXPORT_SYMBOL_HDA(snd_hda_create_spdif_share_sw
);
3255 #define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
3257 static int snd_hda_spdif_in_switch_get(struct snd_kcontrol
*kcontrol
,
3258 struct snd_ctl_elem_value
*ucontrol
)
3260 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3262 ucontrol
->value
.integer
.value
[0] = codec
->spdif_in_enable
;
3266 static int snd_hda_spdif_in_switch_put(struct snd_kcontrol
*kcontrol
,
3267 struct snd_ctl_elem_value
*ucontrol
)
3269 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3270 hda_nid_t nid
= kcontrol
->private_value
;
3271 unsigned int val
= !!ucontrol
->value
.integer
.value
[0];
3274 mutex_lock(&codec
->spdif_mutex
);
3275 change
= codec
->spdif_in_enable
!= val
;
3277 codec
->spdif_in_enable
= val
;
3278 snd_hda_codec_write_cache(codec
, nid
, 0,
3279 AC_VERB_SET_DIGI_CONVERT_1
, val
);
3281 mutex_unlock(&codec
->spdif_mutex
);
3285 static int snd_hda_spdif_in_status_get(struct snd_kcontrol
*kcontrol
,
3286 struct snd_ctl_elem_value
*ucontrol
)
3288 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3289 hda_nid_t nid
= kcontrol
->private_value
;
3293 val
= snd_hda_codec_read(codec
, nid
, 0, AC_VERB_GET_DIGI_CONVERT_1
, 0);
3294 sbits
= convert_to_spdif_status(val
);
3295 ucontrol
->value
.iec958
.status
[0] = sbits
;
3296 ucontrol
->value
.iec958
.status
[1] = sbits
>> 8;
3297 ucontrol
->value
.iec958
.status
[2] = sbits
>> 16;
3298 ucontrol
->value
.iec958
.status
[3] = sbits
>> 24;
3302 static struct snd_kcontrol_new dig_in_ctls
[] = {
3304 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3305 .name
= SNDRV_CTL_NAME_IEC958("", CAPTURE
, SWITCH
),
3306 .info
= snd_hda_spdif_in_switch_info
,
3307 .get
= snd_hda_spdif_in_switch_get
,
3308 .put
= snd_hda_spdif_in_switch_put
,
3311 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
3312 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3313 .name
= SNDRV_CTL_NAME_IEC958("", CAPTURE
, DEFAULT
),
3314 .info
= snd_hda_spdif_mask_info
,
3315 .get
= snd_hda_spdif_in_status_get
,
3321 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
3322 * @codec: the HDA codec
3323 * @nid: audio in widget NID
3325 * Creates controls related with the SPDIF input.
3326 * Called from each patch supporting the SPDIF in.
3328 * Returns 0 if successful, or a negative error code.
3330 int snd_hda_create_spdif_in_ctls(struct hda_codec
*codec
, hda_nid_t nid
)
3333 struct snd_kcontrol
*kctl
;
3334 struct snd_kcontrol_new
*dig_mix
;
3337 idx
= find_empty_mixer_ctl_idx(codec
, "IEC958 Capture Switch");
3339 printk(KERN_ERR
"hda_codec: too many IEC958 inputs\n");
3342 for (dig_mix
= dig_in_ctls
; dig_mix
->name
; dig_mix
++) {
3343 kctl
= snd_ctl_new1(dig_mix
, codec
);
3346 kctl
->private_value
= nid
;
3347 err
= snd_hda_ctl_add(codec
, nid
, kctl
);
3351 codec
->spdif_in_enable
=
3352 snd_hda_codec_read(codec
, nid
, 0,
3353 AC_VERB_GET_DIGI_CONVERT_1
, 0) &
3357 EXPORT_SYMBOL_HDA(snd_hda_create_spdif_in_ctls
);
3364 /* build a 32bit cache key with the widget id and the command parameter */
3365 #define build_cmd_cache_key(nid, verb) ((verb << 8) | nid)
3366 #define get_cmd_cache_nid(key) ((key) & 0xff)
3367 #define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff)
3370 * snd_hda_codec_write_cache - send a single command with caching
3371 * @codec: the HDA codec
3372 * @nid: NID to send the command
3373 * @direct: direct flag
3374 * @verb: the verb to send
3375 * @parm: the parameter for the verb
3377 * Send a single command without waiting for response.
3379 * Returns 0 if successful, or a negative error code.
3381 int snd_hda_codec_write_cache(struct hda_codec
*codec
, hda_nid_t nid
,
3382 int direct
, unsigned int verb
, unsigned int parm
)
3384 int err
= snd_hda_codec_write(codec
, nid
, direct
, verb
, parm
);
3385 struct hda_cache_head
*c
;
3390 /* parm may contain the verb stuff for get/set amp */
3391 verb
= verb
| (parm
>> 8);
3393 key
= build_cmd_cache_key(nid
, verb
);
3394 mutex_lock(&codec
->bus
->cmd_mutex
);
3395 c
= get_alloc_hash(&codec
->cmd_cache
, key
);
3398 mutex_unlock(&codec
->bus
->cmd_mutex
);
3401 EXPORT_SYMBOL_HDA(snd_hda_codec_write_cache
);
3404 * snd_hda_codec_update_cache - check cache and write the cmd only when needed
3405 * @codec: the HDA codec
3406 * @nid: NID to send the command
3407 * @direct: direct flag
3408 * @verb: the verb to send
3409 * @parm: the parameter for the verb
3411 * This function works like snd_hda_codec_write_cache(), but it doesn't send
3412 * command if the parameter is already identical with the cached value.
3413 * If not, it sends the command and refreshes the cache.
3415 * Returns 0 if successful, or a negative error code.
3417 int snd_hda_codec_update_cache(struct hda_codec
*codec
, hda_nid_t nid
,
3418 int direct
, unsigned int verb
, unsigned int parm
)
3420 struct hda_cache_head
*c
;
3423 /* parm may contain the verb stuff for get/set amp */
3424 verb
= verb
| (parm
>> 8);
3426 key
= build_cmd_cache_key(nid
, verb
);
3427 mutex_lock(&codec
->bus
->cmd_mutex
);
3428 c
= get_hash(&codec
->cmd_cache
, key
);
3429 if (c
&& c
->val
== parm
) {
3430 mutex_unlock(&codec
->bus
->cmd_mutex
);
3433 mutex_unlock(&codec
->bus
->cmd_mutex
);
3434 return snd_hda_codec_write_cache(codec
, nid
, direct
, verb
, parm
);
3436 EXPORT_SYMBOL_HDA(snd_hda_codec_update_cache
);
3439 * snd_hda_codec_resume_cache - Resume the all commands from the cache
3440 * @codec: HD-audio codec
3442 * Execute all verbs recorded in the command caches to resume.
3444 void snd_hda_codec_resume_cache(struct hda_codec
*codec
)
3446 struct hda_cache_head
*buffer
= codec
->cmd_cache
.buf
.list
;
3449 for (i
= 0; i
< codec
->cmd_cache
.buf
.used
; i
++, buffer
++) {
3450 u32 key
= buffer
->key
;
3453 snd_hda_codec_write(codec
, get_cmd_cache_nid(key
), 0,
3454 get_cmd_cache_cmd(key
), buffer
->val
);
3457 EXPORT_SYMBOL_HDA(snd_hda_codec_resume_cache
);
3460 * snd_hda_sequence_write_cache - sequence writes with caching
3461 * @codec: the HDA codec
3462 * @seq: VERB array to send
3464 * Send the commands sequentially from the given array.
3465 * Thte commands are recorded on cache for power-save and resume.
3466 * The array must be terminated with NID=0.
3468 void snd_hda_sequence_write_cache(struct hda_codec
*codec
,
3469 const struct hda_verb
*seq
)
3471 for (; seq
->nid
; seq
++)
3472 snd_hda_codec_write_cache(codec
, seq
->nid
, 0, seq
->verb
,
3475 EXPORT_SYMBOL_HDA(snd_hda_sequence_write_cache
);
3476 #endif /* CONFIG_PM */
3478 void snd_hda_codec_set_power_to_all(struct hda_codec
*codec
, hda_nid_t fg
,
3479 unsigned int power_state
,
3480 bool eapd_workaround
)
3482 hda_nid_t nid
= codec
->start_nid
;
3485 for (i
= 0; i
< codec
->num_nodes
; i
++, nid
++) {
3486 unsigned int wcaps
= get_wcaps(codec
, nid
);
3487 if (!(wcaps
& AC_WCAP_POWER
))
3489 /* don't power down the widget if it controls eapd and
3490 * EAPD_BTLENABLE is set.
3492 if (eapd_workaround
&& power_state
== AC_PWRST_D3
&&
3493 get_wcaps_type(wcaps
) == AC_WID_PIN
&&
3494 (snd_hda_query_pin_caps(codec
, nid
) & AC_PINCAP_EAPD
)) {
3495 int eapd
= snd_hda_codec_read(codec
, nid
, 0,
3496 AC_VERB_GET_EAPD_BTLENABLE
, 0);
3500 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_POWER_STATE
,
3504 if (power_state
== AC_PWRST_D0
) {
3505 unsigned long end_time
;
3507 /* wait until the codec reachs to D0 */
3508 end_time
= jiffies
+ msecs_to_jiffies(500);
3510 state
= snd_hda_codec_read(codec
, fg
, 0,
3511 AC_VERB_GET_POWER_STATE
, 0);
3512 if (state
== power_state
)
3515 } while (time_after_eq(end_time
, jiffies
));
3518 EXPORT_SYMBOL_HDA(snd_hda_codec_set_power_to_all
);
3521 * supported power states check
3523 static bool snd_hda_codec_get_supported_ps(struct hda_codec
*codec
, hda_nid_t fg
,
3524 unsigned int power_state
)
3526 int sup
= snd_hda_param_read(codec
, fg
, AC_PAR_POWER_STATE
);
3530 if (sup
& power_state
)
3537 * set power state of the codec
3539 static void hda_set_power_state(struct hda_codec
*codec
, hda_nid_t fg
,
3540 unsigned int power_state
)
3545 if (codec
->patch_ops
.set_power_state
) {
3546 codec
->patch_ops
.set_power_state(codec
, fg
, power_state
);
3550 /* this delay seems necessary to avoid click noise at power-down */
3551 if (power_state
== AC_PWRST_D3
) {
3552 /* transition time less than 10ms for power down */
3553 msleep(codec
->epss
? 10 : 100);
3556 /* repeat power states setting at most 10 times*/
3557 for (count
= 0; count
< 10; count
++) {
3558 snd_hda_codec_read(codec
, fg
, 0, AC_VERB_SET_POWER_STATE
,
3560 snd_hda_codec_set_power_to_all(codec
, fg
, power_state
, true);
3561 state
= snd_hda_codec_read(codec
, fg
, 0,
3562 AC_VERB_GET_POWER_STATE
, 0);
3563 if (!(state
& AC_PWRST_ERROR
))
3568 #ifdef CONFIG_SND_HDA_HWDEP
3569 /* execute additional init verbs */
3570 static void hda_exec_init_verbs(struct hda_codec
*codec
)
3572 if (codec
->init_verbs
.list
)
3573 snd_hda_sequence_write(codec
, codec
->init_verbs
.list
);
3576 static inline void hda_exec_init_verbs(struct hda_codec
*codec
) {}
3581 * call suspend and power-down; used both from PM and power-save
3583 static void hda_call_codec_suspend(struct hda_codec
*codec
, bool in_wq
)
3585 if (codec
->patch_ops
.suspend
)
3586 codec
->patch_ops
.suspend(codec
);
3587 hda_cleanup_all_streams(codec
);
3588 hda_set_power_state(codec
,
3589 codec
->afg
? codec
->afg
: codec
->mfg
,
3591 #ifdef CONFIG_SND_HDA_POWER_SAVE
3592 /* Cancel delayed work if we aren't currently running from it. */
3594 cancel_delayed_work_sync(&codec
->power_work
);
3595 spin_lock(&codec
->power_lock
);
3596 snd_hda_update_power_acct(codec
);
3597 trace_hda_power_down(codec
);
3598 codec
->power_on
= 0;
3599 codec
->power_transition
= 0;
3600 codec
->power_jiffies
= jiffies
;
3601 spin_unlock(&codec
->power_lock
);
3606 * kick up codec; used both from PM and power-save
3608 static void hda_call_codec_resume(struct hda_codec
*codec
)
3610 /* set as if powered on for avoiding re-entering the resume
3611 * in the resume / power-save sequence
3613 hda_keep_power_on(codec
);
3614 hda_set_power_state(codec
,
3615 codec
->afg
? codec
->afg
: codec
->mfg
,
3617 restore_pincfgs(codec
); /* restore all current pin configs */
3618 restore_shutup_pins(codec
);
3619 hda_exec_init_verbs(codec
);
3620 snd_hda_jack_set_dirty_all(codec
);
3621 if (codec
->patch_ops
.resume
)
3622 codec
->patch_ops
.resume(codec
);
3624 if (codec
->patch_ops
.init
)
3625 codec
->patch_ops
.init(codec
);
3626 snd_hda_codec_resume_amp(codec
);
3627 snd_hda_codec_resume_cache(codec
);
3629 snd_hda_power_down(codec
); /* flag down before returning */
3631 #endif /* CONFIG_PM */
3635 * snd_hda_build_controls - build mixer controls
3638 * Creates mixer controls for each codec included in the bus.
3640 * Returns 0 if successful, otherwise a negative error code.
3642 int /*__devinit*/ snd_hda_build_controls(struct hda_bus
*bus
)
3644 struct hda_codec
*codec
;
3646 list_for_each_entry(codec
, &bus
->codec_list
, list
) {
3647 int err
= snd_hda_codec_build_controls(codec
);
3649 printk(KERN_ERR
"hda_codec: cannot build controls "
3650 "for #%d (error %d)\n", codec
->addr
, err
);
3651 err
= snd_hda_codec_reset(codec
);
3654 "hda_codec: cannot revert codec\n");
3661 EXPORT_SYMBOL_HDA(snd_hda_build_controls
);
3663 int snd_hda_codec_build_controls(struct hda_codec
*codec
)
3666 hda_exec_init_verbs(codec
);
3667 /* continue to initialize... */
3668 if (codec
->patch_ops
.init
)
3669 err
= codec
->patch_ops
.init(codec
);
3670 if (!err
&& codec
->patch_ops
.build_controls
)
3671 err
= codec
->patch_ops
.build_controls(codec
);
3680 struct hda_rate_tbl
{
3682 unsigned int alsa_bits
;
3683 unsigned int hda_fmt
;
3686 /* rate = base * mult / div */
3687 #define HDA_RATE(base, mult, div) \
3688 (AC_FMT_BASE_##base##K | (((mult) - 1) << AC_FMT_MULT_SHIFT) | \
3689 (((div) - 1) << AC_FMT_DIV_SHIFT))
3691 static struct hda_rate_tbl rate_bits
[] = {
3692 /* rate in Hz, ALSA rate bitmask, HDA format value */
3694 /* autodetected value used in snd_hda_query_supported_pcm */
3695 { 8000, SNDRV_PCM_RATE_8000
, HDA_RATE(48, 1, 6) },
3696 { 11025, SNDRV_PCM_RATE_11025
, HDA_RATE(44, 1, 4) },
3697 { 16000, SNDRV_PCM_RATE_16000
, HDA_RATE(48, 1, 3) },
3698 { 22050, SNDRV_PCM_RATE_22050
, HDA_RATE(44, 1, 2) },
3699 { 32000, SNDRV_PCM_RATE_32000
, HDA_RATE(48, 2, 3) },
3700 { 44100, SNDRV_PCM_RATE_44100
, HDA_RATE(44, 1, 1) },
3701 { 48000, SNDRV_PCM_RATE_48000
, HDA_RATE(48, 1, 1) },
3702 { 88200, SNDRV_PCM_RATE_88200
, HDA_RATE(44, 2, 1) },
3703 { 96000, SNDRV_PCM_RATE_96000
, HDA_RATE(48, 2, 1) },
3704 { 176400, SNDRV_PCM_RATE_176400
, HDA_RATE(44, 4, 1) },
3705 { 192000, SNDRV_PCM_RATE_192000
, HDA_RATE(48, 4, 1) },
3706 #define AC_PAR_PCM_RATE_BITS 11
3707 /* up to bits 10, 384kHZ isn't supported properly */
3709 /* not autodetected value */
3710 { 9600, SNDRV_PCM_RATE_KNOT
, HDA_RATE(48, 1, 5) },
3712 { 0 } /* terminator */
3716 * snd_hda_calc_stream_format - calculate format bitset
3717 * @rate: the sample rate
3718 * @channels: the number of channels
3719 * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
3720 * @maxbps: the max. bps
3722 * Calculate the format bitset from the given rate, channels and th PCM format.
3724 * Return zero if invalid.
3726 unsigned int snd_hda_calc_stream_format(unsigned int rate
,
3727 unsigned int channels
,
3728 unsigned int format
,
3729 unsigned int maxbps
,
3730 unsigned short spdif_ctls
)
3733 unsigned int val
= 0;
3735 for (i
= 0; rate_bits
[i
].hz
; i
++)
3736 if (rate_bits
[i
].hz
== rate
) {
3737 val
= rate_bits
[i
].hda_fmt
;
3740 if (!rate_bits
[i
].hz
) {
3741 snd_printdd("invalid rate %d\n", rate
);
3745 if (channels
== 0 || channels
> 8) {
3746 snd_printdd("invalid channels %d\n", channels
);
3749 val
|= channels
- 1;
3751 switch (snd_pcm_format_width(format
)) {
3753 val
|= AC_FMT_BITS_8
;
3756 val
|= AC_FMT_BITS_16
;
3761 if (maxbps
>= 32 || format
== SNDRV_PCM_FORMAT_FLOAT_LE
)
3762 val
|= AC_FMT_BITS_32
;
3763 else if (maxbps
>= 24)
3764 val
|= AC_FMT_BITS_24
;
3766 val
|= AC_FMT_BITS_20
;
3769 snd_printdd("invalid format width %d\n",
3770 snd_pcm_format_width(format
));
3774 if (spdif_ctls
& AC_DIG1_NONAUDIO
)
3775 val
|= AC_FMT_TYPE_NON_PCM
;
3779 EXPORT_SYMBOL_HDA(snd_hda_calc_stream_format
);
3781 static unsigned int get_pcm_param(struct hda_codec
*codec
, hda_nid_t nid
,
3784 unsigned int val
= 0;
3785 if (nid
!= codec
->afg
&&
3786 (get_wcaps(codec
, nid
) & AC_WCAP_FORMAT_OVRD
))
3787 val
= snd_hda_param_read(codec
, nid
, AC_PAR_PCM
);
3788 if (!val
|| val
== -1)
3789 val
= snd_hda_param_read(codec
, codec
->afg
, AC_PAR_PCM
);
3790 if (!val
|| val
== -1)
3795 static unsigned int query_pcm_param(struct hda_codec
*codec
, hda_nid_t nid
)
3797 return query_caps_hash(codec
, nid
, 0, HDA_HASH_PARPCM_KEY(nid
),
3801 static unsigned int get_stream_param(struct hda_codec
*codec
, hda_nid_t nid
,
3804 unsigned int streams
= snd_hda_param_read(codec
, nid
, AC_PAR_STREAM
);
3805 if (!streams
|| streams
== -1)
3806 streams
= snd_hda_param_read(codec
, codec
->afg
, AC_PAR_STREAM
);
3807 if (!streams
|| streams
== -1)
3812 static unsigned int query_stream_param(struct hda_codec
*codec
, hda_nid_t nid
)
3814 return query_caps_hash(codec
, nid
, 0, HDA_HASH_PARSTR_KEY(nid
),
3819 * snd_hda_query_supported_pcm - query the supported PCM rates and formats
3820 * @codec: the HDA codec
3821 * @nid: NID to query
3822 * @ratesp: the pointer to store the detected rate bitflags
3823 * @formatsp: the pointer to store the detected formats
3824 * @bpsp: the pointer to store the detected format widths
3826 * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp
3827 * or @bsps argument is ignored.
3829 * Returns 0 if successful, otherwise a negative error code.
3831 int snd_hda_query_supported_pcm(struct hda_codec
*codec
, hda_nid_t nid
,
3832 u32
*ratesp
, u64
*formatsp
, unsigned int *bpsp
)
3834 unsigned int i
, val
, wcaps
;
3836 wcaps
= get_wcaps(codec
, nid
);
3837 val
= query_pcm_param(codec
, nid
);
3841 for (i
= 0; i
< AC_PAR_PCM_RATE_BITS
; i
++) {
3843 rates
|= rate_bits
[i
].alsa_bits
;
3846 snd_printk(KERN_ERR
"hda_codec: rates == 0 "
3847 "(nid=0x%x, val=0x%x, ovrd=%i)\n",
3849 (wcaps
& AC_WCAP_FORMAT_OVRD
) ? 1 : 0);
3855 if (formatsp
|| bpsp
) {
3857 unsigned int streams
, bps
;
3859 streams
= query_stream_param(codec
, nid
);
3864 if (streams
& AC_SUPFMT_PCM
) {
3865 if (val
& AC_SUPPCM_BITS_8
) {
3866 formats
|= SNDRV_PCM_FMTBIT_U8
;
3869 if (val
& AC_SUPPCM_BITS_16
) {
3870 formats
|= SNDRV_PCM_FMTBIT_S16_LE
;
3873 if (wcaps
& AC_WCAP_DIGITAL
) {
3874 if (val
& AC_SUPPCM_BITS_32
)
3875 formats
|= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
;
3876 if (val
& (AC_SUPPCM_BITS_20
|AC_SUPPCM_BITS_24
))
3877 formats
|= SNDRV_PCM_FMTBIT_S32_LE
;
3878 if (val
& AC_SUPPCM_BITS_24
)
3880 else if (val
& AC_SUPPCM_BITS_20
)
3882 } else if (val
& (AC_SUPPCM_BITS_20
|AC_SUPPCM_BITS_24
|
3883 AC_SUPPCM_BITS_32
)) {
3884 formats
|= SNDRV_PCM_FMTBIT_S32_LE
;
3885 if (val
& AC_SUPPCM_BITS_32
)
3887 else if (val
& AC_SUPPCM_BITS_24
)
3889 else if (val
& AC_SUPPCM_BITS_20
)
3893 #if 0 /* FIXME: CS4206 doesn't work, which is the only codec supporting float */
3894 if (streams
& AC_SUPFMT_FLOAT32
) {
3895 formats
|= SNDRV_PCM_FMTBIT_FLOAT_LE
;
3900 if (streams
== AC_SUPFMT_AC3
) {
3901 /* should be exclusive */
3902 /* temporary hack: we have still no proper support
3903 * for the direct AC3 stream...
3905 formats
|= SNDRV_PCM_FMTBIT_U8
;
3909 snd_printk(KERN_ERR
"hda_codec: formats == 0 "
3910 "(nid=0x%x, val=0x%x, ovrd=%i, "
3913 (wcaps
& AC_WCAP_FORMAT_OVRD
) ? 1 : 0,
3918 *formatsp
= formats
;
3925 EXPORT_SYMBOL_HDA(snd_hda_query_supported_pcm
);
3928 * snd_hda_is_supported_format - Check the validity of the format
3929 * @codec: HD-audio codec
3930 * @nid: NID to check
3931 * @format: the HD-audio format value to check
3933 * Check whether the given node supports the format value.
3935 * Returns 1 if supported, 0 if not.
3937 int snd_hda_is_supported_format(struct hda_codec
*codec
, hda_nid_t nid
,
3938 unsigned int format
)
3941 unsigned int val
= 0, rate
, stream
;
3943 val
= query_pcm_param(codec
, nid
);
3947 rate
= format
& 0xff00;
3948 for (i
= 0; i
< AC_PAR_PCM_RATE_BITS
; i
++)
3949 if (rate_bits
[i
].hda_fmt
== rate
) {
3954 if (i
>= AC_PAR_PCM_RATE_BITS
)
3957 stream
= query_stream_param(codec
, nid
);
3961 if (stream
& AC_SUPFMT_PCM
) {
3962 switch (format
& 0xf0) {
3964 if (!(val
& AC_SUPPCM_BITS_8
))
3968 if (!(val
& AC_SUPPCM_BITS_16
))
3972 if (!(val
& AC_SUPPCM_BITS_20
))
3976 if (!(val
& AC_SUPPCM_BITS_24
))
3980 if (!(val
& AC_SUPPCM_BITS_32
))
3987 /* FIXME: check for float32 and AC3? */
3992 EXPORT_SYMBOL_HDA(snd_hda_is_supported_format
);
3997 static int hda_pcm_default_open_close(struct hda_pcm_stream
*hinfo
,
3998 struct hda_codec
*codec
,
3999 struct snd_pcm_substream
*substream
)
4004 static int hda_pcm_default_prepare(struct hda_pcm_stream
*hinfo
,
4005 struct hda_codec
*codec
,
4006 unsigned int stream_tag
,
4007 unsigned int format
,
4008 struct snd_pcm_substream
*substream
)
4010 snd_hda_codec_setup_stream(codec
, hinfo
->nid
, stream_tag
, 0, format
);
4014 static int hda_pcm_default_cleanup(struct hda_pcm_stream
*hinfo
,
4015 struct hda_codec
*codec
,
4016 struct snd_pcm_substream
*substream
)
4018 snd_hda_codec_cleanup_stream(codec
, hinfo
->nid
);
4022 static int set_pcm_default_values(struct hda_codec
*codec
,
4023 struct hda_pcm_stream
*info
)
4027 /* query support PCM information from the given NID */
4028 if (info
->nid
&& (!info
->rates
|| !info
->formats
)) {
4029 err
= snd_hda_query_supported_pcm(codec
, info
->nid
,
4030 info
->rates
? NULL
: &info
->rates
,
4031 info
->formats
? NULL
: &info
->formats
,
4032 info
->maxbps
? NULL
: &info
->maxbps
);
4036 if (info
->ops
.open
== NULL
)
4037 info
->ops
.open
= hda_pcm_default_open_close
;
4038 if (info
->ops
.close
== NULL
)
4039 info
->ops
.close
= hda_pcm_default_open_close
;
4040 if (info
->ops
.prepare
== NULL
) {
4041 if (snd_BUG_ON(!info
->nid
))
4043 info
->ops
.prepare
= hda_pcm_default_prepare
;
4045 if (info
->ops
.cleanup
== NULL
) {
4046 if (snd_BUG_ON(!info
->nid
))
4048 info
->ops
.cleanup
= hda_pcm_default_cleanup
;
4054 * codec prepare/cleanup entries
4056 int snd_hda_codec_prepare(struct hda_codec
*codec
,
4057 struct hda_pcm_stream
*hinfo
,
4058 unsigned int stream
,
4059 unsigned int format
,
4060 struct snd_pcm_substream
*substream
)
4063 mutex_lock(&codec
->bus
->prepare_mutex
);
4064 ret
= hinfo
->ops
.prepare(hinfo
, codec
, stream
, format
, substream
);
4066 purify_inactive_streams(codec
);
4067 mutex_unlock(&codec
->bus
->prepare_mutex
);
4070 EXPORT_SYMBOL_HDA(snd_hda_codec_prepare
);
4072 void snd_hda_codec_cleanup(struct hda_codec
*codec
,
4073 struct hda_pcm_stream
*hinfo
,
4074 struct snd_pcm_substream
*substream
)
4076 mutex_lock(&codec
->bus
->prepare_mutex
);
4077 hinfo
->ops
.cleanup(hinfo
, codec
, substream
);
4078 mutex_unlock(&codec
->bus
->prepare_mutex
);
4080 EXPORT_SYMBOL_HDA(snd_hda_codec_cleanup
);
4083 const char *snd_hda_pcm_type_name
[HDA_PCM_NTYPES
] = {
4084 "Audio", "SPDIF", "HDMI", "Modem"
4088 * get the empty PCM device number to assign
4090 * note the max device number is limited by HDA_MAX_PCMS, currently 10
4092 static int get_empty_pcm_device(struct hda_bus
*bus
, int type
)
4094 /* audio device indices; not linear to keep compatibility */
4095 static int audio_idx
[HDA_PCM_NTYPES
][5] = {
4096 [HDA_PCM_TYPE_AUDIO
] = { 0, 2, 4, 5, -1 },
4097 [HDA_PCM_TYPE_SPDIF
] = { 1, -1 },
4098 [HDA_PCM_TYPE_HDMI
] = { 3, 7, 8, 9, -1 },
4099 [HDA_PCM_TYPE_MODEM
] = { 6, -1 },
4103 if (type
>= HDA_PCM_NTYPES
) {
4104 snd_printk(KERN_WARNING
"Invalid PCM type %d\n", type
);
4108 for (i
= 0; audio_idx
[type
][i
] >= 0 ; i
++)
4109 if (!test_and_set_bit(audio_idx
[type
][i
], bus
->pcm_dev_bits
))
4110 return audio_idx
[type
][i
];
4112 /* non-fixed slots starting from 10 */
4113 for (i
= 10; i
< 32; i
++) {
4114 if (!test_and_set_bit(i
, bus
->pcm_dev_bits
))
4118 snd_printk(KERN_WARNING
"Too many %s devices\n",
4119 snd_hda_pcm_type_name
[type
]);
4124 * attach a new PCM stream
4126 static int snd_hda_attach_pcm(struct hda_codec
*codec
, struct hda_pcm
*pcm
)
4128 struct hda_bus
*bus
= codec
->bus
;
4129 struct hda_pcm_stream
*info
;
4132 if (snd_BUG_ON(!pcm
->name
))
4134 for (stream
= 0; stream
< 2; stream
++) {
4135 info
= &pcm
->stream
[stream
];
4136 if (info
->substreams
) {
4137 err
= set_pcm_default_values(codec
, info
);
4142 return bus
->ops
.attach_pcm(bus
, codec
, pcm
);
4145 /* assign all PCMs of the given codec */
4146 int snd_hda_codec_build_pcms(struct hda_codec
*codec
)
4151 if (!codec
->num_pcms
) {
4152 if (!codec
->patch_ops
.build_pcms
)
4154 err
= codec
->patch_ops
.build_pcms(codec
);
4156 printk(KERN_ERR
"hda_codec: cannot build PCMs"
4157 "for #%d (error %d)\n", codec
->addr
, err
);
4158 err
= snd_hda_codec_reset(codec
);
4161 "hda_codec: cannot revert codec\n");
4166 for (pcm
= 0; pcm
< codec
->num_pcms
; pcm
++) {
4167 struct hda_pcm
*cpcm
= &codec
->pcm_info
[pcm
];
4170 if (!cpcm
->stream
[0].substreams
&& !cpcm
->stream
[1].substreams
)
4171 continue; /* no substreams assigned */
4174 dev
= get_empty_pcm_device(codec
->bus
, cpcm
->pcm_type
);
4176 continue; /* no fatal error */
4178 err
= snd_hda_attach_pcm(codec
, cpcm
);
4180 printk(KERN_ERR
"hda_codec: cannot attach "
4181 "PCM stream %d for codec #%d\n",
4183 continue; /* no fatal error */
4191 * snd_hda_build_pcms - build PCM information
4194 * Create PCM information for each codec included in the bus.
4196 * The build_pcms codec patch is requested to set up codec->num_pcms and
4197 * codec->pcm_info properly. The array is referred by the top-level driver
4198 * to create its PCM instances.
4199 * The allocated codec->pcm_info should be released in codec->patch_ops.free
4202 * At least, substreams, channels_min and channels_max must be filled for
4203 * each stream. substreams = 0 indicates that the stream doesn't exist.
4204 * When rates and/or formats are zero, the supported values are queried
4205 * from the given nid. The nid is used also by the default ops.prepare
4206 * and ops.cleanup callbacks.
4208 * The driver needs to call ops.open in its open callback. Similarly,
4209 * ops.close is supposed to be called in the close callback.
4210 * ops.prepare should be called in the prepare or hw_params callback
4211 * with the proper parameters for set up.
4212 * ops.cleanup should be called in hw_free for clean up of streams.
4214 * This function returns 0 if successful, or a negative error code.
4216 int __devinit
snd_hda_build_pcms(struct hda_bus
*bus
)
4218 struct hda_codec
*codec
;
4220 list_for_each_entry(codec
, &bus
->codec_list
, list
) {
4221 int err
= snd_hda_codec_build_pcms(codec
);
4227 EXPORT_SYMBOL_HDA(snd_hda_build_pcms
);
4230 * snd_hda_check_board_config - compare the current codec with the config table
4231 * @codec: the HDA codec
4232 * @num_configs: number of config enums
4233 * @models: array of model name strings
4234 * @tbl: configuration table, terminated by null entries
4236 * Compares the modelname or PCI subsystem id of the current codec with the
4237 * given configuration table. If a matching entry is found, returns its
4238 * config value (supposed to be 0 or positive).
4240 * If no entries are matching, the function returns a negative value.
4242 int snd_hda_check_board_config(struct hda_codec
*codec
,
4243 int num_configs
, const char * const *models
,
4244 const struct snd_pci_quirk
*tbl
)
4246 if (codec
->modelname
&& models
) {
4248 for (i
= 0; i
< num_configs
; i
++) {
4250 !strcmp(codec
->modelname
, models
[i
])) {
4251 snd_printd(KERN_INFO
"hda_codec: model '%s' is "
4252 "selected\n", models
[i
]);
4258 if (!codec
->bus
->pci
|| !tbl
)
4261 tbl
= snd_pci_quirk_lookup(codec
->bus
->pci
, tbl
);
4264 if (tbl
->value
>= 0 && tbl
->value
< num_configs
) {
4265 #ifdef CONFIG_SND_DEBUG_VERBOSE
4267 const char *model
= NULL
;
4269 model
= models
[tbl
->value
];
4271 sprintf(tmp
, "#%d", tbl
->value
);
4274 snd_printdd(KERN_INFO
"hda_codec: model '%s' is selected "
4275 "for config %x:%x (%s)\n",
4276 model
, tbl
->subvendor
, tbl
->subdevice
,
4277 (tbl
->name
? tbl
->name
: "Unknown device"));
4283 EXPORT_SYMBOL_HDA(snd_hda_check_board_config
);
4286 * snd_hda_check_board_codec_sid_config - compare the current codec
4287 subsystem ID with the
4290 This is important for Gateway notebooks with SB450 HDA Audio
4291 where the vendor ID of the PCI device is:
4292 ATI Technologies Inc SB450 HDA Audio [1002:437b]
4293 and the vendor/subvendor are found only at the codec.
4295 * @codec: the HDA codec
4296 * @num_configs: number of config enums
4297 * @models: array of model name strings
4298 * @tbl: configuration table, terminated by null entries
4300 * Compares the modelname or PCI subsystem id of the current codec with the
4301 * given configuration table. If a matching entry is found, returns its
4302 * config value (supposed to be 0 or positive).
4304 * If no entries are matching, the function returns a negative value.
4306 int snd_hda_check_board_codec_sid_config(struct hda_codec
*codec
,
4307 int num_configs
, const char * const *models
,
4308 const struct snd_pci_quirk
*tbl
)
4310 const struct snd_pci_quirk
*q
;
4312 /* Search for codec ID */
4313 for (q
= tbl
; q
->subvendor
; q
++) {
4314 unsigned int mask
= 0xffff0000 | q
->subdevice_mask
;
4315 unsigned int id
= (q
->subdevice
| (q
->subvendor
<< 16)) & mask
;
4316 if ((codec
->subsystem_id
& mask
) == id
)
4325 if (tbl
->value
>= 0 && tbl
->value
< num_configs
) {
4326 #ifdef CONFIG_SND_DEBUG_VERBOSE
4328 const char *model
= NULL
;
4330 model
= models
[tbl
->value
];
4332 sprintf(tmp
, "#%d", tbl
->value
);
4335 snd_printdd(KERN_INFO
"hda_codec: model '%s' is selected "
4336 "for config %x:%x (%s)\n",
4337 model
, tbl
->subvendor
, tbl
->subdevice
,
4338 (tbl
->name
? tbl
->name
: "Unknown device"));
4344 EXPORT_SYMBOL_HDA(snd_hda_check_board_codec_sid_config
);
4347 * snd_hda_add_new_ctls - create controls from the array
4348 * @codec: the HDA codec
4349 * @knew: the array of struct snd_kcontrol_new
4351 * This helper function creates and add new controls in the given array.
4352 * The array must be terminated with an empty entry as terminator.
4354 * Returns 0 if successful, or a negative error code.
4356 int snd_hda_add_new_ctls(struct hda_codec
*codec
,
4357 const struct snd_kcontrol_new
*knew
)
4361 for (; knew
->name
; knew
++) {
4362 struct snd_kcontrol
*kctl
;
4363 int addr
= 0, idx
= 0;
4364 if (knew
->iface
== -1) /* skip this codec private value */
4367 kctl
= snd_ctl_new1(knew
, codec
);
4371 kctl
->id
.device
= addr
;
4373 kctl
->id
.index
= idx
;
4374 err
= snd_hda_ctl_add(codec
, 0, kctl
);
4377 /* try first with another device index corresponding to
4378 * the codec addr; if it still fails (or it's the
4379 * primary codec), then try another control index
4381 if (!addr
&& codec
->addr
)
4383 else if (!idx
&& !knew
->index
) {
4384 idx
= find_empty_mixer_ctl_idx(codec
,
4394 EXPORT_SYMBOL_HDA(snd_hda_add_new_ctls
);
4396 #ifdef CONFIG_SND_HDA_POWER_SAVE
4397 static void hda_power_work(struct work_struct
*work
)
4399 struct hda_codec
*codec
=
4400 container_of(work
, struct hda_codec
, power_work
.work
);
4401 struct hda_bus
*bus
= codec
->bus
;
4403 spin_lock(&codec
->power_lock
);
4404 if (codec
->power_transition
> 0) { /* during power-up sequence? */
4405 spin_unlock(&codec
->power_lock
);
4408 if (!codec
->power_on
|| codec
->power_count
) {
4409 codec
->power_transition
= 0;
4410 spin_unlock(&codec
->power_lock
);
4413 spin_unlock(&codec
->power_lock
);
4415 hda_call_codec_suspend(codec
, true);
4416 if (bus
->ops
.pm_notify
)
4417 bus
->ops
.pm_notify(bus
);
4420 static void hda_keep_power_on(struct hda_codec
*codec
)
4422 spin_lock(&codec
->power_lock
);
4423 codec
->power_count
++;
4424 codec
->power_on
= 1;
4425 codec
->power_jiffies
= jiffies
;
4426 spin_unlock(&codec
->power_lock
);
4429 /* update the power on/off account with the current jiffies */
4430 void snd_hda_update_power_acct(struct hda_codec
*codec
)
4432 unsigned long delta
= jiffies
- codec
->power_jiffies
;
4433 if (codec
->power_on
)
4434 codec
->power_on_acct
+= delta
;
4436 codec
->power_off_acct
+= delta
;
4437 codec
->power_jiffies
+= delta
;
4440 /* Transition to powered up, if wait_power_down then wait for a pending
4441 * transition to D3 to complete. A pending D3 transition is indicated
4442 * with power_transition == -1. */
4443 static void __snd_hda_power_up(struct hda_codec
*codec
, bool wait_power_down
)
4445 struct hda_bus
*bus
= codec
->bus
;
4447 spin_lock(&codec
->power_lock
);
4448 codec
->power_count
++;
4449 /* Return if power_on or transitioning to power_on, unless currently
4451 if ((codec
->power_on
|| codec
->power_transition
> 0) &&
4452 !(wait_power_down
&& codec
->power_transition
< 0)) {
4453 spin_unlock(&codec
->power_lock
);
4456 spin_unlock(&codec
->power_lock
);
4458 cancel_delayed_work_sync(&codec
->power_work
);
4460 spin_lock(&codec
->power_lock
);
4461 /* If the power down delayed work was cancelled above before starting,
4462 * then there is no need to go through power up here.
4464 if (codec
->power_on
) {
4465 if (codec
->power_transition
< 0)
4466 codec
->power_transition
= 0;
4467 spin_unlock(&codec
->power_lock
);
4470 trace_hda_power_up(codec
);
4471 snd_hda_update_power_acct(codec
);
4472 codec
->power_on
= 1;
4473 codec
->power_jiffies
= jiffies
;
4474 codec
->power_transition
= 1; /* avoid reentrance */
4475 spin_unlock(&codec
->power_lock
);
4477 if (bus
->ops
.pm_notify
)
4478 bus
->ops
.pm_notify(bus
);
4479 hda_call_codec_resume(codec
);
4481 spin_lock(&codec
->power_lock
);
4482 codec
->power_transition
= 0;
4483 spin_unlock(&codec
->power_lock
);
4487 * snd_hda_power_up - Power-up the codec
4488 * @codec: HD-audio codec
4490 * Increment the power-up counter and power up the hardware really when
4491 * not turned on yet.
4493 void snd_hda_power_up(struct hda_codec
*codec
)
4495 __snd_hda_power_up(codec
, false);
4497 EXPORT_SYMBOL_HDA(snd_hda_power_up
);
4500 * snd_hda_power_up_d3wait - Power-up the codec after waiting for any pending
4501 * D3 transition to complete. This differs from snd_hda_power_up() when
4502 * power_transition == -1. snd_hda_power_up sees this case as a nop,
4503 * snd_hda_power_up_d3wait waits for the D3 transition to complete then powers
4505 * @codec: HD-audio codec
4507 * Cancel any power down operation hapenning on the work queue, then power up.
4509 void snd_hda_power_up_d3wait(struct hda_codec
*codec
)
4511 /* This will cancel and wait for pending power_work to complete. */
4512 __snd_hda_power_up(codec
, true);
4514 EXPORT_SYMBOL_HDA(snd_hda_power_up_d3wait
);
4516 #define power_save(codec) \
4517 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0)
4520 * snd_hda_power_down - Power-down the codec
4521 * @codec: HD-audio codec
4523 * Decrement the power-up counter and schedules the power-off work if
4524 * the counter rearches to zero.
4526 void snd_hda_power_down(struct hda_codec
*codec
)
4528 spin_lock(&codec
->power_lock
);
4529 --codec
->power_count
;
4530 if (!codec
->power_on
|| codec
->power_count
|| codec
->power_transition
) {
4531 spin_unlock(&codec
->power_lock
);
4534 if (power_save(codec
)) {
4535 codec
->power_transition
= -1; /* avoid reentrance */
4536 queue_delayed_work(codec
->bus
->workq
, &codec
->power_work
,
4537 msecs_to_jiffies(power_save(codec
) * 1000));
4539 spin_unlock(&codec
->power_lock
);
4541 EXPORT_SYMBOL_HDA(snd_hda_power_down
);
4544 * snd_hda_check_amp_list_power - Check the amp list and update the power
4545 * @codec: HD-audio codec
4546 * @check: the object containing an AMP list and the status
4547 * @nid: NID to check / update
4549 * Check whether the given NID is in the amp list. If it's in the list,
4550 * check the current AMP status, and update the the power-status according
4551 * to the mute status.
4553 * This function is supposed to be set or called from the check_power_status
4556 int snd_hda_check_amp_list_power(struct hda_codec
*codec
,
4557 struct hda_loopback_check
*check
,
4560 const struct hda_amp_list
*p
;
4563 if (!check
->amplist
)
4565 for (p
= check
->amplist
; p
->nid
; p
++) {
4570 return 0; /* nothing changed */
4572 for (p
= check
->amplist
; p
->nid
; p
++) {
4573 for (ch
= 0; ch
< 2; ch
++) {
4574 v
= snd_hda_codec_amp_read(codec
, p
->nid
, ch
, p
->dir
,
4576 if (!(v
& HDA_AMP_MUTE
) && v
> 0) {
4577 if (!check
->power_on
) {
4578 check
->power_on
= 1;
4579 snd_hda_power_up(codec
);
4585 if (check
->power_on
) {
4586 check
->power_on
= 0;
4587 snd_hda_power_down(codec
);
4591 EXPORT_SYMBOL_HDA(snd_hda_check_amp_list_power
);
4595 * Channel mode helper
4599 * snd_hda_ch_mode_info - Info callback helper for the channel mode enum
4601 int snd_hda_ch_mode_info(struct hda_codec
*codec
,
4602 struct snd_ctl_elem_info
*uinfo
,
4603 const struct hda_channel_mode
*chmode
,
4606 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
4608 uinfo
->value
.enumerated
.items
= num_chmodes
;
4609 if (uinfo
->value
.enumerated
.item
>= num_chmodes
)
4610 uinfo
->value
.enumerated
.item
= num_chmodes
- 1;
4611 sprintf(uinfo
->value
.enumerated
.name
, "%dch",
4612 chmode
[uinfo
->value
.enumerated
.item
].channels
);
4615 EXPORT_SYMBOL_HDA(snd_hda_ch_mode_info
);
4618 * snd_hda_ch_mode_get - Get callback helper for the channel mode enum
4620 int snd_hda_ch_mode_get(struct hda_codec
*codec
,
4621 struct snd_ctl_elem_value
*ucontrol
,
4622 const struct hda_channel_mode
*chmode
,
4628 for (i
= 0; i
< num_chmodes
; i
++) {
4629 if (max_channels
== chmode
[i
].channels
) {
4630 ucontrol
->value
.enumerated
.item
[0] = i
;
4636 EXPORT_SYMBOL_HDA(snd_hda_ch_mode_get
);
4639 * snd_hda_ch_mode_put - Put callback helper for the channel mode enum
4641 int snd_hda_ch_mode_put(struct hda_codec
*codec
,
4642 struct snd_ctl_elem_value
*ucontrol
,
4643 const struct hda_channel_mode
*chmode
,
4649 mode
= ucontrol
->value
.enumerated
.item
[0];
4650 if (mode
>= num_chmodes
)
4652 if (*max_channelsp
== chmode
[mode
].channels
)
4654 /* change the current channel setting */
4655 *max_channelsp
= chmode
[mode
].channels
;
4656 if (chmode
[mode
].sequence
)
4657 snd_hda_sequence_write_cache(codec
, chmode
[mode
].sequence
);
4660 EXPORT_SYMBOL_HDA(snd_hda_ch_mode_put
);
4667 * snd_hda_input_mux_info_info - Info callback helper for the input-mux enum
4669 int snd_hda_input_mux_info(const struct hda_input_mux
*imux
,
4670 struct snd_ctl_elem_info
*uinfo
)
4674 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
4676 uinfo
->value
.enumerated
.items
= imux
->num_items
;
4677 if (!imux
->num_items
)
4679 index
= uinfo
->value
.enumerated
.item
;
4680 if (index
>= imux
->num_items
)
4681 index
= imux
->num_items
- 1;
4682 strcpy(uinfo
->value
.enumerated
.name
, imux
->items
[index
].label
);
4685 EXPORT_SYMBOL_HDA(snd_hda_input_mux_info
);
4688 * snd_hda_input_mux_info_put - Put callback helper for the input-mux enum
4690 int snd_hda_input_mux_put(struct hda_codec
*codec
,
4691 const struct hda_input_mux
*imux
,
4692 struct snd_ctl_elem_value
*ucontrol
,
4694 unsigned int *cur_val
)
4698 if (!imux
->num_items
)
4700 idx
= ucontrol
->value
.enumerated
.item
[0];
4701 if (idx
>= imux
->num_items
)
4702 idx
= imux
->num_items
- 1;
4703 if (*cur_val
== idx
)
4705 snd_hda_codec_write_cache(codec
, nid
, 0, AC_VERB_SET_CONNECT_SEL
,
4706 imux
->items
[idx
].index
);
4710 EXPORT_SYMBOL_HDA(snd_hda_input_mux_put
);
4714 * Multi-channel / digital-out PCM helper functions
4717 /* setup SPDIF output stream */
4718 static void setup_dig_out_stream(struct hda_codec
*codec
, hda_nid_t nid
,
4719 unsigned int stream_tag
, unsigned int format
)
4721 struct hda_spdif_out
*spdif
= snd_hda_spdif_out_of_nid(codec
, nid
);
4723 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
4724 if (codec
->spdif_status_reset
&& (spdif
->ctls
& AC_DIG1_ENABLE
))
4725 set_dig_out_convert(codec
, nid
,
4726 spdif
->ctls
& ~AC_DIG1_ENABLE
& 0xff,
4728 snd_hda_codec_setup_stream(codec
, nid
, stream_tag
, 0, format
);
4729 if (codec
->slave_dig_outs
) {
4731 for (d
= codec
->slave_dig_outs
; *d
; d
++)
4732 snd_hda_codec_setup_stream(codec
, *d
, stream_tag
, 0,
4735 /* turn on again (if needed) */
4736 if (codec
->spdif_status_reset
&& (spdif
->ctls
& AC_DIG1_ENABLE
))
4737 set_dig_out_convert(codec
, nid
,
4738 spdif
->ctls
& 0xff, -1);
4741 static void cleanup_dig_out_stream(struct hda_codec
*codec
, hda_nid_t nid
)
4743 snd_hda_codec_cleanup_stream(codec
, nid
);
4744 if (codec
->slave_dig_outs
) {
4746 for (d
= codec
->slave_dig_outs
; *d
; d
++)
4747 snd_hda_codec_cleanup_stream(codec
, *d
);
4752 * snd_hda_bus_reboot_notify - call the reboot notifier of each codec
4753 * @bus: HD-audio bus
4755 void snd_hda_bus_reboot_notify(struct hda_bus
*bus
)
4757 struct hda_codec
*codec
;
4761 list_for_each_entry(codec
, &bus
->codec_list
, list
) {
4762 if (hda_codec_is_power_on(codec
) &&
4763 codec
->patch_ops
.reboot_notify
)
4764 codec
->patch_ops
.reboot_notify(codec
);
4767 EXPORT_SYMBOL_HDA(snd_hda_bus_reboot_notify
);
4770 * snd_hda_multi_out_dig_open - open the digital out in the exclusive mode
4772 int snd_hda_multi_out_dig_open(struct hda_codec
*codec
,
4773 struct hda_multi_out
*mout
)
4775 mutex_lock(&codec
->spdif_mutex
);
4776 if (mout
->dig_out_used
== HDA_DIG_ANALOG_DUP
)
4777 /* already opened as analog dup; reset it once */
4778 cleanup_dig_out_stream(codec
, mout
->dig_out_nid
);
4779 mout
->dig_out_used
= HDA_DIG_EXCLUSIVE
;
4780 mutex_unlock(&codec
->spdif_mutex
);
4783 EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_open
);
4786 * snd_hda_multi_out_dig_prepare - prepare the digital out stream
4788 int snd_hda_multi_out_dig_prepare(struct hda_codec
*codec
,
4789 struct hda_multi_out
*mout
,
4790 unsigned int stream_tag
,
4791 unsigned int format
,
4792 struct snd_pcm_substream
*substream
)
4794 mutex_lock(&codec
->spdif_mutex
);
4795 setup_dig_out_stream(codec
, mout
->dig_out_nid
, stream_tag
, format
);
4796 mutex_unlock(&codec
->spdif_mutex
);
4799 EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_prepare
);
4802 * snd_hda_multi_out_dig_cleanup - clean-up the digital out stream
4804 int snd_hda_multi_out_dig_cleanup(struct hda_codec
*codec
,
4805 struct hda_multi_out
*mout
)
4807 mutex_lock(&codec
->spdif_mutex
);
4808 cleanup_dig_out_stream(codec
, mout
->dig_out_nid
);
4809 mutex_unlock(&codec
->spdif_mutex
);
4812 EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_cleanup
);
4815 * snd_hda_multi_out_dig_close - release the digital out stream
4817 int snd_hda_multi_out_dig_close(struct hda_codec
*codec
,
4818 struct hda_multi_out
*mout
)
4820 mutex_lock(&codec
->spdif_mutex
);
4821 mout
->dig_out_used
= 0;
4822 mutex_unlock(&codec
->spdif_mutex
);
4825 EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_close
);
4828 * snd_hda_multi_out_analog_open - open analog outputs
4830 * Open analog outputs and set up the hw-constraints.
4831 * If the digital outputs can be opened as slave, open the digital
4834 int snd_hda_multi_out_analog_open(struct hda_codec
*codec
,
4835 struct hda_multi_out
*mout
,
4836 struct snd_pcm_substream
*substream
,
4837 struct hda_pcm_stream
*hinfo
)
4839 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
4840 runtime
->hw
.channels_max
= mout
->max_channels
;
4841 if (mout
->dig_out_nid
) {
4842 if (!mout
->analog_rates
) {
4843 mout
->analog_rates
= hinfo
->rates
;
4844 mout
->analog_formats
= hinfo
->formats
;
4845 mout
->analog_maxbps
= hinfo
->maxbps
;
4847 runtime
->hw
.rates
= mout
->analog_rates
;
4848 runtime
->hw
.formats
= mout
->analog_formats
;
4849 hinfo
->maxbps
= mout
->analog_maxbps
;
4851 if (!mout
->spdif_rates
) {
4852 snd_hda_query_supported_pcm(codec
, mout
->dig_out_nid
,
4854 &mout
->spdif_formats
,
4855 &mout
->spdif_maxbps
);
4857 mutex_lock(&codec
->spdif_mutex
);
4858 if (mout
->share_spdif
) {
4859 if ((runtime
->hw
.rates
& mout
->spdif_rates
) &&
4860 (runtime
->hw
.formats
& mout
->spdif_formats
)) {
4861 runtime
->hw
.rates
&= mout
->spdif_rates
;
4862 runtime
->hw
.formats
&= mout
->spdif_formats
;
4863 if (mout
->spdif_maxbps
< hinfo
->maxbps
)
4864 hinfo
->maxbps
= mout
->spdif_maxbps
;
4866 mout
->share_spdif
= 0;
4867 /* FIXME: need notify? */
4870 mutex_unlock(&codec
->spdif_mutex
);
4872 return snd_pcm_hw_constraint_step(substream
->runtime
, 0,
4873 SNDRV_PCM_HW_PARAM_CHANNELS
, 2);
4875 EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_open
);
4878 * snd_hda_multi_out_analog_prepare - Preapre the analog outputs.
4880 * Set up the i/o for analog out.
4881 * When the digital out is available, copy the front out to digital out, too.
4883 int snd_hda_multi_out_analog_prepare(struct hda_codec
*codec
,
4884 struct hda_multi_out
*mout
,
4885 unsigned int stream_tag
,
4886 unsigned int format
,
4887 struct snd_pcm_substream
*substream
)
4889 const hda_nid_t
*nids
= mout
->dac_nids
;
4890 int chs
= substream
->runtime
->channels
;
4891 struct hda_spdif_out
*spdif
;
4894 mutex_lock(&codec
->spdif_mutex
);
4895 spdif
= snd_hda_spdif_out_of_nid(codec
, mout
->dig_out_nid
);
4896 if (mout
->dig_out_nid
&& mout
->share_spdif
&&
4897 mout
->dig_out_used
!= HDA_DIG_EXCLUSIVE
) {
4899 snd_hda_is_supported_format(codec
, mout
->dig_out_nid
,
4901 !(spdif
->status
& IEC958_AES0_NONAUDIO
)) {
4902 mout
->dig_out_used
= HDA_DIG_ANALOG_DUP
;
4903 setup_dig_out_stream(codec
, mout
->dig_out_nid
,
4904 stream_tag
, format
);
4906 mout
->dig_out_used
= 0;
4907 cleanup_dig_out_stream(codec
, mout
->dig_out_nid
);
4910 mutex_unlock(&codec
->spdif_mutex
);
4913 snd_hda_codec_setup_stream(codec
, nids
[HDA_FRONT
], stream_tag
,
4915 if (!mout
->no_share_stream
&&
4916 mout
->hp_nid
&& mout
->hp_nid
!= nids
[HDA_FRONT
])
4917 /* headphone out will just decode front left/right (stereo) */
4918 snd_hda_codec_setup_stream(codec
, mout
->hp_nid
, stream_tag
,
4920 /* extra outputs copied from front */
4921 for (i
= 0; i
< ARRAY_SIZE(mout
->hp_out_nid
); i
++)
4922 if (!mout
->no_share_stream
&& mout
->hp_out_nid
[i
])
4923 snd_hda_codec_setup_stream(codec
,
4924 mout
->hp_out_nid
[i
],
4925 stream_tag
, 0, format
);
4926 for (i
= 0; i
< ARRAY_SIZE(mout
->extra_out_nid
); i
++)
4927 if (!mout
->no_share_stream
&& mout
->extra_out_nid
[i
])
4928 snd_hda_codec_setup_stream(codec
,
4929 mout
->extra_out_nid
[i
],
4930 stream_tag
, 0, format
);
4933 for (i
= 1; i
< mout
->num_dacs
; i
++) {
4934 if (chs
>= (i
+ 1) * 2) /* independent out */
4935 snd_hda_codec_setup_stream(codec
, nids
[i
], stream_tag
,
4937 else if (!mout
->no_share_stream
) /* copy front */
4938 snd_hda_codec_setup_stream(codec
, nids
[i
], stream_tag
,
4943 EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_prepare
);
4946 * snd_hda_multi_out_analog_cleanup - clean up the setting for analog out
4948 int snd_hda_multi_out_analog_cleanup(struct hda_codec
*codec
,
4949 struct hda_multi_out
*mout
)
4951 const hda_nid_t
*nids
= mout
->dac_nids
;
4954 for (i
= 0; i
< mout
->num_dacs
; i
++)
4955 snd_hda_codec_cleanup_stream(codec
, nids
[i
]);
4957 snd_hda_codec_cleanup_stream(codec
, mout
->hp_nid
);
4958 for (i
= 0; i
< ARRAY_SIZE(mout
->hp_out_nid
); i
++)
4959 if (mout
->hp_out_nid
[i
])
4960 snd_hda_codec_cleanup_stream(codec
,
4961 mout
->hp_out_nid
[i
]);
4962 for (i
= 0; i
< ARRAY_SIZE(mout
->extra_out_nid
); i
++)
4963 if (mout
->extra_out_nid
[i
])
4964 snd_hda_codec_cleanup_stream(codec
,
4965 mout
->extra_out_nid
[i
]);
4966 mutex_lock(&codec
->spdif_mutex
);
4967 if (mout
->dig_out_nid
&& mout
->dig_out_used
== HDA_DIG_ANALOG_DUP
) {
4968 cleanup_dig_out_stream(codec
, mout
->dig_out_nid
);
4969 mout
->dig_out_used
= 0;
4971 mutex_unlock(&codec
->spdif_mutex
);
4974 EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_cleanup
);
4977 * snd_hda_get_default_vref - Get the default (mic) VREF pin bits
4979 * Guess the suitable VREF pin bits to be set as the pin-control value.
4980 * Note: the function doesn't set the AC_PINCTL_IN_EN bit.
4982 unsigned int snd_hda_get_default_vref(struct hda_codec
*codec
, hda_nid_t pin
)
4984 unsigned int pincap
;
4985 unsigned int oldval
;
4986 oldval
= snd_hda_codec_read(codec
, pin
, 0,
4987 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
4988 pincap
= snd_hda_query_pin_caps(codec
, pin
);
4989 pincap
= (pincap
& AC_PINCAP_VREF
) >> AC_PINCAP_VREF_SHIFT
;
4990 /* Exception: if the default pin setup is vref50, we give it priority */
4991 if ((pincap
& AC_PINCAP_VREF_80
) && oldval
!= PIN_VREF50
)
4992 return AC_PINCTL_VREF_80
;
4993 else if (pincap
& AC_PINCAP_VREF_50
)
4994 return AC_PINCTL_VREF_50
;
4995 else if (pincap
& AC_PINCAP_VREF_100
)
4996 return AC_PINCTL_VREF_100
;
4997 else if (pincap
& AC_PINCAP_VREF_GRD
)
4998 return AC_PINCTL_VREF_GRD
;
4999 return AC_PINCTL_VREF_HIZ
;
5001 EXPORT_SYMBOL_HDA(snd_hda_get_default_vref
);
5003 int _snd_hda_set_pin_ctl(struct hda_codec
*codec
, hda_nid_t pin
,
5004 unsigned int val
, bool cached
)
5007 unsigned int cap
= snd_hda_query_pin_caps(codec
, pin
);
5008 if (cap
&& (val
& AC_PINCTL_OUT_EN
)) {
5009 if (!(cap
& AC_PINCAP_OUT
))
5010 val
&= ~(AC_PINCTL_OUT_EN
| AC_PINCTL_HP_EN
);
5011 else if ((val
& AC_PINCTL_HP_EN
) &&
5012 !(cap
& AC_PINCAP_HP_DRV
))
5013 val
&= ~AC_PINCTL_HP_EN
;
5015 if (cap
&& (val
& AC_PINCTL_IN_EN
)) {
5016 if (!(cap
& AC_PINCAP_IN
))
5017 val
&= ~(AC_PINCTL_IN_EN
| AC_PINCTL_VREFEN
);
5021 return snd_hda_codec_update_cache(codec
, pin
, 0,
5022 AC_VERB_SET_PIN_WIDGET_CONTROL
, val
);
5024 return snd_hda_codec_write(codec
, pin
, 0,
5025 AC_VERB_SET_PIN_WIDGET_CONTROL
, val
);
5027 EXPORT_SYMBOL_HDA(_snd_hda_set_pin_ctl
);
5030 * snd_hda_add_imux_item - Add an item to input_mux
5032 * When the same label is used already in the existing items, the number
5033 * suffix is appended to the label. This label index number is stored
5034 * to type_idx when non-NULL pointer is given.
5036 int snd_hda_add_imux_item(struct hda_input_mux
*imux
, const char *label
,
5037 int index
, int *type_idx
)
5039 int i
, label_idx
= 0;
5040 if (imux
->num_items
>= HDA_MAX_NUM_INPUTS
) {
5041 snd_printd(KERN_ERR
"hda_codec: Too many imux items!\n");
5044 for (i
= 0; i
< imux
->num_items
; i
++) {
5045 if (!strncmp(label
, imux
->items
[i
].label
, strlen(label
)))
5049 *type_idx
= label_idx
;
5051 snprintf(imux
->items
[imux
->num_items
].label
,
5052 sizeof(imux
->items
[imux
->num_items
].label
),
5053 "%s %d", label
, label_idx
);
5055 strlcpy(imux
->items
[imux
->num_items
].label
, label
,
5056 sizeof(imux
->items
[imux
->num_items
].label
));
5057 imux
->items
[imux
->num_items
].index
= index
;
5061 EXPORT_SYMBOL_HDA(snd_hda_add_imux_item
);
5070 * snd_hda_suspend - suspend the codecs
5073 * Returns 0 if successful.
5075 int snd_hda_suspend(struct hda_bus
*bus
)
5077 struct hda_codec
*codec
;
5079 list_for_each_entry(codec
, &bus
->codec_list
, list
) {
5080 if (hda_codec_is_power_on(codec
))
5081 hda_call_codec_suspend(codec
, false);
5085 EXPORT_SYMBOL_HDA(snd_hda_suspend
);
5088 * snd_hda_resume - resume the codecs
5091 * Returns 0 if successful.
5093 * This function is defined only when POWER_SAVE isn't set.
5094 * In the power-save mode, the codec is resumed dynamically.
5096 int snd_hda_resume(struct hda_bus
*bus
)
5098 struct hda_codec
*codec
;
5100 list_for_each_entry(codec
, &bus
->codec_list
, list
) {
5101 hda_call_codec_resume(codec
);
5105 EXPORT_SYMBOL_HDA(snd_hda_resume
);
5106 #endif /* CONFIG_PM */
5113 * snd_array_new - get a new element from the given array
5114 * @array: the array object
5116 * Get a new element from the given array. If it exceeds the
5117 * pre-allocated array size, re-allocate the array.
5119 * Returns NULL if allocation failed.
5121 void *snd_array_new(struct snd_array
*array
)
5123 if (array
->used
>= array
->alloced
) {
5124 int num
= array
->alloced
+ array
->alloc_align
;
5125 int size
= (num
+ 1) * array
->elem_size
;
5126 int oldsize
= array
->alloced
* array
->elem_size
;
5128 if (snd_BUG_ON(num
>= 4096))
5130 nlist
= krealloc(array
->list
, size
, GFP_KERNEL
);
5133 memset(nlist
+ oldsize
, 0, size
- oldsize
);
5134 array
->list
= nlist
;
5135 array
->alloced
= num
;
5137 return snd_array_elem(array
, array
->used
++);
5139 EXPORT_SYMBOL_HDA(snd_array_new
);
5142 * snd_array_free - free the given array elements
5143 * @array: the array object
5145 void snd_array_free(struct snd_array
*array
)
5152 EXPORT_SYMBOL_HDA(snd_array_free
);
5155 * snd_print_pcm_bits - Print the supported PCM fmt bits to the string buffer
5156 * @pcm: PCM caps bits
5157 * @buf: the string buffer to write
5158 * @buflen: the max buffer length
5160 * used by hda_proc.c and hda_eld.c
5162 void snd_print_pcm_bits(int pcm
, char *buf
, int buflen
)
5164 static unsigned int bits
[] = { 8, 16, 20, 24, 32 };
5167 for (i
= 0, j
= 0; i
< ARRAY_SIZE(bits
); i
++)
5168 if (pcm
& (AC_SUPPCM_BITS_8
<< i
))
5169 j
+= snprintf(buf
+ j
, buflen
- j
, " %d", bits
[i
]);
5171 buf
[j
] = '\0'; /* necessary when j == 0 */
5173 EXPORT_SYMBOL_HDA(snd_print_pcm_bits
);
5175 MODULE_DESCRIPTION("HDA codec core");
5176 MODULE_LICENSE("GPL");