2 * Universal Interface for Intel High Definition Audio Codec
4 * HD audio interface patch for VIA VT17xx/VT18xx/VT20xx codec
6 * (C) 2006-2009 VIA Technology, Inc.
7 * (C) 2006-2008 Takashi Iwai <tiwai@suse.de>
9 * This driver is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This driver is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 /* * * * * * * * * * * * * * Release History * * * * * * * * * * * * * * * * */
26 /* 2006-03-03 Lydia Wang Create the basic patch to support VT1708 codec */
27 /* 2006-03-14 Lydia Wang Modify hard code for some pin widget nid */
28 /* 2006-08-02 Lydia Wang Add support to VT1709 codec */
29 /* 2006-09-08 Lydia Wang Fix internal loopback recording source select bug */
30 /* 2007-09-12 Lydia Wang Add EAPD enable during driver initialization */
31 /* 2007-09-17 Lydia Wang Add VT1708B codec support */
32 /* 2007-11-14 Lydia Wang Add VT1708A codec HP and CD pin connect config */
33 /* 2008-02-03 Lydia Wang Fix Rear channels and Back channels inverse issue */
34 /* 2008-03-06 Lydia Wang Add VT1702 codec and VT1708S codec support */
35 /* 2008-04-09 Lydia Wang Add mute front speaker when HP plugin */
36 /* 2008-04-09 Lydia Wang Add Independent HP feature */
37 /* 2008-05-28 Lydia Wang Add second S/PDIF Out support for VT1702 */
38 /* 2008-09-15 Logan Li Add VT1708S Mic Boost workaround/backdoor */
39 /* 2009-02-16 Logan Li Add support for VT1718S */
40 /* 2009-03-13 Logan Li Add support for VT1716S */
41 /* 2009-04-14 Lydai Wang Add support for VT1828S and VT2020 */
42 /* 2009-07-08 Lydia Wang Add support for VT2002P */
43 /* 2009-07-21 Lydia Wang Add support for VT1812 */
44 /* 2009-09-19 Lydia Wang Add support for VT1818S */
46 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
49 #include <linux/init.h>
50 #include <linux/delay.h>
51 #include <linux/slab.h>
52 #include <sound/core.h>
53 #include <sound/asoundef.h>
54 #include "hda_codec.h"
55 #include "hda_local.h"
57 #define NID_MAPPING (-1)
60 #define AMP_VAL_IDX_SHIFT 19
61 #define AMP_VAL_IDX_MASK (0x0f<<19)
64 #define VT1708_HP_NID 0x13
65 #define VT1708_DIGOUT_NID 0x14
66 #define VT1708_DIGIN_NID 0x16
67 #define VT1708_DIGIN_PIN 0x26
68 #define VT1708_HP_PIN_NID 0x20
69 #define VT1708_CD_PIN_NID 0x24
71 #define VT1709_HP_DAC_NID 0x28
72 #define VT1709_DIGOUT_NID 0x13
73 #define VT1709_DIGIN_NID 0x17
74 #define VT1709_DIGIN_PIN 0x25
76 #define VT1708B_HP_NID 0x25
77 #define VT1708B_DIGOUT_NID 0x12
78 #define VT1708B_DIGIN_NID 0x15
79 #define VT1708B_DIGIN_PIN 0x21
81 #define VT1708S_HP_NID 0x25
82 #define VT1708S_DIGOUT_NID 0x12
84 #define VT1702_HP_NID 0x17
85 #define VT1702_DIGOUT_NID 0x11
105 /* codec parameterization */
106 struct snd_kcontrol_new
*mixers
[6];
107 unsigned int num_mixers
;
109 struct hda_verb
*init_verbs
[5];
110 unsigned int num_iverbs
;
112 char *stream_name_analog
;
113 struct hda_pcm_stream
*stream_analog_playback
;
114 struct hda_pcm_stream
*stream_analog_capture
;
116 char *stream_name_digital
;
117 struct hda_pcm_stream
*stream_digital_playback
;
118 struct hda_pcm_stream
*stream_digital_capture
;
121 struct hda_multi_out multiout
;
122 hda_nid_t slave_dig_outs
[2];
125 unsigned int num_adc_nids
;
127 hda_nid_t mux_nids
[3];
128 hda_nid_t dig_in_nid
;
129 hda_nid_t dig_in_pin
;
132 const struct hda_input_mux
*input_mux
;
133 unsigned int cur_mux
[3];
135 /* PCM information */
136 struct hda_pcm pcm_rec
[3];
138 /* dynamic controls, init_verbs and input_mux */
139 struct auto_pin_cfg autocfg
;
140 struct snd_array kctls
;
141 struct hda_input_mux private_imux
[2];
142 hda_nid_t private_dac_nids
[AUTO_CFG_MAX_OUTS
];
145 const struct hda_input_mux
*hp_mux
;
146 unsigned int hp_independent_mode
;
147 unsigned int hp_independent_mode_index
;
148 unsigned int smart51_enabled
;
149 unsigned int dmic_enabled
;
150 enum VIA_HDA_CODEC codec_type
;
152 /* work to check hp jack state */
153 struct hda_codec
*codec
;
154 struct delayed_work vt1708_hp_work
;
155 int vt1708_jack_detectect
;
156 int vt1708_hp_present
;
157 #ifdef CONFIG_SND_HDA_POWER_SAVE
158 struct hda_loopback_check loopback
;
162 static struct via_spec
* via_new_spec(struct hda_codec
*codec
)
164 struct via_spec
*spec
;
166 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
175 static enum VIA_HDA_CODEC
get_codec_type(struct hda_codec
*codec
)
177 u32 vendor_id
= codec
->vendor_id
;
178 u16 ven_id
= vendor_id
>> 16;
179 u16 dev_id
= vendor_id
& 0xffff;
180 enum VIA_HDA_CODEC codec_type
;
183 if (ven_id
!= 0x1106)
184 codec_type
= UNKNOWN
;
185 else if (dev_id
>= 0x1708 && dev_id
<= 0x170b)
187 else if (dev_id
>= 0xe710 && dev_id
<= 0xe713)
188 codec_type
= VT1709_10CH
;
189 else if (dev_id
>= 0xe714 && dev_id
<= 0xe717)
190 codec_type
= VT1709_6CH
;
191 else if (dev_id
>= 0xe720 && dev_id
<= 0xe723) {
192 codec_type
= VT1708B_8CH
;
193 if (snd_hda_param_read(codec
, 0x16, AC_PAR_CONNLIST_LEN
) == 0x7)
194 codec_type
= VT1708BCE
;
195 } else if (dev_id
>= 0xe724 && dev_id
<= 0xe727)
196 codec_type
= VT1708B_4CH
;
197 else if ((dev_id
& 0xfff) == 0x397
198 && (dev_id
>> 12) < 8)
199 codec_type
= VT1708S
;
200 else if ((dev_id
& 0xfff) == 0x398
201 && (dev_id
>> 12) < 8)
203 else if ((dev_id
& 0xfff) == 0x428
204 && (dev_id
>> 12) < 8)
205 codec_type
= VT1718S
;
206 else if (dev_id
== 0x0433 || dev_id
== 0xa721)
207 codec_type
= VT1716S
;
208 else if (dev_id
== 0x0441 || dev_id
== 0x4441)
209 codec_type
= VT1718S
;
210 else if (dev_id
== 0x0438 || dev_id
== 0x4438)
211 codec_type
= VT2002P
;
212 else if (dev_id
== 0x0448)
214 else if (dev_id
== 0x0440)
215 codec_type
= VT1708S
;
217 codec_type
= UNKNOWN
;
221 #define VIA_HP_EVENT 0x01
222 #define VIA_GPIO_EVENT 0x02
223 #define VIA_JACK_EVENT 0x04
224 #define VIA_MONO_EVENT 0x08
225 #define VIA_SPEAKER_EVENT 0x10
226 #define VIA_BIND_HP_EVENT 0x20
231 VIA_CTL_WIDGET_ANALOG_MUTE
,
232 VIA_CTL_WIDGET_BIND_PIN_MUTE
,
242 static void analog_low_current_mode(struct hda_codec
*codec
, int stream_idle
);
243 static void set_jack_power_state(struct hda_codec
*codec
);
244 static int is_aa_path_mute(struct hda_codec
*codec
);
246 static void vt1708_start_hp_work(struct via_spec
*spec
)
248 if (spec
->codec_type
!= VT1708
|| spec
->autocfg
.hp_pins
[0] == 0)
250 snd_hda_codec_write(spec
->codec
, 0x1, 0, 0xf81,
251 !spec
->vt1708_jack_detectect
);
252 if (!delayed_work_pending(&spec
->vt1708_hp_work
))
253 schedule_delayed_work(&spec
->vt1708_hp_work
,
254 msecs_to_jiffies(100));
257 static void vt1708_stop_hp_work(struct via_spec
*spec
)
259 if (spec
->codec_type
!= VT1708
|| spec
->autocfg
.hp_pins
[0] == 0)
261 if (snd_hda_get_bool_hint(spec
->codec
, "analog_loopback_hp_detect") == 1
262 && !is_aa_path_mute(spec
->codec
))
264 snd_hda_codec_write(spec
->codec
, 0x1, 0, 0xf81,
265 !spec
->vt1708_jack_detectect
);
266 cancel_delayed_work(&spec
->vt1708_hp_work
);
267 flush_scheduled_work();
271 static int analog_input_switch_put(struct snd_kcontrol
*kcontrol
,
272 struct snd_ctl_elem_value
*ucontrol
)
274 int change
= snd_hda_mixer_amp_switch_put(kcontrol
, ucontrol
);
275 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
277 set_jack_power_state(codec
);
278 analog_low_current_mode(snd_kcontrol_chip(kcontrol
), -1);
279 if (snd_hda_get_bool_hint(codec
, "analog_loopback_hp_detect") == 1) {
280 if (is_aa_path_mute(codec
))
281 vt1708_start_hp_work(codec
->spec
);
283 vt1708_stop_hp_work(codec
->spec
);
288 /* modify .put = snd_hda_mixer_amp_switch_put */
289 #define ANALOG_INPUT_MUTE \
290 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
293 .info = snd_hda_mixer_amp_switch_info, \
294 .get = snd_hda_mixer_amp_switch_get, \
295 .put = analog_input_switch_put, \
296 .private_value = HDA_COMPOSE_AMP_VAL(0, 3, 0, 0) }
298 static void via_hp_bind_automute(struct hda_codec
*codec
);
300 static int bind_pin_switch_put(struct snd_kcontrol
*kcontrol
,
301 struct snd_ctl_elem_value
*ucontrol
)
303 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
304 struct via_spec
*spec
= codec
->spec
;
308 long *valp
= ucontrol
->value
.integer
.value
;
310 if (strstr(kcontrol
->id
.name
, "Switch") == NULL
) {
311 snd_printd("Invalid control!\n");
314 change
= snd_hda_mixer_amp_switch_put(kcontrol
,
317 lmute
= *valp
? 0 : HDA_AMP_MUTE
;
319 rmute
= *valp
? 0 : HDA_AMP_MUTE
;
322 if (!spec
->hp_independent_mode
) {
323 for (i
= 0; i
< spec
->autocfg
.hp_outs
; i
++) {
324 snd_hda_codec_amp_update(
325 codec
, spec
->autocfg
.hp_pins
[i
],
326 0, HDA_OUTPUT
, 0, HDA_AMP_MUTE
,
328 snd_hda_codec_amp_update(
329 codec
, spec
->autocfg
.hp_pins
[i
],
330 1, HDA_OUTPUT
, 0, HDA_AMP_MUTE
,
335 if (!lmute
&& !rmute
) {
337 for (i
= 0; i
< spec
->autocfg
.line_outs
; i
++)
338 snd_hda_codec_amp_stereo(
339 codec
, spec
->autocfg
.line_out_pins
[i
],
340 HDA_OUTPUT
, 0, HDA_AMP_MUTE
, 0);
342 for (i
= 0; i
< spec
->autocfg
.speaker_outs
; i
++)
343 snd_hda_codec_amp_stereo(
344 codec
, spec
->autocfg
.speaker_pins
[i
],
345 HDA_OUTPUT
, 0, HDA_AMP_MUTE
, 0);
347 via_hp_bind_automute(codec
);
351 /* Mute all left channels */
352 for (i
= 1; i
< spec
->autocfg
.line_outs
; i
++)
353 snd_hda_codec_amp_update(
355 spec
->autocfg
.line_out_pins
[i
],
356 0, HDA_OUTPUT
, 0, HDA_AMP_MUTE
,
358 for (i
= 0; i
< spec
->autocfg
.speaker_outs
; i
++)
359 snd_hda_codec_amp_update(
361 spec
->autocfg
.speaker_pins
[i
],
362 0, HDA_OUTPUT
, 0, HDA_AMP_MUTE
,
366 /* mute all right channels */
367 for (i
= 1; i
< spec
->autocfg
.line_outs
; i
++)
368 snd_hda_codec_amp_update(
370 spec
->autocfg
.line_out_pins
[i
],
371 1, HDA_OUTPUT
, 0, HDA_AMP_MUTE
,
373 for (i
= 0; i
< spec
->autocfg
.speaker_outs
; i
++)
374 snd_hda_codec_amp_update(
376 spec
->autocfg
.speaker_pins
[i
],
377 1, HDA_OUTPUT
, 0, HDA_AMP_MUTE
,
384 #define BIND_PIN_MUTE \
385 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
388 .info = snd_hda_mixer_amp_switch_info, \
389 .get = snd_hda_mixer_amp_switch_get, \
390 .put = bind_pin_switch_put, \
391 .private_value = HDA_COMPOSE_AMP_VAL(0, 3, 0, 0) }
393 static struct snd_kcontrol_new via_control_templates
[] = {
394 HDA_CODEC_VOLUME(NULL
, 0, 0, 0),
395 HDA_CODEC_MUTE(NULL
, 0, 0, 0),
400 static hda_nid_t vt1708_adc_nids
[2] = {
405 static hda_nid_t vt1709_adc_nids
[3] = {
410 static hda_nid_t vt1708B_adc_nids
[2] = {
415 static hda_nid_t vt1708S_adc_nids
[2] = {
420 static hda_nid_t vt1702_adc_nids
[3] = {
425 static hda_nid_t vt1718S_adc_nids
[2] = {
430 static hda_nid_t vt1716S_adc_nids
[2] = {
435 static hda_nid_t vt2002P_adc_nids
[2] = {
440 static hda_nid_t vt1812_adc_nids
[2] = {
446 /* add dynamic controls */
447 static int __via_add_control(struct via_spec
*spec
, int type
, const char *name
,
448 int idx
, unsigned long val
)
450 struct snd_kcontrol_new
*knew
;
452 snd_array_init(&spec
->kctls
, sizeof(*knew
), 32);
453 knew
= snd_array_new(&spec
->kctls
);
456 *knew
= via_control_templates
[type
];
457 knew
->name
= kstrdup(name
, GFP_KERNEL
);
460 if (get_amp_nid_(val
))
461 knew
->subdevice
= HDA_SUBDEV_AMP_FLAG
;
462 knew
->private_value
= val
;
466 #define via_add_control(spec, type, name, val) \
467 __via_add_control(spec, type, name, 0, val)
469 static struct snd_kcontrol_new
*via_clone_control(struct via_spec
*spec
,
470 struct snd_kcontrol_new
*tmpl
)
472 struct snd_kcontrol_new
*knew
;
474 snd_array_init(&spec
->kctls
, sizeof(*knew
), 32);
475 knew
= snd_array_new(&spec
->kctls
);
479 knew
->name
= kstrdup(tmpl
->name
, GFP_KERNEL
);
485 static void via_free_kctls(struct hda_codec
*codec
)
487 struct via_spec
*spec
= codec
->spec
;
489 if (spec
->kctls
.list
) {
490 struct snd_kcontrol_new
*kctl
= spec
->kctls
.list
;
492 for (i
= 0; i
< spec
->kctls
.used
; i
++)
495 snd_array_free(&spec
->kctls
);
498 /* create input playback/capture controls for the given pin */
499 static int via_new_analog_input(struct via_spec
*spec
, const char *ctlname
,
500 int type_idx
, int idx
, int mix_nid
)
505 sprintf(name
, "%s Playback Volume", ctlname
);
506 err
= __via_add_control(spec
, VIA_CTL_WIDGET_VOL
, name
, type_idx
,
507 HDA_COMPOSE_AMP_VAL(mix_nid
, 3, idx
, HDA_INPUT
));
510 sprintf(name
, "%s Playback Switch", ctlname
);
511 err
= __via_add_control(spec
, VIA_CTL_WIDGET_ANALOG_MUTE
, name
, type_idx
,
512 HDA_COMPOSE_AMP_VAL(mix_nid
, 3, idx
, HDA_INPUT
));
518 static void via_auto_set_output_and_unmute(struct hda_codec
*codec
,
519 hda_nid_t nid
, int pin_type
,
523 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
525 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
527 if (snd_hda_query_pin_caps(codec
, nid
) & AC_PINCAP_EAPD
)
528 snd_hda_codec_write(codec
, nid
, 0,
529 AC_VERB_SET_EAPD_BTLENABLE
, 0x02);
533 static void via_auto_init_multi_out(struct hda_codec
*codec
)
535 struct via_spec
*spec
= codec
->spec
;
538 for (i
= 0; i
<= AUTO_SEQ_SIDE
; i
++) {
539 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
541 via_auto_set_output_and_unmute(codec
, nid
, PIN_OUT
, i
);
545 static void via_auto_init_hp_out(struct hda_codec
*codec
)
547 struct via_spec
*spec
= codec
->spec
;
551 for (i
= 0; i
< spec
->autocfg
.hp_outs
; i
++) {
552 pin
= spec
->autocfg
.hp_pins
[i
];
553 if (pin
) /* connect to front */
554 via_auto_set_output_and_unmute(codec
, pin
, PIN_HP
, 0);
558 static int is_smart51_pins(struct via_spec
*spec
, hda_nid_t pin
);
560 static void via_auto_init_analog_input(struct hda_codec
*codec
)
562 struct via_spec
*spec
= codec
->spec
;
563 const struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
567 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
568 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
569 if (spec
->smart51_enabled
&& is_smart51_pins(spec
, nid
))
571 else if (i
== AUTO_PIN_MIC
)
575 snd_hda_codec_write(codec
, nid
, 0,
576 AC_VERB_SET_PIN_WIDGET_CONTROL
, ctl
);
580 static void set_pin_power_state(struct hda_codec
*codec
, hda_nid_t nid
,
581 unsigned int *affected_parm
)
584 unsigned def_conf
= snd_hda_codec_get_pincfg(codec
, nid
);
585 unsigned no_presence
= (def_conf
& AC_DEFCFG_MISC
)
586 >> AC_DEFCFG_MISC_SHIFT
587 & AC_DEFCFG_MISC_NO_PRESENCE
; /* do not support pin sense */
588 unsigned present
= snd_hda_jack_detect(codec
, nid
);
589 struct via_spec
*spec
= codec
->spec
;
590 if ((spec
->smart51_enabled
&& is_smart51_pins(spec
, nid
))
591 || ((no_presence
|| present
)
592 && get_defcfg_connect(def_conf
) != AC_JACK_PORT_NONE
)) {
593 *affected_parm
= AC_PWRST_D0
; /* if it's connected */
598 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_POWER_STATE
, parm
);
601 static void set_jack_power_state(struct hda_codec
*codec
)
603 struct via_spec
*spec
= codec
->spec
;
607 if (spec
->codec_type
== VT1702
) {
608 imux_is_smixer
= snd_hda_codec_read(
609 codec
, 0x13, 0, AC_VERB_GET_CONNECT_SEL
, 0x00) == 3;
611 /* PW 1/2/5 (14h/15h/18h) */
613 set_pin_power_state(codec
, 0x14, &parm
);
614 set_pin_power_state(codec
, 0x15, &parm
);
615 set_pin_power_state(codec
, 0x18, &parm
);
617 parm
= AC_PWRST_D0
; /* SW0 = stereo mixer (idx 3) */
618 /* SW0 (13h), AIW 0/1/2 (12h/1fh/20h) */
619 snd_hda_codec_write(codec
, 0x13, 0, AC_VERB_SET_POWER_STATE
,
621 snd_hda_codec_write(codec
, 0x12, 0, AC_VERB_SET_POWER_STATE
,
623 snd_hda_codec_write(codec
, 0x1f, 0, AC_VERB_SET_POWER_STATE
,
625 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_POWER_STATE
,
629 /* PW 3/4 (16h/17h) */
631 set_pin_power_state(codec
, 0x16, &parm
);
632 set_pin_power_state(codec
, 0x17, &parm
);
633 /* MW0 (1ah), AOW 0/1 (10h/1dh) */
634 snd_hda_codec_write(codec
, 0x1a, 0, AC_VERB_SET_POWER_STATE
,
635 imux_is_smixer
? AC_PWRST_D0
: parm
);
636 snd_hda_codec_write(codec
, 0x10, 0, AC_VERB_SET_POWER_STATE
,
638 snd_hda_codec_write(codec
, 0x1d, 0, AC_VERB_SET_POWER_STATE
,
640 } else if (spec
->codec_type
== VT1708B_8CH
641 || spec
->codec_type
== VT1708B_4CH
642 || spec
->codec_type
== VT1708S
) {
643 /* SW0 (17h) = stereo mixer */
644 int is_8ch
= spec
->codec_type
!= VT1708B_4CH
;
645 imux_is_smixer
= snd_hda_codec_read(
646 codec
, 0x17, 0, AC_VERB_GET_CONNECT_SEL
, 0x00)
647 == ((spec
->codec_type
== VT1708S
) ? 5 : 0);
649 /* PW 1/2/5 (1ah/1bh/1eh) */
651 set_pin_power_state(codec
, 0x1a, &parm
);
652 set_pin_power_state(codec
, 0x1b, &parm
);
653 set_pin_power_state(codec
, 0x1e, &parm
);
656 /* SW0 (17h), AIW 0/1 (13h/14h) */
657 snd_hda_codec_write(codec
, 0x17, 0, AC_VERB_SET_POWER_STATE
,
659 snd_hda_codec_write(codec
, 0x13, 0, AC_VERB_SET_POWER_STATE
,
661 snd_hda_codec_write(codec
, 0x14, 0, AC_VERB_SET_POWER_STATE
,
665 /* PW0 (19h), SW1 (18h), AOW1 (11h) */
667 set_pin_power_state(codec
, 0x19, &parm
);
668 if (spec
->smart51_enabled
)
670 snd_hda_codec_write(codec
, 0x18, 0, AC_VERB_SET_POWER_STATE
,
672 snd_hda_codec_write(codec
, 0x11, 0, AC_VERB_SET_POWER_STATE
,
675 /* PW6 (22h), SW2 (26h), AOW2 (24h) */
678 set_pin_power_state(codec
, 0x22, &parm
);
679 if (spec
->smart51_enabled
)
681 snd_hda_codec_write(codec
, 0x26, 0,
682 AC_VERB_SET_POWER_STATE
, parm
);
683 snd_hda_codec_write(codec
, 0x24, 0,
684 AC_VERB_SET_POWER_STATE
, parm
);
687 /* PW 3/4/7 (1ch/1dh/23h) */
689 /* force to D0 for internal Speaker */
690 set_pin_power_state(codec
, 0x1c, &parm
);
691 set_pin_power_state(codec
, 0x1d, &parm
);
693 set_pin_power_state(codec
, 0x23, &parm
);
694 /* MW0 (16h), Sw3 (27h), AOW 0/3 (10h/25h) */
695 snd_hda_codec_write(codec
, 0x16, 0, AC_VERB_SET_POWER_STATE
,
696 imux_is_smixer
? AC_PWRST_D0
: parm
);
697 snd_hda_codec_write(codec
, 0x10, 0, AC_VERB_SET_POWER_STATE
,
700 snd_hda_codec_write(codec
, 0x25, 0,
701 AC_VERB_SET_POWER_STATE
, parm
);
702 snd_hda_codec_write(codec
, 0x27, 0,
703 AC_VERB_SET_POWER_STATE
, parm
);
705 } else if (spec
->codec_type
== VT1718S
) {
706 /* MUX6 (1eh) = stereo mixer */
707 imux_is_smixer
= snd_hda_codec_read(
708 codec
, 0x1e, 0, AC_VERB_GET_CONNECT_SEL
, 0x00) == 5;
710 /* PW 5/6/7 (29h/2ah/2bh) */
712 set_pin_power_state(codec
, 0x29, &parm
);
713 set_pin_power_state(codec
, 0x2a, &parm
);
714 set_pin_power_state(codec
, 0x2b, &parm
);
717 /* MUX6/7 (1eh/1fh), AIW 0/1 (10h/11h) */
718 snd_hda_codec_write(codec
, 0x1e, 0, AC_VERB_SET_POWER_STATE
,
720 snd_hda_codec_write(codec
, 0x1f, 0, AC_VERB_SET_POWER_STATE
,
722 snd_hda_codec_write(codec
, 0x10, 0, AC_VERB_SET_POWER_STATE
,
724 snd_hda_codec_write(codec
, 0x11, 0, AC_VERB_SET_POWER_STATE
,
728 /* PW3 (27h), MW2 (1ah), AOW3 (bh) */
730 set_pin_power_state(codec
, 0x27, &parm
);
731 snd_hda_codec_write(codec
, 0x1a, 0, AC_VERB_SET_POWER_STATE
,
733 snd_hda_codec_write(codec
, 0xb, 0, AC_VERB_SET_POWER_STATE
,
736 /* PW2 (26h), AOW2 (ah) */
738 set_pin_power_state(codec
, 0x26, &parm
);
739 snd_hda_codec_write(codec
, 0xa, 0, AC_VERB_SET_POWER_STATE
,
742 /* PW0/1 (24h/25h) */
744 set_pin_power_state(codec
, 0x24, &parm
);
745 set_pin_power_state(codec
, 0x25, &parm
);
746 if (!spec
->hp_independent_mode
) /* check for redirected HP */
747 set_pin_power_state(codec
, 0x28, &parm
);
748 snd_hda_codec_write(codec
, 0x8, 0, AC_VERB_SET_POWER_STATE
,
750 snd_hda_codec_write(codec
, 0x9, 0, AC_VERB_SET_POWER_STATE
,
752 /* MW9 (21h), Mw2 (1ah), AOW0 (8h) */
753 snd_hda_codec_write(codec
, 0x21, 0, AC_VERB_SET_POWER_STATE
,
754 imux_is_smixer
? AC_PWRST_D0
: parm
);
755 if (spec
->hp_independent_mode
) {
756 /* PW4 (28h), MW3 (1bh), MUX1(34h), AOW4 (ch) */
758 set_pin_power_state(codec
, 0x28, &parm
);
759 snd_hda_codec_write(codec
, 0x1b, 0,
760 AC_VERB_SET_POWER_STATE
, parm
);
761 snd_hda_codec_write(codec
, 0x34, 0,
762 AC_VERB_SET_POWER_STATE
, parm
);
763 snd_hda_codec_write(codec
, 0xc, 0,
764 AC_VERB_SET_POWER_STATE
, parm
);
766 } else if (spec
->codec_type
== VT1716S
) {
767 unsigned int mono_out
, present
;
768 /* SW0 (17h) = stereo mixer */
769 imux_is_smixer
= snd_hda_codec_read(
770 codec
, 0x17, 0, AC_VERB_GET_CONNECT_SEL
, 0x00) == 5;
772 /* PW 1/2/5 (1ah/1bh/1eh) */
774 set_pin_power_state(codec
, 0x1a, &parm
);
775 set_pin_power_state(codec
, 0x1b, &parm
);
776 set_pin_power_state(codec
, 0x1e, &parm
);
779 /* SW0 (17h), AIW0(13h) */
780 snd_hda_codec_write(codec
, 0x17, 0, AC_VERB_SET_POWER_STATE
,
782 snd_hda_codec_write(codec
, 0x13, 0, AC_VERB_SET_POWER_STATE
,
786 set_pin_power_state(codec
, 0x1e, &parm
);
788 if (spec
->dmic_enabled
)
789 set_pin_power_state(codec
, 0x22, &parm
);
793 AC_VERB_SET_POWER_STATE
, AC_PWRST_D3
);
795 /* SW2(26h), AIW1(14h) */
796 snd_hda_codec_write(codec
, 0x26, 0, AC_VERB_SET_POWER_STATE
,
798 snd_hda_codec_write(codec
, 0x14, 0, AC_VERB_SET_POWER_STATE
,
802 /* PW0 (19h), SW1 (18h), AOW1 (11h) */
804 set_pin_power_state(codec
, 0x19, &parm
);
805 /* Smart 5.1 PW2(1bh) */
806 if (spec
->smart51_enabled
)
807 set_pin_power_state(codec
, 0x1b, &parm
);
808 snd_hda_codec_write(codec
, 0x18, 0, AC_VERB_SET_POWER_STATE
,
810 snd_hda_codec_write(codec
, 0x11, 0, AC_VERB_SET_POWER_STATE
,
813 /* PW7 (23h), SW3 (27h), AOW3 (25h) */
815 set_pin_power_state(codec
, 0x23, &parm
);
816 /* Smart 5.1 PW1(1ah) */
817 if (spec
->smart51_enabled
)
818 set_pin_power_state(codec
, 0x1a, &parm
);
819 snd_hda_codec_write(codec
, 0x27, 0, AC_VERB_SET_POWER_STATE
,
822 /* Smart 5.1 PW5(1eh) */
823 if (spec
->smart51_enabled
)
824 set_pin_power_state(codec
, 0x1e, &parm
);
825 snd_hda_codec_write(codec
, 0x25, 0, AC_VERB_SET_POWER_STATE
,
829 /* SW4(28h)->MW1(29h)-> PW12 (2ah)*/
830 present
= snd_hda_jack_detect(codec
, 0x1c);
834 present
= snd_hda_jack_detect(codec
, 0x1d);
835 if (!spec
->hp_independent_mode
&& present
)
840 parm
= mono_out
? AC_PWRST_D0
: AC_PWRST_D3
;
841 snd_hda_codec_write(codec
, 0x28, 0, AC_VERB_SET_POWER_STATE
,
843 snd_hda_codec_write(codec
, 0x29, 0, AC_VERB_SET_POWER_STATE
,
845 snd_hda_codec_write(codec
, 0x2a, 0, AC_VERB_SET_POWER_STATE
,
848 /* PW 3/4 (1ch/1dh) */
850 set_pin_power_state(codec
, 0x1c, &parm
);
851 set_pin_power_state(codec
, 0x1d, &parm
);
852 /* HP Independent Mode, power on AOW3 */
853 if (spec
->hp_independent_mode
)
854 snd_hda_codec_write(codec
, 0x25, 0,
855 AC_VERB_SET_POWER_STATE
, parm
);
857 /* force to D0 for internal Speaker */
858 /* MW0 (16h), AOW0 (10h) */
859 snd_hda_codec_write(codec
, 0x16, 0, AC_VERB_SET_POWER_STATE
,
860 imux_is_smixer
? AC_PWRST_D0
: parm
);
861 snd_hda_codec_write(codec
, 0x10, 0, AC_VERB_SET_POWER_STATE
,
862 mono_out
? AC_PWRST_D0
: parm
);
863 } else if (spec
->codec_type
== VT2002P
) {
864 unsigned int present
;
865 /* MUX9 (1eh) = stereo mixer */
866 imux_is_smixer
= snd_hda_codec_read(
867 codec
, 0x1e, 0, AC_VERB_GET_CONNECT_SEL
, 0x00) == 3;
869 /* PW 5/6/7 (29h/2ah/2bh) */
871 set_pin_power_state(codec
, 0x29, &parm
);
872 set_pin_power_state(codec
, 0x2a, &parm
);
873 set_pin_power_state(codec
, 0x2b, &parm
);
876 /* MUX9/10 (1eh/1fh), AIW 0/1 (10h/11h) */
877 snd_hda_codec_write(codec
, 0x1e, 0,
878 AC_VERB_SET_POWER_STATE
, parm
);
879 snd_hda_codec_write(codec
, 0x1f, 0,
880 AC_VERB_SET_POWER_STATE
, parm
);
881 snd_hda_codec_write(codec
, 0x10, 0,
882 AC_VERB_SET_POWER_STATE
, parm
);
883 snd_hda_codec_write(codec
, 0x11, 0,
884 AC_VERB_SET_POWER_STATE
, parm
);
888 snd_hda_codec_write(codec
, 0x8, 0,
889 AC_VERB_SET_POWER_STATE
, AC_PWRST_D0
);
891 /* PW4 (26h), MW4 (1ch), MUX4(37h) */
893 set_pin_power_state(codec
, 0x26, &parm
);
894 snd_hda_codec_write(codec
, 0x1c, 0,
895 AC_VERB_SET_POWER_STATE
, parm
);
896 snd_hda_codec_write(codec
, 0x37,
897 0, AC_VERB_SET_POWER_STATE
, parm
);
899 /* PW1 (25h), MW1 (19h), MUX1(35h), AOW1 (9h) */
901 set_pin_power_state(codec
, 0x25, &parm
);
902 snd_hda_codec_write(codec
, 0x19, 0,
903 AC_VERB_SET_POWER_STATE
, parm
);
904 snd_hda_codec_write(codec
, 0x35, 0,
905 AC_VERB_SET_POWER_STATE
, parm
);
906 if (spec
->hp_independent_mode
) {
907 snd_hda_codec_write(codec
, 0x9, 0,
908 AC_VERB_SET_POWER_STATE
, parm
);
912 /* PW0 (24h), MW0(18h), MUX0(34h) */
913 present
= snd_hda_jack_detect(codec
, 0x25);
915 set_pin_power_state(codec
, 0x24, &parm
);
919 AC_VERB_SET_POWER_STATE
, AC_PWRST_D3
);
922 AC_VERB_SET_POWER_STATE
, AC_PWRST_D3
);
926 AC_VERB_SET_POWER_STATE
, AC_PWRST_D0
);
929 AC_VERB_SET_POWER_STATE
, AC_PWRST_D0
);
933 /* PW15 (31h), MW8(17h), MUX8(3bh) */
934 present
= snd_hda_jack_detect(codec
, 0x26);
936 set_pin_power_state(codec
, 0x31, &parm
);
940 AC_VERB_SET_POWER_STATE
, AC_PWRST_D3
);
943 AC_VERB_SET_POWER_STATE
, AC_PWRST_D3
);
947 AC_VERB_SET_POWER_STATE
, AC_PWRST_D0
);
950 AC_VERB_SET_POWER_STATE
, AC_PWRST_D0
);
954 if (imux_is_smixer
|| !is_aa_path_mute(codec
))
957 AC_VERB_SET_POWER_STATE
, AC_PWRST_D0
);
961 AC_VERB_SET_POWER_STATE
, AC_PWRST_D3
);
962 } else if (spec
->codec_type
== VT1812
) {
963 unsigned int present
;
964 /* MUX10 (1eh) = stereo mixer */
965 imux_is_smixer
= snd_hda_codec_read(
966 codec
, 0x1e, 0, AC_VERB_GET_CONNECT_SEL
, 0x00) == 5;
968 /* PW 5/6/7 (29h/2ah/2bh) */
970 set_pin_power_state(codec
, 0x29, &parm
);
971 set_pin_power_state(codec
, 0x2a, &parm
);
972 set_pin_power_state(codec
, 0x2b, &parm
);
975 /* MUX10/11 (1eh/1fh), AIW 0/1 (10h/11h) */
976 snd_hda_codec_write(codec
, 0x1e, 0,
977 AC_VERB_SET_POWER_STATE
, parm
);
978 snd_hda_codec_write(codec
, 0x1f, 0,
979 AC_VERB_SET_POWER_STATE
, parm
);
980 snd_hda_codec_write(codec
, 0x10, 0,
981 AC_VERB_SET_POWER_STATE
, parm
);
982 snd_hda_codec_write(codec
, 0x11, 0,
983 AC_VERB_SET_POWER_STATE
, parm
);
987 snd_hda_codec_write(codec
, 0x8, 0,
988 AC_VERB_SET_POWER_STATE
, AC_PWRST_D0
);
990 /* PW4 (28h), MW4 (18h), MUX4(38h) */
992 set_pin_power_state(codec
, 0x28, &parm
);
993 snd_hda_codec_write(codec
, 0x18, 0,
994 AC_VERB_SET_POWER_STATE
, parm
);
995 snd_hda_codec_write(codec
, 0x38, 0,
996 AC_VERB_SET_POWER_STATE
, parm
);
998 /* PW1 (25h), MW1 (15h), MUX1(35h), AOW1 (9h) */
1000 set_pin_power_state(codec
, 0x25, &parm
);
1001 snd_hda_codec_write(codec
, 0x15, 0,
1002 AC_VERB_SET_POWER_STATE
, parm
);
1003 snd_hda_codec_write(codec
, 0x35, 0,
1004 AC_VERB_SET_POWER_STATE
, parm
);
1005 if (spec
->hp_independent_mode
) {
1006 snd_hda_codec_write(codec
, 0x9, 0,
1007 AC_VERB_SET_POWER_STATE
, parm
);
1010 /* Internal Speaker */
1011 /* PW0 (24h), MW0(14h), MUX0(34h) */
1012 present
= snd_hda_jack_detect(codec
, 0x25);
1014 set_pin_power_state(codec
, 0x24, &parm
);
1016 snd_hda_codec_write(codec
, 0x14, 0,
1017 AC_VERB_SET_POWER_STATE
,
1019 snd_hda_codec_write(codec
, 0x34, 0,
1020 AC_VERB_SET_POWER_STATE
,
1023 snd_hda_codec_write(codec
, 0x14, 0,
1024 AC_VERB_SET_POWER_STATE
,
1026 snd_hda_codec_write(codec
, 0x34, 0,
1027 AC_VERB_SET_POWER_STATE
,
1031 /* PW13 (31h), MW13(1ch), MUX13(3ch), MW14(3eh) */
1032 present
= snd_hda_jack_detect(codec
, 0x28);
1034 set_pin_power_state(codec
, 0x31, &parm
);
1036 snd_hda_codec_write(codec
, 0x1c, 0,
1037 AC_VERB_SET_POWER_STATE
,
1039 snd_hda_codec_write(codec
, 0x3c, 0,
1040 AC_VERB_SET_POWER_STATE
,
1042 snd_hda_codec_write(codec
, 0x3e, 0,
1043 AC_VERB_SET_POWER_STATE
,
1046 snd_hda_codec_write(codec
, 0x1c, 0,
1047 AC_VERB_SET_POWER_STATE
,
1049 snd_hda_codec_write(codec
, 0x3c, 0,
1050 AC_VERB_SET_POWER_STATE
,
1052 snd_hda_codec_write(codec
, 0x3e, 0,
1053 AC_VERB_SET_POWER_STATE
,
1057 /* PW15 (33h), MW15 (1dh), MUX15(3dh) */
1059 set_pin_power_state(codec
, 0x33, &parm
);
1060 snd_hda_codec_write(codec
, 0x1d, 0,
1061 AC_VERB_SET_POWER_STATE
, parm
);
1062 snd_hda_codec_write(codec
, 0x3d, 0,
1063 AC_VERB_SET_POWER_STATE
, parm
);
1066 if (imux_is_smixer
|| !is_aa_path_mute(codec
))
1067 snd_hda_codec_write(
1069 AC_VERB_SET_POWER_STATE
, AC_PWRST_D0
);
1071 snd_hda_codec_write(
1073 AC_VERB_SET_POWER_STATE
, AC_PWRST_D3
);
1078 * input MUX handling
1080 static int via_mux_enum_info(struct snd_kcontrol
*kcontrol
,
1081 struct snd_ctl_elem_info
*uinfo
)
1083 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1084 struct via_spec
*spec
= codec
->spec
;
1085 return snd_hda_input_mux_info(spec
->input_mux
, uinfo
);
1088 static int via_mux_enum_get(struct snd_kcontrol
*kcontrol
,
1089 struct snd_ctl_elem_value
*ucontrol
)
1091 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1092 struct via_spec
*spec
= codec
->spec
;
1093 unsigned int adc_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
1095 ucontrol
->value
.enumerated
.item
[0] = spec
->cur_mux
[adc_idx
];
1099 static int via_mux_enum_put(struct snd_kcontrol
*kcontrol
,
1100 struct snd_ctl_elem_value
*ucontrol
)
1102 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1103 struct via_spec
*spec
= codec
->spec
;
1104 unsigned int adc_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
1106 if (!spec
->mux_nids
[adc_idx
])
1108 /* switch to D0 beofre change index */
1109 if (snd_hda_codec_read(codec
, spec
->mux_nids
[adc_idx
], 0,
1110 AC_VERB_GET_POWER_STATE
, 0x00) != AC_PWRST_D0
)
1111 snd_hda_codec_write(codec
, spec
->mux_nids
[adc_idx
], 0,
1112 AC_VERB_SET_POWER_STATE
, AC_PWRST_D0
);
1113 /* update jack power state */
1114 set_jack_power_state(codec
);
1116 return snd_hda_input_mux_put(codec
, spec
->input_mux
, ucontrol
,
1117 spec
->mux_nids
[adc_idx
],
1118 &spec
->cur_mux
[adc_idx
]);
1121 static int via_independent_hp_info(struct snd_kcontrol
*kcontrol
,
1122 struct snd_ctl_elem_info
*uinfo
)
1124 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1125 struct via_spec
*spec
= codec
->spec
;
1126 return snd_hda_input_mux_info(spec
->hp_mux
, uinfo
);
1129 static int via_independent_hp_get(struct snd_kcontrol
*kcontrol
,
1130 struct snd_ctl_elem_value
*ucontrol
)
1132 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1133 hda_nid_t nid
= kcontrol
->private_value
;
1134 unsigned int pinsel
;
1136 /* use !! to translate conn sel 2 for VT1718S */
1137 pinsel
= !!snd_hda_codec_read(codec
, nid
, 0,
1138 AC_VERB_GET_CONNECT_SEL
,
1140 ucontrol
->value
.enumerated
.item
[0] = pinsel
;
1145 static void activate_ctl(struct hda_codec
*codec
, const char *name
, int active
)
1147 struct snd_kcontrol
*ctl
= snd_hda_find_mixer_ctl(codec
, name
);
1149 ctl
->vd
[0].access
&= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
1150 ctl
->vd
[0].access
|= active
1151 ? 0 : SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
1152 snd_ctl_notify(codec
->bus
->card
,
1153 SNDRV_CTL_EVENT_MASK_VALUE
, &ctl
->id
);
1157 static hda_nid_t
side_mute_channel(struct via_spec
*spec
)
1159 switch (spec
->codec_type
) {
1160 case VT1708
: return 0x1b;
1161 case VT1709_10CH
: return 0x29;
1162 case VT1708B_8CH
: /* fall thru */
1163 case VT1708S
: return 0x27;
1168 static int update_side_mute_status(struct hda_codec
*codec
)
1170 /* mute side channel */
1171 struct via_spec
*spec
= codec
->spec
;
1172 unsigned int parm
= spec
->hp_independent_mode
1173 ? AMP_OUT_MUTE
: AMP_OUT_UNMUTE
;
1174 hda_nid_t sw3
= side_mute_channel(spec
);
1177 snd_hda_codec_write(codec
, sw3
, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
1182 static int via_independent_hp_put(struct snd_kcontrol
*kcontrol
,
1183 struct snd_ctl_elem_value
*ucontrol
)
1185 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1186 struct via_spec
*spec
= codec
->spec
;
1187 hda_nid_t nid
= kcontrol
->private_value
;
1188 unsigned int pinsel
= ucontrol
->value
.enumerated
.item
[0];
1189 /* Get Independent Mode index of headphone pin widget */
1190 spec
->hp_independent_mode
= spec
->hp_independent_mode_index
== pinsel
1192 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_CONNECT_SEL
, pinsel
);
1194 if (spec
->multiout
.hp_nid
&& spec
->multiout
.hp_nid
1195 != spec
->multiout
.dac_nids
[HDA_FRONT
])
1196 snd_hda_codec_setup_stream(codec
, spec
->multiout
.hp_nid
,
1199 update_side_mute_status(codec
);
1200 /* update HP volume/swtich active state */
1201 if (spec
->codec_type
== VT1708S
1202 || spec
->codec_type
== VT1702
1203 || spec
->codec_type
== VT1718S
1204 || spec
->codec_type
== VT1716S
1205 || spec
->codec_type
== VT2002P
1206 || spec
->codec_type
== VT1812
) {
1207 activate_ctl(codec
, "Headphone Playback Volume",
1208 spec
->hp_independent_mode
);
1209 activate_ctl(codec
, "Headphone Playback Switch",
1210 spec
->hp_independent_mode
);
1215 static struct snd_kcontrol_new via_hp_mixer
[2] = {
1217 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1218 .name
= "Independent HP",
1219 .info
= via_independent_hp_info
,
1220 .get
= via_independent_hp_get
,
1221 .put
= via_independent_hp_put
,
1224 .iface
= NID_MAPPING
,
1225 .name
= "Independent HP",
1229 static int via_hp_build(struct hda_codec
*codec
)
1231 struct via_spec
*spec
= codec
->spec
;
1232 struct snd_kcontrol_new
*knew
;
1235 hda_nid_t conn
[HDA_MAX_CONNECTIONS
];
1237 switch (spec
->codec_type
) {
1248 nid
= spec
->autocfg
.hp_pins
[0];
1252 nums
= snd_hda_get_connections(codec
, nid
, conn
, HDA_MAX_CONNECTIONS
);
1256 knew
= via_clone_control(spec
, &via_hp_mixer
[0]);
1260 knew
->subdevice
= HDA_SUBDEV_NID_FLAG
| nid
;
1261 knew
->private_value
= nid
;
1263 knew
= via_clone_control(spec
, &via_hp_mixer
[1]);
1266 knew
->subdevice
= side_mute_channel(spec
);
1271 static void notify_aa_path_ctls(struct hda_codec
*codec
)
1274 struct snd_ctl_elem_id id
;
1275 const char *labels
[] = {"Mic", "Front Mic", "Line"};
1277 memset(&id
, 0, sizeof(id
));
1278 id
.iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
1279 for (i
= 0; i
< ARRAY_SIZE(labels
); i
++) {
1280 sprintf(id
.name
, "%s Playback Volume", labels
[i
]);
1281 snd_ctl_notify(codec
->bus
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
1286 static void mute_aa_path(struct hda_codec
*codec
, int mute
)
1288 struct via_spec
*spec
= codec
->spec
;
1289 hda_nid_t nid_mixer
;
1293 /* get nid of MW0 and start & end index */
1294 switch (spec
->codec_type
) {
1317 /* check AA path's mute status */
1318 for (i
= start_idx
; i
<= end_idx
; i
++) {
1319 int val
= mute
? HDA_AMP_MUTE
: HDA_AMP_UNMUTE
;
1320 snd_hda_codec_amp_stereo(codec
, nid_mixer
, HDA_INPUT
, i
,
1324 static int is_smart51_pins(struct via_spec
*spec
, hda_nid_t pin
)
1326 const struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
1329 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
1330 if (pin
== cfg
->inputs
[i
].pin
)
1331 return cfg
->inputs
[i
].type
<= AUTO_PIN_LINE_IN
;
1336 static int via_smart51_info(struct snd_kcontrol
*kcontrol
,
1337 struct snd_ctl_elem_info
*uinfo
)
1339 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
1341 uinfo
->value
.integer
.min
= 0;
1342 uinfo
->value
.integer
.max
= 1;
1346 static int via_smart51_get(struct snd_kcontrol
*kcontrol
,
1347 struct snd_ctl_elem_value
*ucontrol
)
1349 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1350 struct via_spec
*spec
= codec
->spec
;
1351 const struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
1355 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
1356 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
1357 int ctl
= snd_hda_codec_read(codec
, nid
, 0,
1358 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
1359 if (cfg
->inputs
[i
].type
> AUTO_PIN_LINE_IN
)
1361 if (cfg
->inputs
[i
].type
== AUTO_PIN_MIC
&&
1362 spec
->hp_independent_mode
&& spec
->codec_type
!= VT1718S
)
1363 continue; /* ignore FMic for independent HP */
1364 if ((ctl
& AC_PINCTL_IN_EN
) && !(ctl
& AC_PINCTL_OUT_EN
))
1367 *ucontrol
->value
.integer
.value
= on
;
1371 static int via_smart51_put(struct snd_kcontrol
*kcontrol
,
1372 struct snd_ctl_elem_value
*ucontrol
)
1374 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1375 struct via_spec
*spec
= codec
->spec
;
1376 const struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
1377 int out_in
= *ucontrol
->value
.integer
.value
1378 ? AC_PINCTL_OUT_EN
: AC_PINCTL_IN_EN
;
1381 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
1382 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
1385 if (cfg
->inputs
[i
].type
> AUTO_PIN_LINE_IN
)
1387 if (cfg
->inputs
[i
].type
== AUTO_PIN_MIC
&&
1388 spec
->hp_independent_mode
&& spec
->codec_type
!= VT1718S
)
1389 continue; /* don't retask FMic for independent HP */
1391 parm
= snd_hda_codec_read(codec
, nid
, 0,
1392 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
1393 parm
&= ~(AC_PINCTL_IN_EN
| AC_PINCTL_OUT_EN
);
1395 snd_hda_codec_write(codec
, nid
, 0,
1396 AC_VERB_SET_PIN_WIDGET_CONTROL
,
1398 if (out_in
== AC_PINCTL_OUT_EN
) {
1399 mute_aa_path(codec
, 1);
1400 notify_aa_path_ctls(codec
);
1402 if (spec
->codec_type
== VT1718S
) {
1403 snd_hda_codec_amp_stereo(
1404 codec
, nid
, HDA_OUTPUT
, 0, HDA_AMP_MUTE
,
1407 if (cfg
->inputs
[i
].type
== AUTO_PIN_MIC
) {
1408 if (spec
->codec_type
== VT1708S
1409 || spec
->codec_type
== VT1716S
) {
1410 /* input = index 1 (AOW3) */
1411 snd_hda_codec_write(
1413 AC_VERB_SET_CONNECT_SEL
, 1);
1414 snd_hda_codec_amp_stereo(
1415 codec
, nid
, HDA_OUTPUT
,
1416 0, HDA_AMP_MUTE
, HDA_AMP_UNMUTE
);
1420 spec
->smart51_enabled
= *ucontrol
->value
.integer
.value
;
1421 set_jack_power_state(codec
);
1425 static struct snd_kcontrol_new via_smart51_mixer
[2] = {
1427 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1428 .name
= "Smart 5.1",
1430 .info
= via_smart51_info
,
1431 .get
= via_smart51_get
,
1432 .put
= via_smart51_put
,
1435 .iface
= NID_MAPPING
,
1436 .name
= "Smart 5.1",
1440 static int via_smart51_build(struct via_spec
*spec
)
1442 struct snd_kcontrol_new
*knew
;
1443 const struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
1447 knew
= via_clone_control(spec
, &via_smart51_mixer
[0]);
1451 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
1452 nid
= cfg
->inputs
[i
].pin
;
1453 if (cfg
->inputs
[i
].type
<= AUTO_PIN_LINE_IN
) {
1454 knew
= via_clone_control(spec
, &via_smart51_mixer
[1]);
1457 knew
->subdevice
= nid
;
1465 /* capture mixer elements */
1466 static struct snd_kcontrol_new vt1708_capture_mixer
[] = {
1467 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_INPUT
),
1468 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_INPUT
),
1469 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x27, 0x0, HDA_INPUT
),
1470 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x27, 0x0, HDA_INPUT
),
1472 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1473 /* The multiple "Capture Source" controls confuse alsamixer
1474 * So call somewhat different..
1476 /* .name = "Capture Source", */
1477 .name
= "Input Source",
1479 .info
= via_mux_enum_info
,
1480 .get
= via_mux_enum_get
,
1481 .put
= via_mux_enum_put
,
1486 /* check AA path's mute statue */
1487 static int is_aa_path_mute(struct hda_codec
*codec
)
1490 hda_nid_t nid_mixer
;
1494 struct via_spec
*spec
= codec
->spec
;
1495 /* get nid of MW0 and start & end index */
1496 switch (spec
->codec_type
) {
1524 /* check AA path's mute status */
1525 for (i
= start_idx
; i
<= end_idx
; i
++) {
1526 unsigned int con_list
= snd_hda_codec_read(
1527 codec
, nid_mixer
, 0, AC_VERB_GET_CONNECT_LIST
, i
/4*4);
1528 int shift
= 8 * (i
% 4);
1529 hda_nid_t nid_pin
= (con_list
& (0xff << shift
)) >> shift
;
1530 unsigned int defconf
= snd_hda_codec_get_pincfg(codec
, nid_pin
);
1531 if (get_defcfg_connect(defconf
) == AC_JACK_PORT_COMPLEX
) {
1532 /* check mute status while the pin is connected */
1533 int mute_l
= snd_hda_codec_amp_read(codec
, nid_mixer
, 0,
1535 int mute_r
= snd_hda_codec_amp_read(codec
, nid_mixer
, 1,
1537 if (!mute_l
|| !mute_r
) {
1546 /* enter/exit analog low-current mode */
1547 static void analog_low_current_mode(struct hda_codec
*codec
, int stream_idle
)
1549 struct via_spec
*spec
= codec
->spec
;
1550 static int saved_stream_idle
= 1; /* saved stream idle status */
1551 int enable
= is_aa_path_mute(codec
);
1552 unsigned int verb
= 0;
1553 unsigned int parm
= 0;
1555 if (stream_idle
== -1) /* stream status did not change */
1556 enable
= enable
&& saved_stream_idle
;
1558 enable
= enable
&& stream_idle
;
1559 saved_stream_idle
= stream_idle
;
1562 /* decide low current mode's verb & parameter */
1563 switch (spec
->codec_type
) {
1567 parm
= enable
? 0x02 : 0x00; /* 0x02: 2/3x, 0x00: 1x */
1573 parm
= enable
? 0x51 : 0xe1; /* 0x51: 4/28x, 0xe1: 1x */
1577 parm
= enable
? 0x01 : 0x1d; /* 0x01: 4/40x, 0x1d: 1x */
1582 parm
= enable
? 0x00 : 0xe0; /* 0x00: 4/40x, 0xe0: 1x */
1585 return; /* other codecs are not supported */
1588 snd_hda_codec_write(codec
, codec
->afg
, 0, verb
, parm
);
1592 * generic initialization of ADC, input mixers and output mixers
1594 static struct hda_verb vt1708_volume_init_verbs
[] = {
1596 * Unmute ADC0-1 and set the default input to mic-in
1598 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
1599 {0x27, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
1602 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
1605 /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
1606 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
1607 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
1608 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
1609 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
1610 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(4)},
1613 * Set up output mixers (0x19 - 0x1b)
1615 /* set vol=0 to output mixers */
1616 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
1617 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
1618 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
1620 /* Setup default input MW0 to PW4 */
1621 {0x20, AC_VERB_SET_CONNECT_SEL
, 0},
1622 /* PW9 Output enable */
1623 {0x25, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
1627 static int via_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
1628 struct hda_codec
*codec
,
1629 struct snd_pcm_substream
*substream
)
1631 struct via_spec
*spec
= codec
->spec
;
1632 int idle
= substream
->pstr
->substream_opened
== 1
1633 && substream
->ref_count
== 0;
1634 analog_low_current_mode(codec
, idle
);
1635 return snd_hda_multi_out_analog_open(codec
, &spec
->multiout
, substream
,
1639 static void playback_multi_pcm_prep_0(struct hda_codec
*codec
,
1640 unsigned int stream_tag
,
1641 unsigned int format
,
1642 struct snd_pcm_substream
*substream
)
1644 struct via_spec
*spec
= codec
->spec
;
1645 struct hda_multi_out
*mout
= &spec
->multiout
;
1646 hda_nid_t
*nids
= mout
->dac_nids
;
1647 int chs
= substream
->runtime
->channels
;
1650 mutex_lock(&codec
->spdif_mutex
);
1651 if (mout
->dig_out_nid
&& mout
->dig_out_used
!= HDA_DIG_EXCLUSIVE
) {
1653 snd_hda_is_supported_format(codec
, mout
->dig_out_nid
,
1655 !(codec
->spdif_status
& IEC958_AES0_NONAUDIO
)) {
1656 mout
->dig_out_used
= HDA_DIG_ANALOG_DUP
;
1657 /* turn off SPDIF once; otherwise the IEC958 bits won't
1659 if (codec
->spdif_ctls
& AC_DIG1_ENABLE
)
1660 snd_hda_codec_write(codec
, mout
->dig_out_nid
, 0,
1661 AC_VERB_SET_DIGI_CONVERT_1
,
1663 ~AC_DIG1_ENABLE
& 0xff);
1664 snd_hda_codec_setup_stream(codec
, mout
->dig_out_nid
,
1665 stream_tag
, 0, format
);
1666 /* turn on again (if needed) */
1667 if (codec
->spdif_ctls
& AC_DIG1_ENABLE
)
1668 snd_hda_codec_write(codec
, mout
->dig_out_nid
, 0,
1669 AC_VERB_SET_DIGI_CONVERT_1
,
1670 codec
->spdif_ctls
& 0xff);
1672 mout
->dig_out_used
= 0;
1673 snd_hda_codec_setup_stream(codec
, mout
->dig_out_nid
,
1677 mutex_unlock(&codec
->spdif_mutex
);
1680 snd_hda_codec_setup_stream(codec
, nids
[HDA_FRONT
], stream_tag
,
1683 if (mout
->hp_nid
&& mout
->hp_nid
!= nids
[HDA_FRONT
]
1684 && !spec
->hp_independent_mode
)
1685 /* headphone out will just decode front left/right (stereo) */
1686 snd_hda_codec_setup_stream(codec
, mout
->hp_nid
, stream_tag
,
1689 /* extra outputs copied from front */
1690 for (i
= 0; i
< ARRAY_SIZE(mout
->extra_out_nid
); i
++)
1691 if (mout
->extra_out_nid
[i
])
1692 snd_hda_codec_setup_stream(codec
,
1693 mout
->extra_out_nid
[i
],
1694 stream_tag
, 0, format
);
1697 for (i
= 1; i
< mout
->num_dacs
; i
++) {
1698 if (chs
>= (i
+ 1) * 2) /* independent out */
1699 snd_hda_codec_setup_stream(codec
, nids
[i
], stream_tag
,
1701 else /* copy front */
1702 snd_hda_codec_setup_stream(codec
, nids
[i
], stream_tag
,
1707 static int via_playback_multi_pcm_prepare(struct hda_pcm_stream
*hinfo
,
1708 struct hda_codec
*codec
,
1709 unsigned int stream_tag
,
1710 unsigned int format
,
1711 struct snd_pcm_substream
*substream
)
1713 struct via_spec
*spec
= codec
->spec
;
1714 struct hda_multi_out
*mout
= &spec
->multiout
;
1715 hda_nid_t
*nids
= mout
->dac_nids
;
1717 if (substream
->number
== 0)
1718 playback_multi_pcm_prep_0(codec
, stream_tag
, format
,
1721 if (mout
->hp_nid
&& mout
->hp_nid
!= nids
[HDA_FRONT
] &&
1722 spec
->hp_independent_mode
)
1723 snd_hda_codec_setup_stream(codec
, mout
->hp_nid
,
1724 stream_tag
, 0, format
);
1726 vt1708_start_hp_work(spec
);
1730 static int via_playback_multi_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
1731 struct hda_codec
*codec
,
1732 struct snd_pcm_substream
*substream
)
1734 struct via_spec
*spec
= codec
->spec
;
1735 struct hda_multi_out
*mout
= &spec
->multiout
;
1736 hda_nid_t
*nids
= mout
->dac_nids
;
1739 if (substream
->number
== 0) {
1740 for (i
= 0; i
< mout
->num_dacs
; i
++)
1741 snd_hda_codec_setup_stream(codec
, nids
[i
], 0, 0, 0);
1743 if (mout
->hp_nid
&& !spec
->hp_independent_mode
)
1744 snd_hda_codec_setup_stream(codec
, mout
->hp_nid
,
1747 for (i
= 0; i
< ARRAY_SIZE(mout
->extra_out_nid
); i
++)
1748 if (mout
->extra_out_nid
[i
])
1749 snd_hda_codec_setup_stream(codec
,
1750 mout
->extra_out_nid
[i
],
1752 mutex_lock(&codec
->spdif_mutex
);
1753 if (mout
->dig_out_nid
&&
1754 mout
->dig_out_used
== HDA_DIG_ANALOG_DUP
) {
1755 snd_hda_codec_setup_stream(codec
, mout
->dig_out_nid
,
1757 mout
->dig_out_used
= 0;
1759 mutex_unlock(&codec
->spdif_mutex
);
1761 if (mout
->hp_nid
&& mout
->hp_nid
!= nids
[HDA_FRONT
] &&
1762 spec
->hp_independent_mode
)
1763 snd_hda_codec_setup_stream(codec
, mout
->hp_nid
,
1766 vt1708_stop_hp_work(spec
);
1773 static int via_dig_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
1774 struct hda_codec
*codec
,
1775 struct snd_pcm_substream
*substream
)
1777 struct via_spec
*spec
= codec
->spec
;
1778 return snd_hda_multi_out_dig_open(codec
, &spec
->multiout
);
1781 static int via_dig_playback_pcm_close(struct hda_pcm_stream
*hinfo
,
1782 struct hda_codec
*codec
,
1783 struct snd_pcm_substream
*substream
)
1785 struct via_spec
*spec
= codec
->spec
;
1786 return snd_hda_multi_out_dig_close(codec
, &spec
->multiout
);
1789 static int via_dig_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
1790 struct hda_codec
*codec
,
1791 unsigned int stream_tag
,
1792 unsigned int format
,
1793 struct snd_pcm_substream
*substream
)
1795 struct via_spec
*spec
= codec
->spec
;
1796 return snd_hda_multi_out_dig_prepare(codec
, &spec
->multiout
,
1797 stream_tag
, format
, substream
);
1800 static int via_dig_playback_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
1801 struct hda_codec
*codec
,
1802 struct snd_pcm_substream
*substream
)
1804 struct via_spec
*spec
= codec
->spec
;
1805 snd_hda_multi_out_dig_cleanup(codec
, &spec
->multiout
);
1812 static int via_capture_pcm_prepare(struct hda_pcm_stream
*hinfo
,
1813 struct hda_codec
*codec
,
1814 unsigned int stream_tag
,
1815 unsigned int format
,
1816 struct snd_pcm_substream
*substream
)
1818 struct via_spec
*spec
= codec
->spec
;
1820 snd_hda_codec_setup_stream(codec
, spec
->adc_nids
[substream
->number
],
1821 stream_tag
, 0, format
);
1825 static int via_capture_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
1826 struct hda_codec
*codec
,
1827 struct snd_pcm_substream
*substream
)
1829 struct via_spec
*spec
= codec
->spec
;
1830 snd_hda_codec_cleanup_stream(codec
, spec
->adc_nids
[substream
->number
]);
1834 static struct hda_pcm_stream vt1708_pcm_analog_playback
= {
1838 .nid
= 0x10, /* NID to query formats and rates */
1840 .open
= via_playback_pcm_open
,
1841 .prepare
= via_playback_multi_pcm_prepare
,
1842 .cleanup
= via_playback_multi_pcm_cleanup
1846 static struct hda_pcm_stream vt1708_pcm_analog_s16_playback
= {
1850 .nid
= 0x10, /* NID to query formats and rates */
1851 /* We got noisy outputs on the right channel on VT1708 when
1852 * 24bit samples are used. Until any workaround is found,
1853 * disable the 24bit format, so far.
1855 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
1857 .open
= via_playback_pcm_open
,
1858 .prepare
= via_playback_multi_pcm_prepare
,
1859 .cleanup
= via_playback_multi_pcm_cleanup
1863 static struct hda_pcm_stream vt1708_pcm_analog_capture
= {
1867 .nid
= 0x15, /* NID to query formats and rates */
1869 .prepare
= via_capture_pcm_prepare
,
1870 .cleanup
= via_capture_pcm_cleanup
1874 static struct hda_pcm_stream vt1708_pcm_digital_playback
= {
1878 /* NID is set in via_build_pcms */
1880 .open
= via_dig_playback_pcm_open
,
1881 .close
= via_dig_playback_pcm_close
,
1882 .prepare
= via_dig_playback_pcm_prepare
,
1883 .cleanup
= via_dig_playback_pcm_cleanup
1887 static struct hda_pcm_stream vt1708_pcm_digital_capture
= {
1893 static int via_build_controls(struct hda_codec
*codec
)
1895 struct via_spec
*spec
= codec
->spec
;
1896 struct snd_kcontrol
*kctl
;
1897 struct snd_kcontrol_new
*knew
;
1900 for (i
= 0; i
< spec
->num_mixers
; i
++) {
1901 err
= snd_hda_add_new_ctls(codec
, spec
->mixers
[i
]);
1906 if (spec
->multiout
.dig_out_nid
) {
1907 err
= snd_hda_create_spdif_out_ctls(codec
,
1908 spec
->multiout
.dig_out_nid
);
1911 err
= snd_hda_create_spdif_share_sw(codec
,
1915 spec
->multiout
.share_spdif
= 1;
1917 if (spec
->dig_in_nid
) {
1918 err
= snd_hda_create_spdif_in_ctls(codec
, spec
->dig_in_nid
);
1923 /* assign Capture Source enums to NID */
1924 kctl
= snd_hda_find_mixer_ctl(codec
, "Input Source");
1925 for (i
= 0; kctl
&& i
< kctl
->count
; i
++) {
1926 err
= snd_hda_add_nid(codec
, kctl
, i
, spec
->mux_nids
[i
]);
1931 /* other nid->control mapping */
1932 for (i
= 0; i
< spec
->num_mixers
; i
++) {
1933 for (knew
= spec
->mixers
[i
]; knew
->name
; knew
++) {
1934 if (knew
->iface
!= NID_MAPPING
)
1936 kctl
= snd_hda_find_mixer_ctl(codec
, knew
->name
);
1939 err
= snd_hda_add_nid(codec
, kctl
, 0,
1944 /* init power states */
1945 set_jack_power_state(codec
);
1946 analog_low_current_mode(codec
, 1);
1948 via_free_kctls(codec
); /* no longer needed */
1952 static int via_build_pcms(struct hda_codec
*codec
)
1954 struct via_spec
*spec
= codec
->spec
;
1955 struct hda_pcm
*info
= spec
->pcm_rec
;
1957 codec
->num_pcms
= 1;
1958 codec
->pcm_info
= info
;
1960 info
->name
= spec
->stream_name_analog
;
1961 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] =
1962 *(spec
->stream_analog_playback
);
1963 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
=
1964 spec
->multiout
.dac_nids
[0];
1965 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] = *(spec
->stream_analog_capture
);
1966 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
= spec
->adc_nids
[0];
1968 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].channels_max
=
1969 spec
->multiout
.max_channels
;
1971 if (spec
->multiout
.dig_out_nid
|| spec
->dig_in_nid
) {
1974 info
->name
= spec
->stream_name_digital
;
1975 info
->pcm_type
= HDA_PCM_TYPE_SPDIF
;
1976 if (spec
->multiout
.dig_out_nid
) {
1977 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] =
1978 *(spec
->stream_digital_playback
);
1979 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
=
1980 spec
->multiout
.dig_out_nid
;
1982 if (spec
->dig_in_nid
) {
1983 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] =
1984 *(spec
->stream_digital_capture
);
1985 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
=
1993 static void via_free(struct hda_codec
*codec
)
1995 struct via_spec
*spec
= codec
->spec
;
2000 via_free_kctls(codec
);
2001 vt1708_stop_hp_work(spec
);
2005 /* mute internal speaker if HP is plugged */
2006 static void via_hp_automute(struct hda_codec
*codec
)
2008 unsigned int present
= 0;
2009 struct via_spec
*spec
= codec
->spec
;
2011 present
= snd_hda_jack_detect(codec
, spec
->autocfg
.hp_pins
[0]);
2013 if (!spec
->hp_independent_mode
) {
2014 struct snd_ctl_elem_id id
;
2016 snd_hda_codec_amp_stereo(
2017 codec
, spec
->autocfg
.line_out_pins
[0], HDA_OUTPUT
, 0,
2018 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
2020 memset(&id
, 0, sizeof(id
));
2021 id
.iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
2022 strcpy(id
.name
, "Front Playback Switch");
2023 snd_ctl_notify(codec
->bus
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
2028 /* mute mono out if HP or Line out is plugged */
2029 static void via_mono_automute(struct hda_codec
*codec
)
2031 unsigned int hp_present
, lineout_present
;
2032 struct via_spec
*spec
= codec
->spec
;
2034 if (spec
->codec_type
!= VT1716S
)
2037 lineout_present
= snd_hda_jack_detect(codec
,
2038 spec
->autocfg
.line_out_pins
[0]);
2040 /* Mute Mono Out if Line Out is plugged */
2041 if (lineout_present
) {
2042 snd_hda_codec_amp_stereo(
2043 codec
, 0x2A, HDA_OUTPUT
, 0, HDA_AMP_MUTE
, HDA_AMP_MUTE
);
2047 hp_present
= snd_hda_jack_detect(codec
, spec
->autocfg
.hp_pins
[0]);
2049 if (!spec
->hp_independent_mode
)
2050 snd_hda_codec_amp_stereo(
2051 codec
, 0x2A, HDA_OUTPUT
, 0, HDA_AMP_MUTE
,
2052 hp_present
? HDA_AMP_MUTE
: 0);
2055 static void via_gpio_control(struct hda_codec
*codec
)
2057 unsigned int gpio_data
;
2058 unsigned int vol_counter
;
2060 unsigned int master_vol
;
2062 struct via_spec
*spec
= codec
->spec
;
2064 gpio_data
= snd_hda_codec_read(codec
, codec
->afg
, 0,
2065 AC_VERB_GET_GPIO_DATA
, 0) & 0x03;
2067 vol_counter
= (snd_hda_codec_read(codec
, codec
->afg
, 0,
2068 0xF84, 0) & 0x3F0000) >> 16;
2070 vol
= vol_counter
& 0x1F;
2071 master_vol
= snd_hda_codec_read(codec
, 0x1A, 0,
2072 AC_VERB_GET_AMP_GAIN_MUTE
,
2075 if (gpio_data
== 0x02) {
2076 /* unmute line out */
2077 snd_hda_codec_amp_stereo(codec
, spec
->autocfg
.line_out_pins
[0],
2078 HDA_OUTPUT
, 0, HDA_AMP_MUTE
, 0);
2080 if (vol_counter
& 0x20) {
2081 /* decrease volume */
2082 if (vol
> master_vol
)
2084 snd_hda_codec_amp_stereo(codec
, 0x1A, HDA_INPUT
,
2088 /* increase volume */
2089 snd_hda_codec_amp_stereo(codec
, 0x1A, HDA_INPUT
, 0,
2091 ((master_vol
+vol
) > 0x2A) ? 0x2A :
2094 } else if (!(gpio_data
& 0x02)) {
2096 snd_hda_codec_amp_stereo(codec
,
2097 spec
->autocfg
.line_out_pins
[0],
2098 HDA_OUTPUT
, 0, HDA_AMP_MUTE
,
2103 /* mute Internal-Speaker if HP is plugged */
2104 static void via_speaker_automute(struct hda_codec
*codec
)
2106 unsigned int hp_present
;
2107 struct via_spec
*spec
= codec
->spec
;
2109 if (spec
->codec_type
!= VT2002P
&& spec
->codec_type
!= VT1812
)
2112 hp_present
= snd_hda_jack_detect(codec
, spec
->autocfg
.hp_pins
[0]);
2114 if (!spec
->hp_independent_mode
) {
2115 struct snd_ctl_elem_id id
;
2116 snd_hda_codec_amp_stereo(
2117 codec
, spec
->autocfg
.speaker_pins
[0], HDA_OUTPUT
, 0,
2118 HDA_AMP_MUTE
, hp_present
? HDA_AMP_MUTE
: 0);
2120 memset(&id
, 0, sizeof(id
));
2121 id
.iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
2122 strcpy(id
.name
, "Speaker Playback Switch");
2123 snd_ctl_notify(codec
->bus
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
2128 /* mute line-out and internal speaker if HP is plugged */
2129 static void via_hp_bind_automute(struct hda_codec
*codec
)
2131 /* use long instead of int below just to avoid an internal compiler
2132 * error with gcc 4.0.x
2134 unsigned long hp_present
, present
= 0;
2135 struct via_spec
*spec
= codec
->spec
;
2138 if (!spec
->autocfg
.hp_pins
[0] || !spec
->autocfg
.line_out_pins
[0])
2141 hp_present
= snd_hda_jack_detect(codec
, spec
->autocfg
.hp_pins
[0]);
2143 present
= snd_hda_jack_detect(codec
, spec
->autocfg
.line_out_pins
[0]);
2145 if (!spec
->hp_independent_mode
) {
2146 /* Mute Line-Outs */
2147 for (i
= 0; i
< spec
->autocfg
.line_outs
; i
++)
2148 snd_hda_codec_amp_stereo(
2149 codec
, spec
->autocfg
.line_out_pins
[i
],
2151 HDA_AMP_MUTE
, hp_present
? HDA_AMP_MUTE
: 0);
2153 present
= hp_present
;
2156 for (i
= 0; i
< spec
->autocfg
.speaker_outs
; i
++)
2157 snd_hda_codec_amp_stereo(
2158 codec
, spec
->autocfg
.speaker_pins
[i
], HDA_OUTPUT
, 0,
2159 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
2163 /* unsolicited event for jack sensing */
2164 static void via_unsol_event(struct hda_codec
*codec
,
2168 if (res
& VIA_HP_EVENT
)
2169 via_hp_automute(codec
);
2170 if (res
& VIA_GPIO_EVENT
)
2171 via_gpio_control(codec
);
2172 if (res
& VIA_JACK_EVENT
)
2173 set_jack_power_state(codec
);
2174 if (res
& VIA_MONO_EVENT
)
2175 via_mono_automute(codec
);
2176 if (res
& VIA_SPEAKER_EVENT
)
2177 via_speaker_automute(codec
);
2178 if (res
& VIA_BIND_HP_EVENT
)
2179 via_hp_bind_automute(codec
);
2182 static int via_init(struct hda_codec
*codec
)
2184 struct via_spec
*spec
= codec
->spec
;
2186 for (i
= 0; i
< spec
->num_iverbs
; i
++)
2187 snd_hda_sequence_write(codec
, spec
->init_verbs
[i
]);
2189 spec
->codec_type
= get_codec_type(codec
);
2190 if (spec
->codec_type
== VT1708BCE
)
2191 spec
->codec_type
= VT1708S
; /* VT1708BCE & VT1708S are almost
2193 /* Lydia Add for EAPD enable */
2194 if (!spec
->dig_in_nid
) { /* No Digital In connection */
2195 if (spec
->dig_in_pin
) {
2196 snd_hda_codec_write(codec
, spec
->dig_in_pin
, 0,
2197 AC_VERB_SET_PIN_WIDGET_CONTROL
,
2199 snd_hda_codec_write(codec
, spec
->dig_in_pin
, 0,
2200 AC_VERB_SET_EAPD_BTLENABLE
, 0x02);
2202 } else /* enable SPDIF-input pin */
2203 snd_hda_codec_write(codec
, spec
->autocfg
.dig_in_pin
, 0,
2204 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
);
2206 /* assign slave outs */
2207 if (spec
->slave_dig_outs
[0])
2208 codec
->slave_dig_outs
= spec
->slave_dig_outs
;
2213 #ifdef SND_HDA_NEEDS_RESUME
2214 static int via_suspend(struct hda_codec
*codec
, pm_message_t state
)
2216 struct via_spec
*spec
= codec
->spec
;
2217 vt1708_stop_hp_work(spec
);
2222 #ifdef CONFIG_SND_HDA_POWER_SAVE
2223 static int via_check_power_status(struct hda_codec
*codec
, hda_nid_t nid
)
2225 struct via_spec
*spec
= codec
->spec
;
2226 return snd_hda_check_amp_list_power(codec
, &spec
->loopback
, nid
);
2232 static struct hda_codec_ops via_patch_ops
= {
2233 .build_controls
= via_build_controls
,
2234 .build_pcms
= via_build_pcms
,
2237 #ifdef SND_HDA_NEEDS_RESUME
2238 .suspend
= via_suspend
,
2240 #ifdef CONFIG_SND_HDA_POWER_SAVE
2241 .check_power_status
= via_check_power_status
,
2245 /* fill in the dac_nids table from the parsed pin configuration */
2246 static int vt1708_auto_fill_dac_nids(struct via_spec
*spec
,
2247 const struct auto_pin_cfg
*cfg
)
2252 spec
->multiout
.num_dacs
= cfg
->line_outs
;
2254 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
2256 for (i
= 0; i
< 4; i
++) {
2257 nid
= cfg
->line_out_pins
[i
];
2259 /* config dac list */
2261 case AUTO_SEQ_FRONT
:
2262 spec
->multiout
.dac_nids
[i
] = 0x10;
2264 case AUTO_SEQ_CENLFE
:
2265 spec
->multiout
.dac_nids
[i
] = 0x12;
2267 case AUTO_SEQ_SURROUND
:
2268 spec
->multiout
.dac_nids
[i
] = 0x11;
2271 spec
->multiout
.dac_nids
[i
] = 0x13;
2280 /* add playback controls from the parsed DAC table */
2281 static int vt1708_auto_create_multi_out_ctls(struct via_spec
*spec
,
2282 const struct auto_pin_cfg
*cfg
)
2285 static const char *chname
[4] = { "Front", "Surround", "C/LFE", "Side" };
2286 hda_nid_t nid
, nid_vol
, nid_vols
[] = {0x17, 0x19, 0x1a, 0x1b};
2289 for (i
= 0; i
<= AUTO_SEQ_SIDE
; i
++) {
2290 nid
= cfg
->line_out_pins
[i
];
2295 nid_vol
= nid_vols
[i
];
2297 if (i
== AUTO_SEQ_CENLFE
) {
2299 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
2300 "Center Playback Volume",
2301 HDA_COMPOSE_AMP_VAL(nid_vol
, 1, 0,
2305 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
2306 "LFE Playback Volume",
2307 HDA_COMPOSE_AMP_VAL(nid_vol
, 2, 0,
2311 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
2312 "Center Playback Switch",
2313 HDA_COMPOSE_AMP_VAL(nid_vol
, 1, 0,
2317 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
2318 "LFE Playback Switch",
2319 HDA_COMPOSE_AMP_VAL(nid_vol
, 2, 0,
2323 } else if (i
== AUTO_SEQ_FRONT
) {
2324 /* add control to mixer index 0 */
2325 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
2326 "Master Front Playback Volume",
2327 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
2331 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
2332 "Master Front Playback Switch",
2333 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
2338 /* add control to PW3 */
2339 sprintf(name
, "%s Playback Volume", chname
[i
]);
2340 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
, name
,
2341 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
2345 sprintf(name
, "%s Playback Switch", chname
[i
]);
2346 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
, name
,
2347 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
2352 sprintf(name
, "%s Playback Volume", chname
[i
]);
2353 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
, name
,
2354 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
2358 sprintf(name
, "%s Playback Switch", chname
[i
]);
2359 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
, name
,
2360 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
2370 static void create_hp_imux(struct via_spec
*spec
)
2373 struct hda_input_mux
*imux
= &spec
->private_imux
[1];
2374 static const char *texts
[] = { "OFF", "ON", NULL
};
2376 /* for hp mode select */
2377 for (i
= 0; texts
[i
]; i
++)
2378 snd_hda_add_imux_item(imux
, texts
[i
], i
, NULL
);
2380 spec
->hp_mux
= &spec
->private_imux
[1];
2383 static int vt1708_auto_create_hp_ctls(struct via_spec
*spec
, hda_nid_t pin
)
2390 spec
->multiout
.hp_nid
= VT1708_HP_NID
; /* AOW3 */
2391 spec
->hp_independent_mode_index
= 1;
2393 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
2394 "Headphone Playback Volume",
2395 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
2398 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
2399 "Headphone Playback Switch",
2400 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
2404 create_hp_imux(spec
);
2409 /* create playback/capture controls for input pins */
2410 static int vt_auto_create_analog_input_ctls(struct hda_codec
*codec
,
2411 const struct auto_pin_cfg
*cfg
,
2413 hda_nid_t pin_idxs
[], int num_idxs
)
2415 struct via_spec
*spec
= codec
->spec
;
2416 struct hda_input_mux
*imux
= &spec
->private_imux
[0];
2417 int i
, err
, idx
, type
, type_idx
= 0;
2419 /* for internal loopback recording select */
2420 for (idx
= 0; idx
< num_idxs
; idx
++) {
2421 if (pin_idxs
[idx
] == 0xff) {
2422 snd_hda_add_imux_item(imux
, "Stereo Mixer", idx
, NULL
);
2427 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
2429 type
= cfg
->inputs
[i
].type
;
2430 for (idx
= 0; idx
< num_idxs
; idx
++)
2431 if (pin_idxs
[idx
] == cfg
->inputs
[i
].pin
)
2433 if (idx
>= num_idxs
)
2435 if (i
> 0 && type
== cfg
->inputs
[i
- 1].type
)
2439 label
= hda_get_autocfg_input_label(codec
, cfg
, i
);
2440 err
= via_new_analog_input(spec
, label
, type_idx
, idx
, cap_nid
);
2443 snd_hda_add_imux_item(imux
, label
, idx
, NULL
);
2448 /* create playback/capture controls for input pins */
2449 static int vt1708_auto_create_analog_input_ctls(struct hda_codec
*codec
,
2450 const struct auto_pin_cfg
*cfg
)
2452 static hda_nid_t pin_idxs
[] = { 0xff, 0x24, 0x1d, 0x1e, 0x21 };
2453 return vt_auto_create_analog_input_ctls(codec
, cfg
, 0x17, pin_idxs
,
2454 ARRAY_SIZE(pin_idxs
));
2457 #ifdef CONFIG_SND_HDA_POWER_SAVE
2458 static struct hda_amp_list vt1708_loopbacks
[] = {
2459 { 0x17, HDA_INPUT
, 1 },
2460 { 0x17, HDA_INPUT
, 2 },
2461 { 0x17, HDA_INPUT
, 3 },
2462 { 0x17, HDA_INPUT
, 4 },
2467 static void vt1708_set_pinconfig_connect(struct hda_codec
*codec
, hda_nid_t nid
)
2469 unsigned int def_conf
;
2470 unsigned char seqassoc
;
2472 def_conf
= snd_hda_codec_get_pincfg(codec
, nid
);
2473 seqassoc
= (unsigned char) get_defcfg_association(def_conf
);
2474 seqassoc
= (seqassoc
<< 4) | get_defcfg_sequence(def_conf
);
2475 if (get_defcfg_connect(def_conf
) == AC_JACK_PORT_NONE
2476 && (seqassoc
== 0xf0 || seqassoc
== 0xff)) {
2477 def_conf
= def_conf
& (~(AC_JACK_PORT_BOTH
<< 30));
2478 snd_hda_codec_set_pincfg(codec
, nid
, def_conf
);
2484 static int vt1708_jack_detectect_get(struct snd_kcontrol
*kcontrol
,
2485 struct snd_ctl_elem_value
*ucontrol
)
2487 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2488 struct via_spec
*spec
= codec
->spec
;
2490 if (spec
->codec_type
!= VT1708
)
2492 spec
->vt1708_jack_detectect
=
2493 !((snd_hda_codec_read(codec
, 0x1, 0, 0xf84, 0) >> 8) & 0x1);
2494 ucontrol
->value
.integer
.value
[0] = spec
->vt1708_jack_detectect
;
2498 static int vt1708_jack_detectect_put(struct snd_kcontrol
*kcontrol
,
2499 struct snd_ctl_elem_value
*ucontrol
)
2501 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2502 struct via_spec
*spec
= codec
->spec
;
2505 if (spec
->codec_type
!= VT1708
)
2507 spec
->vt1708_jack_detectect
= ucontrol
->value
.integer
.value
[0];
2508 change
= (0x1 & (snd_hda_codec_read(codec
, 0x1, 0, 0xf84, 0) >> 8))
2509 == !spec
->vt1708_jack_detectect
;
2510 if (spec
->vt1708_jack_detectect
) {
2511 mute_aa_path(codec
, 1);
2512 notify_aa_path_ctls(codec
);
2517 static struct snd_kcontrol_new vt1708_jack_detectect
[] = {
2519 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2520 .name
= "Jack Detect",
2522 .info
= snd_ctl_boolean_mono_info
,
2523 .get
= vt1708_jack_detectect_get
,
2524 .put
= vt1708_jack_detectect_put
,
2529 static int vt1708_parse_auto_config(struct hda_codec
*codec
)
2531 struct via_spec
*spec
= codec
->spec
;
2534 /* Add HP and CD pin config connect bit re-config action */
2535 vt1708_set_pinconfig_connect(codec
, VT1708_HP_PIN_NID
);
2536 vt1708_set_pinconfig_connect(codec
, VT1708_CD_PIN_NID
);
2538 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
, NULL
);
2541 err
= vt1708_auto_fill_dac_nids(spec
, &spec
->autocfg
);
2544 if (!spec
->autocfg
.line_outs
&& !spec
->autocfg
.hp_pins
[0])
2545 return 0; /* can't find valid BIOS pin config */
2547 err
= vt1708_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
2550 err
= vt1708_auto_create_hp_ctls(spec
, spec
->autocfg
.hp_pins
[0]);
2553 err
= vt1708_auto_create_analog_input_ctls(codec
, &spec
->autocfg
);
2556 /* add jack detect on/off control */
2557 err
= snd_hda_add_new_ctls(codec
, vt1708_jack_detectect
);
2561 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
2563 if (spec
->autocfg
.dig_outs
)
2564 spec
->multiout
.dig_out_nid
= VT1708_DIGOUT_NID
;
2565 spec
->dig_in_pin
= VT1708_DIGIN_PIN
;
2566 if (spec
->autocfg
.dig_in_pin
)
2567 spec
->dig_in_nid
= VT1708_DIGIN_NID
;
2569 if (spec
->kctls
.list
)
2570 spec
->mixers
[spec
->num_mixers
++] = spec
->kctls
.list
;
2572 spec
->init_verbs
[spec
->num_iverbs
++] = vt1708_volume_init_verbs
;
2574 spec
->input_mux
= &spec
->private_imux
[0];
2577 via_hp_build(codec
);
2579 via_smart51_build(spec
);
2583 /* init callback for auto-configuration model -- overriding the default init */
2584 static int via_auto_init(struct hda_codec
*codec
)
2586 struct via_spec
*spec
= codec
->spec
;
2589 via_auto_init_multi_out(codec
);
2590 via_auto_init_hp_out(codec
);
2591 via_auto_init_analog_input(codec
);
2592 if (spec
->codec_type
== VT2002P
|| spec
->codec_type
== VT1812
) {
2593 via_hp_bind_automute(codec
);
2595 via_hp_automute(codec
);
2596 via_speaker_automute(codec
);
2602 static void vt1708_update_hp_jack_state(struct work_struct
*work
)
2604 struct via_spec
*spec
= container_of(work
, struct via_spec
,
2605 vt1708_hp_work
.work
);
2606 if (spec
->codec_type
!= VT1708
)
2608 /* if jack state toggled */
2609 if (spec
->vt1708_hp_present
2610 != snd_hda_jack_detect(spec
->codec
, spec
->autocfg
.hp_pins
[0])) {
2611 spec
->vt1708_hp_present
^= 1;
2612 via_hp_automute(spec
->codec
);
2614 vt1708_start_hp_work(spec
);
2617 static int get_mux_nids(struct hda_codec
*codec
)
2619 struct via_spec
*spec
= codec
->spec
;
2620 hda_nid_t nid
, conn
[8];
2624 for (i
= 0; i
< spec
->num_adc_nids
; i
++) {
2625 nid
= spec
->adc_nids
[i
];
2627 type
= get_wcaps_type(get_wcaps(codec
, nid
));
2628 if (type
== AC_WID_PIN
)
2630 n
= snd_hda_get_connections(codec
, nid
, conn
,
2635 spec
->mux_nids
[i
] = nid
;
2644 static int patch_vt1708(struct hda_codec
*codec
)
2646 struct via_spec
*spec
;
2649 /* create a codec specific record */
2650 spec
= via_new_spec(codec
);
2654 /* automatic parse from the BIOS config */
2655 err
= vt1708_parse_auto_config(codec
);
2660 printk(KERN_INFO
"hda_codec: Cannot set up configuration "
2661 "from BIOS. Using genenic mode...\n");
2665 spec
->stream_name_analog
= "VT1708 Analog";
2666 spec
->stream_analog_playback
= &vt1708_pcm_analog_playback
;
2667 /* disable 32bit format on VT1708 */
2668 if (codec
->vendor_id
== 0x11061708)
2669 spec
->stream_analog_playback
= &vt1708_pcm_analog_s16_playback
;
2670 spec
->stream_analog_capture
= &vt1708_pcm_analog_capture
;
2672 spec
->stream_name_digital
= "VT1708 Digital";
2673 spec
->stream_digital_playback
= &vt1708_pcm_digital_playback
;
2674 spec
->stream_digital_capture
= &vt1708_pcm_digital_capture
;
2677 if (!spec
->adc_nids
&& spec
->input_mux
) {
2678 spec
->adc_nids
= vt1708_adc_nids
;
2679 spec
->num_adc_nids
= ARRAY_SIZE(vt1708_adc_nids
);
2680 get_mux_nids(codec
);
2681 spec
->mixers
[spec
->num_mixers
] = vt1708_capture_mixer
;
2685 codec
->patch_ops
= via_patch_ops
;
2687 codec
->patch_ops
.init
= via_auto_init
;
2688 #ifdef CONFIG_SND_HDA_POWER_SAVE
2689 spec
->loopback
.amplist
= vt1708_loopbacks
;
2691 INIT_DELAYED_WORK(&spec
->vt1708_hp_work
, vt1708_update_hp_jack_state
);
2695 /* capture mixer elements */
2696 static struct snd_kcontrol_new vt1709_capture_mixer
[] = {
2697 HDA_CODEC_VOLUME("Capture Volume", 0x14, 0x0, HDA_INPUT
),
2698 HDA_CODEC_MUTE("Capture Switch", 0x14, 0x0, HDA_INPUT
),
2699 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x15, 0x0, HDA_INPUT
),
2700 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x15, 0x0, HDA_INPUT
),
2701 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x16, 0x0, HDA_INPUT
),
2702 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x16, 0x0, HDA_INPUT
),
2704 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2705 /* The multiple "Capture Source" controls confuse alsamixer
2706 * So call somewhat different..
2708 /* .name = "Capture Source", */
2709 .name
= "Input Source",
2711 .info
= via_mux_enum_info
,
2712 .get
= via_mux_enum_get
,
2713 .put
= via_mux_enum_put
,
2718 static struct hda_verb vt1709_uniwill_init_verbs
[] = {
2719 {0x20, AC_VERB_SET_UNSOLICITED_ENABLE
,
2720 AC_USRSP_EN
| VIA_HP_EVENT
| VIA_JACK_EVENT
},
2725 * generic initialization of ADC, input mixers and output mixers
2727 static struct hda_verb vt1709_10ch_volume_init_verbs
[] = {
2729 * Unmute ADC0-2 and set the default input to mic-in
2731 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
2732 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
2733 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
2736 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
2739 /* Amp Indices: AOW0=0, CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
2740 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
2741 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
2742 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
2743 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
2744 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(4)},
2747 * Set up output selector (0x1a, 0x1b, 0x29)
2749 /* set vol=0 to output mixers */
2750 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
2751 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
2752 {0x29, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
2755 * Unmute PW3 and PW4
2757 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
2758 {0x20, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
2760 /* Set input of PW4 as MW0 */
2761 {0x20, AC_VERB_SET_CONNECT_SEL
, 0},
2762 /* PW9 Output enable */
2763 {0x24, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
2767 static struct hda_pcm_stream vt1709_10ch_pcm_analog_playback
= {
2771 .nid
= 0x10, /* NID to query formats and rates */
2773 .open
= via_playback_pcm_open
,
2774 .prepare
= via_playback_multi_pcm_prepare
,
2775 .cleanup
= via_playback_multi_pcm_cleanup
,
2779 static struct hda_pcm_stream vt1709_6ch_pcm_analog_playback
= {
2783 .nid
= 0x10, /* NID to query formats and rates */
2785 .open
= via_playback_pcm_open
,
2786 .prepare
= via_playback_multi_pcm_prepare
,
2787 .cleanup
= via_playback_multi_pcm_cleanup
,
2791 static struct hda_pcm_stream vt1709_pcm_analog_capture
= {
2795 .nid
= 0x14, /* NID to query formats and rates */
2797 .prepare
= via_capture_pcm_prepare
,
2798 .cleanup
= via_capture_pcm_cleanup
2802 static struct hda_pcm_stream vt1709_pcm_digital_playback
= {
2806 /* NID is set in via_build_pcms */
2808 .open
= via_dig_playback_pcm_open
,
2809 .close
= via_dig_playback_pcm_close
2813 static struct hda_pcm_stream vt1709_pcm_digital_capture
= {
2819 static int vt1709_auto_fill_dac_nids(struct via_spec
*spec
,
2820 const struct auto_pin_cfg
*cfg
)
2825 if (cfg
->line_outs
== 4) /* 10 channels */
2826 spec
->multiout
.num_dacs
= cfg
->line_outs
+1; /* AOW0~AOW4 */
2827 else if (cfg
->line_outs
== 3) /* 6 channels */
2828 spec
->multiout
.num_dacs
= cfg
->line_outs
; /* AOW0~AOW2 */
2830 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
2832 if (cfg
->line_outs
== 4) { /* 10 channels */
2833 for (i
= 0; i
< cfg
->line_outs
; i
++) {
2834 nid
= cfg
->line_out_pins
[i
];
2836 /* config dac list */
2838 case AUTO_SEQ_FRONT
:
2840 spec
->multiout
.dac_nids
[i
] = 0x10;
2842 case AUTO_SEQ_CENLFE
:
2844 spec
->multiout
.dac_nids
[i
] = 0x12;
2846 case AUTO_SEQ_SURROUND
:
2848 spec
->multiout
.dac_nids
[i
] = 0x11;
2852 spec
->multiout
.dac_nids
[i
] = 0x27;
2859 spec
->multiout
.dac_nids
[cfg
->line_outs
] = 0x28; /* AOW4 */
2861 } else if (cfg
->line_outs
== 3) { /* 6 channels */
2862 for (i
= 0; i
< cfg
->line_outs
; i
++) {
2863 nid
= cfg
->line_out_pins
[i
];
2865 /* config dac list */
2867 case AUTO_SEQ_FRONT
:
2869 spec
->multiout
.dac_nids
[i
] = 0x10;
2871 case AUTO_SEQ_CENLFE
:
2873 spec
->multiout
.dac_nids
[i
] = 0x12;
2875 case AUTO_SEQ_SURROUND
:
2877 spec
->multiout
.dac_nids
[i
] = 0x11;
2889 /* add playback controls from the parsed DAC table */
2890 static int vt1709_auto_create_multi_out_ctls(struct via_spec
*spec
,
2891 const struct auto_pin_cfg
*cfg
)
2894 static const char *chname
[4] = { "Front", "Surround", "C/LFE", "Side" };
2895 hda_nid_t nid
, nid_vol
, nid_vols
[] = {0x18, 0x1a, 0x1b, 0x29};
2898 for (i
= 0; i
<= AUTO_SEQ_SIDE
; i
++) {
2899 nid
= cfg
->line_out_pins
[i
];
2904 nid_vol
= nid_vols
[i
];
2906 if (i
== AUTO_SEQ_CENLFE
) {
2908 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
2909 "Center Playback Volume",
2910 HDA_COMPOSE_AMP_VAL(nid_vol
, 1, 0,
2914 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
2915 "LFE Playback Volume",
2916 HDA_COMPOSE_AMP_VAL(nid_vol
, 2, 0,
2920 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
2921 "Center Playback Switch",
2922 HDA_COMPOSE_AMP_VAL(nid_vol
, 1, 0,
2926 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
2927 "LFE Playback Switch",
2928 HDA_COMPOSE_AMP_VAL(nid_vol
, 2, 0,
2932 } else if (i
== AUTO_SEQ_FRONT
) {
2933 /* ADD control to mixer index 0 */
2934 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
2935 "Master Front Playback Volume",
2936 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
2940 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
2941 "Master Front Playback Switch",
2942 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
2947 /* add control to PW3 */
2948 sprintf(name
, "%s Playback Volume", chname
[i
]);
2949 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
, name
,
2950 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
2954 sprintf(name
, "%s Playback Switch", chname
[i
]);
2955 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
, name
,
2956 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
2960 } else if (i
== AUTO_SEQ_SURROUND
) {
2961 sprintf(name
, "%s Playback Volume", chname
[i
]);
2962 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
, name
,
2963 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
2967 sprintf(name
, "%s Playback Switch", chname
[i
]);
2968 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
, name
,
2969 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
2973 } else if (i
== AUTO_SEQ_SIDE
) {
2974 sprintf(name
, "%s Playback Volume", chname
[i
]);
2975 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
, name
,
2976 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
2980 sprintf(name
, "%s Playback Switch", chname
[i
]);
2981 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
, name
,
2982 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
2992 static int vt1709_auto_create_hp_ctls(struct via_spec
*spec
, hda_nid_t pin
)
2999 if (spec
->multiout
.num_dacs
== 5) /* 10 channels */
3000 spec
->multiout
.hp_nid
= VT1709_HP_DAC_NID
;
3001 else if (spec
->multiout
.num_dacs
== 3) /* 6 channels */
3002 spec
->multiout
.hp_nid
= 0;
3003 spec
->hp_independent_mode_index
= 1;
3005 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
3006 "Headphone Playback Volume",
3007 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
3010 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
3011 "Headphone Playback Switch",
3012 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
3019 /* create playback/capture controls for input pins */
3020 static int vt1709_auto_create_analog_input_ctls(struct hda_codec
*codec
,
3021 const struct auto_pin_cfg
*cfg
)
3023 static hda_nid_t pin_idxs
[] = { 0xff, 0x23, 0x1d, 0x1e, 0x21 };
3024 return vt_auto_create_analog_input_ctls(codec
, cfg
, 0x18, pin_idxs
,
3025 ARRAY_SIZE(pin_idxs
));
3028 static int vt1709_parse_auto_config(struct hda_codec
*codec
)
3030 struct via_spec
*spec
= codec
->spec
;
3033 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
, NULL
);
3036 err
= vt1709_auto_fill_dac_nids(spec
, &spec
->autocfg
);
3039 if (!spec
->autocfg
.line_outs
&& !spec
->autocfg
.hp_pins
[0])
3040 return 0; /* can't find valid BIOS pin config */
3042 err
= vt1709_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
3045 err
= vt1709_auto_create_hp_ctls(spec
, spec
->autocfg
.hp_pins
[0]);
3048 err
= vt1709_auto_create_analog_input_ctls(codec
, &spec
->autocfg
);
3052 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
3054 if (spec
->autocfg
.dig_outs
)
3055 spec
->multiout
.dig_out_nid
= VT1709_DIGOUT_NID
;
3056 spec
->dig_in_pin
= VT1709_DIGIN_PIN
;
3057 if (spec
->autocfg
.dig_in_pin
)
3058 spec
->dig_in_nid
= VT1709_DIGIN_NID
;
3060 if (spec
->kctls
.list
)
3061 spec
->mixers
[spec
->num_mixers
++] = spec
->kctls
.list
;
3063 spec
->input_mux
= &spec
->private_imux
[0];
3066 via_hp_build(codec
);
3068 via_smart51_build(spec
);
3072 #ifdef CONFIG_SND_HDA_POWER_SAVE
3073 static struct hda_amp_list vt1709_loopbacks
[] = {
3074 { 0x18, HDA_INPUT
, 1 },
3075 { 0x18, HDA_INPUT
, 2 },
3076 { 0x18, HDA_INPUT
, 3 },
3077 { 0x18, HDA_INPUT
, 4 },
3082 static int patch_vt1709_10ch(struct hda_codec
*codec
)
3084 struct via_spec
*spec
;
3087 /* create a codec specific record */
3088 spec
= via_new_spec(codec
);
3092 err
= vt1709_parse_auto_config(codec
);
3097 printk(KERN_INFO
"hda_codec: Cannot set up configuration. "
3098 "Using genenic mode...\n");
3101 spec
->init_verbs
[spec
->num_iverbs
++] = vt1709_10ch_volume_init_verbs
;
3102 spec
->init_verbs
[spec
->num_iverbs
++] = vt1709_uniwill_init_verbs
;
3104 spec
->stream_name_analog
= "VT1709 Analog";
3105 spec
->stream_analog_playback
= &vt1709_10ch_pcm_analog_playback
;
3106 spec
->stream_analog_capture
= &vt1709_pcm_analog_capture
;
3108 spec
->stream_name_digital
= "VT1709 Digital";
3109 spec
->stream_digital_playback
= &vt1709_pcm_digital_playback
;
3110 spec
->stream_digital_capture
= &vt1709_pcm_digital_capture
;
3113 if (!spec
->adc_nids
&& spec
->input_mux
) {
3114 spec
->adc_nids
= vt1709_adc_nids
;
3115 spec
->num_adc_nids
= ARRAY_SIZE(vt1709_adc_nids
);
3116 get_mux_nids(codec
);
3117 spec
->mixers
[spec
->num_mixers
] = vt1709_capture_mixer
;
3121 codec
->patch_ops
= via_patch_ops
;
3123 codec
->patch_ops
.init
= via_auto_init
;
3124 codec
->patch_ops
.unsol_event
= via_unsol_event
;
3125 #ifdef CONFIG_SND_HDA_POWER_SAVE
3126 spec
->loopback
.amplist
= vt1709_loopbacks
;
3132 * generic initialization of ADC, input mixers and output mixers
3134 static struct hda_verb vt1709_6ch_volume_init_verbs
[] = {
3136 * Unmute ADC0-2 and set the default input to mic-in
3138 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3139 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3140 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3143 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
3146 /* Amp Indices: AOW0=0, CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
3147 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3148 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
3149 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
3150 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
3151 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(4)},
3154 * Set up output selector (0x1a, 0x1b, 0x29)
3156 /* set vol=0 to output mixers */
3157 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
3158 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
3159 {0x29, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
3162 * Unmute PW3 and PW4
3164 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
3165 {0x20, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
3167 /* Set input of PW4 as MW0 */
3168 {0x20, AC_VERB_SET_CONNECT_SEL
, 0},
3169 /* PW9 Output enable */
3170 {0x24, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
3174 static int patch_vt1709_6ch(struct hda_codec
*codec
)
3176 struct via_spec
*spec
;
3179 /* create a codec specific record */
3180 spec
= via_new_spec(codec
);
3184 err
= vt1709_parse_auto_config(codec
);
3189 printk(KERN_INFO
"hda_codec: Cannot set up configuration. "
3190 "Using genenic mode...\n");
3193 spec
->init_verbs
[spec
->num_iverbs
++] = vt1709_6ch_volume_init_verbs
;
3194 spec
->init_verbs
[spec
->num_iverbs
++] = vt1709_uniwill_init_verbs
;
3196 spec
->stream_name_analog
= "VT1709 Analog";
3197 spec
->stream_analog_playback
= &vt1709_6ch_pcm_analog_playback
;
3198 spec
->stream_analog_capture
= &vt1709_pcm_analog_capture
;
3200 spec
->stream_name_digital
= "VT1709 Digital";
3201 spec
->stream_digital_playback
= &vt1709_pcm_digital_playback
;
3202 spec
->stream_digital_capture
= &vt1709_pcm_digital_capture
;
3205 if (!spec
->adc_nids
&& spec
->input_mux
) {
3206 spec
->adc_nids
= vt1709_adc_nids
;
3207 spec
->num_adc_nids
= ARRAY_SIZE(vt1709_adc_nids
);
3208 get_mux_nids(codec
);
3209 spec
->mixers
[spec
->num_mixers
] = vt1709_capture_mixer
;
3213 codec
->patch_ops
= via_patch_ops
;
3215 codec
->patch_ops
.init
= via_auto_init
;
3216 codec
->patch_ops
.unsol_event
= via_unsol_event
;
3217 #ifdef CONFIG_SND_HDA_POWER_SAVE
3218 spec
->loopback
.amplist
= vt1709_loopbacks
;
3223 /* capture mixer elements */
3224 static struct snd_kcontrol_new vt1708B_capture_mixer
[] = {
3225 HDA_CODEC_VOLUME("Capture Volume", 0x13, 0x0, HDA_INPUT
),
3226 HDA_CODEC_MUTE("Capture Switch", 0x13, 0x0, HDA_INPUT
),
3227 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x14, 0x0, HDA_INPUT
),
3228 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x14, 0x0, HDA_INPUT
),
3230 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3231 /* The multiple "Capture Source" controls confuse alsamixer
3232 * So call somewhat different..
3234 /* .name = "Capture Source", */
3235 .name
= "Input Source",
3237 .info
= via_mux_enum_info
,
3238 .get
= via_mux_enum_get
,
3239 .put
= via_mux_enum_put
,
3244 * generic initialization of ADC, input mixers and output mixers
3246 static struct hda_verb vt1708B_8ch_volume_init_verbs
[] = {
3248 * Unmute ADC0-1 and set the default input to mic-in
3250 {0x13, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3251 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3254 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
3257 /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
3258 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3259 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
3260 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
3261 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
3262 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(4)},
3265 * Set up output mixers
3267 /* set vol=0 to output mixers */
3268 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
3269 {0x26, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
3270 {0x27, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
3272 /* Setup default input to PW4 */
3273 {0x1d, AC_VERB_SET_CONNECT_SEL
, 0},
3274 /* PW9 Output enable */
3275 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
3276 /* PW10 Input enable */
3277 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
3281 static struct hda_verb vt1708B_4ch_volume_init_verbs
[] = {
3283 * Unmute ADC0-1 and set the default input to mic-in
3285 {0x13, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3286 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3289 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
3292 /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
3293 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3294 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
3295 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
3296 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
3297 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(4)},
3300 * Set up output mixers
3302 /* set vol=0 to output mixers */
3303 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
3304 {0x26, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
3305 {0x27, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
3307 /* Setup default input of PW4 to MW0 */
3308 {0x1d, AC_VERB_SET_CONNECT_SEL
, 0x0},
3309 /* PW9 Output enable */
3310 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
3311 /* PW10 Input enable */
3312 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
3316 static struct hda_verb vt1708B_uniwill_init_verbs
[] = {
3317 {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE
,
3318 AC_USRSP_EN
| VIA_HP_EVENT
| VIA_JACK_EVENT
},
3319 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
3320 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
3321 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
3322 {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
3323 {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
3324 {0x22, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
3325 {0x23, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
3329 static int via_pcm_open_close(struct hda_pcm_stream
*hinfo
,
3330 struct hda_codec
*codec
,
3331 struct snd_pcm_substream
*substream
)
3333 int idle
= substream
->pstr
->substream_opened
== 1
3334 && substream
->ref_count
== 0;
3336 analog_low_current_mode(codec
, idle
);
3340 static struct hda_pcm_stream vt1708B_8ch_pcm_analog_playback
= {
3344 .nid
= 0x10, /* NID to query formats and rates */
3346 .open
= via_playback_pcm_open
,
3347 .prepare
= via_playback_multi_pcm_prepare
,
3348 .cleanup
= via_playback_multi_pcm_cleanup
,
3349 .close
= via_pcm_open_close
3353 static struct hda_pcm_stream vt1708B_4ch_pcm_analog_playback
= {
3357 .nid
= 0x10, /* NID to query formats and rates */
3359 .open
= via_playback_pcm_open
,
3360 .prepare
= via_playback_multi_pcm_prepare
,
3361 .cleanup
= via_playback_multi_pcm_cleanup
3365 static struct hda_pcm_stream vt1708B_pcm_analog_capture
= {
3369 .nid
= 0x13, /* NID to query formats and rates */
3371 .open
= via_pcm_open_close
,
3372 .prepare
= via_capture_pcm_prepare
,
3373 .cleanup
= via_capture_pcm_cleanup
,
3374 .close
= via_pcm_open_close
3378 static struct hda_pcm_stream vt1708B_pcm_digital_playback
= {
3382 /* NID is set in via_build_pcms */
3384 .open
= via_dig_playback_pcm_open
,
3385 .close
= via_dig_playback_pcm_close
,
3386 .prepare
= via_dig_playback_pcm_prepare
,
3387 .cleanup
= via_dig_playback_pcm_cleanup
3391 static struct hda_pcm_stream vt1708B_pcm_digital_capture
= {
3397 /* fill in the dac_nids table from the parsed pin configuration */
3398 static int vt1708B_auto_fill_dac_nids(struct via_spec
*spec
,
3399 const struct auto_pin_cfg
*cfg
)
3404 spec
->multiout
.num_dacs
= cfg
->line_outs
;
3406 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
3408 for (i
= 0; i
< 4; i
++) {
3409 nid
= cfg
->line_out_pins
[i
];
3411 /* config dac list */
3413 case AUTO_SEQ_FRONT
:
3414 spec
->multiout
.dac_nids
[i
] = 0x10;
3416 case AUTO_SEQ_CENLFE
:
3417 spec
->multiout
.dac_nids
[i
] = 0x24;
3419 case AUTO_SEQ_SURROUND
:
3420 spec
->multiout
.dac_nids
[i
] = 0x11;
3423 spec
->multiout
.dac_nids
[i
] = 0x25;
3432 /* add playback controls from the parsed DAC table */
3433 static int vt1708B_auto_create_multi_out_ctls(struct via_spec
*spec
,
3434 const struct auto_pin_cfg
*cfg
)
3437 static const char *chname
[4] = { "Front", "Surround", "C/LFE", "Side" };
3438 hda_nid_t nid_vols
[] = {0x16, 0x18, 0x26, 0x27};
3439 hda_nid_t nid
, nid_vol
= 0;
3442 for (i
= 0; i
<= AUTO_SEQ_SIDE
; i
++) {
3443 nid
= cfg
->line_out_pins
[i
];
3448 nid_vol
= nid_vols
[i
];
3450 if (i
== AUTO_SEQ_CENLFE
) {
3452 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
3453 "Center Playback Volume",
3454 HDA_COMPOSE_AMP_VAL(nid_vol
, 1, 0,
3458 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
3459 "LFE Playback Volume",
3460 HDA_COMPOSE_AMP_VAL(nid_vol
, 2, 0,
3464 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
3465 "Center Playback Switch",
3466 HDA_COMPOSE_AMP_VAL(nid_vol
, 1, 0,
3470 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
3471 "LFE Playback Switch",
3472 HDA_COMPOSE_AMP_VAL(nid_vol
, 2, 0,
3476 } else if (i
== AUTO_SEQ_FRONT
) {
3477 /* add control to mixer index 0 */
3478 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
3479 "Master Front Playback Volume",
3480 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
3484 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
3485 "Master Front Playback Switch",
3486 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
3491 /* add control to PW3 */
3492 sprintf(name
, "%s Playback Volume", chname
[i
]);
3493 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
, name
,
3494 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
3498 sprintf(name
, "%s Playback Switch", chname
[i
]);
3499 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
, name
,
3500 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
3505 sprintf(name
, "%s Playback Volume", chname
[i
]);
3506 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
, name
,
3507 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
3511 sprintf(name
, "%s Playback Switch", chname
[i
]);
3512 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
, name
,
3513 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
3523 static int vt1708B_auto_create_hp_ctls(struct via_spec
*spec
, hda_nid_t pin
)
3530 spec
->multiout
.hp_nid
= VT1708B_HP_NID
; /* AOW3 */
3531 spec
->hp_independent_mode_index
= 1;
3533 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
3534 "Headphone Playback Volume",
3535 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
3538 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
3539 "Headphone Playback Switch",
3540 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
3544 create_hp_imux(spec
);
3549 /* create playback/capture controls for input pins */
3550 static int vt1708B_auto_create_analog_input_ctls(struct hda_codec
*codec
,
3551 const struct auto_pin_cfg
*cfg
)
3553 static hda_nid_t pin_idxs
[] = { 0xff, 0x1f, 0x1a, 0x1b, 0x1e };
3554 return vt_auto_create_analog_input_ctls(codec
, cfg
, 0x16, pin_idxs
,
3555 ARRAY_SIZE(pin_idxs
));
3558 static int vt1708B_parse_auto_config(struct hda_codec
*codec
)
3560 struct via_spec
*spec
= codec
->spec
;
3563 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
, NULL
);
3566 err
= vt1708B_auto_fill_dac_nids(spec
, &spec
->autocfg
);
3569 if (!spec
->autocfg
.line_outs
&& !spec
->autocfg
.hp_pins
[0])
3570 return 0; /* can't find valid BIOS pin config */
3572 err
= vt1708B_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
3575 err
= vt1708B_auto_create_hp_ctls(spec
, spec
->autocfg
.hp_pins
[0]);
3578 err
= vt1708B_auto_create_analog_input_ctls(codec
, &spec
->autocfg
);
3582 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
3584 if (spec
->autocfg
.dig_outs
)
3585 spec
->multiout
.dig_out_nid
= VT1708B_DIGOUT_NID
;
3586 spec
->dig_in_pin
= VT1708B_DIGIN_PIN
;
3587 if (spec
->autocfg
.dig_in_pin
)
3588 spec
->dig_in_nid
= VT1708B_DIGIN_NID
;
3590 if (spec
->kctls
.list
)
3591 spec
->mixers
[spec
->num_mixers
++] = spec
->kctls
.list
;
3593 spec
->input_mux
= &spec
->private_imux
[0];
3596 via_hp_build(codec
);
3598 via_smart51_build(spec
);
3602 #ifdef CONFIG_SND_HDA_POWER_SAVE
3603 static struct hda_amp_list vt1708B_loopbacks
[] = {
3604 { 0x16, HDA_INPUT
, 1 },
3605 { 0x16, HDA_INPUT
, 2 },
3606 { 0x16, HDA_INPUT
, 3 },
3607 { 0x16, HDA_INPUT
, 4 },
3611 static int patch_vt1708S(struct hda_codec
*codec
);
3612 static int patch_vt1708B_8ch(struct hda_codec
*codec
)
3614 struct via_spec
*spec
;
3617 if (get_codec_type(codec
) == VT1708BCE
)
3618 return patch_vt1708S(codec
);
3619 /* create a codec specific record */
3620 spec
= via_new_spec(codec
);
3624 /* automatic parse from the BIOS config */
3625 err
= vt1708B_parse_auto_config(codec
);
3630 printk(KERN_INFO
"hda_codec: Cannot set up configuration "
3631 "from BIOS. Using genenic mode...\n");
3634 spec
->init_verbs
[spec
->num_iverbs
++] = vt1708B_8ch_volume_init_verbs
;
3635 spec
->init_verbs
[spec
->num_iverbs
++] = vt1708B_uniwill_init_verbs
;
3637 spec
->stream_name_analog
= "VT1708B Analog";
3638 spec
->stream_analog_playback
= &vt1708B_8ch_pcm_analog_playback
;
3639 spec
->stream_analog_capture
= &vt1708B_pcm_analog_capture
;
3641 spec
->stream_name_digital
= "VT1708B Digital";
3642 spec
->stream_digital_playback
= &vt1708B_pcm_digital_playback
;
3643 spec
->stream_digital_capture
= &vt1708B_pcm_digital_capture
;
3645 if (!spec
->adc_nids
&& spec
->input_mux
) {
3646 spec
->adc_nids
= vt1708B_adc_nids
;
3647 spec
->num_adc_nids
= ARRAY_SIZE(vt1708B_adc_nids
);
3648 get_mux_nids(codec
);
3649 spec
->mixers
[spec
->num_mixers
] = vt1708B_capture_mixer
;
3653 codec
->patch_ops
= via_patch_ops
;
3655 codec
->patch_ops
.init
= via_auto_init
;
3656 codec
->patch_ops
.unsol_event
= via_unsol_event
;
3657 #ifdef CONFIG_SND_HDA_POWER_SAVE
3658 spec
->loopback
.amplist
= vt1708B_loopbacks
;
3664 static int patch_vt1708B_4ch(struct hda_codec
*codec
)
3666 struct via_spec
*spec
;
3669 /* create a codec specific record */
3670 spec
= via_new_spec(codec
);
3674 /* automatic parse from the BIOS config */
3675 err
= vt1708B_parse_auto_config(codec
);
3680 printk(KERN_INFO
"hda_codec: Cannot set up configuration "
3681 "from BIOS. Using genenic mode...\n");
3684 spec
->init_verbs
[spec
->num_iverbs
++] = vt1708B_4ch_volume_init_verbs
;
3685 spec
->init_verbs
[spec
->num_iverbs
++] = vt1708B_uniwill_init_verbs
;
3687 spec
->stream_name_analog
= "VT1708B Analog";
3688 spec
->stream_analog_playback
= &vt1708B_4ch_pcm_analog_playback
;
3689 spec
->stream_analog_capture
= &vt1708B_pcm_analog_capture
;
3691 spec
->stream_name_digital
= "VT1708B Digital";
3692 spec
->stream_digital_playback
= &vt1708B_pcm_digital_playback
;
3693 spec
->stream_digital_capture
= &vt1708B_pcm_digital_capture
;
3695 if (!spec
->adc_nids
&& spec
->input_mux
) {
3696 spec
->adc_nids
= vt1708B_adc_nids
;
3697 spec
->num_adc_nids
= ARRAY_SIZE(vt1708B_adc_nids
);
3698 get_mux_nids(codec
);
3699 spec
->mixers
[spec
->num_mixers
] = vt1708B_capture_mixer
;
3703 codec
->patch_ops
= via_patch_ops
;
3705 codec
->patch_ops
.init
= via_auto_init
;
3706 codec
->patch_ops
.unsol_event
= via_unsol_event
;
3707 #ifdef CONFIG_SND_HDA_POWER_SAVE
3708 spec
->loopback
.amplist
= vt1708B_loopbacks
;
3714 /* Patch for VT1708S */
3716 /* capture mixer elements */
3717 static struct snd_kcontrol_new vt1708S_capture_mixer
[] = {
3718 HDA_CODEC_VOLUME("Capture Volume", 0x13, 0x0, HDA_INPUT
),
3719 HDA_CODEC_MUTE("Capture Switch", 0x13, 0x0, HDA_INPUT
),
3720 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x14, 0x0, HDA_INPUT
),
3721 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x14, 0x0, HDA_INPUT
),
3722 HDA_CODEC_VOLUME("Mic Boost Capture Volume", 0x1A, 0x0, HDA_INPUT
),
3723 HDA_CODEC_VOLUME("Front Mic Boost Capture Volume", 0x1E, 0x0,
3726 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3727 /* The multiple "Capture Source" controls confuse alsamixer
3728 * So call somewhat different..
3730 /* .name = "Capture Source", */
3731 .name
= "Input Source",
3733 .info
= via_mux_enum_info
,
3734 .get
= via_mux_enum_get
,
3735 .put
= via_mux_enum_put
,
3740 static struct hda_verb vt1708S_volume_init_verbs
[] = {
3741 /* Unmute ADC0-1 and set the default input to mic-in */
3742 {0x13, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3743 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3745 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the
3746 * analog-loopback mixer widget */
3747 /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
3748 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3749 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
3750 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
3751 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
3752 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(4)},
3754 /* Setup default input of PW4 to MW0 */
3755 {0x1d, AC_VERB_SET_CONNECT_SEL
, 0x0},
3756 /* PW9, PW10 Output enable */
3757 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
3758 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
3759 /* Enable Mic Boost Volume backdoor */
3761 /* don't bybass mixer */
3766 static struct hda_verb vt1708S_uniwill_init_verbs
[] = {
3767 {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE
,
3768 AC_USRSP_EN
| VIA_HP_EVENT
| VIA_JACK_EVENT
},
3769 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
3770 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
3771 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
3772 {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
3773 {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
3774 {0x22, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
3775 {0x23, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
3779 static struct hda_pcm_stream vt1708S_pcm_analog_playback
= {
3783 .nid
= 0x10, /* NID to query formats and rates */
3785 .open
= via_playback_pcm_open
,
3786 .prepare
= via_playback_multi_pcm_prepare
,
3787 .cleanup
= via_playback_multi_pcm_cleanup
,
3788 .close
= via_pcm_open_close
3792 static struct hda_pcm_stream vt1708S_pcm_analog_capture
= {
3796 .nid
= 0x13, /* NID to query formats and rates */
3798 .open
= via_pcm_open_close
,
3799 .prepare
= via_capture_pcm_prepare
,
3800 .cleanup
= via_capture_pcm_cleanup
,
3801 .close
= via_pcm_open_close
3805 static struct hda_pcm_stream vt1708S_pcm_digital_playback
= {
3809 /* NID is set in via_build_pcms */
3811 .open
= via_dig_playback_pcm_open
,
3812 .close
= via_dig_playback_pcm_close
,
3813 .prepare
= via_dig_playback_pcm_prepare
,
3814 .cleanup
= via_dig_playback_pcm_cleanup
3818 /* fill in the dac_nids table from the parsed pin configuration */
3819 static int vt1708S_auto_fill_dac_nids(struct via_spec
*spec
,
3820 const struct auto_pin_cfg
*cfg
)
3825 spec
->multiout
.num_dacs
= cfg
->line_outs
;
3827 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
3829 for (i
= 0; i
< 4; i
++) {
3830 nid
= cfg
->line_out_pins
[i
];
3832 /* config dac list */
3834 case AUTO_SEQ_FRONT
:
3835 spec
->multiout
.dac_nids
[i
] = 0x10;
3837 case AUTO_SEQ_CENLFE
:
3838 spec
->multiout
.dac_nids
[i
] = 0x24;
3840 case AUTO_SEQ_SURROUND
:
3841 spec
->multiout
.dac_nids
[i
] = 0x11;
3844 spec
->multiout
.dac_nids
[i
] = 0x25;
3850 /* for Smart 5.1, line/mic inputs double as output pins */
3851 if (cfg
->line_outs
== 1) {
3852 spec
->multiout
.num_dacs
= 3;
3853 spec
->multiout
.dac_nids
[AUTO_SEQ_SURROUND
] = 0x11;
3854 spec
->multiout
.dac_nids
[AUTO_SEQ_CENLFE
] = 0x24;
3860 /* add playback controls from the parsed DAC table */
3861 static int vt1708S_auto_create_multi_out_ctls(struct via_spec
*spec
,
3862 const struct auto_pin_cfg
*cfg
)
3865 static const char *chname
[4] = { "Front", "Surround", "C/LFE", "Side" };
3866 hda_nid_t nid_vols
[] = {0x10, 0x11, 0x24, 0x25};
3867 hda_nid_t nid_mutes
[] = {0x1C, 0x18, 0x26, 0x27};
3868 hda_nid_t nid
, nid_vol
, nid_mute
;
3871 for (i
= 0; i
<= AUTO_SEQ_SIDE
; i
++) {
3872 nid
= cfg
->line_out_pins
[i
];
3874 /* for Smart 5.1, there are always at least six channels */
3875 if (!nid
&& i
> AUTO_SEQ_CENLFE
)
3878 nid_vol
= nid_vols
[i
];
3879 nid_mute
= nid_mutes
[i
];
3881 if (i
== AUTO_SEQ_CENLFE
) {
3883 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
3884 "Center Playback Volume",
3885 HDA_COMPOSE_AMP_VAL(nid_vol
, 1, 0,
3889 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
3890 "LFE Playback Volume",
3891 HDA_COMPOSE_AMP_VAL(nid_vol
, 2, 0,
3895 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
3896 "Center Playback Switch",
3897 HDA_COMPOSE_AMP_VAL(nid_mute
,
3902 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
3903 "LFE Playback Switch",
3904 HDA_COMPOSE_AMP_VAL(nid_mute
,
3909 } else if (i
== AUTO_SEQ_FRONT
) {
3910 /* add control to mixer index 0 */
3911 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
3912 "Master Front Playback Volume",
3913 HDA_COMPOSE_AMP_VAL(0x16, 3, 0,
3917 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
3918 "Master Front Playback Switch",
3919 HDA_COMPOSE_AMP_VAL(0x16, 3, 0,
3925 sprintf(name
, "%s Playback Volume", chname
[i
]);
3926 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
, name
,
3927 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
3931 sprintf(name
, "%s Playback Switch", chname
[i
]);
3932 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
, name
,
3933 HDA_COMPOSE_AMP_VAL(nid_mute
,
3939 sprintf(name
, "%s Playback Volume", chname
[i
]);
3940 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
, name
,
3941 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
3945 sprintf(name
, "%s Playback Switch", chname
[i
]);
3946 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
, name
,
3947 HDA_COMPOSE_AMP_VAL(nid_mute
,
3958 static int vt1708S_auto_create_hp_ctls(struct via_spec
*spec
, hda_nid_t pin
)
3965 spec
->multiout
.hp_nid
= VT1708S_HP_NID
; /* AOW3 */
3966 spec
->hp_independent_mode_index
= 1;
3968 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
3969 "Headphone Playback Volume",
3970 HDA_COMPOSE_AMP_VAL(0x25, 3, 0, HDA_OUTPUT
));
3974 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
3975 "Headphone Playback Switch",
3976 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
3980 create_hp_imux(spec
);
3985 /* create playback/capture controls for input pins */
3986 static int vt1708S_auto_create_analog_input_ctls(struct hda_codec
*codec
,
3987 const struct auto_pin_cfg
*cfg
)
3989 static hda_nid_t pin_idxs
[] = { 0x1f, 0x1a, 0x1b, 0x1e, 0, 0xff };
3990 return vt_auto_create_analog_input_ctls(codec
, cfg
, 0x16, pin_idxs
,
3991 ARRAY_SIZE(pin_idxs
));
3994 /* fill out digital output widgets; one for master and one for slave outputs */
3995 static void fill_dig_outs(struct hda_codec
*codec
)
3997 struct via_spec
*spec
= codec
->spec
;
4000 for (i
= 0; i
< spec
->autocfg
.dig_outs
; i
++) {
4004 nid
= spec
->autocfg
.dig_out_pins
[i
];
4007 conn
= snd_hda_get_connections(codec
, nid
, &nid
, 1);
4010 if (!spec
->multiout
.dig_out_nid
)
4011 spec
->multiout
.dig_out_nid
= nid
;
4013 spec
->slave_dig_outs
[0] = nid
;
4014 break; /* at most two dig outs */
4019 static int vt1708S_parse_auto_config(struct hda_codec
*codec
)
4021 struct via_spec
*spec
= codec
->spec
;
4024 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
, NULL
);
4027 err
= vt1708S_auto_fill_dac_nids(spec
, &spec
->autocfg
);
4030 if (!spec
->autocfg
.line_outs
&& !spec
->autocfg
.hp_pins
[0])
4031 return 0; /* can't find valid BIOS pin config */
4033 err
= vt1708S_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
4036 err
= vt1708S_auto_create_hp_ctls(spec
, spec
->autocfg
.hp_pins
[0]);
4039 err
= vt1708S_auto_create_analog_input_ctls(codec
, &spec
->autocfg
);
4043 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
4045 fill_dig_outs(codec
);
4047 if (spec
->kctls
.list
)
4048 spec
->mixers
[spec
->num_mixers
++] = spec
->kctls
.list
;
4050 spec
->input_mux
= &spec
->private_imux
[0];
4053 via_hp_build(codec
);
4055 via_smart51_build(spec
);
4059 #ifdef CONFIG_SND_HDA_POWER_SAVE
4060 static struct hda_amp_list vt1708S_loopbacks
[] = {
4061 { 0x16, HDA_INPUT
, 1 },
4062 { 0x16, HDA_INPUT
, 2 },
4063 { 0x16, HDA_INPUT
, 3 },
4064 { 0x16, HDA_INPUT
, 4 },
4069 static void override_mic_boost(struct hda_codec
*codec
, hda_nid_t pin
,
4070 int offset
, int num_steps
, int step_size
)
4072 snd_hda_override_amp_caps(codec
, pin
, HDA_INPUT
,
4073 (offset
<< AC_AMPCAP_OFFSET_SHIFT
) |
4074 (num_steps
<< AC_AMPCAP_NUM_STEPS_SHIFT
) |
4075 (step_size
<< AC_AMPCAP_STEP_SIZE_SHIFT
) |
4076 (0 << AC_AMPCAP_MUTE_SHIFT
));
4079 static int patch_vt1708S(struct hda_codec
*codec
)
4081 struct via_spec
*spec
;
4084 /* create a codec specific record */
4085 spec
= via_new_spec(codec
);
4089 /* automatic parse from the BIOS config */
4090 err
= vt1708S_parse_auto_config(codec
);
4095 printk(KERN_INFO
"hda_codec: Cannot set up configuration "
4096 "from BIOS. Using genenic mode...\n");
4099 spec
->init_verbs
[spec
->num_iverbs
++] = vt1708S_volume_init_verbs
;
4100 spec
->init_verbs
[spec
->num_iverbs
++] = vt1708S_uniwill_init_verbs
;
4102 if (codec
->vendor_id
== 0x11060440)
4103 spec
->stream_name_analog
= "VT1818S Analog";
4105 spec
->stream_name_analog
= "VT1708S Analog";
4106 spec
->stream_analog_playback
= &vt1708S_pcm_analog_playback
;
4107 spec
->stream_analog_capture
= &vt1708S_pcm_analog_capture
;
4109 if (codec
->vendor_id
== 0x11060440)
4110 spec
->stream_name_digital
= "VT1818S Digital";
4112 spec
->stream_name_digital
= "VT1708S Digital";
4113 spec
->stream_digital_playback
= &vt1708S_pcm_digital_playback
;
4115 if (!spec
->adc_nids
&& spec
->input_mux
) {
4116 spec
->adc_nids
= vt1708S_adc_nids
;
4117 spec
->num_adc_nids
= ARRAY_SIZE(vt1708S_adc_nids
);
4118 get_mux_nids(codec
);
4119 override_mic_boost(codec
, 0x1a, 0, 3, 40);
4120 override_mic_boost(codec
, 0x1e, 0, 3, 40);
4121 spec
->mixers
[spec
->num_mixers
] = vt1708S_capture_mixer
;
4125 codec
->patch_ops
= via_patch_ops
;
4127 codec
->patch_ops
.init
= via_auto_init
;
4128 codec
->patch_ops
.unsol_event
= via_unsol_event
;
4129 #ifdef CONFIG_SND_HDA_POWER_SAVE
4130 spec
->loopback
.amplist
= vt1708S_loopbacks
;
4133 /* correct names for VT1708BCE */
4134 if (get_codec_type(codec
) == VT1708BCE
) {
4135 kfree(codec
->chip_name
);
4136 codec
->chip_name
= kstrdup("VT1708BCE", GFP_KERNEL
);
4137 snprintf(codec
->bus
->card
->mixername
,
4138 sizeof(codec
->bus
->card
->mixername
),
4139 "%s %s", codec
->vendor_name
, codec
->chip_name
);
4140 spec
->stream_name_analog
= "VT1708BCE Analog";
4141 spec
->stream_name_digital
= "VT1708BCE Digital";
4146 /* Patch for VT1702 */
4148 /* capture mixer elements */
4149 static struct snd_kcontrol_new vt1702_capture_mixer
[] = {
4150 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x0, HDA_INPUT
),
4151 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x0, HDA_INPUT
),
4152 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x20, 0x0, HDA_INPUT
),
4153 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x20, 0x0, HDA_INPUT
),
4154 HDA_CODEC_VOLUME("Digital Mic Capture Volume", 0x1F, 0x0, HDA_INPUT
),
4155 HDA_CODEC_MUTE("Digital Mic Capture Switch", 0x1F, 0x0, HDA_INPUT
),
4156 HDA_CODEC_VOLUME("Digital Mic Boost Capture Volume", 0x1E, 0x0,
4159 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
4160 /* The multiple "Capture Source" controls confuse alsamixer
4161 * So call somewhat different..
4163 /* .name = "Capture Source", */
4164 .name
= "Input Source",
4166 .info
= via_mux_enum_info
,
4167 .get
= via_mux_enum_get
,
4168 .put
= via_mux_enum_put
,
4173 static struct hda_verb vt1702_volume_init_verbs
[] = {
4175 * Unmute ADC0-1 and set the default input to mic-in
4177 {0x12, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4178 {0x1F, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4179 {0x20, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4182 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4185 /* Amp Indices: Mic1 = 1, Line = 1, Mic2 = 3 */
4186 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4187 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
4188 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
4189 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
4190 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
4192 /* Setup default input of PW4 to MW0 */
4193 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x1},
4194 /* PW6 PW7 Output enable */
4195 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
4196 {0x1C, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
4204 static struct hda_verb vt1702_uniwill_init_verbs
[] = {
4205 {0x17, AC_VERB_SET_UNSOLICITED_ENABLE
,
4206 AC_USRSP_EN
| VIA_HP_EVENT
| VIA_JACK_EVENT
},
4207 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
4208 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
4209 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
4210 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
4214 static struct hda_pcm_stream vt1702_pcm_analog_playback
= {
4218 .nid
= 0x10, /* NID to query formats and rates */
4220 .open
= via_playback_pcm_open
,
4221 .prepare
= via_playback_multi_pcm_prepare
,
4222 .cleanup
= via_playback_multi_pcm_cleanup
,
4223 .close
= via_pcm_open_close
4227 static struct hda_pcm_stream vt1702_pcm_analog_capture
= {
4231 .nid
= 0x12, /* NID to query formats and rates */
4233 .open
= via_pcm_open_close
,
4234 .prepare
= via_capture_pcm_prepare
,
4235 .cleanup
= via_capture_pcm_cleanup
,
4236 .close
= via_pcm_open_close
4240 static struct hda_pcm_stream vt1702_pcm_digital_playback
= {
4244 /* NID is set in via_build_pcms */
4246 .open
= via_dig_playback_pcm_open
,
4247 .close
= via_dig_playback_pcm_close
,
4248 .prepare
= via_dig_playback_pcm_prepare
,
4249 .cleanup
= via_dig_playback_pcm_cleanup
4253 /* fill in the dac_nids table from the parsed pin configuration */
4254 static int vt1702_auto_fill_dac_nids(struct via_spec
*spec
,
4255 const struct auto_pin_cfg
*cfg
)
4257 spec
->multiout
.num_dacs
= 1;
4258 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
4260 if (cfg
->line_out_pins
[0]) {
4261 /* config dac list */
4262 spec
->multiout
.dac_nids
[0] = 0x10;
4268 /* add playback controls from the parsed DAC table */
4269 static int vt1702_auto_create_line_out_ctls(struct via_spec
*spec
,
4270 const struct auto_pin_cfg
*cfg
)
4274 if (!cfg
->line_out_pins
[0])
4277 /* add control to mixer index 0 */
4278 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
4279 "Master Front Playback Volume",
4280 HDA_COMPOSE_AMP_VAL(0x1A, 3, 0, HDA_INPUT
));
4283 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
4284 "Master Front Playback Switch",
4285 HDA_COMPOSE_AMP_VAL(0x1A, 3, 0, HDA_INPUT
));
4290 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
4291 "Front Playback Volume",
4292 HDA_COMPOSE_AMP_VAL(0x10, 3, 0, HDA_OUTPUT
));
4295 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
4296 "Front Playback Switch",
4297 HDA_COMPOSE_AMP_VAL(0x16, 3, 0, HDA_OUTPUT
));
4304 static int vt1702_auto_create_hp_ctls(struct via_spec
*spec
, hda_nid_t pin
)
4307 struct hda_input_mux
*imux
;
4308 static const char *texts
[] = { "ON", "OFF", NULL
};
4311 spec
->multiout
.hp_nid
= 0x1D;
4312 spec
->hp_independent_mode_index
= 0;
4314 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
4315 "Headphone Playback Volume",
4316 HDA_COMPOSE_AMP_VAL(0x1D, 3, 0, HDA_OUTPUT
));
4320 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
4321 "Headphone Playback Switch",
4322 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
4326 imux
= &spec
->private_imux
[1];
4328 /* for hp mode select */
4329 for (i
= 0; texts
[i
]; i
++)
4330 snd_hda_add_imux_item(imux
, texts
[i
], i
, NULL
);
4332 spec
->hp_mux
= &spec
->private_imux
[1];
4336 /* create playback/capture controls for input pins */
4337 static int vt1702_auto_create_analog_input_ctls(struct hda_codec
*codec
,
4338 const struct auto_pin_cfg
*cfg
)
4340 static hda_nid_t pin_idxs
[] = { 0x14, 0x15, 0x18, 0xff };
4341 return vt_auto_create_analog_input_ctls(codec
, cfg
, 0x1a, pin_idxs
,
4342 ARRAY_SIZE(pin_idxs
));
4345 static int vt1702_parse_auto_config(struct hda_codec
*codec
)
4347 struct via_spec
*spec
= codec
->spec
;
4350 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
, NULL
);
4353 err
= vt1702_auto_fill_dac_nids(spec
, &spec
->autocfg
);
4356 if (!spec
->autocfg
.line_outs
&& !spec
->autocfg
.hp_pins
[0])
4357 return 0; /* can't find valid BIOS pin config */
4359 err
= vt1702_auto_create_line_out_ctls(spec
, &spec
->autocfg
);
4362 err
= vt1702_auto_create_hp_ctls(spec
, spec
->autocfg
.hp_pins
[0]);
4365 /* limit AA path volume to 0 dB */
4366 snd_hda_override_amp_caps(codec
, 0x1A, HDA_INPUT
,
4367 (0x17 << AC_AMPCAP_OFFSET_SHIFT
) |
4368 (0x17 << AC_AMPCAP_NUM_STEPS_SHIFT
) |
4369 (0x5 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
4370 (1 << AC_AMPCAP_MUTE_SHIFT
));
4371 err
= vt1702_auto_create_analog_input_ctls(codec
, &spec
->autocfg
);
4375 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
4377 fill_dig_outs(codec
);
4379 if (spec
->kctls
.list
)
4380 spec
->mixers
[spec
->num_mixers
++] = spec
->kctls
.list
;
4382 spec
->input_mux
= &spec
->private_imux
[0];
4385 via_hp_build(codec
);
4390 #ifdef CONFIG_SND_HDA_POWER_SAVE
4391 static struct hda_amp_list vt1702_loopbacks
[] = {
4392 { 0x1A, HDA_INPUT
, 1 },
4393 { 0x1A, HDA_INPUT
, 2 },
4394 { 0x1A, HDA_INPUT
, 3 },
4395 { 0x1A, HDA_INPUT
, 4 },
4400 static int patch_vt1702(struct hda_codec
*codec
)
4402 struct via_spec
*spec
;
4405 /* create a codec specific record */
4406 spec
= via_new_spec(codec
);
4410 /* automatic parse from the BIOS config */
4411 err
= vt1702_parse_auto_config(codec
);
4416 printk(KERN_INFO
"hda_codec: Cannot set up configuration "
4417 "from BIOS. Using genenic mode...\n");
4420 spec
->init_verbs
[spec
->num_iverbs
++] = vt1702_volume_init_verbs
;
4421 spec
->init_verbs
[spec
->num_iverbs
++] = vt1702_uniwill_init_verbs
;
4423 spec
->stream_name_analog
= "VT1702 Analog";
4424 spec
->stream_analog_playback
= &vt1702_pcm_analog_playback
;
4425 spec
->stream_analog_capture
= &vt1702_pcm_analog_capture
;
4427 spec
->stream_name_digital
= "VT1702 Digital";
4428 spec
->stream_digital_playback
= &vt1702_pcm_digital_playback
;
4430 if (!spec
->adc_nids
&& spec
->input_mux
) {
4431 spec
->adc_nids
= vt1702_adc_nids
;
4432 spec
->num_adc_nids
= ARRAY_SIZE(vt1702_adc_nids
);
4433 get_mux_nids(codec
);
4434 spec
->mixers
[spec
->num_mixers
] = vt1702_capture_mixer
;
4438 codec
->patch_ops
= via_patch_ops
;
4440 codec
->patch_ops
.init
= via_auto_init
;
4441 codec
->patch_ops
.unsol_event
= via_unsol_event
;
4442 #ifdef CONFIG_SND_HDA_POWER_SAVE
4443 spec
->loopback
.amplist
= vt1702_loopbacks
;
4449 /* Patch for VT1718S */
4451 /* capture mixer elements */
4452 static struct snd_kcontrol_new vt1718S_capture_mixer
[] = {
4453 HDA_CODEC_VOLUME("Capture Volume", 0x10, 0x0, HDA_INPUT
),
4454 HDA_CODEC_MUTE("Capture Switch", 0x10, 0x0, HDA_INPUT
),
4455 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x11, 0x0, HDA_INPUT
),
4456 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x11, 0x0, HDA_INPUT
),
4457 HDA_CODEC_VOLUME("Mic Boost Capture Volume", 0x2b, 0x0, HDA_INPUT
),
4458 HDA_CODEC_VOLUME("Front Mic Boost Capture Volume", 0x29, 0x0,
4461 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
4462 /* The multiple "Capture Source" controls confuse alsamixer
4463 * So call somewhat different..
4465 .name
= "Input Source",
4467 .info
= via_mux_enum_info
,
4468 .get
= via_mux_enum_get
,
4469 .put
= via_mux_enum_put
,
4474 static struct hda_verb vt1718S_volume_init_verbs
[] = {
4476 * Unmute ADC0-1 and set the default input to mic-in
4478 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4479 {0x11, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4482 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4485 /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
4486 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
4487 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
4488 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
4489 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
4490 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)},
4492 /* Setup default input of Front HP to MW9 */
4493 {0x28, AC_VERB_SET_CONNECT_SEL
, 0x1},
4494 /* PW9 PW10 Output enable */
4495 {0x2d, AC_VERB_SET_PIN_WIDGET_CONTROL
, AC_PINCTL_OUT_EN
},
4496 {0x2e, AC_VERB_SET_PIN_WIDGET_CONTROL
, AC_PINCTL_OUT_EN
},
4497 /* PW11 Input enable */
4498 {0x2f, AC_VERB_SET_PIN_WIDGET_CONTROL
, AC_PINCTL_IN_EN
},
4499 /* Enable Boost Volume backdoor */
4501 /* MW0/1/2/3/4: un-mute index 0 (AOWx), mute index 1 (MW9) */
4502 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4503 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4504 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4505 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4506 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4507 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
4508 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
4509 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
4510 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
4511 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
4512 /* set MUX1 = 2 (AOW4), MUX2 = 1 (AOW3) */
4513 {0x34, AC_VERB_SET_CONNECT_SEL
, 0x2},
4514 {0x35, AC_VERB_SET_CONNECT_SEL
, 0x1},
4515 /* Unmute MW4's index 0 */
4516 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4521 static struct hda_verb vt1718S_uniwill_init_verbs
[] = {
4522 {0x28, AC_VERB_SET_UNSOLICITED_ENABLE
,
4523 AC_USRSP_EN
| VIA_HP_EVENT
| VIA_JACK_EVENT
},
4524 {0x24, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
4525 {0x25, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
4526 {0x26, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
4527 {0x27, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
4528 {0x29, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
4529 {0x2a, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
4530 {0x2b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
4534 static struct hda_pcm_stream vt1718S_pcm_analog_playback
= {
4538 .nid
= 0x8, /* NID to query formats and rates */
4540 .open
= via_playback_pcm_open
,
4541 .prepare
= via_playback_multi_pcm_prepare
,
4542 .cleanup
= via_playback_multi_pcm_cleanup
,
4543 .close
= via_pcm_open_close
,
4547 static struct hda_pcm_stream vt1718S_pcm_analog_capture
= {
4551 .nid
= 0x10, /* NID to query formats and rates */
4553 .open
= via_pcm_open_close
,
4554 .prepare
= via_capture_pcm_prepare
,
4555 .cleanup
= via_capture_pcm_cleanup
,
4556 .close
= via_pcm_open_close
,
4560 static struct hda_pcm_stream vt1718S_pcm_digital_playback
= {
4564 /* NID is set in via_build_pcms */
4566 .open
= via_dig_playback_pcm_open
,
4567 .close
= via_dig_playback_pcm_close
,
4568 .prepare
= via_dig_playback_pcm_prepare
,
4569 .cleanup
= via_dig_playback_pcm_cleanup
4573 static struct hda_pcm_stream vt1718S_pcm_digital_capture
= {
4579 /* fill in the dac_nids table from the parsed pin configuration */
4580 static int vt1718S_auto_fill_dac_nids(struct via_spec
*spec
,
4581 const struct auto_pin_cfg
*cfg
)
4586 spec
->multiout
.num_dacs
= cfg
->line_outs
;
4588 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
4590 for (i
= 0; i
< 4; i
++) {
4591 nid
= cfg
->line_out_pins
[i
];
4593 /* config dac list */
4595 case AUTO_SEQ_FRONT
:
4596 spec
->multiout
.dac_nids
[i
] = 0x8;
4598 case AUTO_SEQ_CENLFE
:
4599 spec
->multiout
.dac_nids
[i
] = 0xa;
4601 case AUTO_SEQ_SURROUND
:
4602 spec
->multiout
.dac_nids
[i
] = 0x9;
4605 spec
->multiout
.dac_nids
[i
] = 0xb;
4614 /* add playback controls from the parsed DAC table */
4615 static int vt1718S_auto_create_multi_out_ctls(struct via_spec
*spec
,
4616 const struct auto_pin_cfg
*cfg
)
4619 static const char *chname
[4] = { "Front", "Surround", "C/LFE", "Side" };
4620 hda_nid_t nid_vols
[] = {0x8, 0x9, 0xa, 0xb};
4621 hda_nid_t nid_mutes
[] = {0x24, 0x25, 0x26, 0x27};
4622 hda_nid_t nid
, nid_vol
, nid_mute
= 0;
4625 for (i
= 0; i
<= AUTO_SEQ_SIDE
; i
++) {
4626 nid
= cfg
->line_out_pins
[i
];
4630 nid_vol
= nid_vols
[i
];
4631 nid_mute
= nid_mutes
[i
];
4633 if (i
== AUTO_SEQ_CENLFE
) {
4635 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
4636 "Center Playback Volume",
4637 HDA_COMPOSE_AMP_VAL(nid_vol
, 1, 0,
4641 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
4642 "LFE Playback Volume",
4643 HDA_COMPOSE_AMP_VAL(nid_vol
, 2, 0,
4647 err
= via_add_control(
4648 spec
, VIA_CTL_WIDGET_MUTE
,
4649 "Center Playback Switch",
4650 HDA_COMPOSE_AMP_VAL(nid_mute
, 1, 0,
4654 err
= via_add_control(
4655 spec
, VIA_CTL_WIDGET_MUTE
,
4656 "LFE Playback Switch",
4657 HDA_COMPOSE_AMP_VAL(nid_mute
, 2, 0,
4661 } else if (i
== AUTO_SEQ_FRONT
) {
4663 sprintf(name
, "%s Playback Volume", chname
[i
]);
4664 err
= via_add_control(
4665 spec
, VIA_CTL_WIDGET_VOL
, name
,
4666 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0, HDA_OUTPUT
));
4669 sprintf(name
, "%s Playback Switch", chname
[i
]);
4670 err
= via_add_control(
4671 spec
, VIA_CTL_WIDGET_MUTE
, name
,
4672 HDA_COMPOSE_AMP_VAL(nid_mute
, 3, 0,
4677 sprintf(name
, "%s Playback Volume", chname
[i
]);
4678 err
= via_add_control(
4679 spec
, VIA_CTL_WIDGET_VOL
, name
,
4680 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0, HDA_OUTPUT
));
4683 sprintf(name
, "%s Playback Switch", chname
[i
]);
4684 err
= via_add_control(
4685 spec
, VIA_CTL_WIDGET_MUTE
, name
,
4686 HDA_COMPOSE_AMP_VAL(nid_mute
, 3, 0,
4695 static int vt1718S_auto_create_hp_ctls(struct via_spec
*spec
, hda_nid_t pin
)
4702 spec
->multiout
.hp_nid
= 0xc; /* AOW4 */
4703 spec
->hp_independent_mode_index
= 1;
4705 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
4706 "Headphone Playback Volume",
4707 HDA_COMPOSE_AMP_VAL(0xc, 3, 0, HDA_OUTPUT
));
4711 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
4712 "Headphone Playback Switch",
4713 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
4717 create_hp_imux(spec
);
4721 /* create playback/capture controls for input pins */
4722 static int vt1718S_auto_create_analog_input_ctls(struct hda_codec
*codec
,
4723 const struct auto_pin_cfg
*cfg
)
4725 static hda_nid_t pin_idxs
[] = { 0x2c, 0x2b, 0x2a, 0x29, 0, 0xff };
4726 return vt_auto_create_analog_input_ctls(codec
, cfg
, 0x21, pin_idxs
,
4727 ARRAY_SIZE(pin_idxs
));
4730 static int vt1718S_parse_auto_config(struct hda_codec
*codec
)
4732 struct via_spec
*spec
= codec
->spec
;
4735 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
, NULL
);
4739 err
= vt1718S_auto_fill_dac_nids(spec
, &spec
->autocfg
);
4742 if (!spec
->autocfg
.line_outs
&& !spec
->autocfg
.hp_pins
[0])
4743 return 0; /* can't find valid BIOS pin config */
4745 err
= vt1718S_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
4748 err
= vt1718S_auto_create_hp_ctls(spec
, spec
->autocfg
.hp_pins
[0]);
4751 err
= vt1718S_auto_create_analog_input_ctls(codec
, &spec
->autocfg
);
4755 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
4757 fill_dig_outs(codec
);
4759 if (spec
->autocfg
.dig_in_pin
&& codec
->vendor_id
== 0x11060428)
4760 spec
->dig_in_nid
= 0x13;
4762 if (spec
->kctls
.list
)
4763 spec
->mixers
[spec
->num_mixers
++] = spec
->kctls
.list
;
4765 spec
->input_mux
= &spec
->private_imux
[0];
4768 via_hp_build(codec
);
4770 via_smart51_build(spec
);
4775 #ifdef CONFIG_SND_HDA_POWER_SAVE
4776 static struct hda_amp_list vt1718S_loopbacks
[] = {
4777 { 0x21, HDA_INPUT
, 1 },
4778 { 0x21, HDA_INPUT
, 2 },
4779 { 0x21, HDA_INPUT
, 3 },
4780 { 0x21, HDA_INPUT
, 4 },
4785 static int patch_vt1718S(struct hda_codec
*codec
)
4787 struct via_spec
*spec
;
4790 /* create a codec specific record */
4791 spec
= via_new_spec(codec
);
4795 /* automatic parse from the BIOS config */
4796 err
= vt1718S_parse_auto_config(codec
);
4801 printk(KERN_INFO
"hda_codec: Cannot set up configuration "
4802 "from BIOS. Using genenic mode...\n");
4805 spec
->init_verbs
[spec
->num_iverbs
++] = vt1718S_volume_init_verbs
;
4806 spec
->init_verbs
[spec
->num_iverbs
++] = vt1718S_uniwill_init_verbs
;
4808 if (codec
->vendor_id
== 0x11060441)
4809 spec
->stream_name_analog
= "VT2020 Analog";
4810 else if (codec
->vendor_id
== 0x11064441)
4811 spec
->stream_name_analog
= "VT1828S Analog";
4813 spec
->stream_name_analog
= "VT1718S Analog";
4814 spec
->stream_analog_playback
= &vt1718S_pcm_analog_playback
;
4815 spec
->stream_analog_capture
= &vt1718S_pcm_analog_capture
;
4817 if (codec
->vendor_id
== 0x11060441)
4818 spec
->stream_name_digital
= "VT2020 Digital";
4819 else if (codec
->vendor_id
== 0x11064441)
4820 spec
->stream_name_digital
= "VT1828S Digital";
4822 spec
->stream_name_digital
= "VT1718S Digital";
4823 spec
->stream_digital_playback
= &vt1718S_pcm_digital_playback
;
4824 if (codec
->vendor_id
== 0x11060428 || codec
->vendor_id
== 0x11060441)
4825 spec
->stream_digital_capture
= &vt1718S_pcm_digital_capture
;
4827 if (!spec
->adc_nids
&& spec
->input_mux
) {
4828 spec
->adc_nids
= vt1718S_adc_nids
;
4829 spec
->num_adc_nids
= ARRAY_SIZE(vt1718S_adc_nids
);
4830 get_mux_nids(codec
);
4831 override_mic_boost(codec
, 0x2b, 0, 3, 40);
4832 override_mic_boost(codec
, 0x29, 0, 3, 40);
4833 spec
->mixers
[spec
->num_mixers
] = vt1718S_capture_mixer
;
4837 codec
->patch_ops
= via_patch_ops
;
4839 codec
->patch_ops
.init
= via_auto_init
;
4840 codec
->patch_ops
.unsol_event
= via_unsol_event
;
4842 #ifdef CONFIG_SND_HDA_POWER_SAVE
4843 spec
->loopback
.amplist
= vt1718S_loopbacks
;
4849 /* Patch for VT1716S */
4851 static int vt1716s_dmic_info(struct snd_kcontrol
*kcontrol
,
4852 struct snd_ctl_elem_info
*uinfo
)
4854 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
4856 uinfo
->value
.integer
.min
= 0;
4857 uinfo
->value
.integer
.max
= 1;
4861 static int vt1716s_dmic_get(struct snd_kcontrol
*kcontrol
,
4862 struct snd_ctl_elem_value
*ucontrol
)
4864 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
4867 index
= snd_hda_codec_read(codec
, 0x26, 0,
4868 AC_VERB_GET_CONNECT_SEL
, 0);
4870 *ucontrol
->value
.integer
.value
= index
;
4875 static int vt1716s_dmic_put(struct snd_kcontrol
*kcontrol
,
4876 struct snd_ctl_elem_value
*ucontrol
)
4878 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
4879 struct via_spec
*spec
= codec
->spec
;
4880 int index
= *ucontrol
->value
.integer
.value
;
4882 snd_hda_codec_write(codec
, 0x26, 0,
4883 AC_VERB_SET_CONNECT_SEL
, index
);
4884 spec
->dmic_enabled
= index
;
4885 set_jack_power_state(codec
);
4890 /* capture mixer elements */
4891 static struct snd_kcontrol_new vt1716S_capture_mixer
[] = {
4892 HDA_CODEC_VOLUME("Capture Volume", 0x13, 0x0, HDA_INPUT
),
4893 HDA_CODEC_MUTE("Capture Switch", 0x13, 0x0, HDA_INPUT
),
4894 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x14, 0x0, HDA_INPUT
),
4895 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x14, 0x0, HDA_INPUT
),
4896 HDA_CODEC_VOLUME("Mic Boost Capture Volume", 0x1A, 0x0, HDA_INPUT
),
4897 HDA_CODEC_VOLUME("Front Mic Boost Capture Volume", 0x1E, 0x0,
4900 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
4901 .name
= "Input Source",
4903 .info
= via_mux_enum_info
,
4904 .get
= via_mux_enum_get
,
4905 .put
= via_mux_enum_put
,
4910 static struct snd_kcontrol_new vt1716s_dmic_mixer
[] = {
4911 HDA_CODEC_VOLUME("Digital Mic Capture Volume", 0x22, 0x0, HDA_INPUT
),
4913 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
4914 .name
= "Digital Mic Capture Switch",
4915 .subdevice
= HDA_SUBDEV_NID_FLAG
| 0x26,
4917 .info
= vt1716s_dmic_info
,
4918 .get
= vt1716s_dmic_get
,
4919 .put
= vt1716s_dmic_put
,
4925 /* mono-out mixer elements */
4926 static struct snd_kcontrol_new vt1716S_mono_out_mixer
[] = {
4927 HDA_CODEC_MUTE("Mono Playback Switch", 0x2a, 0x0, HDA_OUTPUT
),
4931 static struct hda_verb vt1716S_volume_init_verbs
[] = {
4933 * Unmute ADC0-1 and set the default input to mic-in
4935 {0x13, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4936 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4939 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4942 /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
4943 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
4944 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
4945 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
4946 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
4947 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
4949 /* MUX Indices: Stereo Mixer = 5 */
4950 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x5},
4952 /* Setup default input of PW4 to MW0 */
4953 {0x1d, AC_VERB_SET_CONNECT_SEL
, 0x0},
4955 /* Setup default input of SW1 as MW0 */
4956 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x1},
4958 /* Setup default input of SW4 as AOW0 */
4959 {0x28, AC_VERB_SET_CONNECT_SEL
, 0x1},
4961 /* PW9 PW10 Output enable */
4962 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
4963 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
4965 /* Unmute SW1, PW12 */
4966 {0x29, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4967 {0x2a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
4968 /* PW12 Output enable */
4969 {0x2a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
4970 /* Enable Boost Volume backdoor */
4972 /* don't bybass mixer */
4974 /* Enable mono output */
4980 static struct hda_verb vt1716S_uniwill_init_verbs
[] = {
4981 {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE
,
4982 AC_USRSP_EN
| VIA_HP_EVENT
| VIA_JACK_EVENT
},
4983 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
4984 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
4985 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
4986 {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE
,
4987 AC_USRSP_EN
| VIA_MONO_EVENT
| VIA_JACK_EVENT
},
4988 {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
4989 {0x23, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
4993 static struct hda_pcm_stream vt1716S_pcm_analog_playback
= {
4997 .nid
= 0x10, /* NID to query formats and rates */
4999 .open
= via_playback_pcm_open
,
5000 .prepare
= via_playback_multi_pcm_prepare
,
5001 .cleanup
= via_playback_multi_pcm_cleanup
,
5002 .close
= via_pcm_open_close
,
5006 static struct hda_pcm_stream vt1716S_pcm_analog_capture
= {
5010 .nid
= 0x13, /* NID to query formats and rates */
5012 .open
= via_pcm_open_close
,
5013 .prepare
= via_capture_pcm_prepare
,
5014 .cleanup
= via_capture_pcm_cleanup
,
5015 .close
= via_pcm_open_close
,
5019 static struct hda_pcm_stream vt1716S_pcm_digital_playback
= {
5023 /* NID is set in via_build_pcms */
5025 .open
= via_dig_playback_pcm_open
,
5026 .close
= via_dig_playback_pcm_close
,
5027 .prepare
= via_dig_playback_pcm_prepare
,
5028 .cleanup
= via_dig_playback_pcm_cleanup
5032 /* fill in the dac_nids table from the parsed pin configuration */
5033 static int vt1716S_auto_fill_dac_nids(struct via_spec
*spec
,
5034 const struct auto_pin_cfg
*cfg
)
5038 spec
->multiout
.num_dacs
= cfg
->line_outs
;
5040 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
5042 for (i
= 0; i
< 3; i
++) {
5043 nid
= cfg
->line_out_pins
[i
];
5045 /* config dac list */
5047 case AUTO_SEQ_FRONT
:
5048 spec
->multiout
.dac_nids
[i
] = 0x10;
5050 case AUTO_SEQ_CENLFE
:
5051 spec
->multiout
.dac_nids
[i
] = 0x25;
5053 case AUTO_SEQ_SURROUND
:
5054 spec
->multiout
.dac_nids
[i
] = 0x11;
5063 /* add playback controls from the parsed DAC table */
5064 static int vt1716S_auto_create_multi_out_ctls(struct via_spec
*spec
,
5065 const struct auto_pin_cfg
*cfg
)
5068 static const char *chname
[3] = { "Front", "Surround", "C/LFE" };
5069 hda_nid_t nid_vols
[] = {0x10, 0x11, 0x25};
5070 hda_nid_t nid_mutes
[] = {0x1C, 0x18, 0x27};
5071 hda_nid_t nid
, nid_vol
, nid_mute
;
5074 for (i
= 0; i
<= AUTO_SEQ_CENLFE
; i
++) {
5075 nid
= cfg
->line_out_pins
[i
];
5080 nid_vol
= nid_vols
[i
];
5081 nid_mute
= nid_mutes
[i
];
5083 if (i
== AUTO_SEQ_CENLFE
) {
5084 err
= via_add_control(
5085 spec
, VIA_CTL_WIDGET_VOL
,
5086 "Center Playback Volume",
5087 HDA_COMPOSE_AMP_VAL(nid_vol
, 1, 0, HDA_OUTPUT
));
5090 err
= via_add_control(
5091 spec
, VIA_CTL_WIDGET_VOL
,
5092 "LFE Playback Volume",
5093 HDA_COMPOSE_AMP_VAL(nid_vol
, 2, 0, HDA_OUTPUT
));
5096 err
= via_add_control(
5097 spec
, VIA_CTL_WIDGET_MUTE
,
5098 "Center Playback Switch",
5099 HDA_COMPOSE_AMP_VAL(nid_mute
, 1, 0,
5103 err
= via_add_control(
5104 spec
, VIA_CTL_WIDGET_MUTE
,
5105 "LFE Playback Switch",
5106 HDA_COMPOSE_AMP_VAL(nid_mute
, 2, 0,
5110 } else if (i
== AUTO_SEQ_FRONT
) {
5112 err
= via_add_control(
5113 spec
, VIA_CTL_WIDGET_VOL
,
5114 "Master Front Playback Volume",
5115 HDA_COMPOSE_AMP_VAL(0x16, 3, 0, HDA_INPUT
));
5118 err
= via_add_control(
5119 spec
, VIA_CTL_WIDGET_MUTE
,
5120 "Master Front Playback Switch",
5121 HDA_COMPOSE_AMP_VAL(0x16, 3, 0, HDA_INPUT
));
5125 sprintf(name
, "%s Playback Volume", chname
[i
]);
5126 err
= via_add_control(
5127 spec
, VIA_CTL_WIDGET_VOL
, name
,
5128 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0, HDA_OUTPUT
));
5131 sprintf(name
, "%s Playback Switch", chname
[i
]);
5132 err
= via_add_control(
5133 spec
, VIA_CTL_WIDGET_MUTE
, name
,
5134 HDA_COMPOSE_AMP_VAL(nid_mute
, 3, 0,
5139 sprintf(name
, "%s Playback Volume", chname
[i
]);
5140 err
= via_add_control(
5141 spec
, VIA_CTL_WIDGET_VOL
, name
,
5142 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0, HDA_OUTPUT
));
5145 sprintf(name
, "%s Playback Switch", chname
[i
]);
5146 err
= via_add_control(
5147 spec
, VIA_CTL_WIDGET_MUTE
, name
,
5148 HDA_COMPOSE_AMP_VAL(nid_mute
, 3, 0,
5157 static int vt1716S_auto_create_hp_ctls(struct via_spec
*spec
, hda_nid_t pin
)
5164 spec
->multiout
.hp_nid
= 0x25; /* AOW3 */
5165 spec
->hp_independent_mode_index
= 1;
5167 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
5168 "Headphone Playback Volume",
5169 HDA_COMPOSE_AMP_VAL(0x25, 3, 0, HDA_OUTPUT
));
5173 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
5174 "Headphone Playback Switch",
5175 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
5179 create_hp_imux(spec
);
5183 /* create playback/capture controls for input pins */
5184 static int vt1716S_auto_create_analog_input_ctls(struct hda_codec
*codec
,
5185 const struct auto_pin_cfg
*cfg
)
5187 static hda_nid_t pin_idxs
[] = { 0x1f, 0x1a, 0x1b, 0x1e, 0, 0xff };
5188 return vt_auto_create_analog_input_ctls(codec
, cfg
, 0x16, pin_idxs
,
5189 ARRAY_SIZE(pin_idxs
));
5192 static int vt1716S_parse_auto_config(struct hda_codec
*codec
)
5194 struct via_spec
*spec
= codec
->spec
;
5197 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
, NULL
);
5200 err
= vt1716S_auto_fill_dac_nids(spec
, &spec
->autocfg
);
5203 if (!spec
->autocfg
.line_outs
&& !spec
->autocfg
.hp_pins
[0])
5204 return 0; /* can't find valid BIOS pin config */
5206 err
= vt1716S_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
5209 err
= vt1716S_auto_create_hp_ctls(spec
, spec
->autocfg
.hp_pins
[0]);
5212 err
= vt1716S_auto_create_analog_input_ctls(codec
, &spec
->autocfg
);
5216 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
5218 fill_dig_outs(codec
);
5220 if (spec
->kctls
.list
)
5221 spec
->mixers
[spec
->num_mixers
++] = spec
->kctls
.list
;
5223 spec
->input_mux
= &spec
->private_imux
[0];
5226 via_hp_build(codec
);
5228 via_smart51_build(spec
);
5233 #ifdef CONFIG_SND_HDA_POWER_SAVE
5234 static struct hda_amp_list vt1716S_loopbacks
[] = {
5235 { 0x16, HDA_INPUT
, 1 },
5236 { 0x16, HDA_INPUT
, 2 },
5237 { 0x16, HDA_INPUT
, 3 },
5238 { 0x16, HDA_INPUT
, 4 },
5243 static int patch_vt1716S(struct hda_codec
*codec
)
5245 struct via_spec
*spec
;
5248 /* create a codec specific record */
5249 spec
= via_new_spec(codec
);
5253 /* automatic parse from the BIOS config */
5254 err
= vt1716S_parse_auto_config(codec
);
5259 printk(KERN_INFO
"hda_codec: Cannot set up configuration "
5260 "from BIOS. Using genenic mode...\n");
5263 spec
->init_verbs
[spec
->num_iverbs
++] = vt1716S_volume_init_verbs
;
5264 spec
->init_verbs
[spec
->num_iverbs
++] = vt1716S_uniwill_init_verbs
;
5266 spec
->stream_name_analog
= "VT1716S Analog";
5267 spec
->stream_analog_playback
= &vt1716S_pcm_analog_playback
;
5268 spec
->stream_analog_capture
= &vt1716S_pcm_analog_capture
;
5270 spec
->stream_name_digital
= "VT1716S Digital";
5271 spec
->stream_digital_playback
= &vt1716S_pcm_digital_playback
;
5273 if (!spec
->adc_nids
&& spec
->input_mux
) {
5274 spec
->adc_nids
= vt1716S_adc_nids
;
5275 spec
->num_adc_nids
= ARRAY_SIZE(vt1716S_adc_nids
);
5276 get_mux_nids(codec
);
5277 override_mic_boost(codec
, 0x1a, 0, 3, 40);
5278 override_mic_boost(codec
, 0x1e, 0, 3, 40);
5279 spec
->mixers
[spec
->num_mixers
] = vt1716S_capture_mixer
;
5283 spec
->mixers
[spec
->num_mixers
] = vt1716s_dmic_mixer
;
5286 spec
->mixers
[spec
->num_mixers
++] = vt1716S_mono_out_mixer
;
5288 codec
->patch_ops
= via_patch_ops
;
5290 codec
->patch_ops
.init
= via_auto_init
;
5291 codec
->patch_ops
.unsol_event
= via_unsol_event
;
5293 #ifdef CONFIG_SND_HDA_POWER_SAVE
5294 spec
->loopback
.amplist
= vt1716S_loopbacks
;
5302 /* capture mixer elements */
5303 static struct snd_kcontrol_new vt2002P_capture_mixer
[] = {
5304 HDA_CODEC_VOLUME("Capture Volume", 0x10, 0x0, HDA_INPUT
),
5305 HDA_CODEC_MUTE("Capture Switch", 0x10, 0x0, HDA_INPUT
),
5306 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x11, 0x0, HDA_INPUT
),
5307 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x11, 0x0, HDA_INPUT
),
5308 HDA_CODEC_VOLUME("Mic Boost Capture Volume", 0x2b, 0x0, HDA_INPUT
),
5309 HDA_CODEC_VOLUME("Front Mic Boost Capture Volume", 0x29, 0x0,
5312 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
5313 /* The multiple "Capture Source" controls confuse alsamixer
5314 * So call somewhat different..
5316 /* .name = "Capture Source", */
5317 .name
= "Input Source",
5319 .info
= via_mux_enum_info
,
5320 .get
= via_mux_enum_get
,
5321 .put
= via_mux_enum_put
,
5326 static struct hda_verb vt2002P_volume_init_verbs
[] = {
5328 * Unmute ADC0-1 and set the default input to mic-in
5330 {0x8, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5331 {0x9, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5334 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
5337 /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
5338 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5339 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5340 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
5341 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
5342 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
5344 /* MUX Indices: Mic = 0 */
5345 {0x1e, AC_VERB_SET_CONNECT_SEL
, 0},
5346 {0x1f, AC_VERB_SET_CONNECT_SEL
, 0},
5348 /* PW9 Output enable */
5349 {0x2d, AC_VERB_SET_PIN_WIDGET_CONTROL
, AC_PINCTL_OUT_EN
},
5351 /* Enable Boost Volume backdoor */
5354 /* MW0/1/4/8: un-mute index 0 (MUXx), un-mute index 1 (MW9) */
5355 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5356 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5357 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5358 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5359 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
5360 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
5361 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
5362 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
5364 /* set MUX0/1/4/8 = 0 (AOW0) */
5365 {0x34, AC_VERB_SET_CONNECT_SEL
, 0},
5366 {0x35, AC_VERB_SET_CONNECT_SEL
, 0},
5367 {0x37, AC_VERB_SET_CONNECT_SEL
, 0},
5368 {0x3b, AC_VERB_SET_CONNECT_SEL
, 0},
5370 /* set PW0 index=0 (MW0) */
5371 {0x24, AC_VERB_SET_CONNECT_SEL
, 0},
5373 /* Enable AOW0 to MW9 */
5379 static struct hda_verb vt2002P_uniwill_init_verbs
[] = {
5380 {0x25, AC_VERB_SET_UNSOLICITED_ENABLE
,
5381 AC_USRSP_EN
| VIA_JACK_EVENT
| VIA_BIND_HP_EVENT
},
5382 {0x26, AC_VERB_SET_UNSOLICITED_ENABLE
,
5383 AC_USRSP_EN
| VIA_JACK_EVENT
| VIA_BIND_HP_EVENT
},
5384 {0x29, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
5385 {0x2a, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
5386 {0x2b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
5390 static struct hda_pcm_stream vt2002P_pcm_analog_playback
= {
5394 .nid
= 0x8, /* NID to query formats and rates */
5396 .open
= via_playback_pcm_open
,
5397 .prepare
= via_playback_multi_pcm_prepare
,
5398 .cleanup
= via_playback_multi_pcm_cleanup
,
5399 .close
= via_pcm_open_close
,
5403 static struct hda_pcm_stream vt2002P_pcm_analog_capture
= {
5407 .nid
= 0x10, /* NID to query formats and rates */
5409 .open
= via_pcm_open_close
,
5410 .prepare
= via_capture_pcm_prepare
,
5411 .cleanup
= via_capture_pcm_cleanup
,
5412 .close
= via_pcm_open_close
,
5416 static struct hda_pcm_stream vt2002P_pcm_digital_playback
= {
5420 /* NID is set in via_build_pcms */
5422 .open
= via_dig_playback_pcm_open
,
5423 .close
= via_dig_playback_pcm_close
,
5424 .prepare
= via_dig_playback_pcm_prepare
,
5425 .cleanup
= via_dig_playback_pcm_cleanup
5429 /* fill in the dac_nids table from the parsed pin configuration */
5430 static int vt2002P_auto_fill_dac_nids(struct via_spec
*spec
,
5431 const struct auto_pin_cfg
*cfg
)
5433 spec
->multiout
.num_dacs
= 1;
5434 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
5435 if (cfg
->line_out_pins
[0])
5436 spec
->multiout
.dac_nids
[0] = 0x8;
5440 /* add playback controls from the parsed DAC table */
5441 static int vt2002P_auto_create_multi_out_ctls(struct via_spec
*spec
,
5442 const struct auto_pin_cfg
*cfg
)
5446 if (!cfg
->line_out_pins
[0])
5450 /* Line-Out: PortE */
5451 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
5452 "Master Front Playback Volume",
5453 HDA_COMPOSE_AMP_VAL(0x8, 3, 0, HDA_OUTPUT
));
5456 err
= via_add_control(spec
, VIA_CTL_WIDGET_BIND_PIN_MUTE
,
5457 "Master Front Playback Switch",
5458 HDA_COMPOSE_AMP_VAL(0x26, 3, 0, HDA_OUTPUT
));
5465 static int vt2002P_auto_create_hp_ctls(struct via_spec
*spec
, hda_nid_t pin
)
5472 spec
->multiout
.hp_nid
= 0x9;
5473 spec
->hp_independent_mode_index
= 1;
5475 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
5476 "Headphone Playback Volume",
5477 HDA_COMPOSE_AMP_VAL(
5478 spec
->multiout
.hp_nid
, 3, 0, HDA_OUTPUT
));
5482 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
5483 "Headphone Playback Switch",
5484 HDA_COMPOSE_AMP_VAL(0x25, 3, 0, HDA_OUTPUT
));
5488 create_hp_imux(spec
);
5492 /* create playback/capture controls for input pins */
5493 static int vt2002P_auto_create_analog_input_ctls(struct hda_codec
*codec
,
5494 const struct auto_pin_cfg
*cfg
)
5496 struct via_spec
*spec
= codec
->spec
;
5497 struct hda_input_mux
*imux
= &spec
->private_imux
[0];
5498 static hda_nid_t pin_idxs
[] = { 0x2b, 0x2a, 0x29, 0xff };
5501 err
= vt_auto_create_analog_input_ctls(codec
, cfg
, 0x21, pin_idxs
,
5502 ARRAY_SIZE(pin_idxs
));
5505 /* build volume/mute control of loopback */
5506 err
= via_new_analog_input(spec
, "Stereo Mixer", 0, 3, 0x21);
5510 /* for digital mic select */
5511 snd_hda_add_imux_item(imux
, "Digital Mic", 4, NULL
);
5516 static int vt2002P_parse_auto_config(struct hda_codec
*codec
)
5518 struct via_spec
*spec
= codec
->spec
;
5522 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
, NULL
);
5526 err
= vt2002P_auto_fill_dac_nids(spec
, &spec
->autocfg
);
5530 if (!spec
->autocfg
.line_outs
&& !spec
->autocfg
.hp_pins
[0])
5531 return 0; /* can't find valid BIOS pin config */
5533 err
= vt2002P_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
5536 err
= vt2002P_auto_create_hp_ctls(spec
, spec
->autocfg
.hp_pins
[0]);
5539 err
= vt2002P_auto_create_analog_input_ctls(codec
, &spec
->autocfg
);
5543 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
5545 fill_dig_outs(codec
);
5547 if (spec
->kctls
.list
)
5548 spec
->mixers
[spec
->num_mixers
++] = spec
->kctls
.list
;
5550 spec
->input_mux
= &spec
->private_imux
[0];
5553 via_hp_build(codec
);
5558 #ifdef CONFIG_SND_HDA_POWER_SAVE
5559 static struct hda_amp_list vt2002P_loopbacks
[] = {
5560 { 0x21, HDA_INPUT
, 0 },
5561 { 0x21, HDA_INPUT
, 1 },
5562 { 0x21, HDA_INPUT
, 2 },
5568 /* patch for vt2002P */
5569 static int patch_vt2002P(struct hda_codec
*codec
)
5571 struct via_spec
*spec
;
5574 /* create a codec specific record */
5575 spec
= via_new_spec(codec
);
5579 /* automatic parse from the BIOS config */
5580 err
= vt2002P_parse_auto_config(codec
);
5585 printk(KERN_INFO
"hda_codec: Cannot set up configuration "
5586 "from BIOS. Using genenic mode...\n");
5589 spec
->init_verbs
[spec
->num_iverbs
++] = vt2002P_volume_init_verbs
;
5590 spec
->init_verbs
[spec
->num_iverbs
++] = vt2002P_uniwill_init_verbs
;
5592 spec
->stream_name_analog
= "VT2002P Analog";
5593 spec
->stream_analog_playback
= &vt2002P_pcm_analog_playback
;
5594 spec
->stream_analog_capture
= &vt2002P_pcm_analog_capture
;
5596 spec
->stream_name_digital
= "VT2002P Digital";
5597 spec
->stream_digital_playback
= &vt2002P_pcm_digital_playback
;
5599 if (!spec
->adc_nids
&& spec
->input_mux
) {
5600 spec
->adc_nids
= vt2002P_adc_nids
;
5601 spec
->num_adc_nids
= ARRAY_SIZE(vt2002P_adc_nids
);
5602 get_mux_nids(codec
);
5603 override_mic_boost(codec
, 0x2b, 0, 3, 40);
5604 override_mic_boost(codec
, 0x29, 0, 3, 40);
5605 spec
->mixers
[spec
->num_mixers
] = vt2002P_capture_mixer
;
5609 codec
->patch_ops
= via_patch_ops
;
5611 codec
->patch_ops
.init
= via_auto_init
;
5612 codec
->patch_ops
.unsol_event
= via_unsol_event
;
5614 #ifdef CONFIG_SND_HDA_POWER_SAVE
5615 spec
->loopback
.amplist
= vt2002P_loopbacks
;
5623 /* capture mixer elements */
5624 static struct snd_kcontrol_new vt1812_capture_mixer
[] = {
5625 HDA_CODEC_VOLUME("Capture Volume", 0x10, 0x0, HDA_INPUT
),
5626 HDA_CODEC_MUTE("Capture Switch", 0x10, 0x0, HDA_INPUT
),
5627 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x11, 0x0, HDA_INPUT
),
5628 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x11, 0x0, HDA_INPUT
),
5629 HDA_CODEC_MUTE("Mic Boost Capture Volume", 0x2b, 0x0, HDA_INPUT
),
5630 HDA_CODEC_MUTE("Front Mic Boost Capture Volume", 0x29, 0x0,
5633 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
5634 /* The multiple "Capture Source" controls confuse alsamixer
5635 * So call somewhat different..
5637 .name
= "Input Source",
5639 .info
= via_mux_enum_info
,
5640 .get
= via_mux_enum_get
,
5641 .put
= via_mux_enum_put
,
5646 static struct hda_verb vt1812_volume_init_verbs
[] = {
5648 * Unmute ADC0-1 and set the default input to mic-in
5650 {0x8, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5651 {0x9, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5654 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
5657 /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
5658 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5659 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5660 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
5661 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
5662 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
5664 /* MUX Indices: Mic = 0 */
5665 {0x1e, AC_VERB_SET_CONNECT_SEL
, 0},
5666 {0x1f, AC_VERB_SET_CONNECT_SEL
, 0},
5668 /* PW9 Output enable */
5669 {0x2d, AC_VERB_SET_PIN_WIDGET_CONTROL
, AC_PINCTL_OUT_EN
},
5671 /* Enable Boost Volume backdoor */
5674 /* MW0/1/4/13/15: un-mute index 0 (MUXx), un-mute index 1 (MW9) */
5675 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5676 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5677 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5678 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5679 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5680 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
5681 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
5682 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
5683 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
5684 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
5686 /* set MUX0/1/4/13/15 = 0 (AOW0) */
5687 {0x34, AC_VERB_SET_CONNECT_SEL
, 0},
5688 {0x35, AC_VERB_SET_CONNECT_SEL
, 0},
5689 {0x38, AC_VERB_SET_CONNECT_SEL
, 0},
5690 {0x3c, AC_VERB_SET_CONNECT_SEL
, 0},
5691 {0x3d, AC_VERB_SET_CONNECT_SEL
, 0},
5693 /* Enable AOW0 to MW9 */
5699 static struct hda_verb vt1812_uniwill_init_verbs
[] = {
5700 {0x33, AC_VERB_SET_UNSOLICITED_ENABLE
,
5701 AC_USRSP_EN
| VIA_JACK_EVENT
| VIA_BIND_HP_EVENT
},
5702 {0x25, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
5703 {0x28, AC_VERB_SET_UNSOLICITED_ENABLE
,
5704 AC_USRSP_EN
| VIA_JACK_EVENT
| VIA_BIND_HP_EVENT
},
5705 {0x29, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
5706 {0x2a, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
5707 {0x2b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| VIA_JACK_EVENT
},
5711 static struct hda_pcm_stream vt1812_pcm_analog_playback
= {
5715 .nid
= 0x8, /* NID to query formats and rates */
5717 .open
= via_playback_pcm_open
,
5718 .prepare
= via_playback_multi_pcm_prepare
,
5719 .cleanup
= via_playback_multi_pcm_cleanup
,
5720 .close
= via_pcm_open_close
,
5724 static struct hda_pcm_stream vt1812_pcm_analog_capture
= {
5728 .nid
= 0x10, /* NID to query formats and rates */
5730 .open
= via_pcm_open_close
,
5731 .prepare
= via_capture_pcm_prepare
,
5732 .cleanup
= via_capture_pcm_cleanup
,
5733 .close
= via_pcm_open_close
,
5737 static struct hda_pcm_stream vt1812_pcm_digital_playback
= {
5741 /* NID is set in via_build_pcms */
5743 .open
= via_dig_playback_pcm_open
,
5744 .close
= via_dig_playback_pcm_close
,
5745 .prepare
= via_dig_playback_pcm_prepare
,
5746 .cleanup
= via_dig_playback_pcm_cleanup
5749 /* fill in the dac_nids table from the parsed pin configuration */
5750 static int vt1812_auto_fill_dac_nids(struct via_spec
*spec
,
5751 const struct auto_pin_cfg
*cfg
)
5753 spec
->multiout
.num_dacs
= 1;
5754 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
5755 if (cfg
->line_out_pins
[0])
5756 spec
->multiout
.dac_nids
[0] = 0x8;
5761 /* add playback controls from the parsed DAC table */
5762 static int vt1812_auto_create_multi_out_ctls(struct via_spec
*spec
,
5763 const struct auto_pin_cfg
*cfg
)
5767 if (!cfg
->line_out_pins
[0])
5770 /* Line-Out: PortE */
5771 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
5772 "Front Playback Volume",
5773 HDA_COMPOSE_AMP_VAL(0x8, 3, 0, HDA_OUTPUT
));
5776 err
= via_add_control(spec
, VIA_CTL_WIDGET_BIND_PIN_MUTE
,
5777 "Front Playback Switch",
5778 HDA_COMPOSE_AMP_VAL(0x28, 3, 0, HDA_OUTPUT
));
5785 static int vt1812_auto_create_hp_ctls(struct via_spec
*spec
, hda_nid_t pin
)
5792 spec
->multiout
.hp_nid
= 0x9;
5793 spec
->hp_independent_mode_index
= 1;
5796 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
5797 "Headphone Playback Volume",
5798 HDA_COMPOSE_AMP_VAL(
5799 spec
->multiout
.hp_nid
, 3, 0, HDA_OUTPUT
));
5803 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
5804 "Headphone Playback Switch",
5805 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
5809 create_hp_imux(spec
);
5813 /* create playback/capture controls for input pins */
5814 static int vt1812_auto_create_analog_input_ctls(struct hda_codec
*codec
,
5815 const struct auto_pin_cfg
*cfg
)
5817 struct via_spec
*spec
= codec
->spec
;
5818 struct hda_input_mux
*imux
= &spec
->private_imux
[0];
5819 static hda_nid_t pin_idxs
[] = { 0x2b, 0x2a, 0x29, 0, 0, 0xff };
5822 err
= vt_auto_create_analog_input_ctls(codec
, cfg
, 0x21, pin_idxs
,
5823 ARRAY_SIZE(pin_idxs
));
5827 /* build volume/mute control of loopback */
5828 err
= via_new_analog_input(spec
, "Stereo Mixer", 0, 5, 0x21);
5832 /* for digital mic select */
5833 snd_hda_add_imux_item(imux
, "Digital Mic", 6, NULL
);
5838 static int vt1812_parse_auto_config(struct hda_codec
*codec
)
5840 struct via_spec
*spec
= codec
->spec
;
5844 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
, NULL
);
5847 fill_dig_outs(codec
);
5848 err
= vt1812_auto_fill_dac_nids(spec
, &spec
->autocfg
);
5852 if (!spec
->autocfg
.line_outs
&& !spec
->autocfg
.hp_outs
)
5853 return 0; /* can't find valid BIOS pin config */
5855 err
= vt1812_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
5858 err
= vt1812_auto_create_hp_ctls(spec
, spec
->autocfg
.hp_pins
[0]);
5861 err
= vt1812_auto_create_analog_input_ctls(codec
, &spec
->autocfg
);
5865 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
5867 fill_dig_outs(codec
);
5869 if (spec
->kctls
.list
)
5870 spec
->mixers
[spec
->num_mixers
++] = spec
->kctls
.list
;
5872 spec
->input_mux
= &spec
->private_imux
[0];
5875 via_hp_build(codec
);
5880 #ifdef CONFIG_SND_HDA_POWER_SAVE
5881 static struct hda_amp_list vt1812_loopbacks
[] = {
5882 { 0x21, HDA_INPUT
, 0 },
5883 { 0x21, HDA_INPUT
, 1 },
5884 { 0x21, HDA_INPUT
, 2 },
5890 /* patch for vt1812 */
5891 static int patch_vt1812(struct hda_codec
*codec
)
5893 struct via_spec
*spec
;
5896 /* create a codec specific record */
5897 spec
= via_new_spec(codec
);
5901 /* automatic parse from the BIOS config */
5902 err
= vt1812_parse_auto_config(codec
);
5907 printk(KERN_INFO
"hda_codec: Cannot set up configuration "
5908 "from BIOS. Using genenic mode...\n");
5912 spec
->init_verbs
[spec
->num_iverbs
++] = vt1812_volume_init_verbs
;
5913 spec
->init_verbs
[spec
->num_iverbs
++] = vt1812_uniwill_init_verbs
;
5915 spec
->stream_name_analog
= "VT1812 Analog";
5916 spec
->stream_analog_playback
= &vt1812_pcm_analog_playback
;
5917 spec
->stream_analog_capture
= &vt1812_pcm_analog_capture
;
5919 spec
->stream_name_digital
= "VT1812 Digital";
5920 spec
->stream_digital_playback
= &vt1812_pcm_digital_playback
;
5923 if (!spec
->adc_nids
&& spec
->input_mux
) {
5924 spec
->adc_nids
= vt1812_adc_nids
;
5925 spec
->num_adc_nids
= ARRAY_SIZE(vt1812_adc_nids
);
5926 get_mux_nids(codec
);
5927 override_mic_boost(codec
, 0x2b, 0, 3, 40);
5928 override_mic_boost(codec
, 0x29, 0, 3, 40);
5929 spec
->mixers
[spec
->num_mixers
] = vt1812_capture_mixer
;
5933 codec
->patch_ops
= via_patch_ops
;
5935 codec
->patch_ops
.init
= via_auto_init
;
5936 codec
->patch_ops
.unsol_event
= via_unsol_event
;
5938 #ifdef CONFIG_SND_HDA_POWER_SAVE
5939 spec
->loopback
.amplist
= vt1812_loopbacks
;
5948 static struct hda_codec_preset snd_hda_preset_via
[] = {
5949 { .id
= 0x11061708, .name
= "VT1708", .patch
= patch_vt1708
},
5950 { .id
= 0x11061709, .name
= "VT1708", .patch
= patch_vt1708
},
5951 { .id
= 0x1106170a, .name
= "VT1708", .patch
= patch_vt1708
},
5952 { .id
= 0x1106170b, .name
= "VT1708", .patch
= patch_vt1708
},
5953 { .id
= 0x1106e710, .name
= "VT1709 10-Ch",
5954 .patch
= patch_vt1709_10ch
},
5955 { .id
= 0x1106e711, .name
= "VT1709 10-Ch",
5956 .patch
= patch_vt1709_10ch
},
5957 { .id
= 0x1106e712, .name
= "VT1709 10-Ch",
5958 .patch
= patch_vt1709_10ch
},
5959 { .id
= 0x1106e713, .name
= "VT1709 10-Ch",
5960 .patch
= patch_vt1709_10ch
},
5961 { .id
= 0x1106e714, .name
= "VT1709 6-Ch",
5962 .patch
= patch_vt1709_6ch
},
5963 { .id
= 0x1106e715, .name
= "VT1709 6-Ch",
5964 .patch
= patch_vt1709_6ch
},
5965 { .id
= 0x1106e716, .name
= "VT1709 6-Ch",
5966 .patch
= patch_vt1709_6ch
},
5967 { .id
= 0x1106e717, .name
= "VT1709 6-Ch",
5968 .patch
= patch_vt1709_6ch
},
5969 { .id
= 0x1106e720, .name
= "VT1708B 8-Ch",
5970 .patch
= patch_vt1708B_8ch
},
5971 { .id
= 0x1106e721, .name
= "VT1708B 8-Ch",
5972 .patch
= patch_vt1708B_8ch
},
5973 { .id
= 0x1106e722, .name
= "VT1708B 8-Ch",
5974 .patch
= patch_vt1708B_8ch
},
5975 { .id
= 0x1106e723, .name
= "VT1708B 8-Ch",
5976 .patch
= patch_vt1708B_8ch
},
5977 { .id
= 0x1106e724, .name
= "VT1708B 4-Ch",
5978 .patch
= patch_vt1708B_4ch
},
5979 { .id
= 0x1106e725, .name
= "VT1708B 4-Ch",
5980 .patch
= patch_vt1708B_4ch
},
5981 { .id
= 0x1106e726, .name
= "VT1708B 4-Ch",
5982 .patch
= patch_vt1708B_4ch
},
5983 { .id
= 0x1106e727, .name
= "VT1708B 4-Ch",
5984 .patch
= patch_vt1708B_4ch
},
5985 { .id
= 0x11060397, .name
= "VT1708S",
5986 .patch
= patch_vt1708S
},
5987 { .id
= 0x11061397, .name
= "VT1708S",
5988 .patch
= patch_vt1708S
},
5989 { .id
= 0x11062397, .name
= "VT1708S",
5990 .patch
= patch_vt1708S
},
5991 { .id
= 0x11063397, .name
= "VT1708S",
5992 .patch
= patch_vt1708S
},
5993 { .id
= 0x11064397, .name
= "VT1708S",
5994 .patch
= patch_vt1708S
},
5995 { .id
= 0x11065397, .name
= "VT1708S",
5996 .patch
= patch_vt1708S
},
5997 { .id
= 0x11066397, .name
= "VT1708S",
5998 .patch
= patch_vt1708S
},
5999 { .id
= 0x11067397, .name
= "VT1708S",
6000 .patch
= patch_vt1708S
},
6001 { .id
= 0x11060398, .name
= "VT1702",
6002 .patch
= patch_vt1702
},
6003 { .id
= 0x11061398, .name
= "VT1702",
6004 .patch
= patch_vt1702
},
6005 { .id
= 0x11062398, .name
= "VT1702",
6006 .patch
= patch_vt1702
},
6007 { .id
= 0x11063398, .name
= "VT1702",
6008 .patch
= patch_vt1702
},
6009 { .id
= 0x11064398, .name
= "VT1702",
6010 .patch
= patch_vt1702
},
6011 { .id
= 0x11065398, .name
= "VT1702",
6012 .patch
= patch_vt1702
},
6013 { .id
= 0x11066398, .name
= "VT1702",
6014 .patch
= patch_vt1702
},
6015 { .id
= 0x11067398, .name
= "VT1702",
6016 .patch
= patch_vt1702
},
6017 { .id
= 0x11060428, .name
= "VT1718S",
6018 .patch
= patch_vt1718S
},
6019 { .id
= 0x11064428, .name
= "VT1718S",
6020 .patch
= patch_vt1718S
},
6021 { .id
= 0x11060441, .name
= "VT2020",
6022 .patch
= patch_vt1718S
},
6023 { .id
= 0x11064441, .name
= "VT1828S",
6024 .patch
= patch_vt1718S
},
6025 { .id
= 0x11060433, .name
= "VT1716S",
6026 .patch
= patch_vt1716S
},
6027 { .id
= 0x1106a721, .name
= "VT1716S",
6028 .patch
= patch_vt1716S
},
6029 { .id
= 0x11060438, .name
= "VT2002P", .patch
= patch_vt2002P
},
6030 { .id
= 0x11064438, .name
= "VT2002P", .patch
= patch_vt2002P
},
6031 { .id
= 0x11060448, .name
= "VT1812", .patch
= patch_vt1812
},
6032 { .id
= 0x11060440, .name
= "VT1818S",
6033 .patch
= patch_vt1708S
},
6037 MODULE_ALIAS("snd-hda-codec-id:1106*");
6039 static struct hda_codec_preset_list via_list
= {
6040 .preset
= snd_hda_preset_via
,
6041 .owner
= THIS_MODULE
,
6044 MODULE_LICENSE("GPL");
6045 MODULE_DESCRIPTION("VIA HD-audio codec");
6047 static int __init
patch_via_init(void)
6049 return snd_hda_add_codec_preset(&via_list
);
6052 static void __exit
patch_via_exit(void)
6054 snd_hda_delete_codec_preset(&via_list
);
6057 module_init(patch_via_init
)
6058 module_exit(patch_via_exit
)