2 * Universal Interface for Intel High Definition Audio Codec
4 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
7 * This driver is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This driver is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <sound/driver.h>
23 #include <linux/init.h>
24 #include <linux/delay.h>
25 #include <linux/slab.h>
26 #include <linux/pci.h>
27 #include <linux/moduleparam.h>
28 #include <sound/core.h>
29 #include "hda_codec.h"
30 #include <sound/asoundef.h>
31 #include <sound/initval.h>
32 #include "hda_local.h"
35 MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
36 MODULE_DESCRIPTION("Universal interface for High Definition Audio Codec");
37 MODULE_LICENSE("GPL");
41 * vendor / preset table
44 struct hda_vendor_id
{
49 /* codec vendor labels */
50 static struct hda_vendor_id hda_vendor_ids
[] = {
51 { 0x10ec, "Realtek" },
52 { 0x13f6, "C-Media" },
53 { 0x434d, "C-Media" },
58 #include "hda_patch.h"
62 * snd_hda_codec_read - send a command and get the response
63 * @codec: the HDA codec
64 * @nid: NID to send the command
65 * @direct: direct flag
66 * @verb: the verb to send
67 * @parm: the parameter for the verb
69 * Send a single command and read the corresponding response.
71 * Returns the obtained response value, or -1 for an error.
73 unsigned int snd_hda_codec_read(struct hda_codec
*codec
, hda_nid_t nid
, int direct
,
74 unsigned int verb
, unsigned int parm
)
77 down(&codec
->bus
->cmd_mutex
);
78 if (! codec
->bus
->ops
.command(codec
, nid
, direct
, verb
, parm
))
79 res
= codec
->bus
->ops
.get_response(codec
);
81 res
= (unsigned int)-1;
82 up(&codec
->bus
->cmd_mutex
);
87 * snd_hda_codec_write - send a single command without waiting for response
88 * @codec: the HDA codec
89 * @nid: NID to send the command
90 * @direct: direct flag
91 * @verb: the verb to send
92 * @parm: the parameter for the verb
94 * Send a single command without waiting for response.
96 * Returns 0 if successful, or a negative error code.
98 int snd_hda_codec_write(struct hda_codec
*codec
, hda_nid_t nid
, int direct
,
99 unsigned int verb
, unsigned int parm
)
102 down(&codec
->bus
->cmd_mutex
);
103 err
= codec
->bus
->ops
.command(codec
, nid
, direct
, verb
, parm
);
104 up(&codec
->bus
->cmd_mutex
);
109 * snd_hda_sequence_write - sequence writes
110 * @codec: the HDA codec
111 * @seq: VERB array to send
113 * Send the commands sequentially from the given array.
114 * The array must be terminated with NID=0.
116 void snd_hda_sequence_write(struct hda_codec
*codec
, const struct hda_verb
*seq
)
118 for (; seq
->nid
; seq
++)
119 snd_hda_codec_write(codec
, seq
->nid
, 0, seq
->verb
, seq
->param
);
123 * snd_hda_get_sub_nodes - get the range of sub nodes
124 * @codec: the HDA codec
126 * @start_id: the pointer to store the start NID
128 * Parse the NID and store the start NID of its sub-nodes.
129 * Returns the number of sub-nodes.
131 int snd_hda_get_sub_nodes(struct hda_codec
*codec
, hda_nid_t nid
, hda_nid_t
*start_id
)
135 parm
= snd_hda_param_read(codec
, nid
, AC_PAR_NODE_COUNT
);
136 *start_id
= (parm
>> 16) & 0x7fff;
137 return (int)(parm
& 0x7fff);
141 * snd_hda_get_connections - get connection list
142 * @codec: the HDA codec
144 * @conn_list: connection list array
145 * @max_conns: max. number of connections to store
147 * Parses the connection list of the given widget and stores the list
150 * Returns the number of connections, or a negative error code.
152 int snd_hda_get_connections(struct hda_codec
*codec
, hda_nid_t nid
,
153 hda_nid_t
*conn_list
, int max_conns
)
156 int i
, j
, conn_len
, num_tupples
, conns
;
157 unsigned int shift
, num_elems
, mask
;
159 snd_assert(conn_list
&& max_conns
> 0, return -EINVAL
);
161 parm
= snd_hda_param_read(codec
, nid
, AC_PAR_CONNLIST_LEN
);
162 if (parm
& AC_CLIST_LONG
) {
171 conn_len
= parm
& AC_CLIST_LENGTH
;
172 num_tupples
= num_elems
/ 2;
173 mask
= (1 << (shift
-1)) - 1;
176 return 0; /* no connection */
179 /* single connection */
180 parm
= snd_hda_codec_read(codec
, nid
, 0, AC_VERB_GET_CONNECT_LIST
, 0);
181 conn_list
[0] = parm
& mask
;
185 /* multi connection */
187 for (i
= 0; i
< conn_len
; i
+= num_elems
) {
188 parm
= snd_hda_codec_read(codec
, nid
, 0, AC_VERB_GET_CONNECT_LIST
, i
);
189 for (j
= 0; j
< num_tupples
; j
++) {
191 hda_nid_t val1
, val2
, n
;
192 range_val
= parm
& (1 << (shift
-1)); /* ranges */
198 /* ranges between val1 and val2 */
200 snd_printk(KERN_WARNING
"hda_codec: invalid dep_range_val %x:%x\n", val1
, val2
);
203 for (n
= val1
; n
<= val2
; n
++) {
204 if (conns
>= max_conns
)
206 conn_list
[conns
++] = n
;
211 if (conns
>= max_conns
)
213 conn_list
[conns
++] = val1
;
216 if (conns
>= max_conns
)
218 conn_list
[conns
++] = val2
;
227 * snd_hda_queue_unsol_event - add an unsolicited event to queue
229 * @res: unsolicited event (lower 32bit of RIRB entry)
230 * @res_ex: codec addr and flags (upper 32bit or RIRB entry)
232 * Adds the given event to the queue. The events are processed in
233 * the workqueue asynchronously. Call this function in the interrupt
234 * hanlder when RIRB receives an unsolicited event.
236 * Returns 0 if successful, or a negative error code.
238 int snd_hda_queue_unsol_event(struct hda_bus
*bus
, u32 res
, u32 res_ex
)
240 struct hda_bus_unsolicited
*unsol
;
243 if ((unsol
= bus
->unsol
) == NULL
)
246 wp
= (unsol
->wp
+ 1) % HDA_UNSOL_QUEUE_SIZE
;
250 unsol
->queue
[wp
] = res
;
251 unsol
->queue
[wp
+ 1] = res_ex
;
253 queue_work(unsol
->workq
, &unsol
->work
);
259 * process queueud unsolicited events
261 static void process_unsol_events(void *data
)
263 struct hda_bus
*bus
= data
;
264 struct hda_bus_unsolicited
*unsol
= bus
->unsol
;
265 struct hda_codec
*codec
;
266 unsigned int rp
, caddr
, res
;
268 while (unsol
->rp
!= unsol
->wp
) {
269 rp
= (unsol
->rp
+ 1) % HDA_UNSOL_QUEUE_SIZE
;
272 res
= unsol
->queue
[rp
];
273 caddr
= unsol
->queue
[rp
+ 1];
274 if (! (caddr
& (1 << 4))) /* no unsolicited event? */
276 codec
= bus
->caddr_tbl
[caddr
& 0x0f];
277 if (codec
&& codec
->patch_ops
.unsol_event
)
278 codec
->patch_ops
.unsol_event(codec
, res
);
283 * initialize unsolicited queue
285 static int init_unsol_queue(struct hda_bus
*bus
)
287 struct hda_bus_unsolicited
*unsol
;
289 unsol
= kcalloc(1, sizeof(*unsol
), GFP_KERNEL
);
291 snd_printk(KERN_ERR
"hda_codec: can't allocate unsolicited queue\n");
294 unsol
->workq
= create_workqueue("hda_codec");
295 if (! unsol
->workq
) {
296 snd_printk(KERN_ERR
"hda_codec: can't create workqueue\n");
300 INIT_WORK(&unsol
->work
, process_unsol_events
, bus
);
308 static void snd_hda_codec_free(struct hda_codec
*codec
);
310 static int snd_hda_bus_free(struct hda_bus
*bus
)
312 struct list_head
*p
, *n
;
317 destroy_workqueue(bus
->unsol
->workq
);
320 list_for_each_safe(p
, n
, &bus
->codec_list
) {
321 struct hda_codec
*codec
= list_entry(p
, struct hda_codec
, list
);
322 snd_hda_codec_free(codec
);
324 if (bus
->ops
.private_free
)
325 bus
->ops
.private_free(bus
);
330 static int snd_hda_bus_dev_free(snd_device_t
*device
)
332 struct hda_bus
*bus
= device
->device_data
;
333 return snd_hda_bus_free(bus
);
337 * snd_hda_bus_new - create a HDA bus
338 * @card: the card entry
339 * @temp: the template for hda_bus information
340 * @busp: the pointer to store the created bus instance
342 * Returns 0 if successful, or a negative error code.
344 int snd_hda_bus_new(snd_card_t
*card
, const struct hda_bus_template
*temp
,
345 struct hda_bus
**busp
)
349 static snd_device_ops_t dev_ops
= {
350 .dev_free
= snd_hda_bus_dev_free
,
353 snd_assert(temp
, return -EINVAL
);
354 snd_assert(temp
->ops
.command
&& temp
->ops
.get_response
, return -EINVAL
);
359 bus
= kcalloc(1, sizeof(*bus
), GFP_KERNEL
);
361 snd_printk(KERN_ERR
"can't allocate struct hda_bus\n");
366 bus
->private_data
= temp
->private_data
;
367 bus
->pci
= temp
->pci
;
368 bus
->modelname
= temp
->modelname
;
369 bus
->ops
= temp
->ops
;
371 init_MUTEX(&bus
->cmd_mutex
);
372 INIT_LIST_HEAD(&bus
->codec_list
);
374 init_unsol_queue(bus
);
376 if ((err
= snd_device_new(card
, SNDRV_DEV_BUS
, bus
, &dev_ops
)) < 0) {
377 snd_hda_bus_free(bus
);
387 * find a matching codec preset
389 static const struct hda_codec_preset
*find_codec_preset(struct hda_codec
*codec
)
391 const struct hda_codec_preset
**tbl
, *preset
;
393 for (tbl
= hda_preset_tables
; *tbl
; tbl
++) {
394 for (preset
= *tbl
; preset
->id
; preset
++) {
395 u32 mask
= preset
->mask
;
398 if (preset
->id
== (codec
->vendor_id
& mask
))
406 * snd_hda_get_codec_name - store the codec name
408 void snd_hda_get_codec_name(struct hda_codec
*codec
,
409 char *name
, int namelen
)
411 const struct hda_vendor_id
*c
;
412 const char *vendor
= NULL
;
413 u16 vendor_id
= codec
->vendor_id
>> 16;
416 for (c
= hda_vendor_ids
; c
->id
; c
++) {
417 if (c
->id
== vendor_id
) {
423 sprintf(tmp
, "Generic %04x", vendor_id
);
426 if (codec
->preset
&& codec
->preset
->name
)
427 snprintf(name
, namelen
, "%s %s", vendor
, codec
->preset
->name
);
429 snprintf(name
, namelen
, "%s ID %x", vendor
, codec
->vendor_id
& 0xffff);
433 * look for an AFG node
435 * return 0 if not found
437 static int look_for_afg_node(struct hda_codec
*codec
)
442 total_nodes
= snd_hda_get_sub_nodes(codec
, AC_NODE_ROOT
, &nid
);
443 for (i
= 0; i
< total_nodes
; i
++, nid
++) {
444 if ((snd_hda_param_read(codec
, nid
, AC_PAR_FUNCTION_TYPE
) & 0xff) ==
445 AC_GRP_AUDIO_FUNCTION
)
454 static void snd_hda_codec_free(struct hda_codec
*codec
)
458 list_del(&codec
->list
);
459 codec
->bus
->caddr_tbl
[codec
->addr
] = NULL
;
460 if (codec
->patch_ops
.free
)
461 codec
->patch_ops
.free(codec
);
465 static void init_amp_hash(struct hda_codec
*codec
);
468 * snd_hda_codec_new - create a HDA codec
469 * @bus: the bus to assign
470 * @codec_addr: the codec address
471 * @codecp: the pointer to store the generated codec
473 * Returns 0 if successful, or a negative error code.
475 int snd_hda_codec_new(struct hda_bus
*bus
, unsigned int codec_addr
,
476 struct hda_codec
**codecp
)
478 struct hda_codec
*codec
;
482 snd_assert(bus
, return -EINVAL
);
483 snd_assert(codec_addr
<= HDA_MAX_CODEC_ADDRESS
, return -EINVAL
);
485 if (bus
->caddr_tbl
[codec_addr
]) {
486 snd_printk(KERN_ERR
"hda_codec: address 0x%x is already occupied\n", codec_addr
);
490 codec
= kcalloc(1, sizeof(*codec
), GFP_KERNEL
);
492 snd_printk(KERN_ERR
"can't allocate struct hda_codec\n");
497 codec
->addr
= codec_addr
;
498 init_MUTEX(&codec
->spdif_mutex
);
499 init_amp_hash(codec
);
501 list_add_tail(&codec
->list
, &bus
->codec_list
);
502 bus
->caddr_tbl
[codec_addr
] = codec
;
504 codec
->vendor_id
= snd_hda_param_read(codec
, AC_NODE_ROOT
, AC_PAR_VENDOR_ID
);
505 codec
->subsystem_id
= snd_hda_param_read(codec
, AC_NODE_ROOT
, AC_PAR_SUBSYSTEM_ID
);
506 codec
->revision_id
= snd_hda_param_read(codec
, AC_NODE_ROOT
, AC_PAR_REV_ID
);
508 /* FIXME: support for multiple AFGs? */
509 codec
->afg
= look_for_afg_node(codec
);
511 snd_printk(KERN_ERR
"hda_codec: no AFG node found\n");
512 snd_hda_codec_free(codec
);
516 codec
->preset
= find_codec_preset(codec
);
517 if (! *bus
->card
->mixername
)
518 snd_hda_get_codec_name(codec
, bus
->card
->mixername
,
519 sizeof(bus
->card
->mixername
));
521 if (codec
->preset
&& codec
->preset
->patch
)
522 err
= codec
->preset
->patch(codec
);
524 err
= snd_hda_parse_generic_codec(codec
);
526 snd_hda_codec_free(codec
);
530 snd_hda_codec_proc_new(codec
);
532 sprintf(component
, "HDA:%08x", codec
->vendor_id
);
533 snd_component_add(codec
->bus
->card
, component
);
541 * snd_hda_codec_setup_stream - set up the codec for streaming
542 * @codec: the CODEC to set up
543 * @nid: the NID to set up
544 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
545 * @channel_id: channel id to pass, zero based.
546 * @format: stream format.
548 void snd_hda_codec_setup_stream(struct hda_codec
*codec
, hda_nid_t nid
, u32 stream_tag
,
549 int channel_id
, int format
)
551 snd_printdd("hda_codec_setup_stream: NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
552 nid
, stream_tag
, channel_id
, format
);
553 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_CHANNEL_STREAMID
,
554 (stream_tag
<< 4) | channel_id
);
556 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_STREAM_FORMAT
, format
);
561 * amp access functions
564 #define HDA_HASH_KEY(nid,dir,idx) (u32)((nid) + (idx) * 32 + (dir) * 64)
565 #define INFO_AMP_CAPS (1<<0)
566 #define INFO_AMP_VOL (1<<1)
568 /* initialize the hash table */
569 static void init_amp_hash(struct hda_codec
*codec
)
571 memset(codec
->amp_hash
, 0xff, sizeof(codec
->amp_hash
));
572 codec
->num_amp_entries
= 0;
575 /* query the hash. allocate an entry if not found. */
576 static struct hda_amp_info
*get_alloc_amp_hash(struct hda_codec
*codec
, u32 key
)
578 u16 idx
= key
% (u16
)ARRAY_SIZE(codec
->amp_hash
);
579 u16 cur
= codec
->amp_hash
[idx
];
580 struct hda_amp_info
*info
;
582 while (cur
!= 0xffff) {
583 info
= &codec
->amp_info
[cur
];
584 if (info
->key
== key
)
589 /* add a new hash entry */
590 if (codec
->num_amp_entries
>= ARRAY_SIZE(codec
->amp_info
)) {
591 snd_printk(KERN_ERR
"hda_codec: Tooooo many amps!\n");
594 cur
= codec
->num_amp_entries
++;
595 info
= &codec
->amp_info
[cur
];
597 info
->status
= 0; /* not initialized yet */
598 info
->next
= codec
->amp_hash
[idx
];
599 codec
->amp_hash
[idx
] = cur
;
605 * query AMP capabilities for the given widget and direction
607 static u32
query_amp_caps(struct hda_codec
*codec
, hda_nid_t nid
, int direction
)
609 struct hda_amp_info
*info
= get_alloc_amp_hash(codec
, HDA_HASH_KEY(nid
, direction
, 0));
613 if (! (info
->status
& INFO_AMP_CAPS
)) {
614 if (!(snd_hda_param_read(codec
, nid
, AC_PAR_AUDIO_WIDGET_CAP
) & AC_WCAP_AMP_OVRD
))
616 info
->amp_caps
= snd_hda_param_read(codec
, nid
, direction
== HDA_OUTPUT
?
617 AC_PAR_AMP_OUT_CAP
: AC_PAR_AMP_IN_CAP
);
618 info
->status
|= INFO_AMP_CAPS
;
620 return info
->amp_caps
;
624 * read the current volume to info
625 * if the cache exists, read from the cache.
627 static void get_vol_mute(struct hda_codec
*codec
, struct hda_amp_info
*info
,
628 hda_nid_t nid
, int ch
, int direction
, int index
)
632 if (info
->status
& (INFO_AMP_VOL
<< ch
))
635 parm
= ch
? AC_AMP_GET_RIGHT
: AC_AMP_GET_LEFT
;
636 parm
|= direction
== HDA_OUTPUT
? AC_AMP_GET_OUTPUT
: AC_AMP_GET_INPUT
;
638 val
= snd_hda_codec_read(codec
, nid
, 0, AC_VERB_GET_AMP_GAIN_MUTE
, parm
);
639 info
->vol
[ch
] = val
& 0xff;
640 info
->status
|= INFO_AMP_VOL
<< ch
;
644 * write the current volume in info to the h/w
646 static void put_vol_mute(struct hda_codec
*codec
,
647 hda_nid_t nid
, int ch
, int direction
, int index
, int val
)
651 parm
= ch
? AC_AMP_SET_RIGHT
: AC_AMP_SET_LEFT
;
652 parm
|= direction
== HDA_OUTPUT
? AC_AMP_SET_OUTPUT
: AC_AMP_SET_INPUT
;
653 parm
|= index
<< AC_AMP_SET_INDEX_SHIFT
;
655 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_AMP_GAIN_MUTE
, parm
);
659 * read/write AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit.
661 int snd_hda_codec_amp_read(struct hda_codec
*codec
, hda_nid_t nid
, int ch
, int direction
, int index
)
663 struct hda_amp_info
*info
= get_alloc_amp_hash(codec
, HDA_HASH_KEY(nid
, direction
, index
));
666 get_vol_mute(codec
, info
, nid
, ch
, direction
, index
);
667 return info
->vol
[ch
];
670 int snd_hda_codec_amp_write(struct hda_codec
*codec
, hda_nid_t nid
, int ch
, int direction
, int idx
, int val
)
672 struct hda_amp_info
*info
= get_alloc_amp_hash(codec
, HDA_HASH_KEY(nid
, direction
, idx
));
675 get_vol_mute(codec
, info
, nid
, ch
, direction
, idx
);
676 if (info
->vol
[ch
] == val
&& ! codec
->in_resume
)
678 put_vol_mute(codec
, nid
, ch
, direction
, idx
, val
);
685 * AMP control callbacks
687 /* retrieve parameters from private_value */
688 #define get_amp_nid(kc) ((kc)->private_value & 0xffff)
689 #define get_amp_channels(kc) (((kc)->private_value >> 16) & 0x3)
690 #define get_amp_direction(kc) (((kc)->private_value >> 18) & 0x1)
691 #define get_amp_index(kc) (((kc)->private_value >> 19) & 0xf)
694 int snd_hda_mixer_amp_volume_info(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_info_t
*uinfo
)
696 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
697 u16 nid
= get_amp_nid(kcontrol
);
698 u8 chs
= get_amp_channels(kcontrol
);
699 int dir
= get_amp_direction(kcontrol
);
702 caps
= query_amp_caps(codec
, nid
, dir
);
703 caps
= (caps
& AC_AMPCAP_NUM_STEPS
) >> AC_AMPCAP_NUM_STEPS_SHIFT
; /* num steps */
705 printk(KERN_WARNING
"hda_codec: num_steps = 0 for NID=0x%x\n", nid
);
708 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
709 uinfo
->count
= chs
== 3 ? 2 : 1;
710 uinfo
->value
.integer
.min
= 0;
711 uinfo
->value
.integer
.max
= caps
;
715 int snd_hda_mixer_amp_volume_get(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
717 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
718 hda_nid_t nid
= get_amp_nid(kcontrol
);
719 int chs
= get_amp_channels(kcontrol
);
720 int dir
= get_amp_direction(kcontrol
);
721 int idx
= get_amp_index(kcontrol
);
722 long *valp
= ucontrol
->value
.integer
.value
;
725 *valp
++ = snd_hda_codec_amp_read(codec
, nid
, 0, dir
, idx
) & 0x7f;
727 *valp
= snd_hda_codec_amp_read(codec
, nid
, 1, dir
, idx
) & 0x7f;
731 int snd_hda_mixer_amp_volume_put(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
733 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
734 hda_nid_t nid
= get_amp_nid(kcontrol
);
735 int chs
= get_amp_channels(kcontrol
);
736 int dir
= get_amp_direction(kcontrol
);
737 int idx
= get_amp_index(kcontrol
);
739 long *valp
= ucontrol
->value
.integer
.value
;
744 val
|= snd_hda_codec_amp_read(codec
, nid
, 0, dir
, idx
) & 0x80;
745 change
= snd_hda_codec_amp_write(codec
, nid
, 0, dir
, idx
, val
);
750 val
|= snd_hda_codec_amp_read(codec
, nid
, 1, dir
, idx
) & 0x80;
751 change
|= snd_hda_codec_amp_write(codec
, nid
, 1, dir
, idx
, val
);
757 int snd_hda_mixer_amp_switch_info(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_info_t
*uinfo
)
759 int chs
= get_amp_channels(kcontrol
);
761 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
762 uinfo
->count
= chs
== 3 ? 2 : 1;
763 uinfo
->value
.integer
.min
= 0;
764 uinfo
->value
.integer
.max
= 1;
768 int snd_hda_mixer_amp_switch_get(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
770 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
771 hda_nid_t nid
= get_amp_nid(kcontrol
);
772 int chs
= get_amp_channels(kcontrol
);
773 int dir
= get_amp_direction(kcontrol
);
774 int idx
= get_amp_index(kcontrol
);
775 long *valp
= ucontrol
->value
.integer
.value
;
778 *valp
++ = (snd_hda_codec_amp_read(codec
, nid
, 0, dir
, idx
) & 0x80) ? 0 : 1;
780 *valp
= (snd_hda_codec_amp_read(codec
, nid
, 1, dir
, idx
) & 0x80) ? 0 : 1;
784 int snd_hda_mixer_amp_switch_put(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
786 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
787 hda_nid_t nid
= get_amp_nid(kcontrol
);
788 int chs
= get_amp_channels(kcontrol
);
789 int dir
= get_amp_direction(kcontrol
);
790 int idx
= get_amp_index(kcontrol
);
792 long *valp
= ucontrol
->value
.integer
.value
;
796 val
= snd_hda_codec_amp_read(codec
, nid
, 0, dir
, idx
) & 0x7f;
797 val
|= *valp
? 0 : 0x80;
798 change
= snd_hda_codec_amp_write(codec
, nid
, 0, dir
, idx
, val
);
802 val
= snd_hda_codec_amp_read(codec
, nid
, 1, dir
, idx
) & 0x7f;
803 val
|= *valp
? 0 : 0x80;
804 change
= snd_hda_codec_amp_write(codec
, nid
, 1, dir
, idx
, val
);
813 static int snd_hda_spdif_mask_info(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_info_t
*uinfo
)
815 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
820 static int snd_hda_spdif_cmask_get(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
822 ucontrol
->value
.iec958
.status
[0] = IEC958_AES0_PROFESSIONAL
|
823 IEC958_AES0_NONAUDIO
|
824 IEC958_AES0_CON_EMPHASIS_5015
|
825 IEC958_AES0_CON_NOT_COPYRIGHT
;
826 ucontrol
->value
.iec958
.status
[1] = IEC958_AES1_CON_CATEGORY
|
827 IEC958_AES1_CON_ORIGINAL
;
831 static int snd_hda_spdif_pmask_get(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
833 ucontrol
->value
.iec958
.status
[0] = IEC958_AES0_PROFESSIONAL
|
834 IEC958_AES0_NONAUDIO
|
835 IEC958_AES0_PRO_EMPHASIS_5015
;
839 static int snd_hda_spdif_default_get(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
841 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
843 ucontrol
->value
.iec958
.status
[0] = codec
->spdif_status
& 0xff;
844 ucontrol
->value
.iec958
.status
[1] = (codec
->spdif_status
>> 8) & 0xff;
845 ucontrol
->value
.iec958
.status
[2] = (codec
->spdif_status
>> 16) & 0xff;
846 ucontrol
->value
.iec958
.status
[3] = (codec
->spdif_status
>> 24) & 0xff;
851 /* convert from SPDIF status bits to HDA SPDIF bits
852 * bit 0 (DigEn) is always set zero (to be filled later)
854 static unsigned short convert_from_spdif_status(unsigned int sbits
)
856 unsigned short val
= 0;
858 if (sbits
& IEC958_AES0_PROFESSIONAL
)
860 if (sbits
& IEC958_AES0_NONAUDIO
)
862 if (sbits
& IEC958_AES0_PROFESSIONAL
) {
863 if ((sbits
& IEC958_AES0_PRO_EMPHASIS
) == IEC958_AES0_PRO_EMPHASIS_5015
)
866 if ((sbits
& IEC958_AES0_CON_EMPHASIS
) == IEC958_AES0_CON_EMPHASIS_5015
)
868 if (! (sbits
& IEC958_AES0_CON_NOT_COPYRIGHT
))
870 if (sbits
& (IEC958_AES1_CON_ORIGINAL
<< 8))
872 val
|= sbits
& (IEC958_AES1_CON_CATEGORY
<< 8);
877 /* convert to SPDIF status bits from HDA SPDIF bits
879 static unsigned int convert_to_spdif_status(unsigned short val
)
881 unsigned int sbits
= 0;
884 sbits
|= IEC958_AES0_NONAUDIO
;
886 sbits
|= IEC958_AES0_PROFESSIONAL
;
887 if (sbits
& IEC958_AES0_PROFESSIONAL
) {
888 if (sbits
& (1 << 3))
889 sbits
|= IEC958_AES0_PRO_EMPHASIS_5015
;
892 sbits
|= IEC958_AES0_CON_EMPHASIS_5015
;
893 if (! (val
& (1 << 4)))
894 sbits
|= IEC958_AES0_CON_NOT_COPYRIGHT
;
896 sbits
|= (IEC958_AES1_CON_ORIGINAL
<< 8);
897 sbits
|= val
& (0x7f << 8);
902 static int snd_hda_spdif_default_put(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
904 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
905 hda_nid_t nid
= kcontrol
->private_value
;
909 down(&codec
->spdif_mutex
);
910 codec
->spdif_status
= ucontrol
->value
.iec958
.status
[0] |
911 ((unsigned int)ucontrol
->value
.iec958
.status
[1] << 8) |
912 ((unsigned int)ucontrol
->value
.iec958
.status
[2] << 16) |
913 ((unsigned int)ucontrol
->value
.iec958
.status
[3] << 24);
914 val
= convert_from_spdif_status(codec
->spdif_status
);
915 val
|= codec
->spdif_ctls
& 1;
916 change
= codec
->spdif_ctls
!= val
;
917 codec
->spdif_ctls
= val
;
919 if (change
|| codec
->in_resume
) {
920 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_DIGI_CONVERT_1
, val
& 0xff);
921 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_DIGI_CONVERT_2
, val
>> 8);
924 up(&codec
->spdif_mutex
);
928 static int snd_hda_spdif_out_switch_info(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_info_t
*uinfo
)
930 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
932 uinfo
->value
.integer
.min
= 0;
933 uinfo
->value
.integer
.max
= 1;
937 static int snd_hda_spdif_out_switch_get(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
939 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
941 ucontrol
->value
.integer
.value
[0] = codec
->spdif_ctls
& 1;
945 static int snd_hda_spdif_out_switch_put(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
947 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
948 hda_nid_t nid
= kcontrol
->private_value
;
952 down(&codec
->spdif_mutex
);
953 val
= codec
->spdif_ctls
& ~1;
954 if (ucontrol
->value
.integer
.value
[0])
956 change
= codec
->spdif_ctls
!= val
;
957 if (change
|| codec
->in_resume
) {
958 codec
->spdif_ctls
= val
;
959 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_DIGI_CONVERT_1
, val
& 0xff);
960 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
961 AC_AMP_SET_RIGHT
| AC_AMP_SET_LEFT
|
962 AC_AMP_SET_OUTPUT
| ((val
& 1) ? 0 : 0x80));
964 up(&codec
->spdif_mutex
);
968 static snd_kcontrol_new_t dig_mixes
[] = {
970 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
971 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
972 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,CON_MASK
),
973 .info
= snd_hda_spdif_mask_info
,
974 .get
= snd_hda_spdif_cmask_get
,
977 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
978 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
979 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,PRO_MASK
),
980 .info
= snd_hda_spdif_mask_info
,
981 .get
= snd_hda_spdif_pmask_get
,
984 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
985 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,DEFAULT
),
986 .info
= snd_hda_spdif_mask_info
,
987 .get
= snd_hda_spdif_default_get
,
988 .put
= snd_hda_spdif_default_put
,
991 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
992 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,SWITCH
),
993 .info
= snd_hda_spdif_out_switch_info
,
994 .get
= snd_hda_spdif_out_switch_get
,
995 .put
= snd_hda_spdif_out_switch_put
,
1001 * snd_hda_create_spdif_out_ctls - create Output SPDIF-related controls
1002 * @codec: the HDA codec
1003 * @nid: audio out widget NID
1005 * Creates controls related with the SPDIF output.
1006 * Called from each patch supporting the SPDIF out.
1008 * Returns 0 if successful, or a negative error code.
1010 int snd_hda_create_spdif_out_ctls(struct hda_codec
*codec
, hda_nid_t nid
)
1013 snd_kcontrol_t
*kctl
;
1014 snd_kcontrol_new_t
*dig_mix
;
1016 for (dig_mix
= dig_mixes
; dig_mix
->name
; dig_mix
++) {
1017 kctl
= snd_ctl_new1(dig_mix
, codec
);
1018 kctl
->private_value
= nid
;
1019 if ((err
= snd_ctl_add(codec
->bus
->card
, kctl
)) < 0)
1022 codec
->spdif_ctls
= snd_hda_codec_read(codec
, nid
, 0, AC_VERB_GET_DIGI_CONVERT
, 0);
1023 codec
->spdif_status
= convert_to_spdif_status(codec
->spdif_ctls
);
1031 #define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
1033 static int snd_hda_spdif_in_switch_get(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
1035 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1037 ucontrol
->value
.integer
.value
[0] = codec
->spdif_in_enable
;
1041 static int snd_hda_spdif_in_switch_put(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
1043 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1044 hda_nid_t nid
= kcontrol
->private_value
;
1045 unsigned int val
= !!ucontrol
->value
.integer
.value
[0];
1048 down(&codec
->spdif_mutex
);
1049 change
= codec
->spdif_in_enable
!= val
;
1050 if (change
|| codec
->in_resume
) {
1051 codec
->spdif_in_enable
= val
;
1052 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_DIGI_CONVERT_1
, val
);
1054 up(&codec
->spdif_mutex
);
1058 static int snd_hda_spdif_in_status_get(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
1060 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1061 hda_nid_t nid
= kcontrol
->private_value
;
1065 val
= snd_hda_codec_read(codec
, nid
, 0, AC_VERB_GET_DIGI_CONVERT
, 0);
1066 sbits
= convert_to_spdif_status(val
);
1067 ucontrol
->value
.iec958
.status
[0] = sbits
;
1068 ucontrol
->value
.iec958
.status
[1] = sbits
>> 8;
1069 ucontrol
->value
.iec958
.status
[2] = sbits
>> 16;
1070 ucontrol
->value
.iec958
.status
[3] = sbits
>> 24;
1074 static snd_kcontrol_new_t dig_in_ctls
[] = {
1076 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1077 .name
= SNDRV_CTL_NAME_IEC958("",CAPTURE
,SWITCH
),
1078 .info
= snd_hda_spdif_in_switch_info
,
1079 .get
= snd_hda_spdif_in_switch_get
,
1080 .put
= snd_hda_spdif_in_switch_put
,
1083 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
1084 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1085 .name
= SNDRV_CTL_NAME_IEC958("",CAPTURE
,DEFAULT
),
1086 .info
= snd_hda_spdif_mask_info
,
1087 .get
= snd_hda_spdif_in_status_get
,
1093 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
1094 * @codec: the HDA codec
1095 * @nid: audio in widget NID
1097 * Creates controls related with the SPDIF input.
1098 * Called from each patch supporting the SPDIF in.
1100 * Returns 0 if successful, or a negative error code.
1102 int snd_hda_create_spdif_in_ctls(struct hda_codec
*codec
, hda_nid_t nid
)
1105 snd_kcontrol_t
*kctl
;
1106 snd_kcontrol_new_t
*dig_mix
;
1108 for (dig_mix
= dig_in_ctls
; dig_mix
->name
; dig_mix
++) {
1109 kctl
= snd_ctl_new1(dig_mix
, codec
);
1110 kctl
->private_value
= nid
;
1111 if ((err
= snd_ctl_add(codec
->bus
->card
, kctl
)) < 0)
1114 codec
->spdif_in_enable
= snd_hda_codec_read(codec
, nid
, 0, AC_VERB_GET_DIGI_CONVERT
, 0) & 1;
1120 * snd_hda_build_controls - build mixer controls
1123 * Creates mixer controls for each codec included in the bus.
1125 * Returns 0 if successful, otherwise a negative error code.
1127 int snd_hda_build_controls(struct hda_bus
*bus
)
1129 struct list_head
*p
;
1131 /* build controls */
1132 list_for_each(p
, &bus
->codec_list
) {
1133 struct hda_codec
*codec
= list_entry(p
, struct hda_codec
, list
);
1135 if (! codec
->patch_ops
.build_controls
)
1137 err
= codec
->patch_ops
.build_controls(codec
);
1143 list_for_each(p
, &bus
->codec_list
) {
1144 struct hda_codec
*codec
= list_entry(p
, struct hda_codec
, list
);
1146 if (! codec
->patch_ops
.init
)
1148 err
= codec
->patch_ops
.init(codec
);
1159 static unsigned int rate_bits
[][3] = {
1160 /* rate in Hz, ALSA rate bitmask, HDA format value */
1161 { 8000, SNDRV_PCM_RATE_8000
, 0x0500 }, /* 1/6 x 48 */
1162 { 11025, SNDRV_PCM_RATE_11025
, 0x4300 }, /* 1/4 x 44 */
1163 { 16000, SNDRV_PCM_RATE_16000
, 0x0200 }, /* 1/3 x 48 */
1164 { 22050, SNDRV_PCM_RATE_22050
, 0x4100 }, /* 1/2 x 44 */
1165 { 32000, SNDRV_PCM_RATE_32000
, 0x0a00 }, /* 2/3 x 48 */
1166 { 44100, SNDRV_PCM_RATE_44100
, 0x4000 }, /* 44 */
1167 { 48000, SNDRV_PCM_RATE_48000
, 0x0000 }, /* 48 */
1168 { 88200, SNDRV_PCM_RATE_88200
, 0x4800 }, /* 2 x 44 */
1169 { 96000, SNDRV_PCM_RATE_96000
, 0x0800 }, /* 2 x 48 */
1170 { 176400, SNDRV_PCM_RATE_176400
, 0x5800 },/* 4 x 44 */
1171 { 192000, SNDRV_PCM_RATE_192000
, 0x1800 }, /* 4 x 48 */
1176 * snd_hda_calc_stream_format - calculate format bitset
1177 * @rate: the sample rate
1178 * @channels: the number of channels
1179 * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
1180 * @maxbps: the max. bps
1182 * Calculate the format bitset from the given rate, channels and th PCM format.
1184 * Return zero if invalid.
1186 unsigned int snd_hda_calc_stream_format(unsigned int rate
,
1187 unsigned int channels
,
1188 unsigned int format
,
1189 unsigned int maxbps
)
1192 unsigned int val
= 0;
1194 for (i
= 0; rate_bits
[i
][0]; i
++)
1195 if (rate_bits
[i
][0] == rate
) {
1196 val
= rate_bits
[i
][2];
1199 if (! rate_bits
[i
][0]) {
1200 snd_printdd("invalid rate %d\n", rate
);
1204 if (channels
== 0 || channels
> 8) {
1205 snd_printdd("invalid channels %d\n", channels
);
1208 val
|= channels
- 1;
1210 switch (snd_pcm_format_width(format
)) {
1211 case 8: val
|= 0x00; break;
1212 case 16: val
|= 0x10; break;
1218 else if (maxbps
>= 24)
1224 snd_printdd("invalid format width %d\n", snd_pcm_format_width(format
));
1232 * snd_hda_query_supported_pcm - query the supported PCM rates and formats
1233 * @codec: the HDA codec
1234 * @nid: NID to query
1235 * @ratesp: the pointer to store the detected rate bitflags
1236 * @formatsp: the pointer to store the detected formats
1237 * @bpsp: the pointer to store the detected format widths
1239 * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp
1240 * or @bsps argument is ignored.
1242 * Returns 0 if successful, otherwise a negative error code.
1244 int snd_hda_query_supported_pcm(struct hda_codec
*codec
, hda_nid_t nid
,
1245 u32
*ratesp
, u64
*formatsp
, unsigned int *bpsp
)
1248 unsigned int val
, streams
;
1251 if (nid
!= codec
->afg
&&
1252 snd_hda_param_read(codec
, nid
, AC_PAR_AUDIO_WIDGET_CAP
) & AC_WCAP_FORMAT_OVRD
) {
1253 val
= snd_hda_param_read(codec
, nid
, AC_PAR_PCM
);
1258 val
= snd_hda_param_read(codec
, codec
->afg
, AC_PAR_PCM
);
1262 for (i
= 0; rate_bits
[i
][0]; i
++) {
1264 rates
|= rate_bits
[i
][1];
1269 if (formatsp
|| bpsp
) {
1274 wcaps
= snd_hda_param_read(codec
, nid
, AC_PAR_AUDIO_WIDGET_CAP
);
1275 streams
= snd_hda_param_read(codec
, nid
, AC_PAR_STREAM
);
1279 streams
= snd_hda_param_read(codec
, codec
->afg
, AC_PAR_STREAM
);
1285 if (streams
& AC_SUPFMT_PCM
) {
1286 if (val
& AC_SUPPCM_BITS_8
) {
1287 formats
|= SNDRV_PCM_FMTBIT_U8
;
1290 if (val
& AC_SUPPCM_BITS_16
) {
1291 formats
|= SNDRV_PCM_FMTBIT_S16_LE
;
1294 if (wcaps
& AC_WCAP_DIGITAL
) {
1295 if (val
& AC_SUPPCM_BITS_32
)
1296 formats
|= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
;
1297 if (val
& (AC_SUPPCM_BITS_20
|AC_SUPPCM_BITS_24
))
1298 formats
|= SNDRV_PCM_FMTBIT_S32_LE
;
1299 if (val
& AC_SUPPCM_BITS_24
)
1301 else if (val
& AC_SUPPCM_BITS_20
)
1303 } else if (val
& (AC_SUPPCM_BITS_20
|AC_SUPPCM_BITS_24
|AC_SUPPCM_BITS_32
)) {
1304 formats
|= SNDRV_PCM_FMTBIT_S32_LE
;
1305 if (val
& AC_SUPPCM_BITS_32
)
1307 else if (val
& AC_SUPPCM_BITS_20
)
1309 else if (val
& AC_SUPPCM_BITS_24
)
1313 else if (streams
== AC_SUPFMT_FLOAT32
) { /* should be exclusive */
1314 formats
|= SNDRV_PCM_FMTBIT_FLOAT_LE
;
1316 } else if (streams
== AC_SUPFMT_AC3
) { /* should be exclusive */
1317 /* temporary hack: we have still no proper support
1318 * for the direct AC3 stream...
1320 formats
|= SNDRV_PCM_FMTBIT_U8
;
1324 *formatsp
= formats
;
1333 * snd_hda_is_supported_format - check whether the given node supports the format val
1335 * Returns 1 if supported, 0 if not.
1337 int snd_hda_is_supported_format(struct hda_codec
*codec
, hda_nid_t nid
,
1338 unsigned int format
)
1341 unsigned int val
= 0, rate
, stream
;
1343 if (nid
!= codec
->afg
&&
1344 snd_hda_param_read(codec
, nid
, AC_PAR_AUDIO_WIDGET_CAP
) & AC_WCAP_FORMAT_OVRD
) {
1345 val
= snd_hda_param_read(codec
, nid
, AC_PAR_PCM
);
1350 val
= snd_hda_param_read(codec
, codec
->afg
, AC_PAR_PCM
);
1355 rate
= format
& 0xff00;
1356 for (i
= 0; rate_bits
[i
][0]; i
++)
1357 if (rate_bits
[i
][2] == rate
) {
1362 if (! rate_bits
[i
][0])
1365 stream
= snd_hda_param_read(codec
, nid
, AC_PAR_STREAM
);
1368 if (! stream
&& nid
!= codec
->afg
)
1369 stream
= snd_hda_param_read(codec
, codec
->afg
, AC_PAR_STREAM
);
1370 if (! stream
|| stream
== -1)
1373 if (stream
& AC_SUPFMT_PCM
) {
1374 switch (format
& 0xf0) {
1376 if (! (val
& AC_SUPPCM_BITS_8
))
1380 if (! (val
& AC_SUPPCM_BITS_16
))
1384 if (! (val
& AC_SUPPCM_BITS_20
))
1388 if (! (val
& AC_SUPPCM_BITS_24
))
1392 if (! (val
& AC_SUPPCM_BITS_32
))
1399 /* FIXME: check for float32 and AC3? */
1408 static int hda_pcm_default_open_close(struct hda_pcm_stream
*hinfo
,
1409 struct hda_codec
*codec
,
1410 snd_pcm_substream_t
*substream
)
1415 static int hda_pcm_default_prepare(struct hda_pcm_stream
*hinfo
,
1416 struct hda_codec
*codec
,
1417 unsigned int stream_tag
,
1418 unsigned int format
,
1419 snd_pcm_substream_t
*substream
)
1421 snd_hda_codec_setup_stream(codec
, hinfo
->nid
, stream_tag
, 0, format
);
1425 static int hda_pcm_default_cleanup(struct hda_pcm_stream
*hinfo
,
1426 struct hda_codec
*codec
,
1427 snd_pcm_substream_t
*substream
)
1429 snd_hda_codec_setup_stream(codec
, hinfo
->nid
, 0, 0, 0);
1433 static int set_pcm_default_values(struct hda_codec
*codec
, struct hda_pcm_stream
*info
)
1436 /* query support PCM information from the given NID */
1437 if (! info
->rates
|| ! info
->formats
)
1438 snd_hda_query_supported_pcm(codec
, info
->nid
,
1439 info
->rates
? NULL
: &info
->rates
,
1440 info
->formats
? NULL
: &info
->formats
,
1441 info
->maxbps
? NULL
: &info
->maxbps
);
1443 if (info
->ops
.open
== NULL
)
1444 info
->ops
.open
= hda_pcm_default_open_close
;
1445 if (info
->ops
.close
== NULL
)
1446 info
->ops
.close
= hda_pcm_default_open_close
;
1447 if (info
->ops
.prepare
== NULL
) {
1448 snd_assert(info
->nid
, return -EINVAL
);
1449 info
->ops
.prepare
= hda_pcm_default_prepare
;
1451 if (info
->ops
.prepare
== NULL
) {
1452 snd_assert(info
->nid
, return -EINVAL
);
1453 info
->ops
.prepare
= hda_pcm_default_prepare
;
1455 if (info
->ops
.cleanup
== NULL
) {
1456 snd_assert(info
->nid
, return -EINVAL
);
1457 info
->ops
.cleanup
= hda_pcm_default_cleanup
;
1463 * snd_hda_build_pcms - build PCM information
1466 * Create PCM information for each codec included in the bus.
1468 * The build_pcms codec patch is requested to set up codec->num_pcms and
1469 * codec->pcm_info properly. The array is referred by the top-level driver
1470 * to create its PCM instances.
1471 * The allocated codec->pcm_info should be released in codec->patch_ops.free
1474 * At least, substreams, channels_min and channels_max must be filled for
1475 * each stream. substreams = 0 indicates that the stream doesn't exist.
1476 * When rates and/or formats are zero, the supported values are queried
1477 * from the given nid. The nid is used also by the default ops.prepare
1478 * and ops.cleanup callbacks.
1480 * The driver needs to call ops.open in its open callback. Similarly,
1481 * ops.close is supposed to be called in the close callback.
1482 * ops.prepare should be called in the prepare or hw_params callback
1483 * with the proper parameters for set up.
1484 * ops.cleanup should be called in hw_free for clean up of streams.
1486 * This function returns 0 if successfull, or a negative error code.
1488 int snd_hda_build_pcms(struct hda_bus
*bus
)
1490 struct list_head
*p
;
1492 list_for_each(p
, &bus
->codec_list
) {
1493 struct hda_codec
*codec
= list_entry(p
, struct hda_codec
, list
);
1494 unsigned int pcm
, s
;
1496 if (! codec
->patch_ops
.build_pcms
)
1498 err
= codec
->patch_ops
.build_pcms(codec
);
1501 for (pcm
= 0; pcm
< codec
->num_pcms
; pcm
++) {
1502 for (s
= 0; s
< 2; s
++) {
1503 struct hda_pcm_stream
*info
;
1504 info
= &codec
->pcm_info
[pcm
].stream
[s
];
1505 if (! info
->substreams
)
1507 err
= set_pcm_default_values(codec
, info
);
1518 * snd_hda_check_board_config - compare the current codec with the config table
1519 * @codec: the HDA codec
1520 * @tbl: configuration table, terminated by null entries
1522 * Compares the modelname or PCI subsystem id of the current codec with the
1523 * given configuration table. If a matching entry is found, returns its
1524 * config value (supposed to be 0 or positive).
1526 * If no entries are matching, the function returns a negative value.
1528 int snd_hda_check_board_config(struct hda_codec
*codec
, struct hda_board_config
*tbl
)
1530 struct hda_board_config
*c
;
1532 if (codec
->bus
->modelname
) {
1533 for (c
= tbl
; c
->modelname
|| c
->pci_vendor
; c
++) {
1535 ! strcmp(codec
->bus
->modelname
, c
->modelname
)) {
1536 snd_printd(KERN_INFO
"hda_codec: model '%s' is selected\n", c
->modelname
);
1542 if (codec
->bus
->pci
) {
1543 u16 subsystem_vendor
, subsystem_device
;
1544 pci_read_config_word(codec
->bus
->pci
, PCI_SUBSYSTEM_VENDOR_ID
, &subsystem_vendor
);
1545 pci_read_config_word(codec
->bus
->pci
, PCI_SUBSYSTEM_ID
, &subsystem_device
);
1546 for (c
= tbl
; c
->modelname
|| c
->pci_vendor
; c
++) {
1547 if (c
->pci_vendor
== subsystem_vendor
&&
1548 c
->pci_device
== subsystem_device
)
1556 * snd_hda_add_new_ctls - create controls from the array
1557 * @codec: the HDA codec
1558 * @knew: the array of snd_kcontrol_new_t
1560 * This helper function creates and add new controls in the given array.
1561 * The array must be terminated with an empty entry as terminator.
1563 * Returns 0 if successful, or a negative error code.
1565 int snd_hda_add_new_ctls(struct hda_codec
*codec
, snd_kcontrol_new_t
*knew
)
1569 for (; knew
->name
; knew
++) {
1570 err
= snd_ctl_add(codec
->bus
->card
, snd_ctl_new1(knew
, codec
));
1581 int snd_hda_input_mux_info(const struct hda_input_mux
*imux
, snd_ctl_elem_info_t
*uinfo
)
1585 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
1587 uinfo
->value
.enumerated
.items
= imux
->num_items
;
1588 index
= uinfo
->value
.enumerated
.item
;
1589 if (index
>= imux
->num_items
)
1590 index
= imux
->num_items
- 1;
1591 strcpy(uinfo
->value
.enumerated
.name
, imux
->items
[index
].label
);
1595 int snd_hda_input_mux_put(struct hda_codec
*codec
, const struct hda_input_mux
*imux
,
1596 snd_ctl_elem_value_t
*ucontrol
, hda_nid_t nid
,
1597 unsigned int *cur_val
)
1601 idx
= ucontrol
->value
.enumerated
.item
[0];
1602 if (idx
>= imux
->num_items
)
1603 idx
= imux
->num_items
- 1;
1604 if (*cur_val
== idx
&& ! codec
->in_resume
)
1606 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_CONNECT_SEL
,
1607 imux
->items
[idx
].index
);
1614 * Multi-channel / digital-out PCM helper functions
1618 * open the digital out in the exclusive mode
1620 int snd_hda_multi_out_dig_open(struct hda_codec
*codec
, struct hda_multi_out
*mout
)
1622 down(&codec
->spdif_mutex
);
1623 if (mout
->dig_out_used
) {
1624 up(&codec
->spdif_mutex
);
1625 return -EBUSY
; /* already being used */
1627 mout
->dig_out_used
= HDA_DIG_EXCLUSIVE
;
1628 up(&codec
->spdif_mutex
);
1633 * release the digital out
1635 int snd_hda_multi_out_dig_close(struct hda_codec
*codec
, struct hda_multi_out
*mout
)
1637 down(&codec
->spdif_mutex
);
1638 mout
->dig_out_used
= 0;
1639 up(&codec
->spdif_mutex
);
1644 * set up more restrictions for analog out
1646 int snd_hda_multi_out_analog_open(struct hda_codec
*codec
, struct hda_multi_out
*mout
,
1647 snd_pcm_substream_t
*substream
)
1649 substream
->runtime
->hw
.channels_max
= mout
->max_channels
;
1650 return snd_pcm_hw_constraint_step(substream
->runtime
, 0,
1651 SNDRV_PCM_HW_PARAM_CHANNELS
, 2);
1655 * set up the i/o for analog out
1656 * when the digital out is available, copy the front out to digital out, too.
1658 int snd_hda_multi_out_analog_prepare(struct hda_codec
*codec
, struct hda_multi_out
*mout
,
1659 unsigned int stream_tag
,
1660 unsigned int format
,
1661 snd_pcm_substream_t
*substream
)
1663 hda_nid_t
*nids
= mout
->dac_nids
;
1664 int chs
= substream
->runtime
->channels
;
1667 down(&codec
->spdif_mutex
);
1668 if (mout
->dig_out_nid
&& mout
->dig_out_used
!= HDA_DIG_EXCLUSIVE
) {
1670 snd_hda_is_supported_format(codec
, mout
->dig_out_nid
, format
) &&
1671 ! (codec
->spdif_status
& IEC958_AES0_NONAUDIO
)) {
1672 mout
->dig_out_used
= HDA_DIG_ANALOG_DUP
;
1673 /* setup digital receiver */
1674 snd_hda_codec_setup_stream(codec
, mout
->dig_out_nid
,
1675 stream_tag
, 0, format
);
1677 mout
->dig_out_used
= 0;
1678 snd_hda_codec_setup_stream(codec
, mout
->dig_out_nid
, 0, 0, 0);
1681 up(&codec
->spdif_mutex
);
1684 snd_hda_codec_setup_stream(codec
, nids
[HDA_FRONT
], stream_tag
, 0, format
);
1686 /* headphone out will just decode front left/right (stereo) */
1687 snd_hda_codec_setup_stream(codec
, mout
->hp_nid
, stream_tag
, 0, format
);
1689 for (i
= 1; i
< mout
->num_dacs
; i
++) {
1690 if (i
== HDA_REAR
&& chs
== 2) /* copy front to rear */
1691 snd_hda_codec_setup_stream(codec
, nids
[i
], stream_tag
, 0, format
);
1692 else if (chs
>= (i
+ 1) * 2) /* independent out */
1693 snd_hda_codec_setup_stream(codec
, nids
[i
], stream_tag
, i
* 2,
1700 * clean up the setting for analog out
1702 int snd_hda_multi_out_analog_cleanup(struct hda_codec
*codec
, struct hda_multi_out
*mout
)
1704 hda_nid_t
*nids
= mout
->dac_nids
;
1707 for (i
= 0; i
< mout
->num_dacs
; i
++)
1708 snd_hda_codec_setup_stream(codec
, nids
[i
], 0, 0, 0);
1710 snd_hda_codec_setup_stream(codec
, mout
->hp_nid
, 0, 0, 0);
1711 down(&codec
->spdif_mutex
);
1712 if (mout
->dig_out_nid
&& mout
->dig_out_used
== HDA_DIG_ANALOG_DUP
) {
1713 snd_hda_codec_setup_stream(codec
, mout
->dig_out_nid
, 0, 0, 0);
1714 mout
->dig_out_used
= 0;
1716 up(&codec
->spdif_mutex
);
1726 * snd_hda_suspend - suspend the codecs
1728 * @state: suspsend state
1730 * Returns 0 if successful.
1732 int snd_hda_suspend(struct hda_bus
*bus
, pm_message_t state
)
1734 struct list_head
*p
;
1736 /* FIXME: should handle power widget capabilities */
1737 list_for_each(p
, &bus
->codec_list
) {
1738 struct hda_codec
*codec
= list_entry(p
, struct hda_codec
, list
);
1739 if (codec
->patch_ops
.suspend
)
1740 codec
->patch_ops
.suspend(codec
, state
);
1746 * snd_hda_resume - resume the codecs
1748 * @state: resume state
1750 * Returns 0 if successful.
1752 int snd_hda_resume(struct hda_bus
*bus
)
1754 struct list_head
*p
;
1756 list_for_each(p
, &bus
->codec_list
) {
1757 struct hda_codec
*codec
= list_entry(p
, struct hda_codec
, list
);
1758 if (codec
->patch_ops
.resume
)
1759 codec
->patch_ops
.resume(codec
);
1765 * snd_hda_resume_ctls - resume controls in the new control list
1766 * @codec: the HDA codec
1767 * @knew: the array of snd_kcontrol_new_t
1769 * This function resumes the mixer controls in the snd_kcontrol_new_t array,
1770 * originally for snd_hda_add_new_ctls().
1771 * The array must be terminated with an empty entry as terminator.
1773 int snd_hda_resume_ctls(struct hda_codec
*codec
, snd_kcontrol_new_t
*knew
)
1775 snd_ctl_elem_value_t
*val
;
1777 val
= kmalloc(sizeof(*val
), GFP_KERNEL
);
1780 codec
->in_resume
= 1;
1781 for (; knew
->name
; knew
++) {
1783 count
= knew
->count
? knew
->count
: 1;
1784 for (i
= 0; i
< count
; i
++) {
1785 memset(val
, 0, sizeof(*val
));
1786 val
->id
.iface
= knew
->iface
;
1787 val
->id
.device
= knew
->device
;
1788 val
->id
.subdevice
= knew
->subdevice
;
1789 strcpy(val
->id
.name
, knew
->name
);
1790 val
->id
.index
= knew
->index
? knew
->index
: i
;
1791 /* Assume that get callback reads only from cache,
1792 * not accessing to the real hardware
1794 if (snd_ctl_elem_read(codec
->bus
->card
, val
) < 0)
1796 snd_ctl_elem_write(codec
->bus
->card
, NULL
, val
);
1799 codec
->in_resume
= 0;
1805 * snd_hda_resume_spdif_out - resume the digital out
1806 * @codec: the HDA codec
1808 int snd_hda_resume_spdif_out(struct hda_codec
*codec
)
1810 return snd_hda_resume_ctls(codec
, dig_mixes
);
1814 * snd_hda_resume_spdif_in - resume the digital in
1815 * @codec: the HDA codec
1817 int snd_hda_resume_spdif_in(struct hda_codec
*codec
)
1819 return snd_hda_resume_ctls(codec
, dig_in_ctls
);
1824 * symbols exported for controller modules
1826 EXPORT_SYMBOL(snd_hda_codec_read
);
1827 EXPORT_SYMBOL(snd_hda_codec_write
);
1828 EXPORT_SYMBOL(snd_hda_sequence_write
);
1829 EXPORT_SYMBOL(snd_hda_get_sub_nodes
);
1830 EXPORT_SYMBOL(snd_hda_queue_unsol_event
);
1831 EXPORT_SYMBOL(snd_hda_bus_new
);
1832 EXPORT_SYMBOL(snd_hda_codec_new
);
1833 EXPORT_SYMBOL(snd_hda_codec_setup_stream
);
1834 EXPORT_SYMBOL(snd_hda_calc_stream_format
);
1835 EXPORT_SYMBOL(snd_hda_build_pcms
);
1836 EXPORT_SYMBOL(snd_hda_build_controls
);
1838 EXPORT_SYMBOL(snd_hda_suspend
);
1839 EXPORT_SYMBOL(snd_hda_resume
);
1846 static int __init
alsa_hda_init(void)
1851 static void __exit
alsa_hda_exit(void)
1855 module_init(alsa_hda_init
)
1856 module_exit(alsa_hda_exit
)