2 * Universal Interface for Intel High Definition Audio Codec
4 * HD audio interface patch for VIA VT1708 codec
6 * Copyright (c) 2006 Lydia Wang <lydiawang@viatech.com>
7 * 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 */
33 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
36 #include <linux/init.h>
37 #include <linux/delay.h>
38 #include <linux/slab.h>
39 #include <sound/core.h>
40 #include "hda_codec.h"
41 #include "hda_local.h"
45 #define AMP_VAL_IDX_SHIFT 19
46 #define AMP_VAL_IDX_MASK (0x0f<<19)
48 #define NUM_CONTROL_ALLOC 32
49 #define NUM_VERB_ALLOC 32
52 #define VT1708_HP_NID 0x13
53 #define VT1708_DIGOUT_NID 0x14
54 #define VT1708_DIGIN_NID 0x16
55 #define VT1708_DIGIN_PIN 0x26
57 #define VT1709_HP_DAC_NID 0x28
58 #define VT1709_DIGOUT_NID 0x13
59 #define VT1709_DIGIN_NID 0x17
60 #define VT1709_DIGIN_PIN 0x25
62 #define VT1708B_HP_NID 0x25
63 #define VT1708B_DIGOUT_NID 0x12
64 #define VT1708B_DIGIN_NID 0x15
65 #define VT1708B_DIGIN_PIN 0x21
67 #define IS_VT1708_VENDORID(x) ((x) >= 0x11061708 && (x) <= 0x1106170b)
68 #define IS_VT1709_10CH_VENDORID(x) ((x) >= 0x1106e710 && (x) <= 0x1106e713)
69 #define IS_VT1709_6CH_VENDORID(x) ((x) >= 0x1106e714 && (x) <= 0x1106e717)
70 #define IS_VT1708B_8CH_VENDORID(x) ((x) >= 0x1106e720 && (x) <= 0x1106e723)
71 #define IS_VT1708B_4CH_VENDORID(x) ((x) >= 0x1106e724 && (x) <= 0x1106e727)
86 static struct snd_kcontrol_new vt1708_control_templates
[] = {
87 HDA_CODEC_VOLUME(NULL
, 0, 0, 0),
88 HDA_CODEC_MUTE(NULL
, 0, 0, 0),
93 /* codec parameterization */
94 struct snd_kcontrol_new
*mixers
[3];
95 unsigned int num_mixers
;
97 struct hda_verb
*init_verbs
;
99 char *stream_name_analog
;
100 struct hda_pcm_stream
*stream_analog_playback
;
101 struct hda_pcm_stream
*stream_analog_capture
;
103 char *stream_name_digital
;
104 struct hda_pcm_stream
*stream_digital_playback
;
105 struct hda_pcm_stream
*stream_digital_capture
;
108 struct hda_multi_out multiout
;
111 unsigned int num_adc_nids
;
113 hda_nid_t dig_in_nid
;
116 const struct hda_input_mux
*input_mux
;
117 unsigned int cur_mux
[3];
119 /* PCM information */
120 struct hda_pcm pcm_rec
[2];
122 /* dynamic controls, init_verbs and input_mux */
123 struct auto_pin_cfg autocfg
;
124 unsigned int num_kctl_alloc
, num_kctl_used
;
125 struct snd_kcontrol_new
*kctl_alloc
;
126 struct hda_input_mux private_imux
;
127 hda_nid_t private_dac_nids
[AUTO_CFG_MAX_OUTS
];
129 #ifdef CONFIG_SND_HDA_POWER_SAVE
130 struct hda_loopback_check loopback
;
134 static hda_nid_t vt1708_adc_nids
[2] = {
139 static hda_nid_t vt1709_adc_nids
[3] = {
144 static hda_nid_t vt1708B_adc_nids
[2] = {
149 /* add dynamic controls */
150 static int via_add_control(struct via_spec
*spec
, int type
, const char *name
,
153 struct snd_kcontrol_new
*knew
;
155 if (spec
->num_kctl_used
>= spec
->num_kctl_alloc
) {
156 int num
= spec
->num_kctl_alloc
+ NUM_CONTROL_ALLOC
;
158 /* array + terminator */
159 knew
= kcalloc(num
+ 1, sizeof(*knew
), GFP_KERNEL
);
162 if (spec
->kctl_alloc
) {
163 memcpy(knew
, spec
->kctl_alloc
,
164 sizeof(*knew
) * spec
->num_kctl_alloc
);
165 kfree(spec
->kctl_alloc
);
167 spec
->kctl_alloc
= knew
;
168 spec
->num_kctl_alloc
= num
;
171 knew
= &spec
->kctl_alloc
[spec
->num_kctl_used
];
172 *knew
= vt1708_control_templates
[type
];
173 knew
->name
= kstrdup(name
, GFP_KERNEL
);
177 knew
->private_value
= val
;
178 spec
->num_kctl_used
++;
182 /* create input playback/capture controls for the given pin */
183 static int via_new_analog_input(struct via_spec
*spec
, hda_nid_t pin
,
184 const char *ctlname
, int idx
, int mix_nid
)
189 sprintf(name
, "%s Playback Volume", ctlname
);
190 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
, name
,
191 HDA_COMPOSE_AMP_VAL(mix_nid
, 3, idx
, HDA_INPUT
));
194 sprintf(name
, "%s Playback Switch", ctlname
);
195 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
, name
,
196 HDA_COMPOSE_AMP_VAL(mix_nid
, 3, idx
, HDA_INPUT
));
202 static void via_auto_set_output_and_unmute(struct hda_codec
*codec
,
203 hda_nid_t nid
, int pin_type
,
207 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
209 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
214 static void via_auto_init_multi_out(struct hda_codec
*codec
)
216 struct via_spec
*spec
= codec
->spec
;
219 for (i
= 0; i
<= AUTO_SEQ_SIDE
; i
++) {
220 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
222 via_auto_set_output_and_unmute(codec
, nid
, PIN_OUT
, i
);
226 static void via_auto_init_hp_out(struct hda_codec
*codec
)
228 struct via_spec
*spec
= codec
->spec
;
231 pin
= spec
->autocfg
.hp_pins
[0];
232 if (pin
) /* connect to front */
233 via_auto_set_output_and_unmute(codec
, pin
, PIN_HP
, 0);
236 static void via_auto_init_analog_input(struct hda_codec
*codec
)
238 struct via_spec
*spec
= codec
->spec
;
241 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
242 hda_nid_t nid
= spec
->autocfg
.input_pins
[i
];
244 snd_hda_codec_write(codec
, nid
, 0,
245 AC_VERB_SET_PIN_WIDGET_CONTROL
,
246 (i
<= AUTO_PIN_FRONT_MIC
?
247 PIN_VREF50
: PIN_IN
));
254 static int via_mux_enum_info(struct snd_kcontrol
*kcontrol
,
255 struct snd_ctl_elem_info
*uinfo
)
257 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
258 struct via_spec
*spec
= codec
->spec
;
259 return snd_hda_input_mux_info(spec
->input_mux
, uinfo
);
262 static int via_mux_enum_get(struct snd_kcontrol
*kcontrol
,
263 struct snd_ctl_elem_value
*ucontrol
)
265 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
266 struct via_spec
*spec
= codec
->spec
;
267 unsigned int adc_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
269 ucontrol
->value
.enumerated
.item
[0] = spec
->cur_mux
[adc_idx
];
273 static int via_mux_enum_put(struct snd_kcontrol
*kcontrol
,
274 struct snd_ctl_elem_value
*ucontrol
)
276 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
277 struct via_spec
*spec
= codec
->spec
;
278 unsigned int adc_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
279 unsigned int vendor_id
= codec
->vendor_id
;
281 /* AIW0 lydia 060801 add for correct sw0 input select */
282 if (IS_VT1708_VENDORID(vendor_id
) && (adc_idx
== 0))
283 return snd_hda_input_mux_put(codec
, spec
->input_mux
, ucontrol
,
284 0x18, &spec
->cur_mux
[adc_idx
]);
285 else if ((IS_VT1709_10CH_VENDORID(vendor_id
) ||
286 IS_VT1709_6CH_VENDORID(vendor_id
)) && adc_idx
== 0)
287 return snd_hda_input_mux_put(codec
, spec
->input_mux
, ucontrol
,
288 0x19, &spec
->cur_mux
[adc_idx
]);
289 else if ((IS_VT1708B_8CH_VENDORID(vendor_id
) ||
290 IS_VT1708B_4CH_VENDORID(vendor_id
)) && adc_idx
== 0)
291 return snd_hda_input_mux_put(codec
, spec
->input_mux
, ucontrol
,
292 0x17, &spec
->cur_mux
[adc_idx
]);
294 return snd_hda_input_mux_put(codec
, spec
->input_mux
, ucontrol
,
295 spec
->adc_nids
[adc_idx
],
296 &spec
->cur_mux
[adc_idx
]);
299 /* capture mixer elements */
300 static struct snd_kcontrol_new vt1708_capture_mixer
[] = {
301 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_INPUT
),
302 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_INPUT
),
303 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x27, 0x0, HDA_INPUT
),
304 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x27, 0x0, HDA_INPUT
),
306 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
307 /* The multiple "Capture Source" controls confuse alsamixer
308 * So call somewhat different..
310 /* .name = "Capture Source", */
311 .name
= "Input Source",
313 .info
= via_mux_enum_info
,
314 .get
= via_mux_enum_get
,
315 .put
= via_mux_enum_put
,
320 * generic initialization of ADC, input mixers and output mixers
322 static struct hda_verb vt1708_volume_init_verbs
[] = {
324 * Unmute ADC0-1 and set the default input to mic-in
326 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
327 {0x27, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
330 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
333 /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
334 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
335 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
336 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
337 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
338 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(4)},
341 * Set up output mixers (0x19 - 0x1b)
343 /* set vol=0 to output mixers */
344 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
345 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
346 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
348 /* Setup default input to PW4 */
349 {0x20, AC_VERB_SET_CONNECT_SEL
, 0x1},
350 /* PW9 Output enable */
351 {0x25, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
355 static int via_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
356 struct hda_codec
*codec
,
357 struct snd_pcm_substream
*substream
)
359 struct via_spec
*spec
= codec
->spec
;
360 return snd_hda_multi_out_analog_open(codec
, &spec
->multiout
, substream
);
363 static int via_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
364 struct hda_codec
*codec
,
365 unsigned int stream_tag
,
367 struct snd_pcm_substream
*substream
)
369 struct via_spec
*spec
= codec
->spec
;
370 return snd_hda_multi_out_analog_prepare(codec
, &spec
->multiout
,
371 stream_tag
, format
, substream
);
374 static int via_playback_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
375 struct hda_codec
*codec
,
376 struct snd_pcm_substream
*substream
)
378 struct via_spec
*spec
= codec
->spec
;
379 return snd_hda_multi_out_analog_cleanup(codec
, &spec
->multiout
);
385 static int via_dig_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
386 struct hda_codec
*codec
,
387 struct snd_pcm_substream
*substream
)
389 struct via_spec
*spec
= codec
->spec
;
390 return snd_hda_multi_out_dig_open(codec
, &spec
->multiout
);
393 static int via_dig_playback_pcm_close(struct hda_pcm_stream
*hinfo
,
394 struct hda_codec
*codec
,
395 struct snd_pcm_substream
*substream
)
397 struct via_spec
*spec
= codec
->spec
;
398 return snd_hda_multi_out_dig_close(codec
, &spec
->multiout
);
401 static int via_dig_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
402 struct hda_codec
*codec
,
403 unsigned int stream_tag
,
405 struct snd_pcm_substream
*substream
)
407 struct via_spec
*spec
= codec
->spec
;
408 return snd_hda_multi_out_dig_prepare(codec
, &spec
->multiout
,
409 stream_tag
, format
, substream
);
415 static int via_capture_pcm_prepare(struct hda_pcm_stream
*hinfo
,
416 struct hda_codec
*codec
,
417 unsigned int stream_tag
,
419 struct snd_pcm_substream
*substream
)
421 struct via_spec
*spec
= codec
->spec
;
423 snd_hda_codec_setup_stream(codec
, spec
->adc_nids
[substream
->number
],
424 stream_tag
, 0, format
);
428 static int via_capture_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
429 struct hda_codec
*codec
,
430 struct snd_pcm_substream
*substream
)
432 struct via_spec
*spec
= codec
->spec
;
433 snd_hda_codec_setup_stream(codec
, spec
->adc_nids
[substream
->number
],
438 static struct hda_pcm_stream vt1708_pcm_analog_playback
= {
442 .nid
= 0x10, /* NID to query formats and rates */
444 .open
= via_playback_pcm_open
,
445 .prepare
= via_playback_pcm_prepare
,
446 .cleanup
= via_playback_pcm_cleanup
450 static struct hda_pcm_stream vt1708_pcm_analog_capture
= {
454 .nid
= 0x15, /* NID to query formats and rates */
456 .prepare
= via_capture_pcm_prepare
,
457 .cleanup
= via_capture_pcm_cleanup
461 static struct hda_pcm_stream vt1708_pcm_digital_playback
= {
465 /* NID is set in via_build_pcms */
467 .open
= via_dig_playback_pcm_open
,
468 .close
= via_dig_playback_pcm_close
,
469 .prepare
= via_dig_playback_pcm_prepare
473 static struct hda_pcm_stream vt1708_pcm_digital_capture
= {
479 static int via_build_controls(struct hda_codec
*codec
)
481 struct via_spec
*spec
= codec
->spec
;
485 for (i
= 0; i
< spec
->num_mixers
; i
++) {
486 err
= snd_hda_add_new_ctls(codec
, spec
->mixers
[i
]);
491 if (spec
->multiout
.dig_out_nid
) {
492 err
= snd_hda_create_spdif_out_ctls(codec
,
493 spec
->multiout
.dig_out_nid
);
497 if (spec
->dig_in_nid
) {
498 err
= snd_hda_create_spdif_in_ctls(codec
, spec
->dig_in_nid
);
505 static int via_build_pcms(struct hda_codec
*codec
)
507 struct via_spec
*spec
= codec
->spec
;
508 struct hda_pcm
*info
= spec
->pcm_rec
;
511 codec
->pcm_info
= info
;
513 info
->name
= spec
->stream_name_analog
;
514 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] = *(spec
->stream_analog_playback
);
515 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
= spec
->multiout
.dac_nids
[0];
516 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] = *(spec
->stream_analog_capture
);
517 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
= spec
->adc_nids
[0];
519 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].channels_max
=
520 spec
->multiout
.max_channels
;
522 if (spec
->multiout
.dig_out_nid
|| spec
->dig_in_nid
) {
525 info
->name
= spec
->stream_name_digital
;
526 if (spec
->multiout
.dig_out_nid
) {
527 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] =
528 *(spec
->stream_digital_playback
);
529 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
=
530 spec
->multiout
.dig_out_nid
;
532 if (spec
->dig_in_nid
) {
533 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] =
534 *(spec
->stream_digital_capture
);
535 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
=
543 static void via_free(struct hda_codec
*codec
)
545 struct via_spec
*spec
= codec
->spec
;
551 if (spec
->kctl_alloc
) {
552 for (i
= 0; i
< spec
->num_kctl_used
; i
++)
553 kfree(spec
->kctl_alloc
[i
].name
);
554 kfree(spec
->kctl_alloc
);
560 static int via_init(struct hda_codec
*codec
)
562 struct via_spec
*spec
= codec
->spec
;
563 snd_hda_sequence_write(codec
, spec
->init_verbs
);
564 /* Lydia Add for EAPD enable */
565 if (!spec
->dig_in_nid
) { /* No Digital In connection */
566 if (IS_VT1708_VENDORID(codec
->vendor_id
)) {
567 snd_hda_codec_write(codec
, VT1708_DIGIN_PIN
, 0,
568 AC_VERB_SET_PIN_WIDGET_CONTROL
,
570 snd_hda_codec_write(codec
, VT1708_DIGIN_PIN
, 0,
571 AC_VERB_SET_EAPD_BTLENABLE
, 0x02);
572 } else if (IS_VT1709_10CH_VENDORID(codec
->vendor_id
) ||
573 IS_VT1709_6CH_VENDORID(codec
->vendor_id
)) {
574 snd_hda_codec_write(codec
, VT1709_DIGIN_PIN
, 0,
575 AC_VERB_SET_PIN_WIDGET_CONTROL
,
577 snd_hda_codec_write(codec
, VT1709_DIGIN_PIN
, 0,
578 AC_VERB_SET_EAPD_BTLENABLE
, 0x02);
579 } else if (IS_VT1708B_8CH_VENDORID(codec
->vendor_id
) ||
580 IS_VT1708B_4CH_VENDORID(codec
->vendor_id
)) {
581 snd_hda_codec_write(codec
, VT1708B_DIGIN_PIN
, 0,
582 AC_VERB_SET_PIN_WIDGET_CONTROL
,
584 snd_hda_codec_write(codec
, VT1708B_DIGIN_PIN
, 0,
585 AC_VERB_SET_EAPD_BTLENABLE
, 0x02);
587 } else /* enable SPDIF-input pin */
588 snd_hda_codec_write(codec
, spec
->autocfg
.dig_in_pin
, 0,
589 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
);
594 #ifdef CONFIG_SND_HDA_POWER_SAVE
595 static int via_check_power_status(struct hda_codec
*codec
, hda_nid_t nid
)
597 struct via_spec
*spec
= codec
->spec
;
598 return snd_hda_check_amp_list_power(codec
, &spec
->loopback
, nid
);
604 static struct hda_codec_ops via_patch_ops
= {
605 .build_controls
= via_build_controls
,
606 .build_pcms
= via_build_pcms
,
609 #ifdef CONFIG_SND_HDA_POWER_SAVE
610 .check_power_status
= via_check_power_status
,
614 /* fill in the dac_nids table from the parsed pin configuration */
615 static int vt1708_auto_fill_dac_nids(struct via_spec
*spec
,
616 const struct auto_pin_cfg
*cfg
)
621 spec
->multiout
.num_dacs
= cfg
->line_outs
;
623 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
625 for(i
= 0; i
< 4; i
++) {
626 nid
= cfg
->line_out_pins
[i
];
628 /* config dac list */
631 spec
->multiout
.dac_nids
[i
] = 0x10;
633 case AUTO_SEQ_CENLFE
:
634 spec
->multiout
.dac_nids
[i
] = 0x12;
636 case AUTO_SEQ_SURROUND
:
637 spec
->multiout
.dac_nids
[i
] = 0x13;
640 spec
->multiout
.dac_nids
[i
] = 0x11;
649 /* add playback controls from the parsed DAC table */
650 static int vt1708_auto_create_multi_out_ctls(struct via_spec
*spec
,
651 const struct auto_pin_cfg
*cfg
)
654 static const char *chname
[4] = { "Front", "Surround", "C/LFE", "Side" };
655 hda_nid_t nid
, nid_vol
= 0;
658 for (i
= 0; i
<= AUTO_SEQ_SIDE
; i
++) {
659 nid
= cfg
->line_out_pins
[i
];
664 if (i
!= AUTO_SEQ_FRONT
)
665 nid_vol
= 0x1b - i
+ 1;
667 if (i
== AUTO_SEQ_CENLFE
) {
669 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
670 "Center Playback Volume",
671 HDA_COMPOSE_AMP_VAL(nid_vol
, 1, 0,
675 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
676 "LFE Playback Volume",
677 HDA_COMPOSE_AMP_VAL(nid_vol
, 2, 0,
681 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
682 "Center Playback Switch",
683 HDA_COMPOSE_AMP_VAL(nid_vol
, 1, 0,
687 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
688 "LFE Playback Switch",
689 HDA_COMPOSE_AMP_VAL(nid_vol
, 2, 0,
693 } else if (i
== AUTO_SEQ_FRONT
){
694 /* add control to mixer index 0 */
695 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
696 "Master Front Playback Volume",
697 HDA_COMPOSE_AMP_VAL(0x17, 3, 0,
701 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
702 "Master Front Playback Switch",
703 HDA_COMPOSE_AMP_VAL(0x17, 3, 0,
708 /* add control to PW3 */
709 sprintf(name
, "%s Playback Volume", chname
[i
]);
710 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
, name
,
711 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
715 sprintf(name
, "%s Playback Switch", chname
[i
]);
716 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
, name
,
717 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
722 sprintf(name
, "%s Playback Volume", chname
[i
]);
723 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
, name
,
724 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
728 sprintf(name
, "%s Playback Switch", chname
[i
]);
729 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
, name
,
730 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
740 static int vt1708_auto_create_hp_ctls(struct via_spec
*spec
, hda_nid_t pin
)
747 spec
->multiout
.hp_nid
= VT1708_HP_NID
; /* AOW3 */
749 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
750 "Headphone Playback Volume",
751 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
754 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
755 "Headphone Playback Switch",
756 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
763 /* create playback/capture controls for input pins */
764 static int vt1708_auto_create_analog_input_ctls(struct via_spec
*spec
,
765 const struct auto_pin_cfg
*cfg
)
767 static char *labels
[] = {
768 "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux", NULL
770 struct hda_input_mux
*imux
= &spec
->private_imux
;
773 /* for internal loopback recording select */
774 imux
->items
[imux
->num_items
].label
= "Stereo Mixer";
775 imux
->items
[imux
->num_items
].index
= idx
;
778 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
779 if (!cfg
->input_pins
[i
])
782 switch (cfg
->input_pins
[i
]) {
787 case 0x1e: /* Line In */
791 case 0x21: /* Front Mic */
799 err
= via_new_analog_input(spec
, cfg
->input_pins
[i
], labels
[i
],
803 imux
->items
[imux
->num_items
].label
= labels
[i
];
804 imux
->items
[imux
->num_items
].index
= idx
;
810 #ifdef CONFIG_SND_HDA_POWER_SAVE
811 static struct hda_amp_list vt1708_loopbacks
[] = {
812 { 0x17, HDA_INPUT
, 1 },
813 { 0x17, HDA_INPUT
, 2 },
814 { 0x17, HDA_INPUT
, 3 },
815 { 0x17, HDA_INPUT
, 4 },
820 static int vt1708_parse_auto_config(struct hda_codec
*codec
)
822 struct via_spec
*spec
= codec
->spec
;
825 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
, NULL
);
828 err
= vt1708_auto_fill_dac_nids(spec
, &spec
->autocfg
);
831 if (!spec
->autocfg
.line_outs
&& !spec
->autocfg
.hp_pins
[0])
832 return 0; /* can't find valid BIOS pin config */
834 err
= vt1708_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
837 err
= vt1708_auto_create_hp_ctls(spec
, spec
->autocfg
.hp_pins
[0]);
840 err
= vt1708_auto_create_analog_input_ctls(spec
, &spec
->autocfg
);
844 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
846 if (spec
->autocfg
.dig_out_pin
)
847 spec
->multiout
.dig_out_nid
= VT1708_DIGOUT_NID
;
848 if (spec
->autocfg
.dig_in_pin
)
849 spec
->dig_in_nid
= VT1708_DIGIN_NID
;
851 if (spec
->kctl_alloc
)
852 spec
->mixers
[spec
->num_mixers
++] = spec
->kctl_alloc
;
854 spec
->init_verbs
= vt1708_volume_init_verbs
;
856 spec
->input_mux
= &spec
->private_imux
;
861 /* init callback for auto-configuration model -- overriding the default init */
862 static int via_auto_init(struct hda_codec
*codec
)
865 via_auto_init_multi_out(codec
);
866 via_auto_init_hp_out(codec
);
867 via_auto_init_analog_input(codec
);
871 static int patch_vt1708(struct hda_codec
*codec
)
873 struct via_spec
*spec
;
876 /* create a codec specific record */
877 spec
= kcalloc(1, sizeof(*spec
), GFP_KERNEL
);
883 /* automatic parse from the BIOS config */
884 err
= vt1708_parse_auto_config(codec
);
889 printk(KERN_INFO
"hda_codec: Cannot set up configuration "
890 "from BIOS. Using genenic mode...\n");
894 spec
->stream_name_analog
= "VT1708 Analog";
895 spec
->stream_analog_playback
= &vt1708_pcm_analog_playback
;
896 spec
->stream_analog_capture
= &vt1708_pcm_analog_capture
;
898 spec
->stream_name_digital
= "VT1708 Digital";
899 spec
->stream_digital_playback
= &vt1708_pcm_digital_playback
;
900 spec
->stream_digital_capture
= &vt1708_pcm_digital_capture
;
903 if (!spec
->adc_nids
&& spec
->input_mux
) {
904 spec
->adc_nids
= vt1708_adc_nids
;
905 spec
->num_adc_nids
= ARRAY_SIZE(vt1708_adc_nids
);
906 spec
->mixers
[spec
->num_mixers
] = vt1708_capture_mixer
;
910 codec
->patch_ops
= via_patch_ops
;
912 codec
->patch_ops
.init
= via_auto_init
;
913 #ifdef CONFIG_SND_HDA_POWER_SAVE
914 spec
->loopback
.amplist
= vt1708_loopbacks
;
920 /* capture mixer elements */
921 static struct snd_kcontrol_new vt1709_capture_mixer
[] = {
922 HDA_CODEC_VOLUME("Capture Volume", 0x14, 0x0, HDA_INPUT
),
923 HDA_CODEC_MUTE("Capture Switch", 0x14, 0x0, HDA_INPUT
),
924 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x15, 0x0, HDA_INPUT
),
925 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x15, 0x0, HDA_INPUT
),
926 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x16, 0x0, HDA_INPUT
),
927 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x16, 0x0, HDA_INPUT
),
929 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
930 /* The multiple "Capture Source" controls confuse alsamixer
931 * So call somewhat different..
933 /* .name = "Capture Source", */
934 .name
= "Input Source",
936 .info
= via_mux_enum_info
,
937 .get
= via_mux_enum_get
,
938 .put
= via_mux_enum_put
,
944 * generic initialization of ADC, input mixers and output mixers
946 static struct hda_verb vt1709_10ch_volume_init_verbs
[] = {
948 * Unmute ADC0-2 and set the default input to mic-in
950 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
951 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
952 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
955 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
958 /* Amp Indices: AOW0=0, CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
959 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
960 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
961 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
962 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
963 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(4)},
966 * Set up output selector (0x1a, 0x1b, 0x29)
968 /* set vol=0 to output mixers */
969 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
970 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
971 {0x29, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
976 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
977 {0x20, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
979 /* Set input of PW4 as AOW4 */
980 {0x20, AC_VERB_SET_CONNECT_SEL
, 0x1},
981 /* PW9 Output enable */
982 {0x24, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
986 static struct hda_pcm_stream vt1709_10ch_pcm_analog_playback
= {
990 .nid
= 0x10, /* NID to query formats and rates */
992 .open
= via_playback_pcm_open
,
993 .prepare
= via_playback_pcm_prepare
,
994 .cleanup
= via_playback_pcm_cleanup
998 static struct hda_pcm_stream vt1709_6ch_pcm_analog_playback
= {
1002 .nid
= 0x10, /* NID to query formats and rates */
1004 .open
= via_playback_pcm_open
,
1005 .prepare
= via_playback_pcm_prepare
,
1006 .cleanup
= via_playback_pcm_cleanup
1010 static struct hda_pcm_stream vt1709_pcm_analog_capture
= {
1014 .nid
= 0x14, /* NID to query formats and rates */
1016 .prepare
= via_capture_pcm_prepare
,
1017 .cleanup
= via_capture_pcm_cleanup
1021 static struct hda_pcm_stream vt1709_pcm_digital_playback
= {
1025 /* NID is set in via_build_pcms */
1027 .open
= via_dig_playback_pcm_open
,
1028 .close
= via_dig_playback_pcm_close
1032 static struct hda_pcm_stream vt1709_pcm_digital_capture
= {
1038 static int vt1709_auto_fill_dac_nids(struct via_spec
*spec
,
1039 const struct auto_pin_cfg
*cfg
)
1044 if (cfg
->line_outs
== 4) /* 10 channels */
1045 spec
->multiout
.num_dacs
= cfg
->line_outs
+1; /* AOW0~AOW4 */
1046 else if (cfg
->line_outs
== 3) /* 6 channels */
1047 spec
->multiout
.num_dacs
= cfg
->line_outs
; /* AOW0~AOW2 */
1049 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
1051 if (cfg
->line_outs
== 4) { /* 10 channels */
1052 for (i
= 0; i
< cfg
->line_outs
; i
++) {
1053 nid
= cfg
->line_out_pins
[i
];
1055 /* config dac list */
1057 case AUTO_SEQ_FRONT
:
1059 spec
->multiout
.dac_nids
[i
] = 0x10;
1061 case AUTO_SEQ_CENLFE
:
1063 spec
->multiout
.dac_nids
[i
] = 0x12;
1065 case AUTO_SEQ_SURROUND
:
1067 spec
->multiout
.dac_nids
[i
] = 0x27;
1071 spec
->multiout
.dac_nids
[i
] = 0x11;
1078 spec
->multiout
.dac_nids
[cfg
->line_outs
] = 0x28; /* AOW4 */
1080 } else if (cfg
->line_outs
== 3) { /* 6 channels */
1081 for(i
= 0; i
< cfg
->line_outs
; i
++) {
1082 nid
= cfg
->line_out_pins
[i
];
1084 /* config dac list */
1086 case AUTO_SEQ_FRONT
:
1088 spec
->multiout
.dac_nids
[i
] = 0x10;
1090 case AUTO_SEQ_CENLFE
:
1092 spec
->multiout
.dac_nids
[i
] = 0x12;
1094 case AUTO_SEQ_SURROUND
:
1096 spec
->multiout
.dac_nids
[i
] = 0x11;
1108 /* add playback controls from the parsed DAC table */
1109 static int vt1709_auto_create_multi_out_ctls(struct via_spec
*spec
,
1110 const struct auto_pin_cfg
*cfg
)
1113 static const char *chname
[4] = { "Front", "Surround", "C/LFE", "Side" };
1117 for (i
= 0; i
<= AUTO_SEQ_SIDE
; i
++) {
1118 nid
= cfg
->line_out_pins
[i
];
1123 if (i
== AUTO_SEQ_CENLFE
) {
1125 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
1126 "Center Playback Volume",
1127 HDA_COMPOSE_AMP_VAL(0x1b, 1, 0,
1131 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
1132 "LFE Playback Volume",
1133 HDA_COMPOSE_AMP_VAL(0x1b, 2, 0,
1137 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
1138 "Center Playback Switch",
1139 HDA_COMPOSE_AMP_VAL(0x1b, 1, 0,
1143 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
1144 "LFE Playback Switch",
1145 HDA_COMPOSE_AMP_VAL(0x1b, 2, 0,
1149 } else if (i
== AUTO_SEQ_FRONT
){
1150 /* add control to mixer index 0 */
1151 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
1152 "Master Front Playback Volume",
1153 HDA_COMPOSE_AMP_VAL(0x18, 3, 0,
1157 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
1158 "Master Front Playback Switch",
1159 HDA_COMPOSE_AMP_VAL(0x18, 3, 0,
1164 /* add control to PW3 */
1165 sprintf(name
, "%s Playback Volume", chname
[i
]);
1166 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
, name
,
1167 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
1171 sprintf(name
, "%s Playback Switch", chname
[i
]);
1172 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
, name
,
1173 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
1177 } else if (i
== AUTO_SEQ_SURROUND
) {
1178 sprintf(name
, "%s Playback Volume", chname
[i
]);
1179 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
, name
,
1180 HDA_COMPOSE_AMP_VAL(0x29, 3, 0,
1184 sprintf(name
, "%s Playback Switch", chname
[i
]);
1185 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
, name
,
1186 HDA_COMPOSE_AMP_VAL(0x29, 3, 0,
1190 } else if (i
== AUTO_SEQ_SIDE
) {
1191 sprintf(name
, "%s Playback Volume", chname
[i
]);
1192 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
, name
,
1193 HDA_COMPOSE_AMP_VAL(0x1a, 3, 0,
1197 sprintf(name
, "%s Playback Switch", chname
[i
]);
1198 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
, name
,
1199 HDA_COMPOSE_AMP_VAL(0x1a, 3, 0,
1209 static int vt1709_auto_create_hp_ctls(struct via_spec
*spec
, hda_nid_t pin
)
1216 if (spec
->multiout
.num_dacs
== 5) /* 10 channels */
1217 spec
->multiout
.hp_nid
= VT1709_HP_DAC_NID
;
1218 else if (spec
->multiout
.num_dacs
== 3) /* 6 channels */
1219 spec
->multiout
.hp_nid
= 0;
1221 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
1222 "Headphone Playback Volume",
1223 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
1226 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
1227 "Headphone Playback Switch",
1228 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
1235 /* create playback/capture controls for input pins */
1236 static int vt1709_auto_create_analog_input_ctls(struct via_spec
*spec
,
1237 const struct auto_pin_cfg
*cfg
)
1239 static char *labels
[] = {
1240 "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux", NULL
1242 struct hda_input_mux
*imux
= &spec
->private_imux
;
1243 int i
, err
, idx
= 0;
1245 /* for internal loopback recording select */
1246 imux
->items
[imux
->num_items
].label
= "Stereo Mixer";
1247 imux
->items
[imux
->num_items
].index
= idx
;
1250 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
1251 if (!cfg
->input_pins
[i
])
1254 switch (cfg
->input_pins
[i
]) {
1255 case 0x1d: /* Mic */
1259 case 0x1e: /* Line In */
1263 case 0x21: /* Front Mic */
1271 err
= via_new_analog_input(spec
, cfg
->input_pins
[i
], labels
[i
],
1275 imux
->items
[imux
->num_items
].label
= labels
[i
];
1276 imux
->items
[imux
->num_items
].index
= idx
;
1282 static int vt1709_parse_auto_config(struct hda_codec
*codec
)
1284 struct via_spec
*spec
= codec
->spec
;
1287 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
, NULL
);
1290 err
= vt1709_auto_fill_dac_nids(spec
, &spec
->autocfg
);
1293 if (!spec
->autocfg
.line_outs
&& !spec
->autocfg
.hp_pins
[0])
1294 return 0; /* can't find valid BIOS pin config */
1296 err
= vt1709_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
1299 err
= vt1709_auto_create_hp_ctls(spec
, spec
->autocfg
.hp_pins
[0]);
1302 err
= vt1709_auto_create_analog_input_ctls(spec
, &spec
->autocfg
);
1306 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
1308 if (spec
->autocfg
.dig_out_pin
)
1309 spec
->multiout
.dig_out_nid
= VT1709_DIGOUT_NID
;
1310 if (spec
->autocfg
.dig_in_pin
)
1311 spec
->dig_in_nid
= VT1709_DIGIN_NID
;
1313 if (spec
->kctl_alloc
)
1314 spec
->mixers
[spec
->num_mixers
++] = spec
->kctl_alloc
;
1316 spec
->input_mux
= &spec
->private_imux
;
1321 #ifdef CONFIG_SND_HDA_POWER_SAVE
1322 static struct hda_amp_list vt1709_loopbacks
[] = {
1323 { 0x18, HDA_INPUT
, 1 },
1324 { 0x18, HDA_INPUT
, 2 },
1325 { 0x18, HDA_INPUT
, 3 },
1326 { 0x18, HDA_INPUT
, 4 },
1331 static int patch_vt1709_10ch(struct hda_codec
*codec
)
1333 struct via_spec
*spec
;
1336 /* create a codec specific record */
1337 spec
= kcalloc(1, sizeof(*spec
), GFP_KERNEL
);
1343 err
= vt1709_parse_auto_config(codec
);
1348 printk(KERN_INFO
"hda_codec: Cannot set up configuration. "
1349 "Using genenic mode...\n");
1352 spec
->init_verbs
= vt1709_10ch_volume_init_verbs
;
1354 spec
->stream_name_analog
= "VT1709 Analog";
1355 spec
->stream_analog_playback
= &vt1709_10ch_pcm_analog_playback
;
1356 spec
->stream_analog_capture
= &vt1709_pcm_analog_capture
;
1358 spec
->stream_name_digital
= "VT1709 Digital";
1359 spec
->stream_digital_playback
= &vt1709_pcm_digital_playback
;
1360 spec
->stream_digital_capture
= &vt1709_pcm_digital_capture
;
1363 if (!spec
->adc_nids
&& spec
->input_mux
) {
1364 spec
->adc_nids
= vt1709_adc_nids
;
1365 spec
->num_adc_nids
= ARRAY_SIZE(vt1709_adc_nids
);
1366 spec
->mixers
[spec
->num_mixers
] = vt1709_capture_mixer
;
1370 codec
->patch_ops
= via_patch_ops
;
1372 codec
->patch_ops
.init
= via_auto_init
;
1373 #ifdef CONFIG_SND_HDA_POWER_SAVE
1374 spec
->loopback
.amplist
= vt1709_loopbacks
;
1380 * generic initialization of ADC, input mixers and output mixers
1382 static struct hda_verb vt1709_6ch_volume_init_verbs
[] = {
1384 * Unmute ADC0-2 and set the default input to mic-in
1386 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
1387 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
1388 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
1391 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
1394 /* Amp Indices: AOW0=0, CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
1395 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
1396 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
1397 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
1398 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
1399 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(4)},
1402 * Set up output selector (0x1a, 0x1b, 0x29)
1404 /* set vol=0 to output mixers */
1405 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
1406 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
1407 {0x29, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
1410 * Unmute PW3 and PW4
1412 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
1413 {0x20, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
1415 /* Set input of PW4 as MW0 */
1416 {0x20, AC_VERB_SET_CONNECT_SEL
, 0},
1417 /* PW9 Output enable */
1418 {0x24, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
1422 static int patch_vt1709_6ch(struct hda_codec
*codec
)
1424 struct via_spec
*spec
;
1427 /* create a codec specific record */
1428 spec
= kcalloc(1, sizeof(*spec
), GFP_KERNEL
);
1434 err
= vt1709_parse_auto_config(codec
);
1439 printk(KERN_INFO
"hda_codec: Cannot set up configuration. "
1440 "Using genenic mode...\n");
1443 spec
->init_verbs
= vt1709_6ch_volume_init_verbs
;
1445 spec
->stream_name_analog
= "VT1709 Analog";
1446 spec
->stream_analog_playback
= &vt1709_6ch_pcm_analog_playback
;
1447 spec
->stream_analog_capture
= &vt1709_pcm_analog_capture
;
1449 spec
->stream_name_digital
= "VT1709 Digital";
1450 spec
->stream_digital_playback
= &vt1709_pcm_digital_playback
;
1451 spec
->stream_digital_capture
= &vt1709_pcm_digital_capture
;
1454 if (!spec
->adc_nids
&& spec
->input_mux
) {
1455 spec
->adc_nids
= vt1709_adc_nids
;
1456 spec
->num_adc_nids
= ARRAY_SIZE(vt1709_adc_nids
);
1457 spec
->mixers
[spec
->num_mixers
] = vt1709_capture_mixer
;
1461 codec
->patch_ops
= via_patch_ops
;
1463 codec
->patch_ops
.init
= via_auto_init
;
1464 #ifdef CONFIG_SND_HDA_POWER_SAVE
1465 spec
->loopback
.amplist
= vt1709_loopbacks
;
1470 /* capture mixer elements */
1471 static struct snd_kcontrol_new vt1708B_capture_mixer
[] = {
1472 HDA_CODEC_VOLUME("Capture Volume", 0x13, 0x0, HDA_INPUT
),
1473 HDA_CODEC_MUTE("Capture Switch", 0x13, 0x0, HDA_INPUT
),
1474 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x14, 0x0, HDA_INPUT
),
1475 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x14, 0x0, HDA_INPUT
),
1477 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1478 /* The multiple "Capture Source" controls confuse alsamixer
1479 * So call somewhat different..
1481 /* .name = "Capture Source", */
1482 .name
= "Input Source",
1484 .info
= via_mux_enum_info
,
1485 .get
= via_mux_enum_get
,
1486 .put
= via_mux_enum_put
,
1491 * generic initialization of ADC, input mixers and output mixers
1493 static struct hda_verb vt1708B_8ch_volume_init_verbs
[] = {
1495 * Unmute ADC0-1 and set the default input to mic-in
1497 {0x13, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
1498 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
1501 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
1504 /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
1505 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
1506 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
1507 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
1508 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
1509 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(4)},
1512 * Set up output mixers
1514 /* set vol=0 to output mixers */
1515 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
1516 {0x26, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
1517 {0x27, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
1519 /* Setup default input to PW4 */
1520 {0x1d, AC_VERB_SET_CONNECT_SEL
, 0x1},
1521 /* PW9 Output enable */
1522 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
1523 /* PW10 Input enable */
1524 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
1528 static struct hda_verb vt1708B_4ch_volume_init_verbs
[] = {
1530 * Unmute ADC0-1 and set the default input to mic-in
1532 {0x13, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
1533 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
1536 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
1539 /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
1540 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
1541 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
1542 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
1543 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
1544 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(4)},
1547 * Set up output mixers
1549 /* set vol=0 to output mixers */
1550 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
1551 {0x26, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
1552 {0x27, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
1554 /* Setup default input of PW4 to MW0 */
1555 {0x1d, AC_VERB_SET_CONNECT_SEL
, 0x0},
1556 /* PW9 Output enable */
1557 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
1558 /* PW10 Input enable */
1559 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
1563 static struct hda_pcm_stream vt1708B_8ch_pcm_analog_playback
= {
1567 .nid
= 0x10, /* NID to query formats and rates */
1569 .open
= via_playback_pcm_open
,
1570 .prepare
= via_playback_pcm_prepare
,
1571 .cleanup
= via_playback_pcm_cleanup
1575 static struct hda_pcm_stream vt1708B_4ch_pcm_analog_playback
= {
1579 .nid
= 0x10, /* NID to query formats and rates */
1581 .open
= via_playback_pcm_open
,
1582 .prepare
= via_playback_pcm_prepare
,
1583 .cleanup
= via_playback_pcm_cleanup
1587 static struct hda_pcm_stream vt1708B_pcm_analog_capture
= {
1591 .nid
= 0x13, /* NID to query formats and rates */
1593 .prepare
= via_capture_pcm_prepare
,
1594 .cleanup
= via_capture_pcm_cleanup
1598 static struct hda_pcm_stream vt1708B_pcm_digital_playback
= {
1602 /* NID is set in via_build_pcms */
1604 .open
= via_dig_playback_pcm_open
,
1605 .close
= via_dig_playback_pcm_close
,
1606 .prepare
= via_dig_playback_pcm_prepare
1610 static struct hda_pcm_stream vt1708B_pcm_digital_capture
= {
1616 /* fill in the dac_nids table from the parsed pin configuration */
1617 static int vt1708B_auto_fill_dac_nids(struct via_spec
*spec
,
1618 const struct auto_pin_cfg
*cfg
)
1623 spec
->multiout
.num_dacs
= cfg
->line_outs
;
1625 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
1627 for (i
= 0; i
< 4; i
++) {
1628 nid
= cfg
->line_out_pins
[i
];
1630 /* config dac list */
1632 case AUTO_SEQ_FRONT
:
1633 spec
->multiout
.dac_nids
[i
] = 0x10;
1635 case AUTO_SEQ_CENLFE
:
1636 spec
->multiout
.dac_nids
[i
] = 0x24;
1638 case AUTO_SEQ_SURROUND
:
1639 spec
->multiout
.dac_nids
[i
] = 0x25;
1642 spec
->multiout
.dac_nids
[i
] = 0x11;
1651 /* add playback controls from the parsed DAC table */
1652 static int vt1708B_auto_create_multi_out_ctls(struct via_spec
*spec
,
1653 const struct auto_pin_cfg
*cfg
)
1656 static const char *chname
[4] = { "Front", "Surround", "C/LFE", "Side" };
1657 hda_nid_t nid_vols
[] = {0x16, 0x27, 0x26, 0x18};
1658 hda_nid_t nid
, nid_vol
= 0;
1661 for (i
= 0; i
<= AUTO_SEQ_SIDE
; i
++) {
1662 nid
= cfg
->line_out_pins
[i
];
1667 nid_vol
= nid_vols
[i
];
1669 if (i
== AUTO_SEQ_CENLFE
) {
1671 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
1672 "Center Playback Volume",
1673 HDA_COMPOSE_AMP_VAL(nid_vol
, 1, 0,
1677 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
1678 "LFE Playback Volume",
1679 HDA_COMPOSE_AMP_VAL(nid_vol
, 2, 0,
1683 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
1684 "Center Playback Switch",
1685 HDA_COMPOSE_AMP_VAL(nid_vol
, 1, 0,
1689 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
1690 "LFE Playback Switch",
1691 HDA_COMPOSE_AMP_VAL(nid_vol
, 2, 0,
1695 } else if (i
== AUTO_SEQ_FRONT
) {
1696 /* add control to mixer index 0 */
1697 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
1698 "Master Front Playback Volume",
1699 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
1703 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
1704 "Master Front Playback Switch",
1705 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
1710 /* add control to PW3 */
1711 sprintf(name
, "%s Playback Volume", chname
[i
]);
1712 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
, name
,
1713 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
1717 sprintf(name
, "%s Playback Switch", chname
[i
]);
1718 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
, name
,
1719 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
1724 sprintf(name
, "%s Playback Volume", chname
[i
]);
1725 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
, name
,
1726 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
1730 sprintf(name
, "%s Playback Switch", chname
[i
]);
1731 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
, name
,
1732 HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0,
1742 static int vt1708B_auto_create_hp_ctls(struct via_spec
*spec
, hda_nid_t pin
)
1749 spec
->multiout
.hp_nid
= VT1708B_HP_NID
; /* AOW3 */
1751 err
= via_add_control(spec
, VIA_CTL_WIDGET_VOL
,
1752 "Headphone Playback Volume",
1753 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
1756 err
= via_add_control(spec
, VIA_CTL_WIDGET_MUTE
,
1757 "Headphone Playback Switch",
1758 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
1765 /* create playback/capture controls for input pins */
1766 static int vt1708B_auto_create_analog_input_ctls(struct via_spec
*spec
,
1767 const struct auto_pin_cfg
*cfg
)
1769 static char *labels
[] = {
1770 "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux", NULL
1772 struct hda_input_mux
*imux
= &spec
->private_imux
;
1773 int i
, err
, idx
= 0;
1775 /* for internal loopback recording select */
1776 imux
->items
[imux
->num_items
].label
= "Stereo Mixer";
1777 imux
->items
[imux
->num_items
].index
= idx
;
1780 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
1781 if (!cfg
->input_pins
[i
])
1784 switch (cfg
->input_pins
[i
]) {
1785 case 0x1a: /* Mic */
1789 case 0x1b: /* Line In */
1793 case 0x1e: /* Front Mic */
1801 err
= via_new_analog_input(spec
, cfg
->input_pins
[i
], labels
[i
],
1805 imux
->items
[imux
->num_items
].label
= labels
[i
];
1806 imux
->items
[imux
->num_items
].index
= idx
;
1812 static int vt1708B_parse_auto_config(struct hda_codec
*codec
)
1814 struct via_spec
*spec
= codec
->spec
;
1817 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
, NULL
);
1820 err
= vt1708B_auto_fill_dac_nids(spec
, &spec
->autocfg
);
1823 if (!spec
->autocfg
.line_outs
&& !spec
->autocfg
.hp_pins
[0])
1824 return 0; /* can't find valid BIOS pin config */
1826 err
= vt1708B_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
1829 err
= vt1708B_auto_create_hp_ctls(spec
, spec
->autocfg
.hp_pins
[0]);
1832 err
= vt1708B_auto_create_analog_input_ctls(spec
, &spec
->autocfg
);
1836 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
1838 if (spec
->autocfg
.dig_out_pin
)
1839 spec
->multiout
.dig_out_nid
= VT1708B_DIGOUT_NID
;
1840 if (spec
->autocfg
.dig_in_pin
)
1841 spec
->dig_in_nid
= VT1708B_DIGIN_NID
;
1843 if (spec
->kctl_alloc
)
1844 spec
->mixers
[spec
->num_mixers
++] = spec
->kctl_alloc
;
1846 spec
->input_mux
= &spec
->private_imux
;
1851 #ifdef CONFIG_SND_HDA_POWER_SAVE
1852 static struct hda_amp_list vt1708B_loopbacks
[] = {
1853 { 0x16, HDA_INPUT
, 1 },
1854 { 0x16, HDA_INPUT
, 2 },
1855 { 0x16, HDA_INPUT
, 3 },
1856 { 0x16, HDA_INPUT
, 4 },
1861 static int patch_vt1708B_8ch(struct hda_codec
*codec
)
1863 struct via_spec
*spec
;
1866 /* create a codec specific record */
1867 spec
= kcalloc(1, sizeof(*spec
), GFP_KERNEL
);
1873 /* automatic parse from the BIOS config */
1874 err
= vt1708B_parse_auto_config(codec
);
1879 printk(KERN_INFO
"hda_codec: Cannot set up configuration "
1880 "from BIOS. Using genenic mode...\n");
1883 spec
->init_verbs
= vt1708B_8ch_volume_init_verbs
;
1885 spec
->stream_name_analog
= "VT1708B Analog";
1886 spec
->stream_analog_playback
= &vt1708B_8ch_pcm_analog_playback
;
1887 spec
->stream_analog_capture
= &vt1708B_pcm_analog_capture
;
1889 spec
->stream_name_digital
= "VT1708B Digital";
1890 spec
->stream_digital_playback
= &vt1708B_pcm_digital_playback
;
1891 spec
->stream_digital_capture
= &vt1708B_pcm_digital_capture
;
1893 if (!spec
->adc_nids
&& spec
->input_mux
) {
1894 spec
->adc_nids
= vt1708B_adc_nids
;
1895 spec
->num_adc_nids
= ARRAY_SIZE(vt1708B_adc_nids
);
1896 spec
->mixers
[spec
->num_mixers
] = vt1708B_capture_mixer
;
1900 codec
->patch_ops
= via_patch_ops
;
1902 codec
->patch_ops
.init
= via_auto_init
;
1903 #ifdef CONFIG_SND_HDA_POWER_SAVE
1904 spec
->loopback
.amplist
= vt1708B_loopbacks
;
1910 static int patch_vt1708B_4ch(struct hda_codec
*codec
)
1912 struct via_spec
*spec
;
1915 /* create a codec specific record */
1916 spec
= kcalloc(1, sizeof(*spec
), GFP_KERNEL
);
1922 /* automatic parse from the BIOS config */
1923 err
= vt1708B_parse_auto_config(codec
);
1928 printk(KERN_INFO
"hda_codec: Cannot set up configuration "
1929 "from BIOS. Using genenic mode...\n");
1932 spec
->init_verbs
= vt1708B_4ch_volume_init_verbs
;
1934 spec
->stream_name_analog
= "VT1708B Analog";
1935 spec
->stream_analog_playback
= &vt1708B_4ch_pcm_analog_playback
;
1936 spec
->stream_analog_capture
= &vt1708B_pcm_analog_capture
;
1938 spec
->stream_name_digital
= "VT1708B Digital";
1939 spec
->stream_digital_playback
= &vt1708B_pcm_digital_playback
;
1940 spec
->stream_digital_capture
= &vt1708B_pcm_digital_capture
;
1942 if (!spec
->adc_nids
&& spec
->input_mux
) {
1943 spec
->adc_nids
= vt1708B_adc_nids
;
1944 spec
->num_adc_nids
= ARRAY_SIZE(vt1708B_adc_nids
);
1945 spec
->mixers
[spec
->num_mixers
] = vt1708B_capture_mixer
;
1949 codec
->patch_ops
= via_patch_ops
;
1951 codec
->patch_ops
.init
= via_auto_init
;
1952 #ifdef CONFIG_SND_HDA_POWER_SAVE
1953 spec
->loopback
.amplist
= vt1708B_loopbacks
;
1962 struct hda_codec_preset snd_hda_preset_via
[] = {
1963 { .id
= 0x11061708, .name
= "VIA VT1708", .patch
= patch_vt1708
},
1964 { .id
= 0x11061709, .name
= "VIA VT1708", .patch
= patch_vt1708
},
1965 { .id
= 0x1106170A, .name
= "VIA VT1708", .patch
= patch_vt1708
},
1966 { .id
= 0x1106170B, .name
= "VIA VT1708", .patch
= patch_vt1708
},
1967 { .id
= 0x1106E710, .name
= "VIA VT1709 10-Ch",
1968 .patch
= patch_vt1709_10ch
},
1969 { .id
= 0x1106E711, .name
= "VIA VT1709 10-Ch",
1970 .patch
= patch_vt1709_10ch
},
1971 { .id
= 0x1106E712, .name
= "VIA VT1709 10-Ch",
1972 .patch
= patch_vt1709_10ch
},
1973 { .id
= 0x1106E713, .name
= "VIA VT1709 10-Ch",
1974 .patch
= patch_vt1709_10ch
},
1975 { .id
= 0x1106E714, .name
= "VIA VT1709 6-Ch",
1976 .patch
= patch_vt1709_6ch
},
1977 { .id
= 0x1106E715, .name
= "VIA VT1709 6-Ch",
1978 .patch
= patch_vt1709_6ch
},
1979 { .id
= 0x1106E716, .name
= "VIA VT1709 6-Ch",
1980 .patch
= patch_vt1709_6ch
},
1981 { .id
= 0x1106E717, .name
= "VIA VT1709 6-Ch",
1982 .patch
= patch_vt1709_6ch
},
1983 { .id
= 0x1106E720, .name
= "VIA VT1708B 8-Ch",
1984 .patch
= patch_vt1708B_8ch
},
1985 { .id
= 0x1106E721, .name
= "VIA VT1708B 8-Ch",
1986 .patch
= patch_vt1708B_8ch
},
1987 { .id
= 0x1106E722, .name
= "VIA VT1708B 8-Ch",
1988 .patch
= patch_vt1708B_8ch
},
1989 { .id
= 0x1106E723, .name
= "VIA VT1708B 8-Ch",
1990 .patch
= patch_vt1708B_8ch
},
1991 { .id
= 0x1106E724, .name
= "VIA VT1708B 4-Ch",
1992 .patch
= patch_vt1708B_4ch
},
1993 { .id
= 0x1106E725, .name
= "VIA VT1708B 4-Ch",
1994 .patch
= patch_vt1708B_4ch
},
1995 { .id
= 0x1106E726, .name
= "VIA VT1708B 4-Ch",
1996 .patch
= patch_vt1708B_4ch
},
1997 { .id
= 0x1106E727, .name
= "VIA VT1708B 4-Ch",
1998 .patch
= patch_vt1708B_4ch
},