]> git.karo-electronics.de Git - mv-sheeva.git/blob - sound/pci/hda/patch_via.c
Merge branch 'perf-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[mv-sheeva.git] / sound / pci / hda / patch_via.c
1 /*
2  * Universal Interface for Intel High Definition Audio Codec
3  *
4  * HD audio interface patch for VIA VT17xx/VT18xx/VT20xx codec
5  *
6  *  (C) 2006-2009 VIA Technology, Inc.
7  *  (C) 2006-2008 Takashi Iwai <tiwai@suse.de>
8  *
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.
13  *
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.
18  *
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
22  */
23
24 /* * * * * * * * * * * * * * Release History * * * * * * * * * * * * * * * * */
25 /*                                                                           */
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                           */
45 /*                                                                           */
46 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
47
48
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"
56
57 #define NID_MAPPING             (-1)
58
59 /* amp values */
60 #define AMP_VAL_IDX_SHIFT       19
61 #define AMP_VAL_IDX_MASK        (0x0f<<19)
62
63 /* Pin Widget NID */
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
70
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
75
76 #define VT1708B_HP_NID          0x25
77 #define VT1708B_DIGOUT_NID      0x12
78 #define VT1708B_DIGIN_NID       0x15
79 #define VT1708B_DIGIN_PIN       0x21
80
81 #define VT1708S_HP_NID          0x25
82 #define VT1708S_DIGOUT_NID      0x12
83
84 #define VT1702_HP_NID           0x17
85 #define VT1702_DIGOUT_NID       0x11
86
87 enum VIA_HDA_CODEC {
88         UNKNOWN = -1,
89         VT1708,
90         VT1709_10CH,
91         VT1709_6CH,
92         VT1708B_8CH,
93         VT1708B_4CH,
94         VT1708S,
95         VT1708BCE,
96         VT1702,
97         VT1718S,
98         VT1716S,
99         VT2002P,
100         VT1812,
101         CODEC_TYPES,
102 };
103
104 struct via_spec {
105         /* codec parameterization */
106         struct snd_kcontrol_new *mixers[6];
107         unsigned int num_mixers;
108
109         struct hda_verb *init_verbs[5];
110         unsigned int num_iverbs;
111
112         char *stream_name_analog;
113         struct hda_pcm_stream *stream_analog_playback;
114         struct hda_pcm_stream *stream_analog_capture;
115
116         char *stream_name_digital;
117         struct hda_pcm_stream *stream_digital_playback;
118         struct hda_pcm_stream *stream_digital_capture;
119
120         /* playback */
121         struct hda_multi_out multiout;
122         hda_nid_t slave_dig_outs[2];
123
124         /* capture */
125         unsigned int num_adc_nids;
126         hda_nid_t *adc_nids;
127         hda_nid_t mux_nids[3];
128         hda_nid_t dig_in_nid;
129         hda_nid_t dig_in_pin;
130
131         /* capture source */
132         const struct hda_input_mux *input_mux;
133         unsigned int cur_mux[3];
134
135         /* PCM information */
136         struct hda_pcm pcm_rec[3];
137
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];
143
144         /* HP mode source */
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;
151
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;
159 #endif
160 };
161
162 static struct via_spec * via_new_spec(struct hda_codec *codec)
163 {
164         struct via_spec *spec;
165
166         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
167         if (spec == NULL)
168                 return NULL;
169
170         codec->spec = spec;
171         spec->codec = codec;
172         return spec;
173 }
174
175 static enum VIA_HDA_CODEC get_codec_type(struct hda_codec *codec)
176 {
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;
181
182         /* get codec type */
183         if (ven_id != 0x1106)
184                 codec_type = UNKNOWN;
185         else if (dev_id >= 0x1708 && dev_id <= 0x170b)
186                 codec_type = VT1708;
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)
202                 codec_type = VT1702;
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)
213                 codec_type = VT1812;
214         else if (dev_id == 0x0440)
215                 codec_type = VT1708S;
216         else
217                 codec_type = UNKNOWN;
218         return codec_type;
219 };
220
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
227
228 enum {
229         VIA_CTL_WIDGET_VOL,
230         VIA_CTL_WIDGET_MUTE,
231         VIA_CTL_WIDGET_ANALOG_MUTE,
232         VIA_CTL_WIDGET_BIND_PIN_MUTE,
233 };
234
235 enum {
236         AUTO_SEQ_FRONT = 0,
237         AUTO_SEQ_SURROUND,
238         AUTO_SEQ_CENLFE,
239         AUTO_SEQ_SIDE
240 };
241
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);
245
246 static void vt1708_start_hp_work(struct via_spec *spec)
247 {
248         if (spec->codec_type != VT1708 || spec->autocfg.hp_pins[0] == 0)
249                 return;
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));
255 }
256
257 static void vt1708_stop_hp_work(struct via_spec *spec)
258 {
259         if (spec->codec_type != VT1708 || spec->autocfg.hp_pins[0] == 0)
260                 return;
261         if (snd_hda_get_bool_hint(spec->codec, "analog_loopback_hp_detect") == 1
262             && !is_aa_path_mute(spec->codec))
263                 return;
264         snd_hda_codec_write(spec->codec, 0x1, 0, 0xf81,
265                             !spec->vt1708_jack_detectect);
266         cancel_delayed_work_sync(&spec->vt1708_hp_work);
267 }
268
269
270 static int analog_input_switch_put(struct snd_kcontrol *kcontrol,
271                                    struct snd_ctl_elem_value *ucontrol)
272 {
273         int change = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
274         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
275
276         set_jack_power_state(codec);
277         analog_low_current_mode(snd_kcontrol_chip(kcontrol), -1);
278         if (snd_hda_get_bool_hint(codec, "analog_loopback_hp_detect") == 1) {
279                 if (is_aa_path_mute(codec))
280                         vt1708_start_hp_work(codec->spec);
281                 else
282                         vt1708_stop_hp_work(codec->spec);
283         }
284         return change;
285 }
286
287 /* modify .put = snd_hda_mixer_amp_switch_put */
288 #define ANALOG_INPUT_MUTE                                               \
289         {               .iface = SNDRV_CTL_ELEM_IFACE_MIXER,            \
290                         .name = NULL,                                   \
291                         .index = 0,                                     \
292                         .info = snd_hda_mixer_amp_switch_info,          \
293                         .get = snd_hda_mixer_amp_switch_get,            \
294                         .put = analog_input_switch_put,                 \
295                         .private_value = HDA_COMPOSE_AMP_VAL(0, 3, 0, 0) }
296
297 static void via_hp_bind_automute(struct hda_codec *codec);
298
299 static int bind_pin_switch_put(struct snd_kcontrol *kcontrol,
300                                struct snd_ctl_elem_value *ucontrol)
301 {
302         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
303         struct via_spec *spec = codec->spec;
304         int i;
305         int change = 0;
306
307         long *valp = ucontrol->value.integer.value;
308         int lmute, rmute;
309         if (strstr(kcontrol->id.name, "Switch") == NULL) {
310                 snd_printd("Invalid control!\n");
311                 return change;
312         }
313         change = snd_hda_mixer_amp_switch_put(kcontrol,
314                                               ucontrol);
315         /* Get mute value */
316         lmute = *valp ? 0 : HDA_AMP_MUTE;
317         valp++;
318         rmute = *valp ? 0 : HDA_AMP_MUTE;
319
320         /* Set hp pins */
321         if (!spec->hp_independent_mode) {
322                 for (i = 0; i < spec->autocfg.hp_outs; i++) {
323                         snd_hda_codec_amp_update(
324                                 codec, spec->autocfg.hp_pins[i],
325                                 0, HDA_OUTPUT, 0, HDA_AMP_MUTE,
326                                 lmute);
327                         snd_hda_codec_amp_update(
328                                 codec, spec->autocfg.hp_pins[i],
329                                 1, HDA_OUTPUT, 0, HDA_AMP_MUTE,
330                                 rmute);
331                 }
332         }
333
334         if (!lmute && !rmute) {
335                 /* Line Outs */
336                 for (i = 0; i < spec->autocfg.line_outs; i++)
337                         snd_hda_codec_amp_stereo(
338                                 codec, spec->autocfg.line_out_pins[i],
339                                 HDA_OUTPUT, 0, HDA_AMP_MUTE, 0);
340                 /* Speakers */
341                 for (i = 0; i < spec->autocfg.speaker_outs; i++)
342                         snd_hda_codec_amp_stereo(
343                                 codec, spec->autocfg.speaker_pins[i],
344                                 HDA_OUTPUT, 0, HDA_AMP_MUTE, 0);
345                 /* unmute */
346                 via_hp_bind_automute(codec);
347
348         } else {
349                 if (lmute) {
350                         /* Mute all left channels */
351                         for (i = 1; i < spec->autocfg.line_outs; i++)
352                                 snd_hda_codec_amp_update(
353                                         codec,
354                                         spec->autocfg.line_out_pins[i],
355                                         0, HDA_OUTPUT, 0, HDA_AMP_MUTE,
356                                         lmute);
357                         for (i = 0; i < spec->autocfg.speaker_outs; i++)
358                                 snd_hda_codec_amp_update(
359                                         codec,
360                                         spec->autocfg.speaker_pins[i],
361                                         0, HDA_OUTPUT, 0, HDA_AMP_MUTE,
362                                         lmute);
363                 }
364                 if (rmute) {
365                         /* mute all right channels */
366                         for (i = 1; i < spec->autocfg.line_outs; i++)
367                                 snd_hda_codec_amp_update(
368                                         codec,
369                                         spec->autocfg.line_out_pins[i],
370                                         1, HDA_OUTPUT, 0, HDA_AMP_MUTE,
371                                         rmute);
372                         for (i = 0; i < spec->autocfg.speaker_outs; i++)
373                                 snd_hda_codec_amp_update(
374                                         codec,
375                                         spec->autocfg.speaker_pins[i],
376                                         1, HDA_OUTPUT, 0, HDA_AMP_MUTE,
377                                         rmute);
378                 }
379         }
380         return change;
381 }
382
383 #define BIND_PIN_MUTE                                                   \
384         {               .iface = SNDRV_CTL_ELEM_IFACE_MIXER,            \
385                         .name = NULL,                                   \
386                         .index = 0,                                     \
387                         .info = snd_hda_mixer_amp_switch_info,          \
388                         .get = snd_hda_mixer_amp_switch_get,            \
389                         .put = bind_pin_switch_put,                     \
390                         .private_value = HDA_COMPOSE_AMP_VAL(0, 3, 0, 0) }
391
392 static struct snd_kcontrol_new via_control_templates[] = {
393         HDA_CODEC_VOLUME(NULL, 0, 0, 0),
394         HDA_CODEC_MUTE(NULL, 0, 0, 0),
395         ANALOG_INPUT_MUTE,
396         BIND_PIN_MUTE,
397 };
398
399 static hda_nid_t vt1708_adc_nids[2] = {
400         /* ADC1-2 */
401         0x15, 0x27
402 };
403
404 static hda_nid_t vt1709_adc_nids[3] = {
405         /* ADC1-2 */
406         0x14, 0x15, 0x16
407 };
408
409 static hda_nid_t vt1708B_adc_nids[2] = {
410         /* ADC1-2 */
411         0x13, 0x14
412 };
413
414 static hda_nid_t vt1708S_adc_nids[2] = {
415         /* ADC1-2 */
416         0x13, 0x14
417 };
418
419 static hda_nid_t vt1702_adc_nids[3] = {
420         /* ADC1-2 */
421         0x12, 0x20, 0x1F
422 };
423
424 static hda_nid_t vt1718S_adc_nids[2] = {
425         /* ADC1-2 */
426         0x10, 0x11
427 };
428
429 static hda_nid_t vt1716S_adc_nids[2] = {
430         /* ADC1-2 */
431         0x13, 0x14
432 };
433
434 static hda_nid_t vt2002P_adc_nids[2] = {
435         /* ADC1-2 */
436         0x10, 0x11
437 };
438
439 static hda_nid_t vt1812_adc_nids[2] = {
440         /* ADC1-2 */
441         0x10, 0x11
442 };
443
444
445 /* add dynamic controls */
446 static int __via_add_control(struct via_spec *spec, int type, const char *name,
447                              int idx, unsigned long val)
448 {
449         struct snd_kcontrol_new *knew;
450
451         snd_array_init(&spec->kctls, sizeof(*knew), 32);
452         knew = snd_array_new(&spec->kctls);
453         if (!knew)
454                 return -ENOMEM;
455         *knew = via_control_templates[type];
456         knew->name = kstrdup(name, GFP_KERNEL);
457         if (!knew->name)
458                 return -ENOMEM;
459         if (get_amp_nid_(val))
460                 knew->subdevice = HDA_SUBDEV_AMP_FLAG;
461         knew->private_value = val;
462         return 0;
463 }
464
465 #define via_add_control(spec, type, name, val) \
466         __via_add_control(spec, type, name, 0, val)
467
468 static struct snd_kcontrol_new *via_clone_control(struct via_spec *spec,
469                                                 struct snd_kcontrol_new *tmpl)
470 {
471         struct snd_kcontrol_new *knew;
472
473         snd_array_init(&spec->kctls, sizeof(*knew), 32);
474         knew = snd_array_new(&spec->kctls);
475         if (!knew)
476                 return NULL;
477         *knew = *tmpl;
478         knew->name = kstrdup(tmpl->name, GFP_KERNEL);
479         if (!knew->name)
480                 return NULL;
481         return knew;
482 }
483
484 static void via_free_kctls(struct hda_codec *codec)
485 {
486         struct via_spec *spec = codec->spec;
487
488         if (spec->kctls.list) {
489                 struct snd_kcontrol_new *kctl = spec->kctls.list;
490                 int i;
491                 for (i = 0; i < spec->kctls.used; i++)
492                         kfree(kctl[i].name);
493         }
494         snd_array_free(&spec->kctls);
495 }
496
497 /* create input playback/capture controls for the given pin */
498 static int via_new_analog_input(struct via_spec *spec, const char *ctlname,
499                                 int type_idx, int idx, int mix_nid)
500 {
501         char name[32];
502         int err;
503
504         sprintf(name, "%s Playback Volume", ctlname);
505         err = __via_add_control(spec, VIA_CTL_WIDGET_VOL, name, type_idx,
506                               HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
507         if (err < 0)
508                 return err;
509         sprintf(name, "%s Playback Switch", ctlname);
510         err = __via_add_control(spec, VIA_CTL_WIDGET_ANALOG_MUTE, name, type_idx,
511                               HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
512         if (err < 0)
513                 return err;
514         return 0;
515 }
516
517 static void via_auto_set_output_and_unmute(struct hda_codec *codec,
518                                            hda_nid_t nid, int pin_type,
519                                            int dac_idx)
520 {
521         /* set as output */
522         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
523                             pin_type);
524         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
525                             AMP_OUT_UNMUTE);
526         if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
527                 snd_hda_codec_write(codec, nid, 0,
528                                     AC_VERB_SET_EAPD_BTLENABLE, 0x02);
529 }
530
531
532 static void via_auto_init_multi_out(struct hda_codec *codec)
533 {
534         struct via_spec *spec = codec->spec;
535         int i;
536
537         for (i = 0; i <= AUTO_SEQ_SIDE; i++) {
538                 hda_nid_t nid = spec->autocfg.line_out_pins[i];
539                 if (nid)
540                         via_auto_set_output_and_unmute(codec, nid, PIN_OUT, i);
541         }
542 }
543
544 static void via_auto_init_hp_out(struct hda_codec *codec)
545 {
546         struct via_spec *spec = codec->spec;
547         hda_nid_t pin;
548         int i;
549
550         for (i = 0; i < spec->autocfg.hp_outs; i++) {
551                 pin = spec->autocfg.hp_pins[i];
552                 if (pin) /* connect to front */
553                         via_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
554         }
555 }
556
557 static int is_smart51_pins(struct via_spec *spec, hda_nid_t pin);
558
559 static void via_auto_init_analog_input(struct hda_codec *codec)
560 {
561         struct via_spec *spec = codec->spec;
562         const struct auto_pin_cfg *cfg = &spec->autocfg;
563         unsigned int ctl;
564         int i;
565
566         for (i = 0; i < cfg->num_inputs; i++) {
567                 hda_nid_t nid = cfg->inputs[i].pin;
568                 if (spec->smart51_enabled && is_smart51_pins(spec, nid))
569                         ctl = PIN_OUT;
570                 else if (i == AUTO_PIN_MIC)
571                         ctl = PIN_VREF50;
572                 else
573                         ctl = PIN_IN;
574                 snd_hda_codec_write(codec, nid, 0,
575                                     AC_VERB_SET_PIN_WIDGET_CONTROL, ctl);
576         }
577 }
578
579 static void set_pin_power_state(struct hda_codec *codec, hda_nid_t nid,
580                                 unsigned int *affected_parm)
581 {
582         unsigned parm;
583         unsigned def_conf = snd_hda_codec_get_pincfg(codec, nid);
584         unsigned no_presence = (def_conf & AC_DEFCFG_MISC)
585                 >> AC_DEFCFG_MISC_SHIFT
586                 & AC_DEFCFG_MISC_NO_PRESENCE; /* do not support pin sense */
587         unsigned present = snd_hda_jack_detect(codec, nid);
588         struct via_spec *spec = codec->spec;
589         if ((spec->smart51_enabled && is_smart51_pins(spec, nid))
590             || ((no_presence || present)
591                 && get_defcfg_connect(def_conf) != AC_JACK_PORT_NONE)) {
592                 *affected_parm = AC_PWRST_D0; /* if it's connected */
593                 parm = AC_PWRST_D0;
594         } else
595                 parm = AC_PWRST_D3;
596
597         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE, parm);
598 }
599
600 static void set_jack_power_state(struct hda_codec *codec)
601 {
602         struct via_spec *spec = codec->spec;
603         int imux_is_smixer;
604         unsigned int parm;
605
606         if (spec->codec_type == VT1702) {
607                 imux_is_smixer = snd_hda_codec_read(
608                         codec, 0x13, 0, AC_VERB_GET_CONNECT_SEL, 0x00) == 3;
609                 /* inputs */
610                 /* PW 1/2/5 (14h/15h/18h) */
611                 parm = AC_PWRST_D3;
612                 set_pin_power_state(codec, 0x14, &parm);
613                 set_pin_power_state(codec, 0x15, &parm);
614                 set_pin_power_state(codec, 0x18, &parm);
615                 if (imux_is_smixer)
616                         parm = AC_PWRST_D0; /* SW0 = stereo mixer (idx 3) */
617                 /* SW0 (13h), AIW 0/1/2 (12h/1fh/20h) */
618                 snd_hda_codec_write(codec, 0x13, 0, AC_VERB_SET_POWER_STATE,
619                                     parm);
620                 snd_hda_codec_write(codec, 0x12, 0, AC_VERB_SET_POWER_STATE,
621                                     parm);
622                 snd_hda_codec_write(codec, 0x1f, 0, AC_VERB_SET_POWER_STATE,
623                                     parm);
624                 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_POWER_STATE,
625                                     parm);
626
627                 /* outputs */
628                 /* PW 3/4 (16h/17h) */
629                 parm = AC_PWRST_D3;
630                 set_pin_power_state(codec, 0x16, &parm);
631                 set_pin_power_state(codec, 0x17, &parm);
632                 /* MW0 (1ah), AOW 0/1 (10h/1dh) */
633                 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_POWER_STATE,
634                                     imux_is_smixer ? AC_PWRST_D0 : parm);
635                 snd_hda_codec_write(codec, 0x10, 0, AC_VERB_SET_POWER_STATE,
636                                     parm);
637                 snd_hda_codec_write(codec, 0x1d, 0, AC_VERB_SET_POWER_STATE,
638                                     parm);
639         } else if (spec->codec_type == VT1708B_8CH
640                    || spec->codec_type == VT1708B_4CH
641                    || spec->codec_type == VT1708S) {
642                 /* SW0 (17h) = stereo mixer */
643                 int is_8ch = spec->codec_type != VT1708B_4CH;
644                 imux_is_smixer = snd_hda_codec_read(
645                         codec, 0x17, 0, AC_VERB_GET_CONNECT_SEL, 0x00)
646                         == ((spec->codec_type == VT1708S)  ? 5 : 0);
647                 /* inputs */
648                 /* PW 1/2/5 (1ah/1bh/1eh) */
649                 parm = AC_PWRST_D3;
650                 set_pin_power_state(codec, 0x1a, &parm);
651                 set_pin_power_state(codec, 0x1b, &parm);
652                 set_pin_power_state(codec, 0x1e, &parm);
653                 if (imux_is_smixer)
654                         parm = AC_PWRST_D0;
655                 /* SW0 (17h), AIW 0/1 (13h/14h) */
656                 snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_POWER_STATE,
657                                     parm);
658                 snd_hda_codec_write(codec, 0x13, 0, AC_VERB_SET_POWER_STATE,
659                                     parm);
660                 snd_hda_codec_write(codec, 0x14, 0, AC_VERB_SET_POWER_STATE,
661                                     parm);
662
663                 /* outputs */
664                 /* PW0 (19h), SW1 (18h), AOW1 (11h) */
665                 parm = AC_PWRST_D3;
666                 set_pin_power_state(codec, 0x19, &parm);
667                 if (spec->smart51_enabled)
668                         parm = AC_PWRST_D0;
669                 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_POWER_STATE,
670                                     parm);
671                 snd_hda_codec_write(codec, 0x11, 0, AC_VERB_SET_POWER_STATE,
672                                     parm);
673
674                 /* PW6 (22h), SW2 (26h), AOW2 (24h) */
675                 if (is_8ch) {
676                         parm = AC_PWRST_D3;
677                         set_pin_power_state(codec, 0x22, &parm);
678                         if (spec->smart51_enabled)
679                                 parm = AC_PWRST_D0;
680                         snd_hda_codec_write(codec, 0x26, 0,
681                                             AC_VERB_SET_POWER_STATE, parm);
682                         snd_hda_codec_write(codec, 0x24, 0,
683                                             AC_VERB_SET_POWER_STATE, parm);
684                 }
685
686                 /* PW 3/4/7 (1ch/1dh/23h) */
687                 parm = AC_PWRST_D3;
688                 /* force to D0 for internal Speaker */
689                 set_pin_power_state(codec, 0x1c, &parm);
690                 set_pin_power_state(codec, 0x1d, &parm);
691                 if (is_8ch)
692                         set_pin_power_state(codec, 0x23, &parm);
693                 /* MW0 (16h), Sw3 (27h), AOW 0/3 (10h/25h) */
694                 snd_hda_codec_write(codec, 0x16, 0, AC_VERB_SET_POWER_STATE,
695                                     imux_is_smixer ? AC_PWRST_D0 : parm);
696                 snd_hda_codec_write(codec, 0x10, 0, AC_VERB_SET_POWER_STATE,
697                                     parm);
698                 if (is_8ch) {
699                         snd_hda_codec_write(codec, 0x25, 0,
700                                             AC_VERB_SET_POWER_STATE, parm);
701                         snd_hda_codec_write(codec, 0x27, 0,
702                                             AC_VERB_SET_POWER_STATE, parm);
703                 }
704         }  else if (spec->codec_type == VT1718S) {
705                 /* MUX6 (1eh) = stereo mixer */
706                 imux_is_smixer = snd_hda_codec_read(
707                         codec, 0x1e, 0, AC_VERB_GET_CONNECT_SEL, 0x00) == 5;
708                 /* inputs */
709                 /* PW 5/6/7 (29h/2ah/2bh) */
710                 parm = AC_PWRST_D3;
711                 set_pin_power_state(codec, 0x29, &parm);
712                 set_pin_power_state(codec, 0x2a, &parm);
713                 set_pin_power_state(codec, 0x2b, &parm);
714                 if (imux_is_smixer)
715                         parm = AC_PWRST_D0;
716                 /* MUX6/7 (1eh/1fh), AIW 0/1 (10h/11h) */
717                 snd_hda_codec_write(codec, 0x1e, 0, AC_VERB_SET_POWER_STATE,
718                                     parm);
719                 snd_hda_codec_write(codec, 0x1f, 0, AC_VERB_SET_POWER_STATE,
720                                     parm);
721                 snd_hda_codec_write(codec, 0x10, 0, AC_VERB_SET_POWER_STATE,
722                                     parm);
723                 snd_hda_codec_write(codec, 0x11, 0, AC_VERB_SET_POWER_STATE,
724                                     parm);
725
726                 /* outputs */
727                 /* PW3 (27h), MW2 (1ah), AOW3 (bh) */
728                 parm = AC_PWRST_D3;
729                 set_pin_power_state(codec, 0x27, &parm);
730                 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_POWER_STATE,
731                                     parm);
732                 snd_hda_codec_write(codec, 0xb, 0, AC_VERB_SET_POWER_STATE,
733                                     parm);
734
735                 /* PW2 (26h), AOW2 (ah) */
736                 parm = AC_PWRST_D3;
737                 set_pin_power_state(codec, 0x26, &parm);
738                 snd_hda_codec_write(codec, 0xa, 0, AC_VERB_SET_POWER_STATE,
739                                     parm);
740
741                 /* PW0/1 (24h/25h) */
742                 parm = AC_PWRST_D3;
743                 set_pin_power_state(codec, 0x24, &parm);
744                 set_pin_power_state(codec, 0x25, &parm);
745                 if (!spec->hp_independent_mode) /* check for redirected HP */
746                         set_pin_power_state(codec, 0x28, &parm);
747                 snd_hda_codec_write(codec, 0x8, 0, AC_VERB_SET_POWER_STATE,
748                                     parm);
749                 snd_hda_codec_write(codec, 0x9, 0, AC_VERB_SET_POWER_STATE,
750                                     parm);
751                 /* MW9 (21h), Mw2 (1ah), AOW0 (8h) */
752                 snd_hda_codec_write(codec, 0x21, 0, AC_VERB_SET_POWER_STATE,
753                                     imux_is_smixer ? AC_PWRST_D0 : parm);
754                 if (spec->hp_independent_mode) {
755                         /* PW4 (28h), MW3 (1bh), MUX1(34h), AOW4 (ch) */
756                         parm = AC_PWRST_D3;
757                         set_pin_power_state(codec, 0x28, &parm);
758                         snd_hda_codec_write(codec, 0x1b, 0,
759                                             AC_VERB_SET_POWER_STATE, parm);
760                         snd_hda_codec_write(codec, 0x34, 0,
761                                             AC_VERB_SET_POWER_STATE, parm);
762                         snd_hda_codec_write(codec, 0xc, 0,
763                                             AC_VERB_SET_POWER_STATE, parm);
764                 }
765         } else if (spec->codec_type == VT1716S) {
766                 unsigned int mono_out, present;
767                 /* SW0 (17h) = stereo mixer */
768                 imux_is_smixer = snd_hda_codec_read(
769                         codec, 0x17, 0, AC_VERB_GET_CONNECT_SEL, 0x00) ==  5;
770                 /* inputs */
771                 /* PW 1/2/5 (1ah/1bh/1eh) */
772                 parm = AC_PWRST_D3;
773                 set_pin_power_state(codec, 0x1a, &parm);
774                 set_pin_power_state(codec, 0x1b, &parm);
775                 set_pin_power_state(codec, 0x1e, &parm);
776                 if (imux_is_smixer)
777                         parm = AC_PWRST_D0;
778                 /* SW0 (17h), AIW0(13h) */
779                 snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_POWER_STATE,
780                                     parm);
781                 snd_hda_codec_write(codec, 0x13, 0, AC_VERB_SET_POWER_STATE,
782                                     parm);
783
784                 parm = AC_PWRST_D3;
785                 set_pin_power_state(codec, 0x1e, &parm);
786                 /* PW11 (22h) */
787                 if (spec->dmic_enabled)
788                         set_pin_power_state(codec, 0x22, &parm);
789                 else
790                         snd_hda_codec_write(
791                                 codec, 0x22, 0,
792                                 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
793
794                 /* SW2(26h), AIW1(14h) */
795                 snd_hda_codec_write(codec, 0x26, 0, AC_VERB_SET_POWER_STATE,
796                                     parm);
797                 snd_hda_codec_write(codec, 0x14, 0, AC_VERB_SET_POWER_STATE,
798                                     parm);
799
800                 /* outputs */
801                 /* PW0 (19h), SW1 (18h), AOW1 (11h) */
802                 parm = AC_PWRST_D3;
803                 set_pin_power_state(codec, 0x19, &parm);
804                 /* Smart 5.1 PW2(1bh) */
805                 if (spec->smart51_enabled)
806                         set_pin_power_state(codec, 0x1b, &parm);
807                 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_POWER_STATE,
808                                     parm);
809                 snd_hda_codec_write(codec, 0x11, 0, AC_VERB_SET_POWER_STATE,
810                                     parm);
811
812                 /* PW7 (23h), SW3 (27h), AOW3 (25h) */
813                 parm = AC_PWRST_D3;
814                 set_pin_power_state(codec, 0x23, &parm);
815                 /* Smart 5.1 PW1(1ah) */
816                 if (spec->smart51_enabled)
817                         set_pin_power_state(codec, 0x1a, &parm);
818                 snd_hda_codec_write(codec, 0x27, 0, AC_VERB_SET_POWER_STATE,
819                                     parm);
820
821                 /* Smart 5.1 PW5(1eh) */
822                 if (spec->smart51_enabled)
823                         set_pin_power_state(codec, 0x1e, &parm);
824                 snd_hda_codec_write(codec, 0x25, 0, AC_VERB_SET_POWER_STATE,
825                                     parm);
826
827                 /* Mono out */
828                 /* SW4(28h)->MW1(29h)-> PW12 (2ah)*/
829                 present = snd_hda_jack_detect(codec, 0x1c);
830                 if (present)
831                         mono_out = 0;
832                 else {
833                         present = snd_hda_jack_detect(codec, 0x1d);
834                         if (!spec->hp_independent_mode && present)
835                                 mono_out = 0;
836                         else
837                                 mono_out = 1;
838                 }
839                 parm = mono_out ? AC_PWRST_D0 : AC_PWRST_D3;
840                 snd_hda_codec_write(codec, 0x28, 0, AC_VERB_SET_POWER_STATE,
841                                     parm);
842                 snd_hda_codec_write(codec, 0x29, 0, AC_VERB_SET_POWER_STATE,
843                                     parm);
844                 snd_hda_codec_write(codec, 0x2a, 0, AC_VERB_SET_POWER_STATE,
845                                     parm);
846
847                 /* PW 3/4 (1ch/1dh) */
848                 parm = AC_PWRST_D3;
849                 set_pin_power_state(codec, 0x1c, &parm);
850                 set_pin_power_state(codec, 0x1d, &parm);
851                 /* HP Independent Mode, power on AOW3 */
852                 if (spec->hp_independent_mode)
853                         snd_hda_codec_write(codec, 0x25, 0,
854                                             AC_VERB_SET_POWER_STATE, parm);
855
856                 /* force to D0 for internal Speaker */
857                 /* MW0 (16h), AOW0 (10h) */
858                 snd_hda_codec_write(codec, 0x16, 0, AC_VERB_SET_POWER_STATE,
859                                     imux_is_smixer ? AC_PWRST_D0 : parm);
860                 snd_hda_codec_write(codec, 0x10, 0, AC_VERB_SET_POWER_STATE,
861                                     mono_out ? AC_PWRST_D0 : parm);
862         } else if (spec->codec_type == VT2002P) {
863                 unsigned int present;
864                 /* MUX9 (1eh) = stereo mixer */
865                 imux_is_smixer = snd_hda_codec_read(
866                         codec, 0x1e, 0, AC_VERB_GET_CONNECT_SEL, 0x00) == 3;
867                 /* inputs */
868                 /* PW 5/6/7 (29h/2ah/2bh) */
869                 parm = AC_PWRST_D3;
870                 set_pin_power_state(codec, 0x29, &parm);
871                 set_pin_power_state(codec, 0x2a, &parm);
872                 set_pin_power_state(codec, 0x2b, &parm);
873                 if (imux_is_smixer)
874                         parm = AC_PWRST_D0;
875                 /* MUX9/10 (1eh/1fh), AIW 0/1 (10h/11h) */
876                 snd_hda_codec_write(codec, 0x1e, 0,
877                                     AC_VERB_SET_POWER_STATE, parm);
878                 snd_hda_codec_write(codec, 0x1f, 0,
879                                     AC_VERB_SET_POWER_STATE, parm);
880                 snd_hda_codec_write(codec, 0x10, 0,
881                                     AC_VERB_SET_POWER_STATE, parm);
882                 snd_hda_codec_write(codec, 0x11, 0,
883                                     AC_VERB_SET_POWER_STATE, parm);
884
885                 /* outputs */
886                 /* AOW0 (8h)*/
887                 snd_hda_codec_write(codec, 0x8, 0,
888                                     AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
889
890                 /* PW4 (26h), MW4 (1ch), MUX4(37h) */
891                 parm = AC_PWRST_D3;
892                 set_pin_power_state(codec, 0x26, &parm);
893                 snd_hda_codec_write(codec, 0x1c, 0,
894                                     AC_VERB_SET_POWER_STATE, parm);
895                 snd_hda_codec_write(codec, 0x37,
896                                     0, AC_VERB_SET_POWER_STATE, parm);
897
898                 /* PW1 (25h), MW1 (19h), MUX1(35h), AOW1 (9h) */
899                 parm = AC_PWRST_D3;
900                 set_pin_power_state(codec, 0x25, &parm);
901                 snd_hda_codec_write(codec, 0x19, 0,
902                                     AC_VERB_SET_POWER_STATE, parm);
903                 snd_hda_codec_write(codec, 0x35, 0,
904                                     AC_VERB_SET_POWER_STATE, parm);
905                 if (spec->hp_independent_mode)  {
906                         snd_hda_codec_write(codec, 0x9, 0,
907                                             AC_VERB_SET_POWER_STATE, parm);
908                 }
909
910                 /* Class-D */
911                 /* PW0 (24h), MW0(18h), MUX0(34h) */
912                 present = snd_hda_jack_detect(codec, 0x25);
913                 parm = AC_PWRST_D3;
914                 set_pin_power_state(codec, 0x24, &parm);
915                 if (present) {
916                         snd_hda_codec_write(
917                                 codec, 0x18, 0,
918                                 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
919                         snd_hda_codec_write(
920                                 codec, 0x34, 0,
921                                 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
922                 } else {
923                         snd_hda_codec_write(
924                                 codec, 0x18, 0,
925                                 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
926                         snd_hda_codec_write(
927                                 codec, 0x34, 0,
928                                 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
929                 }
930
931                 /* Mono Out */
932                 /* PW15 (31h), MW8(17h), MUX8(3bh) */
933                 present = snd_hda_jack_detect(codec, 0x26);
934                 parm = AC_PWRST_D3;
935                 set_pin_power_state(codec, 0x31, &parm);
936                 if (present) {
937                         snd_hda_codec_write(
938                                 codec, 0x17, 0,
939                                 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
940                         snd_hda_codec_write(
941                                 codec, 0x3b, 0,
942                                 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
943                 } else {
944                         snd_hda_codec_write(
945                                 codec, 0x17, 0,
946                                 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
947                         snd_hda_codec_write(
948                                 codec, 0x3b, 0,
949                                 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
950                 }
951
952                 /* MW9 (21h) */
953                 if (imux_is_smixer || !is_aa_path_mute(codec))
954                         snd_hda_codec_write(
955                                 codec, 0x21, 0,
956                                 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
957                 else
958                         snd_hda_codec_write(
959                                 codec, 0x21, 0,
960                                 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
961         } else if (spec->codec_type == VT1812) {
962                 unsigned int present;
963                 /* MUX10 (1eh) = stereo mixer */
964                 imux_is_smixer = snd_hda_codec_read(
965                         codec, 0x1e, 0, AC_VERB_GET_CONNECT_SEL, 0x00) == 5;
966                 /* inputs */
967                 /* PW 5/6/7 (29h/2ah/2bh) */
968                 parm = AC_PWRST_D3;
969                 set_pin_power_state(codec, 0x29, &parm);
970                 set_pin_power_state(codec, 0x2a, &parm);
971                 set_pin_power_state(codec, 0x2b, &parm);
972                 if (imux_is_smixer)
973                         parm = AC_PWRST_D0;
974                 /* MUX10/11 (1eh/1fh), AIW 0/1 (10h/11h) */
975                 snd_hda_codec_write(codec, 0x1e, 0,
976                                     AC_VERB_SET_POWER_STATE, parm);
977                 snd_hda_codec_write(codec, 0x1f, 0,
978                                     AC_VERB_SET_POWER_STATE, parm);
979                 snd_hda_codec_write(codec, 0x10, 0,
980                                     AC_VERB_SET_POWER_STATE, parm);
981                 snd_hda_codec_write(codec, 0x11, 0,
982                                     AC_VERB_SET_POWER_STATE, parm);
983
984                 /* outputs */
985                 /* AOW0 (8h)*/
986                 snd_hda_codec_write(codec, 0x8, 0,
987                                     AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
988
989                 /* PW4 (28h), MW4 (18h), MUX4(38h) */
990                 parm = AC_PWRST_D3;
991                 set_pin_power_state(codec, 0x28, &parm);
992                 snd_hda_codec_write(codec, 0x18, 0,
993                                     AC_VERB_SET_POWER_STATE, parm);
994                 snd_hda_codec_write(codec, 0x38, 0,
995                                     AC_VERB_SET_POWER_STATE, parm);
996
997                 /* PW1 (25h), MW1 (15h), MUX1(35h), AOW1 (9h) */
998                 parm = AC_PWRST_D3;
999                 set_pin_power_state(codec, 0x25, &parm);
1000                 snd_hda_codec_write(codec, 0x15, 0,
1001                                     AC_VERB_SET_POWER_STATE, parm);
1002                 snd_hda_codec_write(codec, 0x35, 0,
1003                                     AC_VERB_SET_POWER_STATE, parm);
1004                 if (spec->hp_independent_mode)  {
1005                         snd_hda_codec_write(codec, 0x9, 0,
1006                                             AC_VERB_SET_POWER_STATE, parm);
1007                 }
1008
1009                 /* Internal Speaker */
1010                 /* PW0 (24h), MW0(14h), MUX0(34h) */
1011                 present = snd_hda_jack_detect(codec, 0x25);
1012                 parm = AC_PWRST_D3;
1013                 set_pin_power_state(codec, 0x24, &parm);
1014                 if (present) {
1015                         snd_hda_codec_write(codec, 0x14, 0,
1016                                             AC_VERB_SET_POWER_STATE,
1017                                             AC_PWRST_D3);
1018                         snd_hda_codec_write(codec, 0x34, 0,
1019                                             AC_VERB_SET_POWER_STATE,
1020                                             AC_PWRST_D3);
1021                 } else {
1022                         snd_hda_codec_write(codec, 0x14, 0,
1023                                             AC_VERB_SET_POWER_STATE,
1024                                             AC_PWRST_D0);
1025                         snd_hda_codec_write(codec, 0x34, 0,
1026                                             AC_VERB_SET_POWER_STATE,
1027                                             AC_PWRST_D0);
1028                 }
1029                 /* Mono Out */
1030                 /* PW13 (31h), MW13(1ch), MUX13(3ch), MW14(3eh) */
1031                 present = snd_hda_jack_detect(codec, 0x28);
1032                 parm = AC_PWRST_D3;
1033                 set_pin_power_state(codec, 0x31, &parm);
1034                 if (present) {
1035                         snd_hda_codec_write(codec, 0x1c, 0,
1036                                             AC_VERB_SET_POWER_STATE,
1037                                             AC_PWRST_D3);
1038                         snd_hda_codec_write(codec, 0x3c, 0,
1039                                             AC_VERB_SET_POWER_STATE,
1040                                             AC_PWRST_D3);
1041                         snd_hda_codec_write(codec, 0x3e, 0,
1042                                             AC_VERB_SET_POWER_STATE,
1043                                             AC_PWRST_D3);
1044                 } else {
1045                         snd_hda_codec_write(codec, 0x1c, 0,
1046                                             AC_VERB_SET_POWER_STATE,
1047                                             AC_PWRST_D0);
1048                         snd_hda_codec_write(codec, 0x3c, 0,
1049                                             AC_VERB_SET_POWER_STATE,
1050                                             AC_PWRST_D0);
1051                         snd_hda_codec_write(codec, 0x3e, 0,
1052                                             AC_VERB_SET_POWER_STATE,
1053                                             AC_PWRST_D0);
1054                 }
1055
1056                 /* PW15 (33h), MW15 (1dh), MUX15(3dh) */
1057                 parm = AC_PWRST_D3;
1058                 set_pin_power_state(codec, 0x33, &parm);
1059                 snd_hda_codec_write(codec, 0x1d, 0,
1060                                     AC_VERB_SET_POWER_STATE, parm);
1061                 snd_hda_codec_write(codec, 0x3d, 0,
1062                                     AC_VERB_SET_POWER_STATE, parm);
1063
1064                 /* MW9 (21h) */
1065                 if (imux_is_smixer || !is_aa_path_mute(codec))
1066                         snd_hda_codec_write(
1067                                 codec, 0x21, 0,
1068                                 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
1069                 else
1070                         snd_hda_codec_write(
1071                                 codec, 0x21, 0,
1072                                 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
1073         }
1074 }
1075
1076 /*
1077  * input MUX handling
1078  */
1079 static int via_mux_enum_info(struct snd_kcontrol *kcontrol,
1080                              struct snd_ctl_elem_info *uinfo)
1081 {
1082         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1083         struct via_spec *spec = codec->spec;
1084         return snd_hda_input_mux_info(spec->input_mux, uinfo);
1085 }
1086
1087 static int via_mux_enum_get(struct snd_kcontrol *kcontrol,
1088                             struct snd_ctl_elem_value *ucontrol)
1089 {
1090         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1091         struct via_spec *spec = codec->spec;
1092         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
1093
1094         ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
1095         return 0;
1096 }
1097
1098 static int via_mux_enum_put(struct snd_kcontrol *kcontrol,
1099                             struct snd_ctl_elem_value *ucontrol)
1100 {
1101         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1102         struct via_spec *spec = codec->spec;
1103         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
1104
1105         if (!spec->mux_nids[adc_idx])
1106                 return -EINVAL;
1107         /* switch to D0 beofre change index */
1108         if (snd_hda_codec_read(codec, spec->mux_nids[adc_idx], 0,
1109                                AC_VERB_GET_POWER_STATE, 0x00) != AC_PWRST_D0)
1110                 snd_hda_codec_write(codec, spec->mux_nids[adc_idx], 0,
1111                                     AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
1112         /* update jack power state */
1113         set_jack_power_state(codec);
1114
1115         return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
1116                                      spec->mux_nids[adc_idx],
1117                                      &spec->cur_mux[adc_idx]);
1118 }
1119
1120 static int via_independent_hp_info(struct snd_kcontrol *kcontrol,
1121                                    struct snd_ctl_elem_info *uinfo)
1122 {
1123         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1124         struct via_spec *spec = codec->spec;
1125         return snd_hda_input_mux_info(spec->hp_mux, uinfo);
1126 }
1127
1128 static int via_independent_hp_get(struct snd_kcontrol *kcontrol,
1129                                   struct snd_ctl_elem_value *ucontrol)
1130 {
1131         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1132         hda_nid_t nid = kcontrol->private_value;
1133         unsigned int pinsel;
1134
1135         /* use !! to translate conn sel 2 for VT1718S */
1136         pinsel = !!snd_hda_codec_read(codec, nid, 0,
1137                                       AC_VERB_GET_CONNECT_SEL,
1138                                       0x00);
1139         ucontrol->value.enumerated.item[0] = pinsel;
1140
1141         return 0;
1142 }
1143
1144 static void activate_ctl(struct hda_codec *codec, const char *name, int active)
1145 {
1146         struct snd_kcontrol *ctl = snd_hda_find_mixer_ctl(codec, name);
1147         if (ctl) {
1148                 ctl->vd[0].access &= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE;
1149                 ctl->vd[0].access |= active
1150                         ? 0 : SNDRV_CTL_ELEM_ACCESS_INACTIVE;
1151                 snd_ctl_notify(codec->bus->card,
1152                                SNDRV_CTL_EVENT_MASK_VALUE, &ctl->id);
1153         }
1154 }
1155
1156 static hda_nid_t side_mute_channel(struct via_spec *spec)
1157 {
1158         switch (spec->codec_type) {
1159         case VT1708:            return 0x1b;
1160         case VT1709_10CH:       return 0x29;
1161         case VT1708B_8CH:       /* fall thru */
1162         case VT1708S:           return 0x27;
1163         default:                return 0;
1164         }
1165 }
1166
1167 static int update_side_mute_status(struct hda_codec *codec)
1168 {
1169         /* mute side channel */
1170         struct via_spec *spec = codec->spec;
1171         unsigned int parm = spec->hp_independent_mode
1172                 ? AMP_OUT_MUTE : AMP_OUT_UNMUTE;
1173         hda_nid_t sw3 = side_mute_channel(spec);
1174
1175         if (sw3)
1176                 snd_hda_codec_write(codec, sw3, 0, AC_VERB_SET_AMP_GAIN_MUTE,
1177                                     parm);
1178         return 0;
1179 }
1180
1181 static int via_independent_hp_put(struct snd_kcontrol *kcontrol,
1182                                   struct snd_ctl_elem_value *ucontrol)
1183 {
1184         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1185         struct via_spec *spec = codec->spec;
1186         hda_nid_t nid = kcontrol->private_value;
1187         unsigned int pinsel = ucontrol->value.enumerated.item[0];
1188         /* Get Independent Mode index of headphone pin widget */
1189         spec->hp_independent_mode = spec->hp_independent_mode_index == pinsel
1190                 ? 1 : 0;
1191         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, pinsel);
1192
1193         if (spec->multiout.hp_nid && spec->multiout.hp_nid
1194             != spec->multiout.dac_nids[HDA_FRONT])
1195                 snd_hda_codec_setup_stream(codec, spec->multiout.hp_nid,
1196                                            0, 0, 0);
1197
1198         update_side_mute_status(codec);
1199         /* update HP volume/swtich active state */
1200         if (spec->codec_type == VT1708S
1201             || spec->codec_type == VT1702
1202             || spec->codec_type == VT1718S
1203             || spec->codec_type == VT1716S
1204             || spec->codec_type == VT2002P
1205             || spec->codec_type == VT1812) {
1206                 activate_ctl(codec, "Headphone Playback Volume",
1207                              spec->hp_independent_mode);
1208                 activate_ctl(codec, "Headphone Playback Switch",
1209                              spec->hp_independent_mode);
1210         }
1211         return 0;
1212 }
1213
1214 static struct snd_kcontrol_new via_hp_mixer[2] = {
1215         {
1216                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1217                 .name = "Independent HP",
1218                 .info = via_independent_hp_info,
1219                 .get = via_independent_hp_get,
1220                 .put = via_independent_hp_put,
1221         },
1222         {
1223                 .iface = NID_MAPPING,
1224                 .name = "Independent HP",
1225         },
1226 };
1227
1228 static int via_hp_build(struct hda_codec *codec)
1229 {
1230         struct via_spec *spec = codec->spec;
1231         struct snd_kcontrol_new *knew;
1232         hda_nid_t nid;
1233         int nums;
1234         hda_nid_t conn[HDA_MAX_CONNECTIONS];
1235
1236         switch (spec->codec_type) {
1237         case VT1718S:
1238                 nid = 0x34;
1239                 break;
1240         case VT2002P:
1241                 nid = 0x35;
1242                 break;
1243         case VT1812:
1244                 nid = 0x3d;
1245                 break;
1246         default:
1247                 nid = spec->autocfg.hp_pins[0];
1248                 break;
1249         }
1250
1251         nums = snd_hda_get_connections(codec, nid, conn, HDA_MAX_CONNECTIONS);
1252         if (nums <= 1)
1253                 return 0;
1254
1255         knew = via_clone_control(spec, &via_hp_mixer[0]);
1256         if (knew == NULL)
1257                 return -ENOMEM;
1258
1259         knew->subdevice = HDA_SUBDEV_NID_FLAG | nid;
1260         knew->private_value = nid;
1261
1262         knew = via_clone_control(spec, &via_hp_mixer[1]);
1263         if (knew == NULL)
1264                 return -ENOMEM;
1265         knew->subdevice = side_mute_channel(spec);
1266
1267         return 0;
1268 }
1269
1270 static void notify_aa_path_ctls(struct hda_codec *codec)
1271 {
1272         int i;
1273         struct snd_ctl_elem_id id;
1274         const char *labels[] = {"Mic", "Front Mic", "Line"};
1275
1276         memset(&id, 0, sizeof(id));
1277         id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1278         for (i = 0; i < ARRAY_SIZE(labels); i++) {
1279                 sprintf(id.name, "%s Playback Volume", labels[i]);
1280                 snd_ctl_notify(codec->bus->card, SNDRV_CTL_EVENT_MASK_VALUE,
1281                                &id);
1282         }
1283 }
1284
1285 static void mute_aa_path(struct hda_codec *codec, int mute)
1286 {
1287         struct via_spec *spec = codec->spec;
1288         hda_nid_t  nid_mixer;
1289         int start_idx;
1290         int end_idx;
1291         int i;
1292         /* get nid of MW0 and start & end index */
1293         switch (spec->codec_type) {
1294         case VT1708:
1295                 nid_mixer = 0x17;
1296                 start_idx = 2;
1297                 end_idx = 4;
1298                 break;
1299         case VT1709_10CH:
1300         case VT1709_6CH:
1301                 nid_mixer = 0x18;
1302                 start_idx = 2;
1303                 end_idx = 4;
1304                 break;
1305         case VT1708B_8CH:
1306         case VT1708B_4CH:
1307         case VT1708S:
1308         case VT1716S:
1309                 nid_mixer = 0x16;
1310                 start_idx = 2;
1311                 end_idx = 4;
1312                 break;
1313         default:
1314                 return;
1315         }
1316         /* check AA path's mute status */
1317         for (i = start_idx; i <= end_idx; i++) {
1318                 int val = mute ? HDA_AMP_MUTE : HDA_AMP_UNMUTE;
1319                 snd_hda_codec_amp_stereo(codec, nid_mixer, HDA_INPUT, i,
1320                                          HDA_AMP_MUTE, val);
1321         }
1322 }
1323 static int is_smart51_pins(struct via_spec *spec, hda_nid_t pin)
1324 {
1325         const struct auto_pin_cfg *cfg = &spec->autocfg;
1326         int i;
1327
1328         for (i = 0; i < cfg->num_inputs; i++) {
1329                 if (pin == cfg->inputs[i].pin)
1330                         return cfg->inputs[i].type <= AUTO_PIN_LINE_IN;
1331         }
1332         return 0;
1333 }
1334
1335 static int via_smart51_info(struct snd_kcontrol *kcontrol,
1336                             struct snd_ctl_elem_info *uinfo)
1337 {
1338         uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1339         uinfo->count = 1;
1340         uinfo->value.integer.min = 0;
1341         uinfo->value.integer.max = 1;
1342         return 0;
1343 }
1344
1345 static int via_smart51_get(struct snd_kcontrol *kcontrol,
1346                            struct snd_ctl_elem_value *ucontrol)
1347 {
1348         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1349         struct via_spec *spec = codec->spec;
1350         const struct auto_pin_cfg *cfg = &spec->autocfg;
1351         int on = 1;
1352         int i;
1353
1354         for (i = 0; i < cfg->num_inputs; i++) {
1355                 hda_nid_t nid = cfg->inputs[i].pin;
1356                 int ctl = snd_hda_codec_read(codec, nid, 0,
1357                                              AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1358                 if (cfg->inputs[i].type > AUTO_PIN_LINE_IN)
1359                         continue;
1360                 if (cfg->inputs[i].type == AUTO_PIN_MIC &&
1361                     spec->hp_independent_mode && spec->codec_type != VT1718S)
1362                         continue; /* ignore FMic for independent HP */
1363                 if ((ctl & AC_PINCTL_IN_EN) && !(ctl & AC_PINCTL_OUT_EN))
1364                         on = 0;
1365         }
1366         *ucontrol->value.integer.value = on;
1367         return 0;
1368 }
1369
1370 static int via_smart51_put(struct snd_kcontrol *kcontrol,
1371                            struct snd_ctl_elem_value *ucontrol)
1372 {
1373         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1374         struct via_spec *spec = codec->spec;
1375         const struct auto_pin_cfg *cfg = &spec->autocfg;
1376         int out_in = *ucontrol->value.integer.value
1377                 ? AC_PINCTL_OUT_EN : AC_PINCTL_IN_EN;
1378         int i;
1379
1380         for (i = 0; i < cfg->num_inputs; i++) {
1381                 hda_nid_t nid = cfg->inputs[i].pin;
1382                 unsigned int parm;
1383
1384                 if (cfg->inputs[i].type > AUTO_PIN_LINE_IN)
1385                         continue;
1386                 if (cfg->inputs[i].type == AUTO_PIN_MIC &&
1387                     spec->hp_independent_mode && spec->codec_type != VT1718S)
1388                         continue; /* don't retask FMic for independent HP */
1389
1390                 parm = snd_hda_codec_read(codec, nid, 0,
1391                                           AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1392                 parm &= ~(AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN);
1393                 parm |= out_in;
1394                 snd_hda_codec_write(codec, nid, 0,
1395                                     AC_VERB_SET_PIN_WIDGET_CONTROL,
1396                                     parm);
1397                 if (out_in == AC_PINCTL_OUT_EN) {
1398                         mute_aa_path(codec, 1);
1399                         notify_aa_path_ctls(codec);
1400                 }
1401                 if (spec->codec_type == VT1718S) {
1402                         snd_hda_codec_amp_stereo(
1403                                         codec, nid, HDA_OUTPUT, 0, HDA_AMP_MUTE,
1404                                         HDA_AMP_UNMUTE);
1405                 }
1406                 if (cfg->inputs[i].type == AUTO_PIN_MIC) {
1407                         if (spec->codec_type == VT1708S
1408                             || spec->codec_type == VT1716S) {
1409                                 /* input = index 1 (AOW3) */
1410                                 snd_hda_codec_write(
1411                                         codec, nid, 0,
1412                                         AC_VERB_SET_CONNECT_SEL, 1);
1413                                 snd_hda_codec_amp_stereo(
1414                                         codec, nid, HDA_OUTPUT,
1415                                         0, HDA_AMP_MUTE, HDA_AMP_UNMUTE);
1416                         }
1417                 }
1418         }
1419         spec->smart51_enabled = *ucontrol->value.integer.value;
1420         set_jack_power_state(codec);
1421         return 1;
1422 }
1423
1424 static struct snd_kcontrol_new via_smart51_mixer[2] = {
1425         {
1426          .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1427          .name = "Smart 5.1",
1428          .count = 1,
1429          .info = via_smart51_info,
1430          .get = via_smart51_get,
1431          .put = via_smart51_put,
1432          },
1433         {
1434          .iface = NID_MAPPING,
1435          .name = "Smart 5.1",
1436         }
1437 };
1438
1439 static int via_smart51_build(struct via_spec *spec)
1440 {
1441         struct snd_kcontrol_new *knew;
1442         const struct auto_pin_cfg *cfg = &spec->autocfg;
1443         hda_nid_t nid;
1444         int i;
1445
1446         knew = via_clone_control(spec, &via_smart51_mixer[0]);
1447         if (knew == NULL)
1448                 return -ENOMEM;
1449
1450         for (i = 0; i < cfg->num_inputs; i++) {
1451                 nid = cfg->inputs[i].pin;
1452                 if (cfg->inputs[i].type <= AUTO_PIN_LINE_IN) {
1453                         knew = via_clone_control(spec, &via_smart51_mixer[1]);
1454                         if (knew == NULL)
1455                                 return -ENOMEM;
1456                         knew->subdevice = nid;
1457                         break;
1458                 }
1459         }
1460
1461         return 0;
1462 }
1463
1464 /* capture mixer elements */
1465 static struct snd_kcontrol_new vt1708_capture_mixer[] = {
1466         HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_INPUT),
1467         HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_INPUT),
1468         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x27, 0x0, HDA_INPUT),
1469         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x27, 0x0, HDA_INPUT),
1470         {
1471                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1472                 /* The multiple "Capture Source" controls confuse alsamixer
1473                  * So call somewhat different..
1474                  */
1475                 /* .name = "Capture Source", */
1476                 .name = "Input Source",
1477                 .count = 1,
1478                 .info = via_mux_enum_info,
1479                 .get = via_mux_enum_get,
1480                 .put = via_mux_enum_put,
1481         },
1482         { } /* end */
1483 };
1484
1485 /* check AA path's mute statue */
1486 static int is_aa_path_mute(struct hda_codec *codec)
1487 {
1488         int mute = 1;
1489         hda_nid_t  nid_mixer;
1490         int start_idx;
1491         int end_idx;
1492         int i;
1493         struct via_spec *spec = codec->spec;
1494         /* get nid of MW0 and start & end index */
1495         switch (spec->codec_type) {
1496         case VT1708B_8CH:
1497         case VT1708B_4CH:
1498         case VT1708S:
1499         case VT1716S:
1500                 nid_mixer = 0x16;
1501                 start_idx = 2;
1502                 end_idx = 4;
1503                 break;
1504         case VT1702:
1505                 nid_mixer = 0x1a;
1506                 start_idx = 1;
1507                 end_idx = 3;
1508                 break;
1509         case VT1718S:
1510                 nid_mixer = 0x21;
1511                 start_idx = 1;
1512                 end_idx = 3;
1513                 break;
1514         case VT2002P:
1515         case VT1812:
1516                 nid_mixer = 0x21;
1517                 start_idx = 0;
1518                 end_idx = 2;
1519                 break;
1520         default:
1521                 return 0;
1522         }
1523         /* check AA path's mute status */
1524         for (i = start_idx; i <= end_idx; i++) {
1525                 unsigned int con_list = snd_hda_codec_read(
1526                         codec, nid_mixer, 0, AC_VERB_GET_CONNECT_LIST, i/4*4);
1527                 int shift = 8 * (i % 4);
1528                 hda_nid_t nid_pin = (con_list & (0xff << shift)) >> shift;
1529                 unsigned int defconf = snd_hda_codec_get_pincfg(codec, nid_pin);
1530                 if (get_defcfg_connect(defconf) == AC_JACK_PORT_COMPLEX) {
1531                         /* check mute status while the pin is connected */
1532                         int mute_l = snd_hda_codec_amp_read(codec, nid_mixer, 0,
1533                                                             HDA_INPUT, i) >> 7;
1534                         int mute_r = snd_hda_codec_amp_read(codec, nid_mixer, 1,
1535                                                             HDA_INPUT, i) >> 7;
1536                         if (!mute_l || !mute_r) {
1537                                 mute = 0;
1538                                 break;
1539                         }
1540                 }
1541         }
1542         return mute;
1543 }
1544
1545 /* enter/exit analog low-current mode */
1546 static void analog_low_current_mode(struct hda_codec *codec, int stream_idle)
1547 {
1548         struct via_spec *spec = codec->spec;
1549         static int saved_stream_idle = 1; /* saved stream idle status */
1550         int enable = is_aa_path_mute(codec);
1551         unsigned int verb = 0;
1552         unsigned int parm = 0;
1553
1554         if (stream_idle == -1)  /* stream status did not change */
1555                 enable = enable && saved_stream_idle;
1556         else {
1557                 enable = enable && stream_idle;
1558                 saved_stream_idle = stream_idle;
1559         }
1560
1561         /* decide low current mode's verb & parameter */
1562         switch (spec->codec_type) {
1563         case VT1708B_8CH:
1564         case VT1708B_4CH:
1565                 verb = 0xf70;
1566                 parm = enable ? 0x02 : 0x00; /* 0x02: 2/3x, 0x00: 1x */
1567                 break;
1568         case VT1708S:
1569         case VT1718S:
1570         case VT1716S:
1571                 verb = 0xf73;
1572                 parm = enable ? 0x51 : 0xe1; /* 0x51: 4/28x, 0xe1: 1x */
1573                 break;
1574         case VT1702:
1575                 verb = 0xf73;
1576                 parm = enable ? 0x01 : 0x1d; /* 0x01: 4/40x, 0x1d: 1x */
1577                 break;
1578         case VT2002P:
1579         case VT1812:
1580                 verb = 0xf93;
1581                 parm = enable ? 0x00 : 0xe0; /* 0x00: 4/40x, 0xe0: 1x */
1582                 break;
1583         default:
1584                 return;         /* other codecs are not supported */
1585         }
1586         /* send verb */
1587         snd_hda_codec_write(codec, codec->afg, 0, verb, parm);
1588 }
1589
1590 /*
1591  * generic initialization of ADC, input mixers and output mixers
1592  */
1593 static struct hda_verb vt1708_volume_init_verbs[] = {
1594         /*
1595          * Unmute ADC0-1 and set the default input to mic-in
1596          */
1597         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1598         {0x27, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1599
1600
1601         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
1602          * mixer widget
1603          */
1604         /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
1605         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1606         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1607         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
1608         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
1609         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
1610
1611         /*
1612          * Set up output mixers (0x19 - 0x1b)
1613          */
1614         /* set vol=0 to output mixers */
1615         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1616         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1617         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1618
1619         /* Setup default input MW0 to PW4 */
1620         {0x20, AC_VERB_SET_CONNECT_SEL, 0},
1621         /* PW9 Output enable */
1622         {0x25, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
1623         { }
1624 };
1625
1626 static int via_playback_pcm_open(struct hda_pcm_stream *hinfo,
1627                                  struct hda_codec *codec,
1628                                  struct snd_pcm_substream *substream)
1629 {
1630         struct via_spec *spec = codec->spec;
1631         int idle = substream->pstr->substream_opened == 1
1632                 && substream->ref_count == 0;
1633         analog_low_current_mode(codec, idle);
1634         return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
1635                                              hinfo);
1636 }
1637
1638 static void playback_multi_pcm_prep_0(struct hda_codec *codec,
1639                                       unsigned int stream_tag,
1640                                       unsigned int format,
1641                                       struct snd_pcm_substream *substream)
1642 {
1643         struct via_spec *spec = codec->spec;
1644         struct hda_multi_out *mout = &spec->multiout;
1645         hda_nid_t *nids = mout->dac_nids;
1646         int chs = substream->runtime->channels;
1647         int i;
1648
1649         mutex_lock(&codec->spdif_mutex);
1650         if (mout->dig_out_nid && mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
1651                 if (chs == 2 &&
1652                     snd_hda_is_supported_format(codec, mout->dig_out_nid,
1653                                                 format) &&
1654                     !(codec->spdif_status & IEC958_AES0_NONAUDIO)) {
1655                         mout->dig_out_used = HDA_DIG_ANALOG_DUP;
1656                         /* turn off SPDIF once; otherwise the IEC958 bits won't
1657                          * be updated */
1658                         if (codec->spdif_ctls & AC_DIG1_ENABLE)
1659                                 snd_hda_codec_write(codec, mout->dig_out_nid, 0,
1660                                                     AC_VERB_SET_DIGI_CONVERT_1,
1661                                                     codec->spdif_ctls &
1662                                                         ~AC_DIG1_ENABLE & 0xff);
1663                         snd_hda_codec_setup_stream(codec, mout->dig_out_nid,
1664                                                    stream_tag, 0, format);
1665                         /* turn on again (if needed) */
1666                         if (codec->spdif_ctls & AC_DIG1_ENABLE)
1667                                 snd_hda_codec_write(codec, mout->dig_out_nid, 0,
1668                                                     AC_VERB_SET_DIGI_CONVERT_1,
1669                                                     codec->spdif_ctls & 0xff);
1670                 } else {
1671                         mout->dig_out_used = 0;
1672                         snd_hda_codec_setup_stream(codec, mout->dig_out_nid,
1673                                                    0, 0, 0);
1674                 }
1675         }
1676         mutex_unlock(&codec->spdif_mutex);
1677
1678         /* front */
1679         snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
1680                                    0, format);
1681
1682         if (mout->hp_nid && mout->hp_nid != nids[HDA_FRONT]
1683             && !spec->hp_independent_mode)
1684                 /* headphone out will just decode front left/right (stereo) */
1685                 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
1686                                            0, format);
1687
1688         /* extra outputs copied from front */
1689         for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
1690                 if (mout->extra_out_nid[i])
1691                         snd_hda_codec_setup_stream(codec,
1692                                                    mout->extra_out_nid[i],
1693                                                    stream_tag, 0, format);
1694
1695         /* surrounds */
1696         for (i = 1; i < mout->num_dacs; i++) {
1697                 if (chs >= (i + 1) * 2) /* independent out */
1698                         snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
1699                                                    i * 2, format);
1700                 else /* copy front */
1701                         snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
1702                                                    0, format);
1703         }
1704 }
1705
1706 static int via_playback_multi_pcm_prepare(struct hda_pcm_stream *hinfo,
1707                                           struct hda_codec *codec,
1708                                           unsigned int stream_tag,
1709                                           unsigned int format,
1710                                           struct snd_pcm_substream *substream)
1711 {
1712         struct via_spec *spec = codec->spec;
1713         struct hda_multi_out *mout = &spec->multiout;
1714         hda_nid_t *nids = mout->dac_nids;
1715
1716         if (substream->number == 0)
1717                 playback_multi_pcm_prep_0(codec, stream_tag, format,
1718                                           substream);
1719         else {
1720                 if (mout->hp_nid && mout->hp_nid != nids[HDA_FRONT] &&
1721                     spec->hp_independent_mode)
1722                         snd_hda_codec_setup_stream(codec, mout->hp_nid,
1723                                                    stream_tag, 0, format);
1724         }
1725         vt1708_start_hp_work(spec);
1726         return 0;
1727 }
1728
1729 static int via_playback_multi_pcm_cleanup(struct hda_pcm_stream *hinfo,
1730                                     struct hda_codec *codec,
1731                                     struct snd_pcm_substream *substream)
1732 {
1733         struct via_spec *spec = codec->spec;
1734         struct hda_multi_out *mout = &spec->multiout;
1735         hda_nid_t *nids = mout->dac_nids;
1736         int i;
1737
1738         if (substream->number == 0) {
1739                 for (i = 0; i < mout->num_dacs; i++)
1740                         snd_hda_codec_setup_stream(codec, nids[i], 0, 0, 0);
1741
1742                 if (mout->hp_nid && !spec->hp_independent_mode)
1743                         snd_hda_codec_setup_stream(codec, mout->hp_nid,
1744                                                    0, 0, 0);
1745
1746                 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
1747                         if (mout->extra_out_nid[i])
1748                                 snd_hda_codec_setup_stream(codec,
1749                                                         mout->extra_out_nid[i],
1750                                                         0, 0, 0);
1751                 mutex_lock(&codec->spdif_mutex);
1752                 if (mout->dig_out_nid &&
1753                     mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
1754                         snd_hda_codec_setup_stream(codec, mout->dig_out_nid,
1755                                                    0, 0, 0);
1756                         mout->dig_out_used = 0;
1757                 }
1758                 mutex_unlock(&codec->spdif_mutex);
1759         } else {
1760                 if (mout->hp_nid && mout->hp_nid != nids[HDA_FRONT] &&
1761                     spec->hp_independent_mode)
1762                         snd_hda_codec_setup_stream(codec, mout->hp_nid,
1763                                                    0, 0, 0);
1764         }
1765         vt1708_stop_hp_work(spec);
1766         return 0;
1767 }
1768
1769 /*
1770  * Digital out
1771  */
1772 static int via_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
1773                                      struct hda_codec *codec,
1774                                      struct snd_pcm_substream *substream)
1775 {
1776         struct via_spec *spec = codec->spec;
1777         return snd_hda_multi_out_dig_open(codec, &spec->multiout);
1778 }
1779
1780 static int via_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
1781                                       struct hda_codec *codec,
1782                                       struct snd_pcm_substream *substream)
1783 {
1784         struct via_spec *spec = codec->spec;
1785         return snd_hda_multi_out_dig_close(codec, &spec->multiout);
1786 }
1787
1788 static int via_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1789                                         struct hda_codec *codec,
1790                                         unsigned int stream_tag,
1791                                         unsigned int format,
1792                                         struct snd_pcm_substream *substream)
1793 {
1794         struct via_spec *spec = codec->spec;
1795         return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
1796                                              stream_tag, format, substream);
1797 }
1798
1799 static int via_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
1800                                         struct hda_codec *codec,
1801                                         struct snd_pcm_substream *substream)
1802 {
1803         struct via_spec *spec = codec->spec;
1804         snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
1805         return 0;
1806 }
1807
1808 /*
1809  * Analog capture
1810  */
1811 static int via_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
1812                                    struct hda_codec *codec,
1813                                    unsigned int stream_tag,
1814                                    unsigned int format,
1815                                    struct snd_pcm_substream *substream)
1816 {
1817         struct via_spec *spec = codec->spec;
1818
1819         snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
1820                                    stream_tag, 0, format);
1821         return 0;
1822 }
1823
1824 static int via_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
1825                                    struct hda_codec *codec,
1826                                    struct snd_pcm_substream *substream)
1827 {
1828         struct via_spec *spec = codec->spec;
1829         snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]);
1830         return 0;
1831 }
1832
1833 static struct hda_pcm_stream vt1708_pcm_analog_playback = {
1834         .substreams = 2,
1835         .channels_min = 2,
1836         .channels_max = 8,
1837         .nid = 0x10, /* NID to query formats and rates */
1838         .ops = {
1839                 .open = via_playback_pcm_open,
1840                 .prepare = via_playback_multi_pcm_prepare,
1841                 .cleanup = via_playback_multi_pcm_cleanup
1842         },
1843 };
1844
1845 static struct hda_pcm_stream vt1708_pcm_analog_s16_playback = {
1846         .substreams = 2,
1847         .channels_min = 2,
1848         .channels_max = 8,
1849         .nid = 0x10, /* NID to query formats and rates */
1850         /* We got noisy outputs on the right channel on VT1708 when
1851          * 24bit samples are used.  Until any workaround is found,
1852          * disable the 24bit format, so far.
1853          */
1854         .formats = SNDRV_PCM_FMTBIT_S16_LE,
1855         .ops = {
1856                 .open = via_playback_pcm_open,
1857                 .prepare = via_playback_multi_pcm_prepare,
1858                 .cleanup = via_playback_multi_pcm_cleanup
1859         },
1860 };
1861
1862 static struct hda_pcm_stream vt1708_pcm_analog_capture = {
1863         .substreams = 2,
1864         .channels_min = 2,
1865         .channels_max = 2,
1866         .nid = 0x15, /* NID to query formats and rates */
1867         .ops = {
1868                 .prepare = via_capture_pcm_prepare,
1869                 .cleanup = via_capture_pcm_cleanup
1870         },
1871 };
1872
1873 static struct hda_pcm_stream vt1708_pcm_digital_playback = {
1874         .substreams = 1,
1875         .channels_min = 2,
1876         .channels_max = 2,
1877         /* NID is set in via_build_pcms */
1878         .ops = {
1879                 .open = via_dig_playback_pcm_open,
1880                 .close = via_dig_playback_pcm_close,
1881                 .prepare = via_dig_playback_pcm_prepare,
1882                 .cleanup = via_dig_playback_pcm_cleanup
1883         },
1884 };
1885
1886 static struct hda_pcm_stream vt1708_pcm_digital_capture = {
1887         .substreams = 1,
1888         .channels_min = 2,
1889         .channels_max = 2,
1890 };
1891
1892 static int via_build_controls(struct hda_codec *codec)
1893 {
1894         struct via_spec *spec = codec->spec;
1895         struct snd_kcontrol *kctl;
1896         struct snd_kcontrol_new *knew;
1897         int err, i;
1898
1899         for (i = 0; i < spec->num_mixers; i++) {
1900                 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1901                 if (err < 0)
1902                         return err;
1903         }
1904
1905         if (spec->multiout.dig_out_nid) {
1906                 err = snd_hda_create_spdif_out_ctls(codec,
1907                                                     spec->multiout.dig_out_nid);
1908                 if (err < 0)
1909                         return err;
1910                 err = snd_hda_create_spdif_share_sw(codec,
1911                                                     &spec->multiout);
1912                 if (err < 0)
1913                         return err;
1914                 spec->multiout.share_spdif = 1;
1915         }
1916         if (spec->dig_in_nid) {
1917                 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1918                 if (err < 0)
1919                         return err;
1920         }
1921
1922         /* assign Capture Source enums to NID */
1923         kctl = snd_hda_find_mixer_ctl(codec, "Input Source");
1924         for (i = 0; kctl && i < kctl->count; i++) {
1925                 err = snd_hda_add_nid(codec, kctl, i, spec->mux_nids[i]);
1926                 if (err < 0)
1927                         return err;
1928         }
1929
1930         /* other nid->control mapping */
1931         for (i = 0; i < spec->num_mixers; i++) {
1932                 for (knew = spec->mixers[i]; knew->name; knew++) {
1933                         if (knew->iface != NID_MAPPING)
1934                                 continue;
1935                         kctl = snd_hda_find_mixer_ctl(codec, knew->name);
1936                         if (kctl == NULL)
1937                                 continue;
1938                         err = snd_hda_add_nid(codec, kctl, 0,
1939                                               knew->subdevice);
1940                 }
1941         }
1942
1943         /* init power states */
1944         set_jack_power_state(codec);
1945         analog_low_current_mode(codec, 1);
1946
1947         via_free_kctls(codec); /* no longer needed */
1948         return 0;
1949 }
1950
1951 static int via_build_pcms(struct hda_codec *codec)
1952 {
1953         struct via_spec *spec = codec->spec;
1954         struct hda_pcm *info = spec->pcm_rec;
1955
1956         codec->num_pcms = 1;
1957         codec->pcm_info = info;
1958
1959         info->name = spec->stream_name_analog;
1960         info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
1961                 *(spec->stream_analog_playback);
1962         info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
1963                 spec->multiout.dac_nids[0];
1964         info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
1965         info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
1966
1967         info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
1968                 spec->multiout.max_channels;
1969
1970         if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
1971                 codec->num_pcms++;
1972                 info++;
1973                 info->name = spec->stream_name_digital;
1974                 info->pcm_type = HDA_PCM_TYPE_SPDIF;
1975                 if (spec->multiout.dig_out_nid) {
1976                         info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
1977                                 *(spec->stream_digital_playback);
1978                         info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
1979                                 spec->multiout.dig_out_nid;
1980                 }
1981                 if (spec->dig_in_nid) {
1982                         info->stream[SNDRV_PCM_STREAM_CAPTURE] =
1983                                 *(spec->stream_digital_capture);
1984                         info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
1985                                 spec->dig_in_nid;
1986                 }
1987         }
1988
1989         return 0;
1990 }
1991
1992 static void via_free(struct hda_codec *codec)
1993 {
1994         struct via_spec *spec = codec->spec;
1995
1996         if (!spec)
1997                 return;
1998
1999         via_free_kctls(codec);
2000         vt1708_stop_hp_work(spec);
2001         kfree(codec->spec);
2002 }
2003
2004 /* mute internal speaker if HP is plugged */
2005 static void via_hp_automute(struct hda_codec *codec)
2006 {
2007         unsigned int present = 0;
2008         struct via_spec *spec = codec->spec;
2009
2010         present = snd_hda_jack_detect(codec, spec->autocfg.hp_pins[0]);
2011
2012         if (!spec->hp_independent_mode) {
2013                 struct snd_ctl_elem_id id;
2014                 /* auto mute */
2015                 snd_hda_codec_amp_stereo(
2016                         codec, spec->autocfg.line_out_pins[0], HDA_OUTPUT, 0,
2017                         HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
2018                 /* notify change */
2019                 memset(&id, 0, sizeof(id));
2020                 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
2021                 strcpy(id.name, "Front Playback Switch");
2022                 snd_ctl_notify(codec->bus->card, SNDRV_CTL_EVENT_MASK_VALUE,
2023                                &id);
2024         }
2025 }
2026
2027 /* mute mono out if HP or Line out is plugged */
2028 static void via_mono_automute(struct hda_codec *codec)
2029 {
2030         unsigned int hp_present, lineout_present;
2031         struct via_spec *spec = codec->spec;
2032
2033         if (spec->codec_type != VT1716S)
2034                 return;
2035
2036         lineout_present = snd_hda_jack_detect(codec,
2037                                               spec->autocfg.line_out_pins[0]);
2038
2039         /* Mute Mono Out if Line Out is plugged */
2040         if (lineout_present) {
2041                 snd_hda_codec_amp_stereo(
2042                         codec, 0x2A, HDA_OUTPUT, 0, HDA_AMP_MUTE, HDA_AMP_MUTE);
2043                 return;
2044         }
2045
2046         hp_present = snd_hda_jack_detect(codec, spec->autocfg.hp_pins[0]);
2047
2048         if (!spec->hp_independent_mode)
2049                 snd_hda_codec_amp_stereo(
2050                         codec, 0x2A, HDA_OUTPUT, 0, HDA_AMP_MUTE,
2051                         hp_present ? HDA_AMP_MUTE : 0);
2052 }
2053
2054 static void via_gpio_control(struct hda_codec *codec)
2055 {
2056         unsigned int gpio_data;
2057         unsigned int vol_counter;
2058         unsigned int vol;
2059         unsigned int master_vol;
2060
2061         struct via_spec *spec = codec->spec;
2062
2063         gpio_data = snd_hda_codec_read(codec, codec->afg, 0,
2064                                        AC_VERB_GET_GPIO_DATA, 0) & 0x03;
2065
2066         vol_counter = (snd_hda_codec_read(codec, codec->afg, 0,
2067                                           0xF84, 0) & 0x3F0000) >> 16;
2068
2069         vol = vol_counter & 0x1F;
2070         master_vol = snd_hda_codec_read(codec, 0x1A, 0,
2071                                         AC_VERB_GET_AMP_GAIN_MUTE,
2072                                         AC_AMP_GET_INPUT);
2073
2074         if (gpio_data == 0x02) {
2075                 /* unmute line out */
2076                 snd_hda_codec_amp_stereo(codec, spec->autocfg.line_out_pins[0],
2077                                          HDA_OUTPUT, 0, HDA_AMP_MUTE, 0);
2078
2079                 if (vol_counter & 0x20) {
2080                         /* decrease volume */
2081                         if (vol > master_vol)
2082                                 vol = master_vol;
2083                         snd_hda_codec_amp_stereo(codec, 0x1A, HDA_INPUT,
2084                                                  0, HDA_AMP_VOLMASK,
2085                                                  master_vol-vol);
2086                 } else {
2087                         /* increase volume */
2088                         snd_hda_codec_amp_stereo(codec, 0x1A, HDA_INPUT, 0,
2089                                          HDA_AMP_VOLMASK,
2090                                          ((master_vol+vol) > 0x2A) ? 0x2A :
2091                                           (master_vol+vol));
2092                 }
2093         } else if (!(gpio_data & 0x02)) {
2094                 /* mute line out */
2095                 snd_hda_codec_amp_stereo(codec,
2096                                          spec->autocfg.line_out_pins[0],
2097                                          HDA_OUTPUT, 0, HDA_AMP_MUTE,
2098                                          HDA_AMP_MUTE);
2099         }
2100 }
2101
2102 /* mute Internal-Speaker if HP is plugged */
2103 static void via_speaker_automute(struct hda_codec *codec)
2104 {
2105         unsigned int hp_present;
2106         struct via_spec *spec = codec->spec;
2107
2108         if (spec->codec_type != VT2002P && spec->codec_type != VT1812)
2109                 return;
2110
2111         hp_present = snd_hda_jack_detect(codec, spec->autocfg.hp_pins[0]);
2112
2113         if (!spec->hp_independent_mode) {
2114                 struct snd_ctl_elem_id id;
2115                 snd_hda_codec_amp_stereo(
2116                         codec, spec->autocfg.speaker_pins[0], HDA_OUTPUT, 0,
2117                         HDA_AMP_MUTE, hp_present ? HDA_AMP_MUTE : 0);
2118                 /* notify change */
2119                 memset(&id, 0, sizeof(id));
2120                 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
2121                 strcpy(id.name, "Speaker Playback Switch");
2122                 snd_ctl_notify(codec->bus->card, SNDRV_CTL_EVENT_MASK_VALUE,
2123                                &id);
2124         }
2125 }
2126
2127 /* mute line-out and internal speaker if HP is plugged */
2128 static void via_hp_bind_automute(struct hda_codec *codec)
2129 {
2130         /* use long instead of int below just to avoid an internal compiler
2131          * error with gcc 4.0.x
2132          */
2133         unsigned long hp_present, present = 0;
2134         struct via_spec *spec = codec->spec;
2135         int i;
2136
2137         if (!spec->autocfg.hp_pins[0] || !spec->autocfg.line_out_pins[0])
2138                 return;
2139
2140         hp_present = snd_hda_jack_detect(codec, spec->autocfg.hp_pins[0]);
2141
2142         present = snd_hda_jack_detect(codec, spec->autocfg.line_out_pins[0]);
2143
2144         if (!spec->hp_independent_mode) {
2145                 /* Mute Line-Outs */
2146                 for (i = 0; i < spec->autocfg.line_outs; i++)
2147                         snd_hda_codec_amp_stereo(
2148                                 codec, spec->autocfg.line_out_pins[i],
2149                                 HDA_OUTPUT, 0,
2150                                 HDA_AMP_MUTE, hp_present ? HDA_AMP_MUTE : 0);
2151                 if (hp_present)
2152                         present = hp_present;
2153         }
2154         /* Speakers */
2155         for (i = 0; i < spec->autocfg.speaker_outs; i++)
2156                 snd_hda_codec_amp_stereo(
2157                         codec, spec->autocfg.speaker_pins[i], HDA_OUTPUT, 0,
2158                         HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
2159 }
2160
2161
2162 /* unsolicited event for jack sensing */
2163 static void via_unsol_event(struct hda_codec *codec,
2164                                   unsigned int res)
2165 {
2166         res >>= 26;
2167         if (res & VIA_HP_EVENT)
2168                 via_hp_automute(codec);
2169         if (res & VIA_GPIO_EVENT)
2170                 via_gpio_control(codec);
2171         if (res & VIA_JACK_EVENT)
2172                 set_jack_power_state(codec);
2173         if (res & VIA_MONO_EVENT)
2174                 via_mono_automute(codec);
2175         if (res & VIA_SPEAKER_EVENT)
2176                 via_speaker_automute(codec);
2177         if (res & VIA_BIND_HP_EVENT)
2178                 via_hp_bind_automute(codec);
2179 }
2180
2181 static int via_init(struct hda_codec *codec)
2182 {
2183         struct via_spec *spec = codec->spec;
2184         int i;
2185         for (i = 0; i < spec->num_iverbs; i++)
2186                 snd_hda_sequence_write(codec, spec->init_verbs[i]);
2187
2188         spec->codec_type = get_codec_type(codec);
2189         if (spec->codec_type == VT1708BCE)
2190                 spec->codec_type = VT1708S; /* VT1708BCE & VT1708S are almost
2191                                                same */
2192         /* Lydia Add for EAPD enable */
2193         if (!spec->dig_in_nid) { /* No Digital In connection */
2194                 if (spec->dig_in_pin) {
2195                         snd_hda_codec_write(codec, spec->dig_in_pin, 0,
2196                                             AC_VERB_SET_PIN_WIDGET_CONTROL,
2197                                             PIN_OUT);
2198                         snd_hda_codec_write(codec, spec->dig_in_pin, 0,
2199                                             AC_VERB_SET_EAPD_BTLENABLE, 0x02);
2200                 }
2201         } else /* enable SPDIF-input pin */
2202                 snd_hda_codec_write(codec, spec->autocfg.dig_in_pin, 0,
2203                                     AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN);
2204
2205         /* assign slave outs */
2206         if (spec->slave_dig_outs[0])
2207                 codec->slave_dig_outs = spec->slave_dig_outs;
2208
2209         return 0;
2210 }
2211
2212 #ifdef SND_HDA_NEEDS_RESUME
2213 static int via_suspend(struct hda_codec *codec, pm_message_t state)
2214 {
2215         struct via_spec *spec = codec->spec;
2216         vt1708_stop_hp_work(spec);
2217         return 0;
2218 }
2219 #endif
2220
2221 #ifdef CONFIG_SND_HDA_POWER_SAVE
2222 static int via_check_power_status(struct hda_codec *codec, hda_nid_t nid)
2223 {
2224         struct via_spec *spec = codec->spec;
2225         return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
2226 }
2227 #endif
2228
2229 /*
2230  */
2231 static struct hda_codec_ops via_patch_ops = {
2232         .build_controls = via_build_controls,
2233         .build_pcms = via_build_pcms,
2234         .init = via_init,
2235         .free = via_free,
2236 #ifdef SND_HDA_NEEDS_RESUME
2237         .suspend = via_suspend,
2238 #endif
2239 #ifdef CONFIG_SND_HDA_POWER_SAVE
2240         .check_power_status = via_check_power_status,
2241 #endif
2242 };
2243
2244 /* fill in the dac_nids table from the parsed pin configuration */
2245 static int vt1708_auto_fill_dac_nids(struct via_spec *spec,
2246                                      const struct auto_pin_cfg *cfg)
2247 {
2248         int i;
2249         hda_nid_t nid;
2250
2251         spec->multiout.num_dacs = cfg->line_outs;
2252
2253         spec->multiout.dac_nids = spec->private_dac_nids;
2254
2255         for (i = 0; i < 4; i++) {
2256                 nid = cfg->line_out_pins[i];
2257                 if (nid) {
2258                         /* config dac list */
2259                         switch (i) {
2260                         case AUTO_SEQ_FRONT:
2261                                 spec->multiout.dac_nids[i] = 0x10;
2262                                 break;
2263                         case AUTO_SEQ_CENLFE:
2264                                 spec->multiout.dac_nids[i] = 0x12;
2265                                 break;
2266                         case AUTO_SEQ_SURROUND:
2267                                 spec->multiout.dac_nids[i] = 0x11;
2268                                 break;
2269                         case AUTO_SEQ_SIDE:
2270                                 spec->multiout.dac_nids[i] = 0x13;
2271                                 break;
2272                         }
2273                 }
2274         }
2275
2276         return 0;
2277 }
2278
2279 /* add playback controls from the parsed DAC table */
2280 static int vt1708_auto_create_multi_out_ctls(struct via_spec *spec,
2281                                              const struct auto_pin_cfg *cfg)
2282 {
2283         char name[32];
2284         static const char *chname[4] = { "Front", "Surround", "C/LFE", "Side" };
2285         hda_nid_t nid, nid_vol, nid_vols[] = {0x17, 0x19, 0x1a, 0x1b};
2286         int i, err;
2287
2288         for (i = 0; i <= AUTO_SEQ_SIDE; i++) {
2289                 nid = cfg->line_out_pins[i];
2290
2291                 if (!nid)
2292                         continue;
2293
2294                 nid_vol = nid_vols[i];
2295
2296                 if (i == AUTO_SEQ_CENLFE) {
2297                         /* Center/LFE */
2298                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
2299                                         "Center Playback Volume",
2300                                         HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0,
2301                                                             HDA_OUTPUT));
2302                         if (err < 0)
2303                                 return err;
2304                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
2305                                               "LFE Playback Volume",
2306                                               HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0,
2307                                                                   HDA_OUTPUT));
2308                         if (err < 0)
2309                                 return err;
2310                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
2311                                               "Center Playback Switch",
2312                                               HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0,
2313                                                                   HDA_OUTPUT));
2314                         if (err < 0)
2315                                 return err;
2316                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
2317                                               "LFE Playback Switch",
2318                                               HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0,
2319                                                                   HDA_OUTPUT));
2320                         if (err < 0)
2321                                 return err;
2322                 } else if (i == AUTO_SEQ_FRONT) {
2323                         /* add control to mixer index 0 */
2324                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
2325                                               "Master Front Playback Volume",
2326                                               HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
2327                                                                   HDA_INPUT));
2328                         if (err < 0)
2329                                 return err;
2330                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
2331                                               "Master Front Playback Switch",
2332                                               HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
2333                                                                   HDA_INPUT));
2334                         if (err < 0)
2335                                 return err;
2336
2337                         /* add control to PW3 */
2338                         sprintf(name, "%s Playback Volume", chname[i]);
2339                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name,
2340                                               HDA_COMPOSE_AMP_VAL(nid, 3, 0,
2341                                                                   HDA_OUTPUT));
2342                         if (err < 0)
2343                                 return err;
2344                         sprintf(name, "%s Playback Switch", chname[i]);
2345                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name,
2346                                               HDA_COMPOSE_AMP_VAL(nid, 3, 0,
2347                                                                   HDA_OUTPUT));
2348                         if (err < 0)
2349                                 return err;
2350                 } else {
2351                         sprintf(name, "%s Playback Volume", chname[i]);
2352                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name,
2353                                               HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
2354                                                                   HDA_OUTPUT));
2355                         if (err < 0)
2356                                 return err;
2357                         sprintf(name, "%s Playback Switch", chname[i]);
2358                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name,
2359                                               HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
2360                                                                   HDA_OUTPUT));
2361                         if (err < 0)
2362                                 return err;
2363                 }
2364         }
2365
2366         return 0;
2367 }
2368
2369 static void create_hp_imux(struct via_spec *spec)
2370 {
2371         int i;
2372         struct hda_input_mux *imux = &spec->private_imux[1];
2373         static const char *texts[] = { "OFF", "ON", NULL};
2374
2375         /* for hp mode select */
2376         for (i = 0; texts[i]; i++)
2377                 snd_hda_add_imux_item(imux, texts[i], i, NULL);
2378
2379         spec->hp_mux = &spec->private_imux[1];
2380 }
2381
2382 static int vt1708_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin)
2383 {
2384         int err;
2385
2386         if (!pin)
2387                 return 0;
2388
2389         spec->multiout.hp_nid = VT1708_HP_NID; /* AOW3 */
2390         spec->hp_independent_mode_index = 1;
2391
2392         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
2393                               "Headphone Playback Volume",
2394                               HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
2395         if (err < 0)
2396                 return err;
2397         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
2398                               "Headphone Playback Switch",
2399                               HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
2400         if (err < 0)
2401                 return err;
2402
2403         create_hp_imux(spec);
2404
2405         return 0;
2406 }
2407
2408 /* create playback/capture controls for input pins */
2409 static int vt_auto_create_analog_input_ctls(struct hda_codec *codec,
2410                                             const struct auto_pin_cfg *cfg,
2411                                             hda_nid_t cap_nid,
2412                                             hda_nid_t pin_idxs[], int num_idxs)
2413 {
2414         struct via_spec *spec = codec->spec;
2415         struct hda_input_mux *imux = &spec->private_imux[0];
2416         int i, err, idx, type, type_idx = 0;
2417
2418         /* for internal loopback recording select */
2419         for (idx = 0; idx < num_idxs; idx++) {
2420                 if (pin_idxs[idx] == 0xff) {
2421                         snd_hda_add_imux_item(imux, "Stereo Mixer", idx, NULL);
2422                         break;
2423                 }
2424         }
2425
2426         for (i = 0; i < cfg->num_inputs; i++) {
2427                 const char *label;
2428                 type = cfg->inputs[i].type;
2429                 for (idx = 0; idx < num_idxs; idx++)
2430                         if (pin_idxs[idx] == cfg->inputs[i].pin)
2431                                 break;
2432                 if (idx >= num_idxs)
2433                         continue;
2434                 if (i > 0 && type == cfg->inputs[i - 1].type)
2435                         type_idx++;
2436                 else
2437                         type_idx = 0;
2438                 label = hda_get_autocfg_input_label(codec, cfg, i);
2439                 err = via_new_analog_input(spec, label, type_idx, idx, cap_nid);
2440                 if (err < 0)
2441                         return err;
2442                 snd_hda_add_imux_item(imux, label, idx, NULL);
2443         }
2444         return 0;
2445 }
2446
2447 /* create playback/capture controls for input pins */
2448 static int vt1708_auto_create_analog_input_ctls(struct hda_codec *codec,
2449                                                 const struct auto_pin_cfg *cfg)
2450 {
2451         static hda_nid_t pin_idxs[] = { 0xff, 0x24, 0x1d, 0x1e, 0x21 };
2452         return vt_auto_create_analog_input_ctls(codec, cfg, 0x17, pin_idxs,
2453                                                 ARRAY_SIZE(pin_idxs));
2454 }
2455
2456 #ifdef CONFIG_SND_HDA_POWER_SAVE
2457 static struct hda_amp_list vt1708_loopbacks[] = {
2458         { 0x17, HDA_INPUT, 1 },
2459         { 0x17, HDA_INPUT, 2 },
2460         { 0x17, HDA_INPUT, 3 },
2461         { 0x17, HDA_INPUT, 4 },
2462         { } /* end */
2463 };
2464 #endif
2465
2466 static void vt1708_set_pinconfig_connect(struct hda_codec *codec, hda_nid_t nid)
2467 {
2468         unsigned int def_conf;
2469         unsigned char seqassoc;
2470
2471         def_conf = snd_hda_codec_get_pincfg(codec, nid);
2472         seqassoc = (unsigned char) get_defcfg_association(def_conf);
2473         seqassoc = (seqassoc << 4) | get_defcfg_sequence(def_conf);
2474         if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE
2475             && (seqassoc == 0xf0 || seqassoc == 0xff)) {
2476                 def_conf = def_conf & (~(AC_JACK_PORT_BOTH << 30));
2477                 snd_hda_codec_set_pincfg(codec, nid, def_conf);
2478         }
2479
2480         return;
2481 }
2482
2483 static int vt1708_jack_detectect_get(struct snd_kcontrol *kcontrol,
2484                                      struct snd_ctl_elem_value *ucontrol)
2485 {
2486         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2487         struct via_spec *spec = codec->spec;
2488
2489         if (spec->codec_type != VT1708)
2490                 return 0;
2491         spec->vt1708_jack_detectect =
2492                 !((snd_hda_codec_read(codec, 0x1, 0, 0xf84, 0) >> 8) & 0x1);
2493         ucontrol->value.integer.value[0] = spec->vt1708_jack_detectect;
2494         return 0;
2495 }
2496
2497 static int vt1708_jack_detectect_put(struct snd_kcontrol *kcontrol,
2498                                      struct snd_ctl_elem_value *ucontrol)
2499 {
2500         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2501         struct via_spec *spec = codec->spec;
2502         int change;
2503
2504         if (spec->codec_type != VT1708)
2505                 return 0;
2506         spec->vt1708_jack_detectect = ucontrol->value.integer.value[0];
2507         change = (0x1 & (snd_hda_codec_read(codec, 0x1, 0, 0xf84, 0) >> 8))
2508                 == !spec->vt1708_jack_detectect;
2509         if (spec->vt1708_jack_detectect) {
2510                 mute_aa_path(codec, 1);
2511                 notify_aa_path_ctls(codec);
2512         }
2513         return change;
2514 }
2515
2516 static struct snd_kcontrol_new vt1708_jack_detectect[] = {
2517         {
2518                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2519                 .name = "Jack Detect",
2520                 .count = 1,
2521                 .info = snd_ctl_boolean_mono_info,
2522                 .get = vt1708_jack_detectect_get,
2523                 .put = vt1708_jack_detectect_put,
2524         },
2525         {} /* end */
2526 };
2527
2528 static int vt1708_parse_auto_config(struct hda_codec *codec)
2529 {
2530         struct via_spec *spec = codec->spec;
2531         int err;
2532
2533         /* Add HP and CD pin config connect bit re-config action */
2534         vt1708_set_pinconfig_connect(codec, VT1708_HP_PIN_NID);
2535         vt1708_set_pinconfig_connect(codec, VT1708_CD_PIN_NID);
2536
2537         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
2538         if (err < 0)
2539                 return err;
2540         err = vt1708_auto_fill_dac_nids(spec, &spec->autocfg);
2541         if (err < 0)
2542                 return err;
2543         if (!spec->autocfg.line_outs && !spec->autocfg.hp_pins[0])
2544                 return 0; /* can't find valid BIOS pin config */
2545
2546         err = vt1708_auto_create_multi_out_ctls(spec, &spec->autocfg);
2547         if (err < 0)
2548                 return err;
2549         err = vt1708_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
2550         if (err < 0)
2551                 return err;
2552         err = vt1708_auto_create_analog_input_ctls(codec, &spec->autocfg);
2553         if (err < 0)
2554                 return err;
2555         /* add jack detect on/off control */
2556         err = snd_hda_add_new_ctls(codec, vt1708_jack_detectect);
2557         if (err < 0)
2558                 return err;
2559
2560         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
2561
2562         if (spec->autocfg.dig_outs)
2563                 spec->multiout.dig_out_nid = VT1708_DIGOUT_NID;
2564         spec->dig_in_pin = VT1708_DIGIN_PIN;
2565         if (spec->autocfg.dig_in_pin)
2566                 spec->dig_in_nid = VT1708_DIGIN_NID;
2567
2568         if (spec->kctls.list)
2569                 spec->mixers[spec->num_mixers++] = spec->kctls.list;
2570
2571         spec->init_verbs[spec->num_iverbs++] = vt1708_volume_init_verbs;
2572
2573         spec->input_mux = &spec->private_imux[0];
2574
2575         if (spec->hp_mux)
2576                 via_hp_build(codec);
2577
2578         via_smart51_build(spec);
2579         return 1;
2580 }
2581
2582 /* init callback for auto-configuration model -- overriding the default init */
2583 static int via_auto_init(struct hda_codec *codec)
2584 {
2585         struct via_spec *spec = codec->spec;
2586
2587         via_init(codec);
2588         via_auto_init_multi_out(codec);
2589         via_auto_init_hp_out(codec);
2590         via_auto_init_analog_input(codec);
2591         if (spec->codec_type == VT2002P || spec->codec_type == VT1812) {
2592                 via_hp_bind_automute(codec);
2593         } else {
2594                 via_hp_automute(codec);
2595                 via_speaker_automute(codec);
2596         }
2597
2598         return 0;
2599 }
2600
2601 static void vt1708_update_hp_jack_state(struct work_struct *work)
2602 {
2603         struct via_spec *spec = container_of(work, struct via_spec,
2604                                              vt1708_hp_work.work);
2605         if (spec->codec_type != VT1708)
2606                 return;
2607         /* if jack state toggled */
2608         if (spec->vt1708_hp_present
2609             != snd_hda_jack_detect(spec->codec, spec->autocfg.hp_pins[0])) {
2610                 spec->vt1708_hp_present ^= 1;
2611                 via_hp_automute(spec->codec);
2612         }
2613         vt1708_start_hp_work(spec);
2614 }
2615
2616 static int get_mux_nids(struct hda_codec *codec)
2617 {
2618         struct via_spec *spec = codec->spec;
2619         hda_nid_t nid, conn[8];
2620         unsigned int type;
2621         int i, n;
2622
2623         for (i = 0; i < spec->num_adc_nids; i++) {
2624                 nid = spec->adc_nids[i];
2625                 while (nid) {
2626                         type = get_wcaps_type(get_wcaps(codec, nid));
2627                         if (type == AC_WID_PIN)
2628                                 break;
2629                         n = snd_hda_get_connections(codec, nid, conn,
2630                                                     ARRAY_SIZE(conn));
2631                         if (n <= 0)
2632                                 break;
2633                         if (n > 1) {
2634                                 spec->mux_nids[i] = nid;
2635                                 break;
2636                         }
2637                         nid = conn[0];
2638                 }
2639         }
2640         return 0;
2641 }
2642
2643 static int patch_vt1708(struct hda_codec *codec)
2644 {
2645         struct via_spec *spec;
2646         int err;
2647
2648         /* create a codec specific record */
2649         spec = via_new_spec(codec);
2650         if (spec == NULL)
2651                 return -ENOMEM;
2652
2653         /* automatic parse from the BIOS config */
2654         err = vt1708_parse_auto_config(codec);
2655         if (err < 0) {
2656                 via_free(codec);
2657                 return err;
2658         } else if (!err) {
2659                 printk(KERN_INFO "hda_codec: Cannot set up configuration "
2660                        "from BIOS.  Using genenic mode...\n");
2661         }
2662
2663
2664         spec->stream_name_analog = "VT1708 Analog";
2665         spec->stream_analog_playback = &vt1708_pcm_analog_playback;
2666         /* disable 32bit format on VT1708 */
2667         if (codec->vendor_id == 0x11061708)
2668                 spec->stream_analog_playback = &vt1708_pcm_analog_s16_playback;
2669         spec->stream_analog_capture = &vt1708_pcm_analog_capture;
2670
2671         spec->stream_name_digital = "VT1708 Digital";
2672         spec->stream_digital_playback = &vt1708_pcm_digital_playback;
2673         spec->stream_digital_capture = &vt1708_pcm_digital_capture;
2674
2675
2676         if (!spec->adc_nids && spec->input_mux) {
2677                 spec->adc_nids = vt1708_adc_nids;
2678                 spec->num_adc_nids = ARRAY_SIZE(vt1708_adc_nids);
2679                 get_mux_nids(codec);
2680                 spec->mixers[spec->num_mixers] = vt1708_capture_mixer;
2681                 spec->num_mixers++;
2682         }
2683
2684         codec->patch_ops = via_patch_ops;
2685
2686         codec->patch_ops.init = via_auto_init;
2687 #ifdef CONFIG_SND_HDA_POWER_SAVE
2688         spec->loopback.amplist = vt1708_loopbacks;
2689 #endif
2690         INIT_DELAYED_WORK(&spec->vt1708_hp_work, vt1708_update_hp_jack_state);
2691         return 0;
2692 }
2693
2694 /* capture mixer elements */
2695 static struct snd_kcontrol_new vt1709_capture_mixer[] = {
2696         HDA_CODEC_VOLUME("Capture Volume", 0x14, 0x0, HDA_INPUT),
2697         HDA_CODEC_MUTE("Capture Switch", 0x14, 0x0, HDA_INPUT),
2698         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x15, 0x0, HDA_INPUT),
2699         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x15, 0x0, HDA_INPUT),
2700         HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x16, 0x0, HDA_INPUT),
2701         HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x16, 0x0, HDA_INPUT),
2702         {
2703                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2704                 /* The multiple "Capture Source" controls confuse alsamixer
2705                  * So call somewhat different..
2706                  */
2707                 /* .name = "Capture Source", */
2708                 .name = "Input Source",
2709                 .count = 1,
2710                 .info = via_mux_enum_info,
2711                 .get = via_mux_enum_get,
2712                 .put = via_mux_enum_put,
2713         },
2714         { } /* end */
2715 };
2716
2717 static struct hda_verb vt1709_uniwill_init_verbs[] = {
2718         {0x20, AC_VERB_SET_UNSOLICITED_ENABLE,
2719          AC_USRSP_EN | VIA_HP_EVENT | VIA_JACK_EVENT},
2720         { }
2721 };
2722
2723 /*
2724  * generic initialization of ADC, input mixers and output mixers
2725  */
2726 static struct hda_verb vt1709_10ch_volume_init_verbs[] = {
2727         /*
2728          * Unmute ADC0-2 and set the default input to mic-in
2729          */
2730         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2731         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2732         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2733
2734
2735         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
2736          * mixer widget
2737          */
2738         /* Amp Indices: AOW0=0, CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
2739         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2740         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2741         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
2742         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
2743         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
2744
2745         /*
2746          * Set up output selector (0x1a, 0x1b, 0x29)
2747          */
2748         /* set vol=0 to output mixers */
2749         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2750         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2751         {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2752
2753         /*
2754          *  Unmute PW3 and PW4
2755          */
2756         {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2757         {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2758
2759         /* Set input of PW4 as MW0 */
2760         {0x20, AC_VERB_SET_CONNECT_SEL, 0},
2761         /* PW9 Output enable */
2762         {0x24, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
2763         { }
2764 };
2765
2766 static struct hda_pcm_stream vt1709_10ch_pcm_analog_playback = {
2767         .substreams = 1,
2768         .channels_min = 2,
2769         .channels_max = 10,
2770         .nid = 0x10, /* NID to query formats and rates */
2771         .ops = {
2772                 .open = via_playback_pcm_open,
2773                 .prepare = via_playback_multi_pcm_prepare,
2774                 .cleanup = via_playback_multi_pcm_cleanup,
2775         },
2776 };
2777
2778 static struct hda_pcm_stream vt1709_6ch_pcm_analog_playback = {
2779         .substreams = 1,
2780         .channels_min = 2,
2781         .channels_max = 6,
2782         .nid = 0x10, /* NID to query formats and rates */
2783         .ops = {
2784                 .open = via_playback_pcm_open,
2785                 .prepare = via_playback_multi_pcm_prepare,
2786                 .cleanup = via_playback_multi_pcm_cleanup,
2787         },
2788 };
2789
2790 static struct hda_pcm_stream vt1709_pcm_analog_capture = {
2791         .substreams = 2,
2792         .channels_min = 2,
2793         .channels_max = 2,
2794         .nid = 0x14, /* NID to query formats and rates */
2795         .ops = {
2796                 .prepare = via_capture_pcm_prepare,
2797                 .cleanup = via_capture_pcm_cleanup
2798         },
2799 };
2800
2801 static struct hda_pcm_stream vt1709_pcm_digital_playback = {
2802         .substreams = 1,
2803         .channels_min = 2,
2804         .channels_max = 2,
2805         /* NID is set in via_build_pcms */
2806         .ops = {
2807                 .open = via_dig_playback_pcm_open,
2808                 .close = via_dig_playback_pcm_close
2809         },
2810 };
2811
2812 static struct hda_pcm_stream vt1709_pcm_digital_capture = {
2813         .substreams = 1,
2814         .channels_min = 2,
2815         .channels_max = 2,
2816 };
2817
2818 static int vt1709_auto_fill_dac_nids(struct via_spec *spec,
2819                                      const struct auto_pin_cfg *cfg)
2820 {
2821         int i;
2822         hda_nid_t nid;
2823
2824         if (cfg->line_outs == 4)  /* 10 channels */
2825                 spec->multiout.num_dacs = cfg->line_outs+1; /* AOW0~AOW4 */
2826         else if (cfg->line_outs == 3) /* 6 channels */
2827                 spec->multiout.num_dacs = cfg->line_outs; /* AOW0~AOW2 */
2828
2829         spec->multiout.dac_nids = spec->private_dac_nids;
2830
2831         if (cfg->line_outs == 4) { /* 10 channels */
2832                 for (i = 0; i < cfg->line_outs; i++) {
2833                         nid = cfg->line_out_pins[i];
2834                         if (nid) {
2835                                 /* config dac list */
2836                                 switch (i) {
2837                                 case AUTO_SEQ_FRONT:
2838                                         /* AOW0 */
2839                                         spec->multiout.dac_nids[i] = 0x10;
2840                                         break;
2841                                 case AUTO_SEQ_CENLFE:
2842                                         /* AOW2 */
2843                                         spec->multiout.dac_nids[i] = 0x12;
2844                                         break;
2845                                 case AUTO_SEQ_SURROUND:
2846                                         /* AOW3 */
2847                                         spec->multiout.dac_nids[i] = 0x11;
2848                                         break;
2849                                 case AUTO_SEQ_SIDE:
2850                                         /* AOW1 */
2851                                         spec->multiout.dac_nids[i] = 0x27;
2852                                         break;
2853                                 default:
2854                                         break;
2855                                 }
2856                         }
2857                 }
2858                 spec->multiout.dac_nids[cfg->line_outs] = 0x28; /* AOW4 */
2859
2860         } else if (cfg->line_outs == 3) { /* 6 channels */
2861                 for (i = 0; i < cfg->line_outs; i++) {
2862                         nid = cfg->line_out_pins[i];
2863                         if (nid) {
2864                                 /* config dac list */
2865                                 switch (i) {
2866                                 case AUTO_SEQ_FRONT:
2867                                         /* AOW0 */
2868                                         spec->multiout.dac_nids[i] = 0x10;
2869                                         break;
2870                                 case AUTO_SEQ_CENLFE:
2871                                         /* AOW2 */
2872                                         spec->multiout.dac_nids[i] = 0x12;
2873                                         break;
2874                                 case AUTO_SEQ_SURROUND:
2875                                         /* AOW1 */
2876                                         spec->multiout.dac_nids[i] = 0x11;
2877                                         break;
2878                                 default:
2879                                         break;
2880                                 }
2881                         }
2882                 }
2883         }
2884
2885         return 0;
2886 }
2887
2888 /* add playback controls from the parsed DAC table */
2889 static int vt1709_auto_create_multi_out_ctls(struct via_spec *spec,
2890                                              const struct auto_pin_cfg *cfg)
2891 {
2892         char name[32];
2893         static const char *chname[4] = { "Front", "Surround", "C/LFE", "Side" };
2894         hda_nid_t nid, nid_vol, nid_vols[] = {0x18, 0x1a, 0x1b, 0x29};
2895         int i, err;
2896
2897         for (i = 0; i <= AUTO_SEQ_SIDE; i++) {
2898                 nid = cfg->line_out_pins[i];
2899
2900                 if (!nid)
2901                         continue;
2902
2903                 nid_vol = nid_vols[i];
2904
2905                 if (i == AUTO_SEQ_CENLFE) {
2906                         /* Center/LFE */
2907                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
2908                                               "Center Playback Volume",
2909                                               HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0,
2910                                                                   HDA_OUTPUT));
2911                         if (err < 0)
2912                                 return err;
2913                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
2914                                               "LFE Playback Volume",
2915                                               HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0,
2916                                                                   HDA_OUTPUT));
2917                         if (err < 0)
2918                                 return err;
2919                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
2920                                               "Center Playback Switch",
2921                                               HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0,
2922                                                                   HDA_OUTPUT));
2923                         if (err < 0)
2924                                 return err;
2925                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
2926                                               "LFE Playback Switch",
2927                                               HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0,
2928                                                                   HDA_OUTPUT));
2929                         if (err < 0)
2930                                 return err;
2931                 } else if (i == AUTO_SEQ_FRONT) {
2932                         /* ADD control to mixer index 0 */
2933                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
2934                                               "Master Front Playback Volume",
2935                                               HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
2936                                                                   HDA_INPUT));
2937                         if (err < 0)
2938                                 return err;
2939                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
2940                                               "Master Front Playback Switch",
2941                                               HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
2942                                                                   HDA_INPUT));
2943                         if (err < 0)
2944                                 return err;
2945
2946                         /* add control to PW3 */
2947                         sprintf(name, "%s Playback Volume", chname[i]);
2948                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name,
2949                                               HDA_COMPOSE_AMP_VAL(nid, 3, 0,
2950                                                                   HDA_OUTPUT));
2951                         if (err < 0)
2952                                 return err;
2953                         sprintf(name, "%s Playback Switch", chname[i]);
2954                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name,
2955                                               HDA_COMPOSE_AMP_VAL(nid, 3, 0,
2956                                                                   HDA_OUTPUT));
2957                         if (err < 0)
2958                                 return err;
2959                 } else if (i == AUTO_SEQ_SURROUND) {
2960                         sprintf(name, "%s Playback Volume", chname[i]);
2961                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name,
2962                                               HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
2963                                                                   HDA_OUTPUT));
2964                         if (err < 0)
2965                                 return err;
2966                         sprintf(name, "%s Playback Switch", chname[i]);
2967                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name,
2968                                               HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
2969                                                                   HDA_OUTPUT));
2970                         if (err < 0)
2971                                 return err;
2972                 } else if (i == AUTO_SEQ_SIDE) {
2973                         sprintf(name, "%s Playback Volume", chname[i]);
2974                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name,
2975                                               HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
2976                                                                   HDA_OUTPUT));
2977                         if (err < 0)
2978                                 return err;
2979                         sprintf(name, "%s Playback Switch", chname[i]);
2980                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name,
2981                                               HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
2982                                                                   HDA_OUTPUT));
2983                         if (err < 0)
2984                                 return err;
2985                 }
2986         }
2987
2988         return 0;
2989 }
2990
2991 static int vt1709_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin)
2992 {
2993         int err;
2994
2995         if (!pin)
2996                 return 0;
2997
2998         if (spec->multiout.num_dacs == 5) /* 10 channels */
2999                 spec->multiout.hp_nid = VT1709_HP_DAC_NID;
3000         else if (spec->multiout.num_dacs == 3) /* 6 channels */
3001                 spec->multiout.hp_nid = 0;
3002         spec->hp_independent_mode_index = 1;
3003
3004         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
3005                               "Headphone Playback Volume",
3006                               HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3007         if (err < 0)
3008                 return err;
3009         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
3010                               "Headphone Playback Switch",
3011                               HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3012         if (err < 0)
3013                 return err;
3014
3015         return 0;
3016 }
3017
3018 /* create playback/capture controls for input pins */
3019 static int vt1709_auto_create_analog_input_ctls(struct hda_codec *codec,
3020                                                 const struct auto_pin_cfg *cfg)
3021 {
3022         static hda_nid_t pin_idxs[] = { 0xff, 0x23, 0x1d, 0x1e, 0x21 };
3023         return vt_auto_create_analog_input_ctls(codec, cfg, 0x18, pin_idxs,
3024                                                 ARRAY_SIZE(pin_idxs));
3025 }
3026
3027 static int vt1709_parse_auto_config(struct hda_codec *codec)
3028 {
3029         struct via_spec *spec = codec->spec;
3030         int err;
3031
3032         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
3033         if (err < 0)
3034                 return err;
3035         err = vt1709_auto_fill_dac_nids(spec, &spec->autocfg);
3036         if (err < 0)
3037                 return err;
3038         if (!spec->autocfg.line_outs && !spec->autocfg.hp_pins[0])
3039                 return 0; /* can't find valid BIOS pin config */
3040
3041         err = vt1709_auto_create_multi_out_ctls(spec, &spec->autocfg);
3042         if (err < 0)
3043                 return err;
3044         err = vt1709_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
3045         if (err < 0)
3046                 return err;
3047         err = vt1709_auto_create_analog_input_ctls(codec, &spec->autocfg);
3048         if (err < 0)
3049                 return err;
3050
3051         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3052
3053         if (spec->autocfg.dig_outs)
3054                 spec->multiout.dig_out_nid = VT1709_DIGOUT_NID;
3055         spec->dig_in_pin = VT1709_DIGIN_PIN;
3056         if (spec->autocfg.dig_in_pin)
3057                 spec->dig_in_nid = VT1709_DIGIN_NID;
3058
3059         if (spec->kctls.list)
3060                 spec->mixers[spec->num_mixers++] = spec->kctls.list;
3061
3062         spec->input_mux = &spec->private_imux[0];
3063
3064         if (spec->hp_mux)
3065                 via_hp_build(codec);
3066
3067         via_smart51_build(spec);
3068         return 1;
3069 }
3070
3071 #ifdef CONFIG_SND_HDA_POWER_SAVE
3072 static struct hda_amp_list vt1709_loopbacks[] = {
3073         { 0x18, HDA_INPUT, 1 },
3074         { 0x18, HDA_INPUT, 2 },
3075         { 0x18, HDA_INPUT, 3 },
3076         { 0x18, HDA_INPUT, 4 },
3077         { } /* end */
3078 };
3079 #endif
3080
3081 static int patch_vt1709_10ch(struct hda_codec *codec)
3082 {
3083         struct via_spec *spec;
3084         int err;
3085
3086         /* create a codec specific record */
3087         spec = via_new_spec(codec);
3088         if (spec == NULL)
3089                 return -ENOMEM;
3090
3091         err = vt1709_parse_auto_config(codec);
3092         if (err < 0) {
3093                 via_free(codec);
3094                 return err;
3095         } else if (!err) {
3096                 printk(KERN_INFO "hda_codec: Cannot set up configuration.  "
3097                        "Using genenic mode...\n");
3098         }
3099
3100         spec->init_verbs[spec->num_iverbs++] = vt1709_10ch_volume_init_verbs;
3101         spec->init_verbs[spec->num_iverbs++] = vt1709_uniwill_init_verbs;
3102
3103         spec->stream_name_analog = "VT1709 Analog";
3104         spec->stream_analog_playback = &vt1709_10ch_pcm_analog_playback;
3105         spec->stream_analog_capture = &vt1709_pcm_analog_capture;
3106
3107         spec->stream_name_digital = "VT1709 Digital";
3108         spec->stream_digital_playback = &vt1709_pcm_digital_playback;
3109         spec->stream_digital_capture = &vt1709_pcm_digital_capture;
3110
3111
3112         if (!spec->adc_nids && spec->input_mux) {
3113                 spec->adc_nids = vt1709_adc_nids;
3114                 spec->num_adc_nids = ARRAY_SIZE(vt1709_adc_nids);
3115                 get_mux_nids(codec);
3116                 spec->mixers[spec->num_mixers] = vt1709_capture_mixer;
3117                 spec->num_mixers++;
3118         }
3119
3120         codec->patch_ops = via_patch_ops;
3121
3122         codec->patch_ops.init = via_auto_init;
3123         codec->patch_ops.unsol_event = via_unsol_event;
3124 #ifdef CONFIG_SND_HDA_POWER_SAVE
3125         spec->loopback.amplist = vt1709_loopbacks;
3126 #endif
3127
3128         return 0;
3129 }
3130 /*
3131  * generic initialization of ADC, input mixers and output mixers
3132  */
3133 static struct hda_verb vt1709_6ch_volume_init_verbs[] = {
3134         /*
3135          * Unmute ADC0-2 and set the default input to mic-in
3136          */
3137         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3138         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3139         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3140
3141
3142         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
3143          * mixer widget
3144          */
3145         /* Amp Indices: AOW0=0, CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
3146         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3147         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3148         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
3149         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
3150         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
3151
3152         /*
3153          * Set up output selector (0x1a, 0x1b, 0x29)
3154          */
3155         /* set vol=0 to output mixers */
3156         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3157         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3158         {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3159
3160         /*
3161          *  Unmute PW3 and PW4
3162          */
3163         {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3164         {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3165
3166         /* Set input of PW4 as MW0 */
3167         {0x20, AC_VERB_SET_CONNECT_SEL, 0},
3168         /* PW9 Output enable */
3169         {0x24, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3170         { }
3171 };
3172
3173 static int patch_vt1709_6ch(struct hda_codec *codec)
3174 {
3175         struct via_spec *spec;
3176         int err;
3177
3178         /* create a codec specific record */
3179         spec = via_new_spec(codec);
3180         if (spec == NULL)
3181                 return -ENOMEM;
3182
3183         err = vt1709_parse_auto_config(codec);
3184         if (err < 0) {
3185                 via_free(codec);
3186                 return err;
3187         } else if (!err) {
3188                 printk(KERN_INFO "hda_codec: Cannot set up configuration.  "
3189                        "Using genenic mode...\n");
3190         }
3191
3192         spec->init_verbs[spec->num_iverbs++] = vt1709_6ch_volume_init_verbs;
3193         spec->init_verbs[spec->num_iverbs++] = vt1709_uniwill_init_verbs;
3194
3195         spec->stream_name_analog = "VT1709 Analog";
3196         spec->stream_analog_playback = &vt1709_6ch_pcm_analog_playback;
3197         spec->stream_analog_capture = &vt1709_pcm_analog_capture;
3198
3199         spec->stream_name_digital = "VT1709 Digital";
3200         spec->stream_digital_playback = &vt1709_pcm_digital_playback;
3201         spec->stream_digital_capture = &vt1709_pcm_digital_capture;
3202
3203
3204         if (!spec->adc_nids && spec->input_mux) {
3205                 spec->adc_nids = vt1709_adc_nids;
3206                 spec->num_adc_nids = ARRAY_SIZE(vt1709_adc_nids);
3207                 get_mux_nids(codec);
3208                 spec->mixers[spec->num_mixers] = vt1709_capture_mixer;
3209                 spec->num_mixers++;
3210         }
3211
3212         codec->patch_ops = via_patch_ops;
3213
3214         codec->patch_ops.init = via_auto_init;
3215         codec->patch_ops.unsol_event = via_unsol_event;
3216 #ifdef CONFIG_SND_HDA_POWER_SAVE
3217         spec->loopback.amplist = vt1709_loopbacks;
3218 #endif
3219         return 0;
3220 }
3221
3222 /* capture mixer elements */
3223 static struct snd_kcontrol_new vt1708B_capture_mixer[] = {
3224         HDA_CODEC_VOLUME("Capture Volume", 0x13, 0x0, HDA_INPUT),
3225         HDA_CODEC_MUTE("Capture Switch", 0x13, 0x0, HDA_INPUT),
3226         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x14, 0x0, HDA_INPUT),
3227         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x14, 0x0, HDA_INPUT),
3228         {
3229                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3230                 /* The multiple "Capture Source" controls confuse alsamixer
3231                  * So call somewhat different..
3232                  */
3233                 /* .name = "Capture Source", */
3234                 .name = "Input Source",
3235                 .count = 1,
3236                 .info = via_mux_enum_info,
3237                 .get = via_mux_enum_get,
3238                 .put = via_mux_enum_put,
3239         },
3240         { } /* end */
3241 };
3242 /*
3243  * generic initialization of ADC, input mixers and output mixers
3244  */
3245 static struct hda_verb vt1708B_8ch_volume_init_verbs[] = {
3246         /*
3247          * Unmute ADC0-1 and set the default input to mic-in
3248          */
3249         {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3250         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3251
3252
3253         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
3254          * mixer widget
3255          */
3256         /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
3257         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3258         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3259         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
3260         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
3261         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
3262
3263         /*
3264          * Set up output mixers
3265          */
3266         /* set vol=0 to output mixers */
3267         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3268         {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3269         {0x27, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3270
3271         /* Setup default input to PW4 */
3272         {0x1d, AC_VERB_SET_CONNECT_SEL, 0},
3273         /* PW9 Output enable */
3274         {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3275         /* PW10 Input enable */
3276         {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3277         { }
3278 };
3279
3280 static struct hda_verb vt1708B_4ch_volume_init_verbs[] = {
3281         /*
3282          * Unmute ADC0-1 and set the default input to mic-in
3283          */
3284         {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3285         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3286
3287
3288         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
3289          * mixer widget
3290          */
3291         /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
3292         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3293         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3294         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
3295         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
3296         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
3297
3298         /*
3299          * Set up output mixers
3300          */
3301         /* set vol=0 to output mixers */
3302         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3303         {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3304         {0x27, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3305
3306         /* Setup default input of PW4 to MW0 */
3307         {0x1d, AC_VERB_SET_CONNECT_SEL, 0x0},
3308         /* PW9 Output enable */
3309         {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3310         /* PW10 Input enable */
3311         {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3312         { }
3313 };
3314
3315 static struct hda_verb vt1708B_uniwill_init_verbs[] = {
3316         {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE,
3317          AC_USRSP_EN | VIA_HP_EVENT | VIA_JACK_EVENT},
3318         {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3319         {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3320         {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3321         {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3322         {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3323         {0x22, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3324         {0x23, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3325         { }
3326 };
3327
3328 static int via_pcm_open_close(struct hda_pcm_stream *hinfo,
3329                               struct hda_codec *codec,
3330                               struct snd_pcm_substream *substream)
3331 {
3332         int idle = substream->pstr->substream_opened == 1
3333                 && substream->ref_count == 0;
3334
3335         analog_low_current_mode(codec, idle);
3336         return 0;
3337 }
3338
3339 static struct hda_pcm_stream vt1708B_8ch_pcm_analog_playback = {
3340         .substreams = 2,
3341         .channels_min = 2,
3342         .channels_max = 8,
3343         .nid = 0x10, /* NID to query formats and rates */
3344         .ops = {
3345                 .open = via_playback_pcm_open,
3346                 .prepare = via_playback_multi_pcm_prepare,
3347                 .cleanup = via_playback_multi_pcm_cleanup,
3348                 .close = via_pcm_open_close
3349         },
3350 };
3351
3352 static struct hda_pcm_stream vt1708B_4ch_pcm_analog_playback = {
3353         .substreams = 2,
3354         .channels_min = 2,
3355         .channels_max = 4,
3356         .nid = 0x10, /* NID to query formats and rates */
3357         .ops = {
3358                 .open = via_playback_pcm_open,
3359                 .prepare = via_playback_multi_pcm_prepare,
3360                 .cleanup = via_playback_multi_pcm_cleanup
3361         },
3362 };
3363
3364 static struct hda_pcm_stream vt1708B_pcm_analog_capture = {
3365         .substreams = 2,
3366         .channels_min = 2,
3367         .channels_max = 2,
3368         .nid = 0x13, /* NID to query formats and rates */
3369         .ops = {
3370                 .open = via_pcm_open_close,
3371                 .prepare = via_capture_pcm_prepare,
3372                 .cleanup = via_capture_pcm_cleanup,
3373                 .close = via_pcm_open_close
3374         },
3375 };
3376
3377 static struct hda_pcm_stream vt1708B_pcm_digital_playback = {
3378         .substreams = 1,
3379         .channels_min = 2,
3380         .channels_max = 2,
3381         /* NID is set in via_build_pcms */
3382         .ops = {
3383                 .open = via_dig_playback_pcm_open,
3384                 .close = via_dig_playback_pcm_close,
3385                 .prepare = via_dig_playback_pcm_prepare,
3386                 .cleanup = via_dig_playback_pcm_cleanup
3387         },
3388 };
3389
3390 static struct hda_pcm_stream vt1708B_pcm_digital_capture = {
3391         .substreams = 1,
3392         .channels_min = 2,
3393         .channels_max = 2,
3394 };
3395
3396 /* fill in the dac_nids table from the parsed pin configuration */
3397 static int vt1708B_auto_fill_dac_nids(struct via_spec *spec,
3398                                      const struct auto_pin_cfg *cfg)
3399 {
3400         int i;
3401         hda_nid_t nid;
3402
3403         spec->multiout.num_dacs = cfg->line_outs;
3404
3405         spec->multiout.dac_nids = spec->private_dac_nids;
3406
3407         for (i = 0; i < 4; i++) {
3408                 nid = cfg->line_out_pins[i];
3409                 if (nid) {
3410                         /* config dac list */
3411                         switch (i) {
3412                         case AUTO_SEQ_FRONT:
3413                                 spec->multiout.dac_nids[i] = 0x10;
3414                                 break;
3415                         case AUTO_SEQ_CENLFE:
3416                                 spec->multiout.dac_nids[i] = 0x24;
3417                                 break;
3418                         case AUTO_SEQ_SURROUND:
3419                                 spec->multiout.dac_nids[i] = 0x11;
3420                                 break;
3421                         case AUTO_SEQ_SIDE:
3422                                 spec->multiout.dac_nids[i] = 0x25;
3423                                 break;
3424                         }
3425                 }
3426         }
3427
3428         return 0;
3429 }
3430
3431 /* add playback controls from the parsed DAC table */
3432 static int vt1708B_auto_create_multi_out_ctls(struct via_spec *spec,
3433                                              const struct auto_pin_cfg *cfg)
3434 {
3435         char name[32];
3436         static const char *chname[4] = { "Front", "Surround", "C/LFE", "Side" };
3437         hda_nid_t nid_vols[] = {0x16, 0x18, 0x26, 0x27};
3438         hda_nid_t nid, nid_vol = 0;
3439         int i, err;
3440
3441         for (i = 0; i <= AUTO_SEQ_SIDE; i++) {
3442                 nid = cfg->line_out_pins[i];
3443
3444                 if (!nid)
3445                         continue;
3446
3447                 nid_vol = nid_vols[i];
3448
3449                 if (i == AUTO_SEQ_CENLFE) {
3450                         /* Center/LFE */
3451                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
3452                                               "Center Playback Volume",
3453                                               HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0,
3454                                                                   HDA_OUTPUT));
3455                         if (err < 0)
3456                                 return err;
3457                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
3458                                               "LFE Playback Volume",
3459                                               HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0,
3460                                                                   HDA_OUTPUT));
3461                         if (err < 0)
3462                                 return err;
3463                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
3464                                               "Center Playback Switch",
3465                                               HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0,
3466                                                                   HDA_OUTPUT));
3467                         if (err < 0)
3468                                 return err;
3469                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
3470                                               "LFE Playback Switch",
3471                                               HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0,
3472                                                                   HDA_OUTPUT));
3473                         if (err < 0)
3474                                 return err;
3475                 } else if (i == AUTO_SEQ_FRONT) {
3476                         /* add control to mixer index 0 */
3477                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
3478                                               "Master Front Playback Volume",
3479                                               HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
3480                                                                   HDA_INPUT));
3481                         if (err < 0)
3482                                 return err;
3483                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
3484                                               "Master Front Playback Switch",
3485                                               HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
3486                                                                   HDA_INPUT));
3487                         if (err < 0)
3488                                 return err;
3489
3490                         /* add control to PW3 */
3491                         sprintf(name, "%s Playback Volume", chname[i]);
3492                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name,
3493                                               HDA_COMPOSE_AMP_VAL(nid, 3, 0,
3494                                                                   HDA_OUTPUT));
3495                         if (err < 0)
3496                                 return err;
3497                         sprintf(name, "%s Playback Switch", chname[i]);
3498                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name,
3499                                               HDA_COMPOSE_AMP_VAL(nid, 3, 0,
3500                                                                   HDA_OUTPUT));
3501                         if (err < 0)
3502                                 return err;
3503                 } else {
3504                         sprintf(name, "%s Playback Volume", chname[i]);
3505                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name,
3506                                               HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
3507                                                                   HDA_OUTPUT));
3508                         if (err < 0)
3509                                 return err;
3510                         sprintf(name, "%s Playback Switch", chname[i]);
3511                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name,
3512                                               HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
3513                                                                   HDA_OUTPUT));
3514                         if (err < 0)
3515                                 return err;
3516                 }
3517         }
3518
3519         return 0;
3520 }
3521
3522 static int vt1708B_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin)
3523 {
3524         int err;
3525
3526         if (!pin)
3527                 return 0;
3528
3529         spec->multiout.hp_nid = VT1708B_HP_NID; /* AOW3 */
3530         spec->hp_independent_mode_index = 1;
3531
3532         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
3533                               "Headphone Playback Volume",
3534                               HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3535         if (err < 0)
3536                 return err;
3537         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
3538                               "Headphone Playback Switch",
3539                               HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3540         if (err < 0)
3541                 return err;
3542
3543         create_hp_imux(spec);
3544
3545         return 0;
3546 }
3547
3548 /* create playback/capture controls for input pins */
3549 static int vt1708B_auto_create_analog_input_ctls(struct hda_codec *codec,
3550                                                 const struct auto_pin_cfg *cfg)
3551 {
3552         static hda_nid_t pin_idxs[] = { 0xff, 0x1f, 0x1a, 0x1b, 0x1e };
3553         return vt_auto_create_analog_input_ctls(codec, cfg, 0x16, pin_idxs,
3554                                                 ARRAY_SIZE(pin_idxs));
3555 }
3556
3557 static int vt1708B_parse_auto_config(struct hda_codec *codec)
3558 {
3559         struct via_spec *spec = codec->spec;
3560         int err;
3561
3562         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
3563         if (err < 0)
3564                 return err;
3565         err = vt1708B_auto_fill_dac_nids(spec, &spec->autocfg);
3566         if (err < 0)
3567                 return err;
3568         if (!spec->autocfg.line_outs && !spec->autocfg.hp_pins[0])
3569                 return 0; /* can't find valid BIOS pin config */
3570
3571         err = vt1708B_auto_create_multi_out_ctls(spec, &spec->autocfg);
3572         if (err < 0)
3573                 return err;
3574         err = vt1708B_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
3575         if (err < 0)
3576                 return err;
3577         err = vt1708B_auto_create_analog_input_ctls(codec, &spec->autocfg);
3578         if (err < 0)
3579                 return err;
3580
3581         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3582
3583         if (spec->autocfg.dig_outs)
3584                 spec->multiout.dig_out_nid = VT1708B_DIGOUT_NID;
3585         spec->dig_in_pin = VT1708B_DIGIN_PIN;
3586         if (spec->autocfg.dig_in_pin)
3587                 spec->dig_in_nid = VT1708B_DIGIN_NID;
3588
3589         if (spec->kctls.list)
3590                 spec->mixers[spec->num_mixers++] = spec->kctls.list;
3591
3592         spec->input_mux = &spec->private_imux[0];
3593
3594         if (spec->hp_mux)
3595                 via_hp_build(codec);
3596
3597         via_smart51_build(spec);
3598         return 1;
3599 }
3600
3601 #ifdef CONFIG_SND_HDA_POWER_SAVE
3602 static struct hda_amp_list vt1708B_loopbacks[] = {
3603         { 0x16, HDA_INPUT, 1 },
3604         { 0x16, HDA_INPUT, 2 },
3605         { 0x16, HDA_INPUT, 3 },
3606         { 0x16, HDA_INPUT, 4 },
3607         { } /* end */
3608 };
3609 #endif
3610 static int patch_vt1708S(struct hda_codec *codec);
3611 static int patch_vt1708B_8ch(struct hda_codec *codec)
3612 {
3613         struct via_spec *spec;
3614         int err;
3615
3616         if (get_codec_type(codec) == VT1708BCE)
3617                 return patch_vt1708S(codec);
3618         /* create a codec specific record */
3619         spec = via_new_spec(codec);
3620         if (spec == NULL)
3621                 return -ENOMEM;
3622
3623         /* automatic parse from the BIOS config */
3624         err = vt1708B_parse_auto_config(codec);
3625         if (err < 0) {
3626                 via_free(codec);
3627                 return err;
3628         } else if (!err) {
3629                 printk(KERN_INFO "hda_codec: Cannot set up configuration "
3630                        "from BIOS.  Using genenic mode...\n");
3631         }
3632
3633         spec->init_verbs[spec->num_iverbs++] = vt1708B_8ch_volume_init_verbs;
3634         spec->init_verbs[spec->num_iverbs++] = vt1708B_uniwill_init_verbs;
3635
3636         spec->stream_name_analog = "VT1708B Analog";
3637         spec->stream_analog_playback = &vt1708B_8ch_pcm_analog_playback;
3638         spec->stream_analog_capture = &vt1708B_pcm_analog_capture;
3639
3640         spec->stream_name_digital = "VT1708B Digital";
3641         spec->stream_digital_playback = &vt1708B_pcm_digital_playback;
3642         spec->stream_digital_capture = &vt1708B_pcm_digital_capture;
3643
3644         if (!spec->adc_nids && spec->input_mux) {
3645                 spec->adc_nids = vt1708B_adc_nids;
3646                 spec->num_adc_nids = ARRAY_SIZE(vt1708B_adc_nids);
3647                 get_mux_nids(codec);
3648                 spec->mixers[spec->num_mixers] = vt1708B_capture_mixer;
3649                 spec->num_mixers++;
3650         }
3651
3652         codec->patch_ops = via_patch_ops;
3653
3654         codec->patch_ops.init = via_auto_init;
3655         codec->patch_ops.unsol_event = via_unsol_event;
3656 #ifdef CONFIG_SND_HDA_POWER_SAVE
3657         spec->loopback.amplist = vt1708B_loopbacks;
3658 #endif
3659
3660         return 0;
3661 }
3662
3663 static int patch_vt1708B_4ch(struct hda_codec *codec)
3664 {
3665         struct via_spec *spec;
3666         int err;
3667
3668         /* create a codec specific record */
3669         spec = via_new_spec(codec);
3670         if (spec == NULL)
3671                 return -ENOMEM;
3672
3673         /* automatic parse from the BIOS config */
3674         err = vt1708B_parse_auto_config(codec);
3675         if (err < 0) {
3676                 via_free(codec);
3677                 return err;
3678         } else if (!err) {
3679                 printk(KERN_INFO "hda_codec: Cannot set up configuration "
3680                        "from BIOS.  Using genenic mode...\n");
3681         }
3682
3683         spec->init_verbs[spec->num_iverbs++] = vt1708B_4ch_volume_init_verbs;
3684         spec->init_verbs[spec->num_iverbs++] = vt1708B_uniwill_init_verbs;
3685
3686         spec->stream_name_analog = "VT1708B Analog";
3687         spec->stream_analog_playback = &vt1708B_4ch_pcm_analog_playback;
3688         spec->stream_analog_capture = &vt1708B_pcm_analog_capture;
3689
3690         spec->stream_name_digital = "VT1708B Digital";
3691         spec->stream_digital_playback = &vt1708B_pcm_digital_playback;
3692         spec->stream_digital_capture = &vt1708B_pcm_digital_capture;
3693
3694         if (!spec->adc_nids && spec->input_mux) {
3695                 spec->adc_nids = vt1708B_adc_nids;
3696                 spec->num_adc_nids = ARRAY_SIZE(vt1708B_adc_nids);
3697                 get_mux_nids(codec);
3698                 spec->mixers[spec->num_mixers] = vt1708B_capture_mixer;
3699                 spec->num_mixers++;
3700         }
3701
3702         codec->patch_ops = via_patch_ops;
3703
3704         codec->patch_ops.init = via_auto_init;
3705         codec->patch_ops.unsol_event = via_unsol_event;
3706 #ifdef CONFIG_SND_HDA_POWER_SAVE
3707         spec->loopback.amplist = vt1708B_loopbacks;
3708 #endif
3709
3710         return 0;
3711 }
3712
3713 /* Patch for VT1708S */
3714
3715 /* capture mixer elements */
3716 static struct snd_kcontrol_new vt1708S_capture_mixer[] = {
3717         HDA_CODEC_VOLUME("Capture Volume", 0x13, 0x0, HDA_INPUT),
3718         HDA_CODEC_MUTE("Capture Switch", 0x13, 0x0, HDA_INPUT),
3719         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x14, 0x0, HDA_INPUT),
3720         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x14, 0x0, HDA_INPUT),
3721         HDA_CODEC_VOLUME("Mic Boost Capture Volume", 0x1A, 0x0, HDA_INPUT),
3722         HDA_CODEC_VOLUME("Front Mic Boost Capture Volume", 0x1E, 0x0,
3723                          HDA_INPUT),
3724         {
3725                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3726                 /* The multiple "Capture Source" controls confuse alsamixer
3727                  * So call somewhat different..
3728                  */
3729                 /* .name = "Capture Source", */
3730                 .name = "Input Source",
3731                 .count = 1,
3732                 .info = via_mux_enum_info,
3733                 .get = via_mux_enum_get,
3734                 .put = via_mux_enum_put,
3735         },
3736         { } /* end */
3737 };
3738
3739 static struct hda_verb vt1708S_volume_init_verbs[] = {
3740         /* Unmute ADC0-1 and set the default input to mic-in */
3741         {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3742         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3743
3744         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the
3745          * analog-loopback mixer widget */
3746         /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
3747         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3748         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3749         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
3750         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
3751         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
3752
3753         /* Setup default input of PW4 to MW0 */
3754         {0x1d, AC_VERB_SET_CONNECT_SEL, 0x0},
3755         /* PW9, PW10  Output enable */
3756         {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3757         {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3758         /* Enable Mic Boost Volume backdoor */
3759         {0x1, 0xf98, 0x1},
3760         /* don't bybass mixer */
3761         {0x1, 0xf88, 0xc0},
3762         { }
3763 };
3764
3765 static struct hda_verb vt1708S_uniwill_init_verbs[] = {
3766         {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE,
3767          AC_USRSP_EN | VIA_HP_EVENT | VIA_JACK_EVENT},
3768         {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3769         {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3770         {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3771         {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3772         {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3773         {0x22, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3774         {0x23, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
3775         { }
3776 };
3777
3778 static struct hda_pcm_stream vt1708S_pcm_analog_playback = {
3779         .substreams = 2,
3780         .channels_min = 2,
3781         .channels_max = 8,
3782         .nid = 0x10, /* NID to query formats and rates */
3783         .ops = {
3784                 .open = via_playback_pcm_open,
3785                 .prepare = via_playback_multi_pcm_prepare,
3786                 .cleanup = via_playback_multi_pcm_cleanup,
3787                 .close = via_pcm_open_close
3788         },
3789 };
3790
3791 static struct hda_pcm_stream vt1708S_pcm_analog_capture = {
3792         .substreams = 2,
3793         .channels_min = 2,
3794         .channels_max = 2,
3795         .nid = 0x13, /* NID to query formats and rates */
3796         .ops = {
3797                 .open = via_pcm_open_close,
3798                 .prepare = via_capture_pcm_prepare,
3799                 .cleanup = via_capture_pcm_cleanup,
3800                 .close = via_pcm_open_close
3801         },
3802 };
3803
3804 static struct hda_pcm_stream vt1708S_pcm_digital_playback = {
3805         .substreams = 1,
3806         .channels_min = 2,
3807         .channels_max = 2,
3808         /* NID is set in via_build_pcms */
3809         .ops = {
3810                 .open = via_dig_playback_pcm_open,
3811                 .close = via_dig_playback_pcm_close,
3812                 .prepare = via_dig_playback_pcm_prepare,
3813                 .cleanup = via_dig_playback_pcm_cleanup
3814         },
3815 };
3816
3817 /* fill in the dac_nids table from the parsed pin configuration */
3818 static int vt1708S_auto_fill_dac_nids(struct via_spec *spec,
3819                                      const struct auto_pin_cfg *cfg)
3820 {
3821         int i;
3822         hda_nid_t nid;
3823
3824         spec->multiout.num_dacs = cfg->line_outs;
3825
3826         spec->multiout.dac_nids = spec->private_dac_nids;
3827
3828         for (i = 0; i < 4; i++) {
3829                 nid = cfg->line_out_pins[i];
3830                 if (nid) {
3831                         /* config dac list */
3832                         switch (i) {
3833                         case AUTO_SEQ_FRONT:
3834                                 spec->multiout.dac_nids[i] = 0x10;
3835                                 break;
3836                         case AUTO_SEQ_CENLFE:
3837                                 spec->multiout.dac_nids[i] = 0x24;
3838                                 break;
3839                         case AUTO_SEQ_SURROUND:
3840                                 spec->multiout.dac_nids[i] = 0x11;
3841                                 break;
3842                         case AUTO_SEQ_SIDE:
3843                                 spec->multiout.dac_nids[i] = 0x25;
3844                                 break;
3845                         }
3846                 }
3847         }
3848
3849         /* for Smart 5.1, line/mic inputs double as output pins */
3850         if (cfg->line_outs == 1) {
3851                 spec->multiout.num_dacs = 3;
3852                 spec->multiout.dac_nids[AUTO_SEQ_SURROUND] = 0x11;
3853                 spec->multiout.dac_nids[AUTO_SEQ_CENLFE] = 0x24;
3854         }
3855
3856         return 0;
3857 }
3858
3859 /* add playback controls from the parsed DAC table */
3860 static int vt1708S_auto_create_multi_out_ctls(struct via_spec *spec,
3861                                              const struct auto_pin_cfg *cfg)
3862 {
3863         char name[32];
3864         static const char *chname[4] = { "Front", "Surround", "C/LFE", "Side" };
3865         hda_nid_t nid_vols[] = {0x10, 0x11, 0x24, 0x25};
3866         hda_nid_t nid_mutes[] = {0x1C, 0x18, 0x26, 0x27};
3867         hda_nid_t nid, nid_vol, nid_mute;
3868         int i, err;
3869
3870         for (i = 0; i <= AUTO_SEQ_SIDE; i++) {
3871                 nid = cfg->line_out_pins[i];
3872
3873                 /* for Smart 5.1, there are always at least six channels */
3874                 if (!nid && i > AUTO_SEQ_CENLFE)
3875                         continue;
3876
3877                 nid_vol = nid_vols[i];
3878                 nid_mute = nid_mutes[i];
3879
3880                 if (i == AUTO_SEQ_CENLFE) {
3881                         /* Center/LFE */
3882                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
3883                                               "Center Playback Volume",
3884                                               HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0,
3885                                                                   HDA_OUTPUT));
3886                         if (err < 0)
3887                                 return err;
3888                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
3889                                               "LFE Playback Volume",
3890                                               HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0,
3891                                                                   HDA_OUTPUT));
3892                         if (err < 0)
3893                                 return err;
3894                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
3895                                               "Center Playback Switch",
3896                                               HDA_COMPOSE_AMP_VAL(nid_mute,
3897                                                                   1, 0,
3898                                                                   HDA_OUTPUT));
3899                         if (err < 0)
3900                                 return err;
3901                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
3902                                               "LFE Playback Switch",
3903                                               HDA_COMPOSE_AMP_VAL(nid_mute,
3904                                                                   2, 0,
3905                                                                   HDA_OUTPUT));
3906                         if (err < 0)
3907                                 return err;
3908                 } else if (i == AUTO_SEQ_FRONT) {
3909                         /* add control to mixer index 0 */
3910                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
3911                                               "Master Front Playback Volume",
3912                                               HDA_COMPOSE_AMP_VAL(0x16, 3, 0,
3913                                                                   HDA_INPUT));
3914                         if (err < 0)
3915                                 return err;
3916                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
3917                                               "Master Front Playback Switch",
3918                                               HDA_COMPOSE_AMP_VAL(0x16, 3, 0,
3919                                                                   HDA_INPUT));
3920                         if (err < 0)
3921                                 return err;
3922
3923                         /* Front */
3924                         sprintf(name, "%s Playback Volume", chname[i]);
3925                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name,
3926                                               HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
3927                                                                   HDA_OUTPUT));
3928                         if (err < 0)
3929                                 return err;
3930                         sprintf(name, "%s Playback Switch", chname[i]);
3931                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name,
3932                                               HDA_COMPOSE_AMP_VAL(nid_mute,
3933                                                                   3, 0,
3934                                                                   HDA_OUTPUT));
3935                         if (err < 0)
3936                                 return err;
3937                 } else {
3938                         sprintf(name, "%s Playback Volume", chname[i]);
3939                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name,
3940                                               HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0,
3941                                                                   HDA_OUTPUT));
3942                         if (err < 0)
3943                                 return err;
3944                         sprintf(name, "%s Playback Switch", chname[i]);
3945                         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name,
3946                                               HDA_COMPOSE_AMP_VAL(nid_mute,
3947                                                                   3, 0,
3948                                                                   HDA_OUTPUT));
3949                         if (err < 0)
3950                                 return err;
3951                 }
3952         }
3953
3954         return 0;
3955 }
3956
3957 static int vt1708S_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin)
3958 {
3959         int err;
3960
3961         if (!pin)
3962                 return 0;
3963
3964         spec->multiout.hp_nid = VT1708S_HP_NID; /* AOW3 */
3965         spec->hp_independent_mode_index = 1;
3966
3967         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
3968                               "Headphone Playback Volume",
3969                               HDA_COMPOSE_AMP_VAL(0x25, 3, 0, HDA_OUTPUT));
3970         if (err < 0)
3971                 return err;
3972
3973         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
3974                               "Headphone Playback Switch",
3975                               HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3976         if (err < 0)
3977                 return err;
3978
3979         create_hp_imux(spec);
3980
3981         return 0;
3982 }
3983
3984 /* create playback/capture controls for input pins */
3985 static int vt1708S_auto_create_analog_input_ctls(struct hda_codec *codec,
3986                                                 const struct auto_pin_cfg *cfg)
3987 {
3988         static hda_nid_t pin_idxs[] = { 0x1f, 0x1a, 0x1b, 0x1e, 0, 0xff };
3989         return vt_auto_create_analog_input_ctls(codec, cfg, 0x16, pin_idxs,
3990                                                 ARRAY_SIZE(pin_idxs));
3991 }
3992
3993 /* fill out digital output widgets; one for master and one for slave outputs */
3994 static void fill_dig_outs(struct hda_codec *codec)
3995 {
3996         struct via_spec *spec = codec->spec;
3997         int i;
3998
3999         for (i = 0; i < spec->autocfg.dig_outs; i++) {
4000                 hda_nid_t nid;
4001                 int conn;
4002
4003                 nid = spec->autocfg.dig_out_pins[i];
4004                 if (!nid)
4005                         continue;
4006                 conn = snd_hda_get_connections(codec, nid, &nid, 1);
4007                 if (conn < 1)
4008                         continue;
4009                 if (!spec->multiout.dig_out_nid)
4010                         spec->multiout.dig_out_nid = nid;
4011                 else {
4012                         spec->slave_dig_outs[0] = nid;
4013                         break; /* at most two dig outs */
4014                 }
4015         }
4016 }
4017
4018 static int vt1708S_parse_auto_config(struct hda_codec *codec)
4019 {
4020         struct via_spec *spec = codec->spec;
4021         int err;
4022
4023         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
4024         if (err < 0)
4025                 return err;
4026         err = vt1708S_auto_fill_dac_nids(spec, &spec->autocfg);
4027         if (err < 0)
4028                 return err;
4029         if (!spec->autocfg.line_outs && !spec->autocfg.hp_pins[0])
4030                 return 0; /* can't find valid BIOS pin config */
4031
4032         err = vt1708S_auto_create_multi_out_ctls(spec, &spec->autocfg);
4033         if (err < 0)
4034                 return err;
4035         err = vt1708S_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
4036         if (err < 0)
4037                 return err;
4038         err = vt1708S_auto_create_analog_input_ctls(codec, &spec->autocfg);
4039         if (err < 0)
4040                 return err;
4041
4042         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
4043
4044         fill_dig_outs(codec);
4045
4046         if (spec->kctls.list)
4047                 spec->mixers[spec->num_mixers++] = spec->kctls.list;
4048
4049         spec->input_mux = &spec->private_imux[0];
4050
4051         if (spec->hp_mux)
4052                 via_hp_build(codec);
4053
4054         via_smart51_build(spec);
4055         return 1;
4056 }
4057
4058 #ifdef CONFIG_SND_HDA_POWER_SAVE
4059 static struct hda_amp_list vt1708S_loopbacks[] = {
4060         { 0x16, HDA_INPUT, 1 },
4061         { 0x16, HDA_INPUT, 2 },
4062         { 0x16, HDA_INPUT, 3 },
4063         { 0x16, HDA_INPUT, 4 },
4064         { } /* end */
4065 };
4066 #endif
4067
4068 static void override_mic_boost(struct hda_codec *codec, hda_nid_t pin,
4069                                int offset, int num_steps, int step_size)
4070 {
4071         snd_hda_override_amp_caps(codec, pin, HDA_INPUT,
4072                                   (offset << AC_AMPCAP_OFFSET_SHIFT) |
4073                                   (num_steps << AC_AMPCAP_NUM_STEPS_SHIFT) |
4074                                   (step_size << AC_AMPCAP_STEP_SIZE_SHIFT) |
4075                                   (0 << AC_AMPCAP_MUTE_SHIFT));
4076 }
4077
4078 static int patch_vt1708S(struct hda_codec *codec)
4079 {
4080         struct via_spec *spec;
4081         int err;
4082
4083         /* create a codec specific record */
4084         spec = via_new_spec(codec);
4085         if (spec == NULL)
4086                 return -ENOMEM;
4087
4088         /* automatic parse from the BIOS config */
4089         err = vt1708S_parse_auto_config(codec);
4090         if (err < 0) {
4091                 via_free(codec);
4092                 return err;
4093         } else if (!err) {
4094                 printk(KERN_INFO "hda_codec: Cannot set up configuration "
4095                        "from BIOS.  Using genenic mode...\n");
4096         }
4097
4098         spec->init_verbs[spec->num_iverbs++] = vt1708S_volume_init_verbs;
4099         spec->init_verbs[spec->num_iverbs++] = vt1708S_uniwill_init_verbs;
4100
4101         if (codec->vendor_id == 0x11060440)
4102                 spec->stream_name_analog = "VT1818S Analog";
4103         else
4104                 spec->stream_name_analog = "VT1708S Analog";
4105         spec->stream_analog_playback = &vt1708S_pcm_analog_playback;
4106         spec->stream_analog_capture = &vt1708S_pcm_analog_capture;
4107
4108         if (codec->vendor_id == 0x11060440)
4109                 spec->stream_name_digital = "VT1818S Digital";
4110         else
4111                 spec->stream_name_digital = "VT1708S Digital";
4112         spec->stream_digital_playback = &vt1708S_pcm_digital_playback;
4113
4114         if (!spec->adc_nids && spec->input_mux) {
4115                 spec->adc_nids = vt1708S_adc_nids;
4116                 spec->num_adc_nids = ARRAY_SIZE(vt1708S_adc_nids);
4117                 get_mux_nids(codec);
4118                 override_mic_boost(codec, 0x1a, 0, 3, 40);
4119                 override_mic_boost(codec, 0x1e, 0, 3, 40);
4120                 spec->mixers[spec->num_mixers] = vt1708S_capture_mixer;
4121                 spec->num_mixers++;
4122         }
4123
4124         codec->patch_ops = via_patch_ops;
4125
4126         codec->patch_ops.init = via_auto_init;
4127         codec->patch_ops.unsol_event = via_unsol_event;
4128 #ifdef CONFIG_SND_HDA_POWER_SAVE
4129         spec->loopback.amplist = vt1708S_loopbacks;
4130 #endif
4131
4132         /* correct names for VT1708BCE */
4133         if (get_codec_type(codec) == VT1708BCE) {
4134                 kfree(codec->chip_name);
4135                 codec->chip_name = kstrdup("VT1708BCE", GFP_KERNEL);
4136                 snprintf(codec->bus->card->mixername,
4137                          sizeof(codec->bus->card->mixername),
4138                          "%s %s", codec->vendor_name, codec->chip_name);
4139                 spec->stream_name_analog = "VT1708BCE Analog";
4140                 spec->stream_name_digital = "VT1708BCE Digital";
4141         }
4142         return 0;
4143 }
4144
4145 /* Patch for VT1702 */
4146
4147 /* capture mixer elements */
4148 static struct snd_kcontrol_new vt1702_capture_mixer[] = {
4149         HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x0, HDA_INPUT),
4150         HDA_CODEC_MUTE("Capture Switch", 0x12, 0x0, HDA_INPUT),
4151         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x20, 0x0, HDA_INPUT),
4152         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x20, 0x0, HDA_INPUT),
4153         HDA_CODEC_VOLUME("Digital Mic Capture Volume", 0x1F, 0x0, HDA_INPUT),
4154         HDA_CODEC_MUTE("Digital Mic Capture Switch", 0x1F, 0x0, HDA_INPUT),
4155         HDA_CODEC_VOLUME("Digital Mic Boost Capture Volume", 0x1E, 0x0,
4156                          HDA_INPUT),
4157         {
4158                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4159                 /* The multiple "Capture Source" controls confuse alsamixer
4160                  * So call somewhat different..
4161                  */
4162                 /* .name = "Capture Source", */
4163                 .name = "Input Source",
4164                 .count = 1,
4165                 .info = via_mux_enum_info,
4166                 .get = via_mux_enum_get,
4167                 .put = via_mux_enum_put,
4168         },
4169         { } /* end */
4170 };
4171
4172 static struct hda_verb vt1702_volume_init_verbs[] = {
4173         /*
4174          * Unmute ADC0-1 and set the default input to mic-in
4175          */
4176         {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4177         {0x1F, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4178         {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4179
4180
4181         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4182          * mixer widget
4183          */
4184         /* Amp Indices: Mic1 = 1, Line = 1, Mic2 = 3 */
4185         {0x1A, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4186         {0x1A, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4187         {0x1A, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
4188         {0x1A, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
4189         {0x1A, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4190
4191         /* Setup default input of PW4 to MW0 */
4192         {0x17, AC_VERB_SET_CONNECT_SEL, 0x1},
4193         /* PW6 PW7 Output enable */
4194         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4195         {0x1C, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4196         /* mixer enable */
4197         {0x1, 0xF88, 0x3},
4198         /* GPIO 0~2 */
4199         {0x1, 0xF82, 0x3F},
4200         { }
4201 };
4202
4203 static struct hda_verb vt1702_uniwill_init_verbs[] = {
4204         {0x17, AC_VERB_SET_UNSOLICITED_ENABLE,
4205          AC_USRSP_EN | VIA_HP_EVENT | VIA_JACK_EVENT},
4206         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4207         {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4208         {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4209         {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4210         { }
4211 };
4212
4213 static struct hda_pcm_stream vt1702_pcm_analog_playback = {
4214         .substreams = 2,
4215         .channels_min = 2,
4216         .channels_max = 2,
4217         .nid = 0x10, /* NID to query formats and rates */
4218         .ops = {
4219                 .open = via_playback_pcm_open,
4220                 .prepare = via_playback_multi_pcm_prepare,
4221                 .cleanup = via_playback_multi_pcm_cleanup,
4222                 .close = via_pcm_open_close
4223         },
4224 };
4225
4226 static struct hda_pcm_stream vt1702_pcm_analog_capture = {
4227         .substreams = 3,
4228         .channels_min = 2,
4229         .channels_max = 2,
4230         .nid = 0x12, /* NID to query formats and rates */
4231         .ops = {
4232                 .open = via_pcm_open_close,
4233                 .prepare = via_capture_pcm_prepare,
4234                 .cleanup = via_capture_pcm_cleanup,
4235                 .close = via_pcm_open_close
4236         },
4237 };
4238
4239 static struct hda_pcm_stream vt1702_pcm_digital_playback = {
4240         .substreams = 2,
4241         .channels_min = 2,
4242         .channels_max = 2,
4243         /* NID is set in via_build_pcms */
4244         .ops = {
4245                 .open = via_dig_playback_pcm_open,
4246                 .close = via_dig_playback_pcm_close,
4247                 .prepare = via_dig_playback_pcm_prepare,
4248                 .cleanup = via_dig_playback_pcm_cleanup
4249         },
4250 };
4251
4252 /* fill in the dac_nids table from the parsed pin configuration */
4253 static int vt1702_auto_fill_dac_nids(struct via_spec *spec,
4254                                      const struct auto_pin_cfg *cfg)
4255 {
4256         spec->multiout.num_dacs = 1;
4257         spec->multiout.dac_nids = spec->private_dac_nids;
4258
4259         if (cfg->line_out_pins[0]) {
4260                 /* config dac list */
4261                 spec->multiout.dac_nids[0] = 0x10;
4262         }
4263
4264         return 0;
4265 }
4266
4267 /* add playback controls from the parsed DAC table */
4268 static int vt1702_auto_create_line_out_ctls(struct via_spec *spec,
4269                                              const struct auto_pin_cfg *cfg)
4270 {
4271         int err;
4272
4273         if (!cfg->line_out_pins[0])
4274                 return -1;
4275
4276         /* add control to mixer index 0 */
4277         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
4278                               "Master Front Playback Volume",
4279                               HDA_COMPOSE_AMP_VAL(0x1A, 3, 0, HDA_INPUT));
4280         if (err < 0)
4281                 return err;
4282         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
4283                               "Master Front Playback Switch",
4284                               HDA_COMPOSE_AMP_VAL(0x1A, 3, 0, HDA_INPUT));
4285         if (err < 0)
4286                 return err;
4287
4288         /* Front */
4289         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
4290                               "Front Playback Volume",
4291                               HDA_COMPOSE_AMP_VAL(0x10, 3, 0, HDA_OUTPUT));
4292         if (err < 0)
4293                 return err;
4294         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
4295                               "Front Playback Switch",
4296                               HDA_COMPOSE_AMP_VAL(0x16, 3, 0, HDA_OUTPUT));
4297         if (err < 0)
4298                 return err;
4299
4300         return 0;
4301 }
4302
4303 static int vt1702_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin)
4304 {
4305         int err, i;
4306         struct hda_input_mux *imux;
4307         static const char *texts[] = { "ON", "OFF", NULL};
4308         if (!pin)
4309                 return 0;
4310         spec->multiout.hp_nid = 0x1D;
4311         spec->hp_independent_mode_index = 0;
4312
4313         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
4314                               "Headphone Playback Volume",
4315                               HDA_COMPOSE_AMP_VAL(0x1D, 3, 0, HDA_OUTPUT));
4316         if (err < 0)
4317                 return err;
4318
4319         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
4320                               "Headphone Playback Switch",
4321                               HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
4322         if (err < 0)
4323                 return err;
4324
4325         imux = &spec->private_imux[1];
4326
4327         /* for hp mode select */
4328         for (i = 0; texts[i]; i++)
4329                 snd_hda_add_imux_item(imux, texts[i], i, NULL);
4330
4331         spec->hp_mux = &spec->private_imux[1];
4332         return 0;
4333 }
4334
4335 /* create playback/capture controls for input pins */
4336 static int vt1702_auto_create_analog_input_ctls(struct hda_codec *codec,
4337                                                 const struct auto_pin_cfg *cfg)
4338 {
4339         static hda_nid_t pin_idxs[] = { 0x14, 0x15, 0x18, 0xff };
4340         return vt_auto_create_analog_input_ctls(codec, cfg, 0x1a, pin_idxs,
4341                                                 ARRAY_SIZE(pin_idxs));
4342 }
4343
4344 static int vt1702_parse_auto_config(struct hda_codec *codec)
4345 {
4346         struct via_spec *spec = codec->spec;
4347         int err;
4348
4349         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
4350         if (err < 0)
4351                 return err;
4352         err = vt1702_auto_fill_dac_nids(spec, &spec->autocfg);
4353         if (err < 0)
4354                 return err;
4355         if (!spec->autocfg.line_outs && !spec->autocfg.hp_pins[0])
4356                 return 0; /* can't find valid BIOS pin config */
4357
4358         err = vt1702_auto_create_line_out_ctls(spec, &spec->autocfg);
4359         if (err < 0)
4360                 return err;
4361         err = vt1702_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
4362         if (err < 0)
4363                 return err;
4364         /* limit AA path volume to 0 dB */
4365         snd_hda_override_amp_caps(codec, 0x1A, HDA_INPUT,
4366                                   (0x17 << AC_AMPCAP_OFFSET_SHIFT) |
4367                                   (0x17 << AC_AMPCAP_NUM_STEPS_SHIFT) |
4368                                   (0x5 << AC_AMPCAP_STEP_SIZE_SHIFT) |
4369                                   (1 << AC_AMPCAP_MUTE_SHIFT));
4370         err = vt1702_auto_create_analog_input_ctls(codec, &spec->autocfg);
4371         if (err < 0)
4372                 return err;
4373
4374         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
4375
4376         fill_dig_outs(codec);
4377
4378         if (spec->kctls.list)
4379                 spec->mixers[spec->num_mixers++] = spec->kctls.list;
4380
4381         spec->input_mux = &spec->private_imux[0];
4382
4383         if (spec->hp_mux)
4384                 via_hp_build(codec);
4385
4386         return 1;
4387 }
4388
4389 #ifdef CONFIG_SND_HDA_POWER_SAVE
4390 static struct hda_amp_list vt1702_loopbacks[] = {
4391         { 0x1A, HDA_INPUT, 1 },
4392         { 0x1A, HDA_INPUT, 2 },
4393         { 0x1A, HDA_INPUT, 3 },
4394         { 0x1A, HDA_INPUT, 4 },
4395         { } /* end */
4396 };
4397 #endif
4398
4399 static int patch_vt1702(struct hda_codec *codec)
4400 {
4401         struct via_spec *spec;
4402         int err;
4403
4404         /* create a codec specific record */
4405         spec = via_new_spec(codec);
4406         if (spec == NULL)
4407                 return -ENOMEM;
4408
4409         /* automatic parse from the BIOS config */
4410         err = vt1702_parse_auto_config(codec);
4411         if (err < 0) {
4412                 via_free(codec);
4413                 return err;
4414         } else if (!err) {
4415                 printk(KERN_INFO "hda_codec: Cannot set up configuration "
4416                        "from BIOS.  Using genenic mode...\n");
4417         }
4418
4419         spec->init_verbs[spec->num_iverbs++] = vt1702_volume_init_verbs;
4420         spec->init_verbs[spec->num_iverbs++] = vt1702_uniwill_init_verbs;
4421
4422         spec->stream_name_analog = "VT1702 Analog";
4423         spec->stream_analog_playback = &vt1702_pcm_analog_playback;
4424         spec->stream_analog_capture = &vt1702_pcm_analog_capture;
4425
4426         spec->stream_name_digital = "VT1702 Digital";
4427         spec->stream_digital_playback = &vt1702_pcm_digital_playback;
4428
4429         if (!spec->adc_nids && spec->input_mux) {
4430                 spec->adc_nids = vt1702_adc_nids;
4431                 spec->num_adc_nids = ARRAY_SIZE(vt1702_adc_nids);
4432                 get_mux_nids(codec);
4433                 spec->mixers[spec->num_mixers] = vt1702_capture_mixer;
4434                 spec->num_mixers++;
4435         }
4436
4437         codec->patch_ops = via_patch_ops;
4438
4439         codec->patch_ops.init = via_auto_init;
4440         codec->patch_ops.unsol_event = via_unsol_event;
4441 #ifdef CONFIG_SND_HDA_POWER_SAVE
4442         spec->loopback.amplist = vt1702_loopbacks;
4443 #endif
4444
4445         return 0;
4446 }
4447
4448 /* Patch for VT1718S */
4449
4450 /* capture mixer elements */
4451 static struct snd_kcontrol_new vt1718S_capture_mixer[] = {
4452         HDA_CODEC_VOLUME("Capture Volume", 0x10, 0x0, HDA_INPUT),
4453         HDA_CODEC_MUTE("Capture Switch", 0x10, 0x0, HDA_INPUT),
4454         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x11, 0x0, HDA_INPUT),
4455         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x11, 0x0, HDA_INPUT),
4456         HDA_CODEC_VOLUME("Mic Boost Capture Volume", 0x2b, 0x0, HDA_INPUT),
4457         HDA_CODEC_VOLUME("Front Mic Boost Capture Volume", 0x29, 0x0,
4458                          HDA_INPUT),
4459         {
4460                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4461                 /* The multiple "Capture Source" controls confuse alsamixer
4462                  * So call somewhat different..
4463                  */
4464                 .name = "Input Source",
4465                 .count = 2,
4466                 .info = via_mux_enum_info,
4467                 .get = via_mux_enum_get,
4468                 .put = via_mux_enum_put,
4469         },
4470         { } /* end */
4471 };
4472
4473 static struct hda_verb vt1718S_volume_init_verbs[] = {
4474         /*
4475          * Unmute ADC0-1 and set the default input to mic-in
4476          */
4477         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4478         {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4479
4480
4481         /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4482          * mixer widget
4483          */
4484         /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
4485         {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4486         {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4487         {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4488         {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4489         {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
4490
4491         /* Setup default input of Front HP to MW9 */
4492         {0x28, AC_VERB_SET_CONNECT_SEL, 0x1},
4493         /* PW9 PW10 Output enable */
4494         {0x2d, AC_VERB_SET_PIN_WIDGET_CONTROL, AC_PINCTL_OUT_EN},
4495         {0x2e, AC_VERB_SET_PIN_WIDGET_CONTROL, AC_PINCTL_OUT_EN},
4496         /* PW11 Input enable */
4497         {0x2f, AC_VERB_SET_PIN_WIDGET_CONTROL, AC_PINCTL_IN_EN},
4498         /* Enable Boost Volume backdoor */
4499         {0x1, 0xf88, 0x8},
4500         /* MW0/1/2/3/4: un-mute index 0 (AOWx), mute index 1 (MW9) */
4501         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4502         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4503         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4504         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4505         {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4506         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4507         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4508         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4509         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4510         {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4511         /* set MUX1 = 2 (AOW4), MUX2 = 1 (AOW3) */
4512         {0x34, AC_VERB_SET_CONNECT_SEL, 0x2},
4513         {0x35, AC_VERB_SET_CONNECT_SEL, 0x1},
4514         /* Unmute MW4's index 0 */
4515         {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4516         { }
4517 };
4518
4519
4520 static struct hda_verb vt1718S_uniwill_init_verbs[] = {
4521         {0x28, AC_VERB_SET_UNSOLICITED_ENABLE,
4522          AC_USRSP_EN | VIA_HP_EVENT | VIA_JACK_EVENT},
4523         {0x24, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4524         {0x25, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4525         {0x26, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4526         {0x27, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4527         {0x29, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4528         {0x2a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4529         {0x2b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4530         { }
4531 };
4532
4533 static struct hda_pcm_stream vt1718S_pcm_analog_playback = {
4534         .substreams = 2,
4535         .channels_min = 2,
4536         .channels_max = 10,
4537         .nid = 0x8, /* NID to query formats and rates */
4538         .ops = {
4539                 .open = via_playback_pcm_open,
4540                 .prepare = via_playback_multi_pcm_prepare,
4541                 .cleanup = via_playback_multi_pcm_cleanup,
4542                 .close = via_pcm_open_close,
4543         },
4544 };
4545
4546 static struct hda_pcm_stream vt1718S_pcm_analog_capture = {
4547         .substreams = 2,
4548         .channels_min = 2,
4549         .channels_max = 2,
4550         .nid = 0x10, /* NID to query formats and rates */
4551         .ops = {
4552                 .open = via_pcm_open_close,
4553                 .prepare = via_capture_pcm_prepare,
4554                 .cleanup = via_capture_pcm_cleanup,
4555                 .close = via_pcm_open_close,
4556         },
4557 };
4558
4559 static struct hda_pcm_stream vt1718S_pcm_digital_playback = {
4560         .substreams = 2,
4561         .channels_min = 2,
4562         .channels_max = 2,
4563         /* NID is set in via_build_pcms */
4564         .ops = {
4565                 .open = via_dig_playback_pcm_open,
4566                 .close = via_dig_playback_pcm_close,
4567                 .prepare = via_dig_playback_pcm_prepare,
4568                 .cleanup = via_dig_playback_pcm_cleanup
4569         },
4570 };
4571
4572 static struct hda_pcm_stream vt1718S_pcm_digital_capture = {
4573         .substreams = 1,
4574         .channels_min = 2,
4575         .channels_max = 2,
4576 };
4577
4578 /* fill in the dac_nids table from the parsed pin configuration */
4579 static int vt1718S_auto_fill_dac_nids(struct via_spec *spec,
4580                                      const struct auto_pin_cfg *cfg)
4581 {
4582         int i;
4583         hda_nid_t nid;
4584
4585         spec->multiout.num_dacs = cfg->line_outs;
4586
4587         spec->multiout.dac_nids = spec->private_dac_nids;
4588
4589         for (i = 0; i < 4; i++) {
4590                 nid = cfg->line_out_pins[i];
4591                 if (nid) {
4592                         /* config dac list */
4593                         switch (i) {
4594                         case AUTO_SEQ_FRONT:
4595                                 spec->multiout.dac_nids[i] = 0x8;
4596                                 break;
4597                         case AUTO_SEQ_CENLFE:
4598                                 spec->multiout.dac_nids[i] = 0xa;
4599                                 break;
4600                         case AUTO_SEQ_SURROUND:
4601                                 spec->multiout.dac_nids[i] = 0x9;
4602                                 break;
4603                         case AUTO_SEQ_SIDE:
4604                                 spec->multiout.dac_nids[i] = 0xb;
4605                                 break;
4606                         }
4607                 }
4608         }
4609
4610         return 0;
4611 }
4612
4613 /* add playback controls from the parsed DAC table */
4614 static int vt1718S_auto_create_multi_out_ctls(struct via_spec *spec,
4615                                              const struct auto_pin_cfg *cfg)
4616 {
4617         char name[32];
4618         static const char *chname[4] = { "Front", "Surround", "C/LFE", "Side" };
4619         hda_nid_t nid_vols[] = {0x8, 0x9, 0xa, 0xb};
4620         hda_nid_t nid_mutes[] = {0x24, 0x25, 0x26, 0x27};
4621         hda_nid_t nid, nid_vol, nid_mute = 0;
4622         int i, err;
4623
4624         for (i = 0; i <= AUTO_SEQ_SIDE; i++) {
4625                 nid = cfg->line_out_pins[i];
4626
4627                 if (!nid)
4628                         continue;
4629                 nid_vol = nid_vols[i];
4630                 nid_mute = nid_mutes[i];
4631
4632                 if (i == AUTO_SEQ_CENLFE) {
4633                         /* Center/LFE */
4634                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
4635                                               "Center Playback Volume",
4636                                               HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0,
4637                                                                   HDA_OUTPUT));
4638                         if (err < 0)
4639                                 return err;
4640                         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
4641                                               "LFE Playback Volume",
4642                                               HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0,
4643                                                                   HDA_OUTPUT));
4644                         if (err < 0)
4645                                 return err;
4646                         err = via_add_control(
4647                                 spec, VIA_CTL_WIDGET_MUTE,
4648                                 "Center Playback Switch",
4649                                 HDA_COMPOSE_AMP_VAL(nid_mute, 1, 0,
4650                                                     HDA_OUTPUT));
4651                         if (err < 0)
4652                                 return err;
4653                         err = via_add_control(
4654                                 spec, VIA_CTL_WIDGET_MUTE,
4655                                 "LFE Playback Switch",
4656                                 HDA_COMPOSE_AMP_VAL(nid_mute, 2, 0,
4657                                                     HDA_OUTPUT));
4658                         if (err < 0)
4659                                 return err;
4660                 } else if (i == AUTO_SEQ_FRONT) {
4661                         /* Front */
4662                         sprintf(name, "%s Playback Volume", chname[i]);
4663                         err = via_add_control(
4664                                 spec, VIA_CTL_WIDGET_VOL, name,
4665                                 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT));
4666                         if (err < 0)
4667                                 return err;
4668                         sprintf(name, "%s Playback Switch", chname[i]);
4669                         err = via_add_control(
4670                                 spec, VIA_CTL_WIDGET_MUTE, name,
4671                                 HDA_COMPOSE_AMP_VAL(nid_mute, 3, 0,
4672                                                     HDA_OUTPUT));
4673                         if (err < 0)
4674                                 return err;
4675                 } else {
4676                         sprintf(name, "%s Playback Volume", chname[i]);
4677                         err = via_add_control(
4678                                 spec, VIA_CTL_WIDGET_VOL, name,
4679                                 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT));
4680                         if (err < 0)
4681                                 return err;
4682                         sprintf(name, "%s Playback Switch", chname[i]);
4683                         err = via_add_control(
4684                                 spec, VIA_CTL_WIDGET_MUTE, name,
4685                                 HDA_COMPOSE_AMP_VAL(nid_mute, 3, 0,
4686                                                     HDA_OUTPUT));
4687                         if (err < 0)
4688                                 return err;
4689                 }
4690         }
4691         return 0;
4692 }
4693
4694 static int vt1718S_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin)
4695 {
4696         int err;
4697
4698         if (!pin)
4699                 return 0;
4700
4701         spec->multiout.hp_nid = 0xc; /* AOW4 */
4702         spec->hp_independent_mode_index = 1;
4703
4704         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
4705                               "Headphone Playback Volume",
4706                               HDA_COMPOSE_AMP_VAL(0xc, 3, 0, HDA_OUTPUT));
4707         if (err < 0)
4708                 return err;
4709
4710         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
4711                               "Headphone Playback Switch",
4712                               HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
4713         if (err < 0)
4714                 return err;
4715
4716         create_hp_imux(spec);
4717         return 0;
4718 }
4719
4720 /* create playback/capture controls for input pins */
4721 static int vt1718S_auto_create_analog_input_ctls(struct hda_codec *codec,
4722                                                 const struct auto_pin_cfg *cfg)
4723 {
4724         static hda_nid_t pin_idxs[] = { 0x2c, 0x2b, 0x2a, 0x29, 0, 0xff };
4725         return vt_auto_create_analog_input_ctls(codec, cfg, 0x21, pin_idxs,
4726                                                 ARRAY_SIZE(pin_idxs));
4727 }
4728
4729 static int vt1718S_parse_auto_config(struct hda_codec *codec)
4730 {
4731         struct via_spec *spec = codec->spec;
4732         int err;
4733
4734         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
4735
4736         if (err < 0)
4737                 return err;
4738         err = vt1718S_auto_fill_dac_nids(spec, &spec->autocfg);
4739         if (err < 0)
4740                 return err;
4741         if (!spec->autocfg.line_outs && !spec->autocfg.hp_pins[0])
4742                 return 0; /* can't find valid BIOS pin config */
4743
4744         err = vt1718S_auto_create_multi_out_ctls(spec, &spec->autocfg);
4745         if (err < 0)
4746                 return err;
4747         err = vt1718S_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
4748         if (err < 0)
4749                 return err;
4750         err = vt1718S_auto_create_analog_input_ctls(codec, &spec->autocfg);
4751         if (err < 0)
4752                 return err;
4753
4754         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
4755
4756         fill_dig_outs(codec);
4757
4758         if (spec->autocfg.dig_in_pin && codec->vendor_id == 0x11060428)
4759                 spec->dig_in_nid = 0x13;
4760
4761         if (spec->kctls.list)
4762                 spec->mixers[spec->num_mixers++] = spec->kctls.list;
4763
4764         spec->input_mux = &spec->private_imux[0];
4765
4766         if (spec->hp_mux)
4767                 via_hp_build(codec);
4768
4769         via_smart51_build(spec);
4770
4771         return 1;
4772 }
4773
4774 #ifdef CONFIG_SND_HDA_POWER_SAVE
4775 static struct hda_amp_list vt1718S_loopbacks[] = {
4776         { 0x21, HDA_INPUT, 1 },
4777         { 0x21, HDA_INPUT, 2 },
4778         { 0x21, HDA_INPUT, 3 },
4779         { 0x21, HDA_INPUT, 4 },
4780         { } /* end */
4781 };
4782 #endif
4783
4784 static int patch_vt1718S(struct hda_codec *codec)
4785 {
4786         struct via_spec *spec;
4787         int err;
4788
4789         /* create a codec specific record */
4790         spec = via_new_spec(codec);
4791         if (spec == NULL)
4792                 return -ENOMEM;
4793
4794         /* automatic parse from the BIOS config */
4795         err = vt1718S_parse_auto_config(codec);
4796         if (err < 0) {
4797                 via_free(codec);
4798                 return err;
4799         } else if (!err) {
4800                 printk(KERN_INFO "hda_codec: Cannot set up configuration "
4801                        "from BIOS.  Using genenic mode...\n");
4802         }
4803
4804         spec->init_verbs[spec->num_iverbs++] = vt1718S_volume_init_verbs;
4805         spec->init_verbs[spec->num_iverbs++] = vt1718S_uniwill_init_verbs;
4806
4807         if (codec->vendor_id == 0x11060441)
4808                 spec->stream_name_analog = "VT2020 Analog";
4809         else if (codec->vendor_id == 0x11064441)
4810                 spec->stream_name_analog = "VT1828S Analog";
4811         else
4812                 spec->stream_name_analog = "VT1718S Analog";
4813         spec->stream_analog_playback = &vt1718S_pcm_analog_playback;
4814         spec->stream_analog_capture = &vt1718S_pcm_analog_capture;
4815
4816         if (codec->vendor_id == 0x11060441)
4817                 spec->stream_name_digital = "VT2020 Digital";
4818         else if (codec->vendor_id == 0x11064441)
4819                 spec->stream_name_digital = "VT1828S Digital";
4820         else
4821                 spec->stream_name_digital = "VT1718S Digital";
4822         spec->stream_digital_playback = &vt1718S_pcm_digital_playback;
4823         if (codec->vendor_id == 0x11060428 || codec->vendor_id == 0x11060441)
4824                 spec->stream_digital_capture = &vt1718S_pcm_digital_capture;
4825
4826         if (!spec->adc_nids && spec->input_mux) {
4827                 spec->adc_nids = vt1718S_adc_nids;
4828                 spec->num_adc_nids = ARRAY_SIZE(vt1718S_adc_nids);
4829                 get_mux_nids(codec);
4830                 override_mic_boost(codec, 0x2b, 0, 3, 40);
4831                 override_mic_boost(codec, 0x29, 0, 3, 40);
4832                 spec->mixers[spec->num_mixers] = vt1718S_capture_mixer;
4833                 spec->num_mixers++;
4834         }
4835
4836         codec->patch_ops = via_patch_ops;
4837
4838         codec->patch_ops.init = via_auto_init;
4839         codec->patch_ops.unsol_event = via_unsol_event;
4840
4841 #ifdef CONFIG_SND_HDA_POWER_SAVE
4842         spec->loopback.amplist = vt1718S_loopbacks;
4843 #endif
4844
4845         return 0;
4846 }
4847
4848 /* Patch for VT1716S */
4849
4850 static int vt1716s_dmic_info(struct snd_kcontrol *kcontrol,
4851                             struct snd_ctl_elem_info *uinfo)
4852 {
4853         uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
4854         uinfo->count = 1;
4855         uinfo->value.integer.min = 0;
4856         uinfo->value.integer.max = 1;
4857         return 0;
4858 }
4859
4860 static int vt1716s_dmic_get(struct snd_kcontrol *kcontrol,
4861                            struct snd_ctl_elem_value *ucontrol)
4862 {
4863         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4864         int index = 0;
4865
4866         index = snd_hda_codec_read(codec, 0x26, 0,
4867                                                AC_VERB_GET_CONNECT_SEL, 0);
4868         if (index != -1)
4869                 *ucontrol->value.integer.value = index;
4870
4871         return 0;
4872 }
4873
4874 static int vt1716s_dmic_put(struct snd_kcontrol *kcontrol,
4875                            struct snd_ctl_elem_value *ucontrol)
4876 {
4877         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4878         struct via_spec *spec = codec->spec;
4879         int index = *ucontrol->value.integer.value;
4880
4881         snd_hda_codec_write(codec, 0x26, 0,
4882                                                AC_VERB_SET_CONNECT_SEL, index);
4883         spec->dmic_enabled = index;
4884         set_jack_power_state(codec);
4885
4886         return 1;
4887 }
4888
4889 /* capture mixer elements */
4890 static struct snd_kcontrol_new vt1716S_capture_mixer[] = {
4891         HDA_CODEC_VOLUME("Capture Volume", 0x13, 0x0, HDA_INPUT),
4892         HDA_CODEC_MUTE("Capture Switch", 0x13, 0x0, HDA_INPUT),
4893         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x14, 0x0, HDA_INPUT),
4894         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x14, 0x0, HDA_INPUT),
4895         HDA_CODEC_VOLUME("Mic Boost Capture Volume", 0x1A, 0x0, HDA_INPUT),
4896         HDA_CODEC_VOLUME("Front Mic Boost Capture Volume", 0x1E, 0x0,
4897                          HDA_INPUT),
4898         {
4899                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4900                 .name = "Input Source",
4901                 .count = 1,
4902                 .info = via_mux_enum_info,
4903                 .get = via_mux_enum_get,
4904                 .put = via_mux_enum_put,
4905         },
4906         { } /* end */
4907 };
4908
4909 static struct snd_kcontrol_new vt1716s_dmic_mixer[] = {
4910         HDA_CODEC_VOLUME("Digital Mic Capture Volume", 0x22, 0x0, HDA_INPUT),
4911         {
4912          .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4913          .name = "Digital Mic Capture Switch",
4914          .subdevice = HDA_SUBDEV_NID_FLAG | 0x26,
4915          .count = 1,
4916          .info = vt1716s_dmic_info,
4917          .get = vt1716s_dmic_get,
4918          .put = vt1716s_dmic_put,
4919          },
4920         {}                      /* end */
4921 };
4922
4923
4924 /* mono-out mixer elements */
4925 static struct snd_kcontrol_new vt1716S_mono_out_mixer[] = {
4926         HDA_CODEC_MUTE("Mono Playback Switch", 0x2a, 0x0, HDA_OUTPUT),
4927         { } /* end */
4928 };
4929
4930 static struct hda_verb vt1716S_volume_init_verbs[] = {
4931         /*
4932          * Unmute ADC0-1 and set the default input to mic-in
4933          */
4934         {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4935         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4936
4937
4938         /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4939          * mixer widget
4940          */
4941         /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
4942         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4943         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4944         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4945         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4946         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4947
4948         /* MUX Indices: Stereo Mixer = 5 */
4949         {0x17, AC_VERB_SET_CONNECT_SEL, 0x5},
4950
4951         /* Setup default input of PW4 to MW0 */
4952         {0x1d, AC_VERB_SET_CONNECT_SEL, 0x0},
4953
4954         /* Setup default input of SW1 as MW0 */
4955         {0x18, AC_VERB_SET_CONNECT_SEL, 0x1},
4956
4957         /* Setup default input of SW4 as AOW0 */
4958         {0x28, AC_VERB_SET_CONNECT_SEL, 0x1},
4959
4960         /* PW9 PW10 Output enable */
4961         {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4962         {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4963
4964         /* Unmute SW1, PW12 */
4965         {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4966         {0x2a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4967         /* PW12 Output enable */
4968         {0x2a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4969         /* Enable Boost Volume backdoor */
4970         {0x1, 0xf8a, 0x80},
4971         /* don't bybass mixer */
4972         {0x1, 0xf88, 0xc0},
4973         /* Enable mono output */
4974         {0x1, 0xf90, 0x08},
4975         { }
4976 };
4977
4978
4979 static struct hda_verb vt1716S_uniwill_init_verbs[] = {
4980         {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE,
4981          AC_USRSP_EN | VIA_HP_EVENT | VIA_JACK_EVENT},
4982         {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4983         {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4984         {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4985         {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE,
4986          AC_USRSP_EN | VIA_MONO_EVENT | VIA_JACK_EVENT},
4987         {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4988         {0x23, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
4989         { }
4990 };
4991
4992 static struct hda_pcm_stream vt1716S_pcm_analog_playback = {
4993         .substreams = 2,
4994         .channels_min = 2,
4995         .channels_max = 6,
4996         .nid = 0x10, /* NID to query formats and rates */
4997         .ops = {
4998                 .open = via_playback_pcm_open,
4999                 .prepare = via_playback_multi_pcm_prepare,
5000                 .cleanup = via_playback_multi_pcm_cleanup,
5001                 .close = via_pcm_open_close,
5002         },
5003 };
5004
5005 static struct hda_pcm_stream vt1716S_pcm_analog_capture = {
5006         .substreams = 2,
5007         .channels_min = 2,
5008         .channels_max = 2,
5009         .nid = 0x13, /* NID to query formats and rates */
5010         .ops = {
5011                 .open = via_pcm_open_close,
5012                 .prepare = via_capture_pcm_prepare,
5013                 .cleanup = via_capture_pcm_cleanup,
5014                 .close = via_pcm_open_close,
5015         },
5016 };
5017
5018 static struct hda_pcm_stream vt1716S_pcm_digital_playback = {
5019         .substreams = 2,
5020         .channels_min = 2,
5021         .channels_max = 2,
5022         /* NID is set in via_build_pcms */
5023         .ops = {
5024                 .open = via_dig_playback_pcm_open,
5025                 .close = via_dig_playback_pcm_close,
5026                 .prepare = via_dig_playback_pcm_prepare,
5027                 .cleanup = via_dig_playback_pcm_cleanup
5028         },
5029 };
5030
5031 /* fill in the dac_nids table from the parsed pin configuration */
5032 static int vt1716S_auto_fill_dac_nids(struct via_spec *spec,
5033                                       const struct auto_pin_cfg *cfg)
5034 {       int i;
5035         hda_nid_t nid;
5036
5037         spec->multiout.num_dacs = cfg->line_outs;
5038
5039         spec->multiout.dac_nids = spec->private_dac_nids;
5040
5041         for (i = 0; i < 3; i++) {
5042                 nid = cfg->line_out_pins[i];
5043                 if (nid) {
5044                         /* config dac list */
5045                         switch (i) {
5046                         case AUTO_SEQ_FRONT:
5047                                 spec->multiout.dac_nids[i] = 0x10;
5048                                 break;
5049                         case AUTO_SEQ_CENLFE:
5050                                 spec->multiout.dac_nids[i] = 0x25;
5051                                 break;
5052                         case AUTO_SEQ_SURROUND:
5053                                 spec->multiout.dac_nids[i] = 0x11;
5054                                 break;
5055                         }
5056                 }
5057         }
5058
5059         return 0;
5060 }
5061
5062 /* add playback controls from the parsed DAC table */
5063 static int vt1716S_auto_create_multi_out_ctls(struct via_spec *spec,
5064                                               const struct auto_pin_cfg *cfg)
5065 {
5066         char name[32];
5067         static const char *chname[3] = { "Front", "Surround", "C/LFE" };
5068         hda_nid_t nid_vols[] = {0x10, 0x11, 0x25};
5069         hda_nid_t nid_mutes[] = {0x1C, 0x18, 0x27};
5070         hda_nid_t nid, nid_vol, nid_mute;
5071         int i, err;
5072
5073         for (i = 0; i <= AUTO_SEQ_CENLFE; i++) {
5074                 nid = cfg->line_out_pins[i];
5075
5076                 if (!nid)
5077                         continue;
5078
5079                 nid_vol = nid_vols[i];
5080                 nid_mute = nid_mutes[i];
5081
5082                 if (i == AUTO_SEQ_CENLFE) {
5083                         err = via_add_control(
5084                                 spec, VIA_CTL_WIDGET_VOL,
5085                                 "Center Playback Volume",
5086                                 HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0, HDA_OUTPUT));
5087                         if (err < 0)
5088                                 return err;
5089                         err = via_add_control(
5090                                 spec, VIA_CTL_WIDGET_VOL,
5091                                 "LFE Playback Volume",
5092                                 HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0, HDA_OUTPUT));
5093                         if (err < 0)
5094                                 return err;
5095                         err = via_add_control(
5096                                 spec, VIA_CTL_WIDGET_MUTE,
5097                                 "Center Playback Switch",
5098                                 HDA_COMPOSE_AMP_VAL(nid_mute, 1, 0,
5099                                                     HDA_OUTPUT));
5100                         if (err < 0)
5101                                 return err;
5102                         err = via_add_control(
5103                                 spec, VIA_CTL_WIDGET_MUTE,
5104                                 "LFE Playback Switch",
5105                                 HDA_COMPOSE_AMP_VAL(nid_mute, 2, 0,
5106                                                     HDA_OUTPUT));
5107                         if (err < 0)
5108                                 return err;
5109                 } else if (i == AUTO_SEQ_FRONT) {
5110
5111                         err = via_add_control(
5112                                 spec, VIA_CTL_WIDGET_VOL,
5113                                 "Master Front Playback Volume",
5114                                 HDA_COMPOSE_AMP_VAL(0x16, 3, 0, HDA_INPUT));
5115                         if (err < 0)
5116                                 return err;
5117                         err = via_add_control(
5118                                 spec, VIA_CTL_WIDGET_MUTE,
5119                                 "Master Front Playback Switch",
5120                                 HDA_COMPOSE_AMP_VAL(0x16, 3, 0, HDA_INPUT));
5121                         if (err < 0)
5122                                 return err;
5123
5124                         sprintf(name, "%s Playback Volume", chname[i]);
5125                         err = via_add_control(
5126                                 spec, VIA_CTL_WIDGET_VOL, name,
5127                                 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT));
5128                         if (err < 0)
5129                                 return err;
5130                         sprintf(name, "%s Playback Switch", chname[i]);
5131                         err = via_add_control(
5132                                 spec, VIA_CTL_WIDGET_MUTE, name,
5133                                 HDA_COMPOSE_AMP_VAL(nid_mute, 3, 0,
5134                                                     HDA_OUTPUT));
5135                         if (err < 0)
5136                                 return err;
5137                 } else {
5138                         sprintf(name, "%s Playback Volume", chname[i]);
5139                         err = via_add_control(
5140                                 spec, VIA_CTL_WIDGET_VOL, name,
5141                                 HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT));
5142                         if (err < 0)
5143                                 return err;
5144                         sprintf(name, "%s Playback Switch", chname[i]);
5145                         err = via_add_control(
5146                                 spec, VIA_CTL_WIDGET_MUTE, name,
5147                                 HDA_COMPOSE_AMP_VAL(nid_mute, 3, 0,
5148                                                     HDA_OUTPUT));
5149                         if (err < 0)
5150                                 return err;
5151                 }
5152         }
5153         return 0;
5154 }
5155
5156 static int vt1716S_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin)
5157 {
5158         int err;
5159
5160         if (!pin)
5161                 return 0;
5162
5163         spec->multiout.hp_nid = 0x25; /* AOW3 */
5164         spec->hp_independent_mode_index = 1;
5165
5166         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
5167                               "Headphone Playback Volume",
5168                               HDA_COMPOSE_AMP_VAL(0x25, 3, 0, HDA_OUTPUT));
5169         if (err < 0)
5170                 return err;
5171
5172         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
5173                               "Headphone Playback Switch",
5174                               HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
5175         if (err < 0)
5176                 return err;
5177
5178         create_hp_imux(spec);
5179         return 0;
5180 }
5181
5182 /* create playback/capture controls for input pins */
5183 static int vt1716S_auto_create_analog_input_ctls(struct hda_codec *codec,
5184                                                 const struct auto_pin_cfg *cfg)
5185 {
5186         static hda_nid_t pin_idxs[] = { 0x1f, 0x1a, 0x1b, 0x1e, 0, 0xff };
5187         return vt_auto_create_analog_input_ctls(codec, cfg, 0x16, pin_idxs,
5188                                                 ARRAY_SIZE(pin_idxs));
5189 }
5190
5191 static int vt1716S_parse_auto_config(struct hda_codec *codec)
5192 {
5193         struct via_spec *spec = codec->spec;
5194         int err;
5195
5196         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
5197         if (err < 0)
5198                 return err;
5199         err = vt1716S_auto_fill_dac_nids(spec, &spec->autocfg);
5200         if (err < 0)
5201                 return err;
5202         if (!spec->autocfg.line_outs && !spec->autocfg.hp_pins[0])
5203                 return 0; /* can't find valid BIOS pin config */
5204
5205         err = vt1716S_auto_create_multi_out_ctls(spec, &spec->autocfg);
5206         if (err < 0)
5207                 return err;
5208         err = vt1716S_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
5209         if (err < 0)
5210                 return err;
5211         err = vt1716S_auto_create_analog_input_ctls(codec, &spec->autocfg);
5212         if (err < 0)
5213                 return err;
5214
5215         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
5216
5217         fill_dig_outs(codec);
5218
5219         if (spec->kctls.list)
5220                 spec->mixers[spec->num_mixers++] = spec->kctls.list;
5221
5222         spec->input_mux = &spec->private_imux[0];
5223
5224         if (spec->hp_mux)
5225                 via_hp_build(codec);
5226
5227         via_smart51_build(spec);
5228
5229         return 1;
5230 }
5231
5232 #ifdef CONFIG_SND_HDA_POWER_SAVE
5233 static struct hda_amp_list vt1716S_loopbacks[] = {
5234         { 0x16, HDA_INPUT, 1 },
5235         { 0x16, HDA_INPUT, 2 },
5236         { 0x16, HDA_INPUT, 3 },
5237         { 0x16, HDA_INPUT, 4 },
5238         { } /* end */
5239 };
5240 #endif
5241
5242 static int patch_vt1716S(struct hda_codec *codec)
5243 {
5244         struct via_spec *spec;
5245         int err;
5246
5247         /* create a codec specific record */
5248         spec = via_new_spec(codec);
5249         if (spec == NULL)
5250                 return -ENOMEM;
5251
5252         /* automatic parse from the BIOS config */
5253         err = vt1716S_parse_auto_config(codec);
5254         if (err < 0) {
5255                 via_free(codec);
5256                 return err;
5257         } else if (!err) {
5258                 printk(KERN_INFO "hda_codec: Cannot set up configuration "
5259                        "from BIOS.  Using genenic mode...\n");
5260         }
5261
5262         spec->init_verbs[spec->num_iverbs++]  = vt1716S_volume_init_verbs;
5263         spec->init_verbs[spec->num_iverbs++] = vt1716S_uniwill_init_verbs;
5264
5265         spec->stream_name_analog = "VT1716S Analog";
5266         spec->stream_analog_playback = &vt1716S_pcm_analog_playback;
5267         spec->stream_analog_capture = &vt1716S_pcm_analog_capture;
5268
5269         spec->stream_name_digital = "VT1716S Digital";
5270         spec->stream_digital_playback = &vt1716S_pcm_digital_playback;
5271
5272         if (!spec->adc_nids && spec->input_mux) {
5273                 spec->adc_nids = vt1716S_adc_nids;
5274                 spec->num_adc_nids = ARRAY_SIZE(vt1716S_adc_nids);
5275                 get_mux_nids(codec);
5276                 override_mic_boost(codec, 0x1a, 0, 3, 40);
5277                 override_mic_boost(codec, 0x1e, 0, 3, 40);
5278                 spec->mixers[spec->num_mixers] = vt1716S_capture_mixer;
5279                 spec->num_mixers++;
5280         }
5281
5282         spec->mixers[spec->num_mixers] = vt1716s_dmic_mixer;
5283         spec->num_mixers++;
5284
5285         spec->mixers[spec->num_mixers++] = vt1716S_mono_out_mixer;
5286
5287         codec->patch_ops = via_patch_ops;
5288
5289         codec->patch_ops.init = via_auto_init;
5290         codec->patch_ops.unsol_event = via_unsol_event;
5291
5292 #ifdef CONFIG_SND_HDA_POWER_SAVE
5293         spec->loopback.amplist = vt1716S_loopbacks;
5294 #endif
5295
5296         return 0;
5297 }
5298
5299 /* for vt2002P */
5300
5301 /* capture mixer elements */
5302 static struct snd_kcontrol_new vt2002P_capture_mixer[] = {
5303         HDA_CODEC_VOLUME("Capture Volume", 0x10, 0x0, HDA_INPUT),
5304         HDA_CODEC_MUTE("Capture Switch", 0x10, 0x0, HDA_INPUT),
5305         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x11, 0x0, HDA_INPUT),
5306         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x11, 0x0, HDA_INPUT),
5307         HDA_CODEC_VOLUME("Mic Boost Capture Volume", 0x2b, 0x0, HDA_INPUT),
5308         HDA_CODEC_VOLUME("Front Mic Boost Capture Volume", 0x29, 0x0,
5309                          HDA_INPUT),
5310         {
5311                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5312                 /* The multiple "Capture Source" controls confuse alsamixer
5313                  * So call somewhat different..
5314                  */
5315                 /* .name = "Capture Source", */
5316                 .name = "Input Source",
5317                 .count = 2,
5318                 .info = via_mux_enum_info,
5319                 .get = via_mux_enum_get,
5320                 .put = via_mux_enum_put,
5321         },
5322         { } /* end */
5323 };
5324
5325 static struct hda_verb vt2002P_volume_init_verbs[] = {
5326         /*
5327          * Unmute ADC0-1 and set the default input to mic-in
5328          */
5329         {0x8, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5330         {0x9, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5331
5332
5333         /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
5334          * mixer widget
5335          */
5336         /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
5337         {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5338         {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5339         {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5340         {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5341         {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5342
5343         /* MUX Indices: Mic = 0 */
5344         {0x1e, AC_VERB_SET_CONNECT_SEL, 0},
5345         {0x1f, AC_VERB_SET_CONNECT_SEL, 0},
5346
5347         /* PW9 Output enable */
5348         {0x2d, AC_VERB_SET_PIN_WIDGET_CONTROL, AC_PINCTL_OUT_EN},
5349
5350         /* Enable Boost Volume backdoor */
5351         {0x1, 0xfb9, 0x24},
5352
5353         /* MW0/1/4/8: un-mute index 0 (MUXx), un-mute index 1 (MW9) */
5354         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5355         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5356         {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5357         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5358         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5359         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5360         {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5361         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5362
5363         /* set MUX0/1/4/8 = 0 (AOW0) */
5364         {0x34, AC_VERB_SET_CONNECT_SEL, 0},
5365         {0x35, AC_VERB_SET_CONNECT_SEL, 0},
5366         {0x37, AC_VERB_SET_CONNECT_SEL, 0},
5367         {0x3b, AC_VERB_SET_CONNECT_SEL, 0},
5368
5369         /* set PW0 index=0 (MW0) */
5370         {0x24, AC_VERB_SET_CONNECT_SEL, 0},
5371
5372         /* Enable AOW0 to MW9 */
5373         {0x1, 0xfb8, 0x88},
5374         { }
5375 };
5376
5377
5378 static struct hda_verb vt2002P_uniwill_init_verbs[] = {
5379         {0x25, AC_VERB_SET_UNSOLICITED_ENABLE,
5380          AC_USRSP_EN | VIA_JACK_EVENT | VIA_BIND_HP_EVENT},
5381         {0x26, AC_VERB_SET_UNSOLICITED_ENABLE,
5382          AC_USRSP_EN | VIA_JACK_EVENT | VIA_BIND_HP_EVENT},
5383         {0x29, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
5384         {0x2a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
5385         {0x2b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
5386         { }
5387 };
5388
5389 static struct hda_pcm_stream vt2002P_pcm_analog_playback = {
5390         .substreams = 2,
5391         .channels_min = 2,
5392         .channels_max = 2,
5393         .nid = 0x8, /* NID to query formats and rates */
5394         .ops = {
5395                 .open = via_playback_pcm_open,
5396                 .prepare = via_playback_multi_pcm_prepare,
5397                 .cleanup = via_playback_multi_pcm_cleanup,
5398                 .close = via_pcm_open_close,
5399         },
5400 };
5401
5402 static struct hda_pcm_stream vt2002P_pcm_analog_capture = {
5403         .substreams = 2,
5404         .channels_min = 2,
5405         .channels_max = 2,
5406         .nid = 0x10, /* NID to query formats and rates */
5407         .ops = {
5408                 .open = via_pcm_open_close,
5409                 .prepare = via_capture_pcm_prepare,
5410                 .cleanup = via_capture_pcm_cleanup,
5411                 .close = via_pcm_open_close,
5412         },
5413 };
5414
5415 static struct hda_pcm_stream vt2002P_pcm_digital_playback = {
5416         .substreams = 1,
5417         .channels_min = 2,
5418         .channels_max = 2,
5419         /* NID is set in via_build_pcms */
5420         .ops = {
5421                 .open = via_dig_playback_pcm_open,
5422                 .close = via_dig_playback_pcm_close,
5423                 .prepare = via_dig_playback_pcm_prepare,
5424                 .cleanup = via_dig_playback_pcm_cleanup
5425         },
5426 };
5427
5428 /* fill in the dac_nids table from the parsed pin configuration */
5429 static int vt2002P_auto_fill_dac_nids(struct via_spec *spec,
5430                                       const struct auto_pin_cfg *cfg)
5431 {
5432         spec->multiout.num_dacs = 1;
5433         spec->multiout.dac_nids = spec->private_dac_nids;
5434         if (cfg->line_out_pins[0])
5435                 spec->multiout.dac_nids[0] = 0x8;
5436         return 0;
5437 }
5438
5439 /* add playback controls from the parsed DAC table */
5440 static int vt2002P_auto_create_multi_out_ctls(struct via_spec *spec,
5441                                              const struct auto_pin_cfg *cfg)
5442 {
5443         int err;
5444
5445         if (!cfg->line_out_pins[0])
5446                 return -1;
5447
5448
5449         /* Line-Out: PortE */
5450         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
5451                               "Master Front Playback Volume",
5452                               HDA_COMPOSE_AMP_VAL(0x8, 3, 0, HDA_OUTPUT));
5453         if (err < 0)
5454                 return err;
5455         err = via_add_control(spec, VIA_CTL_WIDGET_BIND_PIN_MUTE,
5456                               "Master Front Playback Switch",
5457                               HDA_COMPOSE_AMP_VAL(0x26, 3, 0, HDA_OUTPUT));
5458         if (err < 0)
5459                 return err;
5460
5461         return 0;
5462 }
5463
5464 static int vt2002P_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin)
5465 {
5466         int err;
5467
5468         if (!pin)
5469                 return 0;
5470
5471         spec->multiout.hp_nid = 0x9;
5472         spec->hp_independent_mode_index = 1;
5473
5474         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
5475                               "Headphone Playback Volume",
5476                               HDA_COMPOSE_AMP_VAL(
5477                                       spec->multiout.hp_nid, 3, 0, HDA_OUTPUT));
5478         if (err < 0)
5479                 return err;
5480
5481         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
5482                               "Headphone Playback Switch",
5483                               HDA_COMPOSE_AMP_VAL(0x25, 3, 0, HDA_OUTPUT));
5484         if (err < 0)
5485                 return err;
5486
5487         create_hp_imux(spec);
5488         return 0;
5489 }
5490
5491 /* create playback/capture controls for input pins */
5492 static int vt2002P_auto_create_analog_input_ctls(struct hda_codec *codec,
5493                                                 const struct auto_pin_cfg *cfg)
5494 {
5495         struct via_spec *spec = codec->spec;
5496         struct hda_input_mux *imux = &spec->private_imux[0];
5497         static hda_nid_t pin_idxs[] = { 0x2b, 0x2a, 0x29, 0xff };
5498         int err;
5499
5500         err = vt_auto_create_analog_input_ctls(codec, cfg, 0x21, pin_idxs,
5501                                                ARRAY_SIZE(pin_idxs));
5502         if (err < 0)
5503                 return err;
5504         /* build volume/mute control of loopback */
5505         err = via_new_analog_input(spec, "Stereo Mixer", 0, 3, 0x21);
5506         if (err < 0)
5507                 return err;
5508
5509         /* for digital mic select */
5510         snd_hda_add_imux_item(imux, "Digital Mic", 4, NULL);
5511
5512         return 0;
5513 }
5514
5515 static int vt2002P_parse_auto_config(struct hda_codec *codec)
5516 {
5517         struct via_spec *spec = codec->spec;
5518         int err;
5519
5520
5521         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
5522         if (err < 0)
5523                 return err;
5524
5525         err = vt2002P_auto_fill_dac_nids(spec, &spec->autocfg);
5526         if (err < 0)
5527                 return err;
5528
5529         if (!spec->autocfg.line_outs && !spec->autocfg.hp_pins[0])
5530                 return 0; /* can't find valid BIOS pin config */
5531
5532         err = vt2002P_auto_create_multi_out_ctls(spec, &spec->autocfg);
5533         if (err < 0)
5534                 return err;
5535         err = vt2002P_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
5536         if (err < 0)
5537                 return err;
5538         err = vt2002P_auto_create_analog_input_ctls(codec, &spec->autocfg);
5539         if (err < 0)
5540                 return err;
5541
5542         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
5543
5544         fill_dig_outs(codec);
5545
5546         if (spec->kctls.list)
5547                 spec->mixers[spec->num_mixers++] = spec->kctls.list;
5548
5549         spec->input_mux = &spec->private_imux[0];
5550
5551         if (spec->hp_mux)
5552                 via_hp_build(codec);
5553
5554         return 1;
5555 }
5556
5557 #ifdef CONFIG_SND_HDA_POWER_SAVE
5558 static struct hda_amp_list vt2002P_loopbacks[] = {
5559         { 0x21, HDA_INPUT, 0 },
5560         { 0x21, HDA_INPUT, 1 },
5561         { 0x21, HDA_INPUT, 2 },
5562         { } /* end */
5563 };
5564 #endif
5565
5566
5567 /* patch for vt2002P */
5568 static int patch_vt2002P(struct hda_codec *codec)
5569 {
5570         struct via_spec *spec;
5571         int err;
5572
5573         /* create a codec specific record */
5574         spec = via_new_spec(codec);
5575         if (spec == NULL)
5576                 return -ENOMEM;
5577
5578         /* automatic parse from the BIOS config */
5579         err = vt2002P_parse_auto_config(codec);
5580         if (err < 0) {
5581                 via_free(codec);
5582                 return err;
5583         } else if (!err) {
5584                 printk(KERN_INFO "hda_codec: Cannot set up configuration "
5585                        "from BIOS.  Using genenic mode...\n");
5586         }
5587
5588         spec->init_verbs[spec->num_iverbs++]  = vt2002P_volume_init_verbs;
5589         spec->init_verbs[spec->num_iverbs++] = vt2002P_uniwill_init_verbs;
5590
5591         spec->stream_name_analog = "VT2002P Analog";
5592         spec->stream_analog_playback = &vt2002P_pcm_analog_playback;
5593         spec->stream_analog_capture = &vt2002P_pcm_analog_capture;
5594
5595         spec->stream_name_digital = "VT2002P Digital";
5596         spec->stream_digital_playback = &vt2002P_pcm_digital_playback;
5597
5598         if (!spec->adc_nids && spec->input_mux) {
5599                 spec->adc_nids = vt2002P_adc_nids;
5600                 spec->num_adc_nids = ARRAY_SIZE(vt2002P_adc_nids);
5601                 get_mux_nids(codec);
5602                 override_mic_boost(codec, 0x2b, 0, 3, 40);
5603                 override_mic_boost(codec, 0x29, 0, 3, 40);
5604                 spec->mixers[spec->num_mixers] = vt2002P_capture_mixer;
5605                 spec->num_mixers++;
5606         }
5607
5608         codec->patch_ops = via_patch_ops;
5609
5610         codec->patch_ops.init = via_auto_init;
5611         codec->patch_ops.unsol_event = via_unsol_event;
5612
5613 #ifdef CONFIG_SND_HDA_POWER_SAVE
5614         spec->loopback.amplist = vt2002P_loopbacks;
5615 #endif
5616
5617         return 0;
5618 }
5619
5620 /* for vt1812 */
5621
5622 /* capture mixer elements */
5623 static struct snd_kcontrol_new vt1812_capture_mixer[] = {
5624         HDA_CODEC_VOLUME("Capture Volume", 0x10, 0x0, HDA_INPUT),
5625         HDA_CODEC_MUTE("Capture Switch", 0x10, 0x0, HDA_INPUT),
5626         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x11, 0x0, HDA_INPUT),
5627         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x11, 0x0, HDA_INPUT),
5628         HDA_CODEC_MUTE("Mic Boost Capture Volume", 0x2b, 0x0, HDA_INPUT),
5629         HDA_CODEC_MUTE("Front Mic Boost Capture Volume", 0x29, 0x0,
5630                        HDA_INPUT),
5631         {
5632                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5633                 /* The multiple "Capture Source" controls confuse alsamixer
5634                  * So call somewhat different..
5635                  */
5636                 .name = "Input Source",
5637                 .count = 2,
5638                 .info = via_mux_enum_info,
5639                 .get = via_mux_enum_get,
5640                 .put = via_mux_enum_put,
5641         },
5642         { } /* end */
5643 };
5644
5645 static struct hda_verb vt1812_volume_init_verbs[] = {
5646         /*
5647          * Unmute ADC0-1 and set the default input to mic-in
5648          */
5649         {0x8, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5650         {0x9, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5651
5652
5653         /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
5654          * mixer widget
5655          */
5656         /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */
5657         {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5658         {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5659         {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5660         {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5661         {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5662
5663         /* MUX Indices: Mic = 0 */
5664         {0x1e, AC_VERB_SET_CONNECT_SEL, 0},
5665         {0x1f, AC_VERB_SET_CONNECT_SEL, 0},
5666
5667         /* PW9 Output enable */
5668         {0x2d, AC_VERB_SET_PIN_WIDGET_CONTROL, AC_PINCTL_OUT_EN},
5669
5670         /* Enable Boost Volume backdoor */
5671         {0x1, 0xfb9, 0x24},
5672
5673         /* MW0/1/4/13/15: un-mute index 0 (MUXx), un-mute index 1 (MW9) */
5674         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5675         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5676         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5677         {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5678         {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5679         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5680         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5681         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5682         {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5683         {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5684
5685         /* set MUX0/1/4/13/15 = 0 (AOW0) */
5686         {0x34, AC_VERB_SET_CONNECT_SEL, 0},
5687         {0x35, AC_VERB_SET_CONNECT_SEL, 0},
5688         {0x38, AC_VERB_SET_CONNECT_SEL, 0},
5689         {0x3c, AC_VERB_SET_CONNECT_SEL, 0},
5690         {0x3d, AC_VERB_SET_CONNECT_SEL, 0},
5691
5692         /* Enable AOW0 to MW9 */
5693         {0x1, 0xfb8, 0xa8},
5694         { }
5695 };
5696
5697
5698 static struct hda_verb vt1812_uniwill_init_verbs[] = {
5699         {0x33, AC_VERB_SET_UNSOLICITED_ENABLE,
5700          AC_USRSP_EN | VIA_JACK_EVENT | VIA_BIND_HP_EVENT},
5701         {0x25, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT },
5702         {0x28, AC_VERB_SET_UNSOLICITED_ENABLE,
5703          AC_USRSP_EN | VIA_JACK_EVENT | VIA_BIND_HP_EVENT},
5704         {0x29, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
5705         {0x2a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
5706         {0x2b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT},
5707         { }
5708 };
5709
5710 static struct hda_pcm_stream vt1812_pcm_analog_playback = {
5711         .substreams = 2,
5712         .channels_min = 2,
5713         .channels_max = 2,
5714         .nid = 0x8, /* NID to query formats and rates */
5715         .ops = {
5716                 .open = via_playback_pcm_open,
5717                 .prepare = via_playback_multi_pcm_prepare,
5718                 .cleanup = via_playback_multi_pcm_cleanup,
5719                 .close = via_pcm_open_close,
5720         },
5721 };
5722
5723 static struct hda_pcm_stream vt1812_pcm_analog_capture = {
5724         .substreams = 2,
5725         .channels_min = 2,
5726         .channels_max = 2,
5727         .nid = 0x10, /* NID to query formats and rates */
5728         .ops = {
5729                 .open = via_pcm_open_close,
5730                 .prepare = via_capture_pcm_prepare,
5731                 .cleanup = via_capture_pcm_cleanup,
5732                 .close = via_pcm_open_close,
5733         },
5734 };
5735
5736 static struct hda_pcm_stream vt1812_pcm_digital_playback = {
5737         .substreams = 1,
5738         .channels_min = 2,
5739         .channels_max = 2,
5740         /* NID is set in via_build_pcms */
5741         .ops = {
5742                 .open = via_dig_playback_pcm_open,
5743                 .close = via_dig_playback_pcm_close,
5744                 .prepare = via_dig_playback_pcm_prepare,
5745                 .cleanup = via_dig_playback_pcm_cleanup
5746         },
5747 };
5748 /* fill in the dac_nids table from the parsed pin configuration */
5749 static int vt1812_auto_fill_dac_nids(struct via_spec *spec,
5750                                      const struct auto_pin_cfg *cfg)
5751 {
5752         spec->multiout.num_dacs = 1;
5753         spec->multiout.dac_nids = spec->private_dac_nids;
5754         if (cfg->line_out_pins[0])
5755                 spec->multiout.dac_nids[0] = 0x8;
5756         return 0;
5757 }
5758
5759
5760 /* add playback controls from the parsed DAC table */
5761 static int vt1812_auto_create_multi_out_ctls(struct via_spec *spec,
5762                                              const struct auto_pin_cfg *cfg)
5763 {
5764         int err;
5765
5766         if (!cfg->line_out_pins[0])
5767                 return -1;
5768
5769         /* Line-Out: PortE */
5770         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
5771                               "Front Playback Volume",
5772                               HDA_COMPOSE_AMP_VAL(0x8, 3, 0, HDA_OUTPUT));
5773         if (err < 0)
5774                 return err;
5775         err = via_add_control(spec, VIA_CTL_WIDGET_BIND_PIN_MUTE,
5776                               "Front Playback Switch",
5777                               HDA_COMPOSE_AMP_VAL(0x28, 3, 0, HDA_OUTPUT));
5778         if (err < 0)
5779                 return err;
5780
5781         return 0;
5782 }
5783
5784 static int vt1812_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin)
5785 {
5786         int err;
5787
5788         if (!pin)
5789                 return 0;
5790
5791         spec->multiout.hp_nid = 0x9;
5792         spec->hp_independent_mode_index = 1;
5793
5794
5795         err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
5796                               "Headphone Playback Volume",
5797                               HDA_COMPOSE_AMP_VAL(
5798                                       spec->multiout.hp_nid, 3, 0, HDA_OUTPUT));
5799         if (err < 0)
5800                 return err;
5801
5802         err = via_add_control(spec, VIA_CTL_WIDGET_MUTE,
5803                               "Headphone Playback Switch",
5804                               HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
5805         if (err < 0)
5806                 return err;
5807
5808         create_hp_imux(spec);
5809         return 0;
5810 }
5811
5812 /* create playback/capture controls for input pins */
5813 static int vt1812_auto_create_analog_input_ctls(struct hda_codec *codec,
5814                                                 const struct auto_pin_cfg *cfg)
5815 {
5816         struct via_spec *spec = codec->spec;
5817         struct hda_input_mux *imux = &spec->private_imux[0];
5818         static hda_nid_t pin_idxs[] = { 0x2b, 0x2a, 0x29, 0, 0, 0xff };
5819         int err;
5820
5821         err = vt_auto_create_analog_input_ctls(codec, cfg, 0x21, pin_idxs,
5822                                                ARRAY_SIZE(pin_idxs));
5823         if (err < 0)
5824                 return err;
5825
5826         /* build volume/mute control of loopback */
5827         err = via_new_analog_input(spec, "Stereo Mixer", 0, 5, 0x21);
5828         if (err < 0)
5829                 return err;
5830
5831         /* for digital mic select */
5832         snd_hda_add_imux_item(imux, "Digital Mic", 6, NULL);
5833
5834         return 0;
5835 }
5836
5837 static int vt1812_parse_auto_config(struct hda_codec *codec)
5838 {
5839         struct via_spec *spec = codec->spec;
5840         int err;
5841
5842
5843         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
5844         if (err < 0)
5845                 return err;
5846         fill_dig_outs(codec);
5847         err = vt1812_auto_fill_dac_nids(spec, &spec->autocfg);
5848         if (err < 0)
5849                 return err;
5850
5851         if (!spec->autocfg.line_outs && !spec->autocfg.hp_outs)
5852                 return 0; /* can't find valid BIOS pin config */
5853
5854         err = vt1812_auto_create_multi_out_ctls(spec, &spec->autocfg);
5855         if (err < 0)
5856                 return err;
5857         err = vt1812_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
5858         if (err < 0)
5859                 return err;
5860         err = vt1812_auto_create_analog_input_ctls(codec, &spec->autocfg);
5861         if (err < 0)
5862                 return err;
5863
5864         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
5865
5866         fill_dig_outs(codec);
5867
5868         if (spec->kctls.list)
5869                 spec->mixers[spec->num_mixers++] = spec->kctls.list;
5870
5871         spec->input_mux = &spec->private_imux[0];
5872
5873         if (spec->hp_mux)
5874                 via_hp_build(codec);
5875
5876         return 1;
5877 }
5878
5879 #ifdef CONFIG_SND_HDA_POWER_SAVE
5880 static struct hda_amp_list vt1812_loopbacks[] = {
5881         { 0x21, HDA_INPUT, 0 },
5882         { 0x21, HDA_INPUT, 1 },
5883         { 0x21, HDA_INPUT, 2 },
5884         { } /* end */
5885 };
5886 #endif
5887
5888
5889 /* patch for vt1812 */
5890 static int patch_vt1812(struct hda_codec *codec)
5891 {
5892         struct via_spec *spec;
5893         int err;
5894
5895         /* create a codec specific record */
5896         spec = via_new_spec(codec);
5897         if (spec == NULL)
5898                 return -ENOMEM;
5899
5900         /* automatic parse from the BIOS config */
5901         err = vt1812_parse_auto_config(codec);
5902         if (err < 0) {
5903                 via_free(codec);
5904                 return err;
5905         } else if (!err) {
5906                 printk(KERN_INFO "hda_codec: Cannot set up configuration "
5907                        "from BIOS.  Using genenic mode...\n");
5908         }
5909
5910
5911         spec->init_verbs[spec->num_iverbs++]  = vt1812_volume_init_verbs;
5912         spec->init_verbs[spec->num_iverbs++] = vt1812_uniwill_init_verbs;
5913
5914         spec->stream_name_analog = "VT1812 Analog";
5915         spec->stream_analog_playback = &vt1812_pcm_analog_playback;
5916         spec->stream_analog_capture = &vt1812_pcm_analog_capture;
5917
5918         spec->stream_name_digital = "VT1812 Digital";
5919         spec->stream_digital_playback = &vt1812_pcm_digital_playback;
5920
5921
5922         if (!spec->adc_nids && spec->input_mux) {
5923                 spec->adc_nids = vt1812_adc_nids;
5924                 spec->num_adc_nids = ARRAY_SIZE(vt1812_adc_nids);
5925                 get_mux_nids(codec);
5926                 override_mic_boost(codec, 0x2b, 0, 3, 40);
5927                 override_mic_boost(codec, 0x29, 0, 3, 40);
5928                 spec->mixers[spec->num_mixers] = vt1812_capture_mixer;
5929                 spec->num_mixers++;
5930         }
5931
5932         codec->patch_ops = via_patch_ops;
5933
5934         codec->patch_ops.init = via_auto_init;
5935         codec->patch_ops.unsol_event = via_unsol_event;
5936
5937 #ifdef CONFIG_SND_HDA_POWER_SAVE
5938         spec->loopback.amplist = vt1812_loopbacks;
5939 #endif
5940
5941         return 0;
5942 }
5943
5944 /*
5945  * patch entries
5946  */
5947 static struct hda_codec_preset snd_hda_preset_via[] = {
5948         { .id = 0x11061708, .name = "VT1708", .patch = patch_vt1708},
5949         { .id = 0x11061709, .name = "VT1708", .patch = patch_vt1708},
5950         { .id = 0x1106170a, .name = "VT1708", .patch = patch_vt1708},
5951         { .id = 0x1106170b, .name = "VT1708", .patch = patch_vt1708},
5952         { .id = 0x1106e710, .name = "VT1709 10-Ch",
5953           .patch = patch_vt1709_10ch},
5954         { .id = 0x1106e711, .name = "VT1709 10-Ch",
5955           .patch = patch_vt1709_10ch},
5956         { .id = 0x1106e712, .name = "VT1709 10-Ch",
5957           .patch = patch_vt1709_10ch},
5958         { .id = 0x1106e713, .name = "VT1709 10-Ch",
5959           .patch = patch_vt1709_10ch},
5960         { .id = 0x1106e714, .name = "VT1709 6-Ch",
5961           .patch = patch_vt1709_6ch},
5962         { .id = 0x1106e715, .name = "VT1709 6-Ch",
5963           .patch = patch_vt1709_6ch},
5964         { .id = 0x1106e716, .name = "VT1709 6-Ch",
5965           .patch = patch_vt1709_6ch},
5966         { .id = 0x1106e717, .name = "VT1709 6-Ch",
5967           .patch = patch_vt1709_6ch},
5968         { .id = 0x1106e720, .name = "VT1708B 8-Ch",
5969           .patch = patch_vt1708B_8ch},
5970         { .id = 0x1106e721, .name = "VT1708B 8-Ch",
5971           .patch = patch_vt1708B_8ch},
5972         { .id = 0x1106e722, .name = "VT1708B 8-Ch",
5973           .patch = patch_vt1708B_8ch},
5974         { .id = 0x1106e723, .name = "VT1708B 8-Ch",
5975           .patch = patch_vt1708B_8ch},
5976         { .id = 0x1106e724, .name = "VT1708B 4-Ch",
5977           .patch = patch_vt1708B_4ch},
5978         { .id = 0x1106e725, .name = "VT1708B 4-Ch",
5979           .patch = patch_vt1708B_4ch},
5980         { .id = 0x1106e726, .name = "VT1708B 4-Ch",
5981           .patch = patch_vt1708B_4ch},
5982         { .id = 0x1106e727, .name = "VT1708B 4-Ch",
5983           .patch = patch_vt1708B_4ch},
5984         { .id = 0x11060397, .name = "VT1708S",
5985           .patch = patch_vt1708S},
5986         { .id = 0x11061397, .name = "VT1708S",
5987           .patch = patch_vt1708S},
5988         { .id = 0x11062397, .name = "VT1708S",
5989           .patch = patch_vt1708S},
5990         { .id = 0x11063397, .name = "VT1708S",
5991           .patch = patch_vt1708S},
5992         { .id = 0x11064397, .name = "VT1708S",
5993           .patch = patch_vt1708S},
5994         { .id = 0x11065397, .name = "VT1708S",
5995           .patch = patch_vt1708S},
5996         { .id = 0x11066397, .name = "VT1708S",
5997           .patch = patch_vt1708S},
5998         { .id = 0x11067397, .name = "VT1708S",
5999           .patch = patch_vt1708S},
6000         { .id = 0x11060398, .name = "VT1702",
6001           .patch = patch_vt1702},
6002         { .id = 0x11061398, .name = "VT1702",
6003           .patch = patch_vt1702},
6004         { .id = 0x11062398, .name = "VT1702",
6005           .patch = patch_vt1702},
6006         { .id = 0x11063398, .name = "VT1702",
6007           .patch = patch_vt1702},
6008         { .id = 0x11064398, .name = "VT1702",
6009           .patch = patch_vt1702},
6010         { .id = 0x11065398, .name = "VT1702",
6011           .patch = patch_vt1702},
6012         { .id = 0x11066398, .name = "VT1702",
6013           .patch = patch_vt1702},
6014         { .id = 0x11067398, .name = "VT1702",
6015           .patch = patch_vt1702},
6016         { .id = 0x11060428, .name = "VT1718S",
6017           .patch = patch_vt1718S},
6018         { .id = 0x11064428, .name = "VT1718S",
6019           .patch = patch_vt1718S},
6020         { .id = 0x11060441, .name = "VT2020",
6021           .patch = patch_vt1718S},
6022         { .id = 0x11064441, .name = "VT1828S",
6023           .patch = patch_vt1718S},
6024         { .id = 0x11060433, .name = "VT1716S",
6025           .patch = patch_vt1716S},
6026         { .id = 0x1106a721, .name = "VT1716S",
6027           .patch = patch_vt1716S},
6028         { .id = 0x11060438, .name = "VT2002P", .patch = patch_vt2002P},
6029         { .id = 0x11064438, .name = "VT2002P", .patch = patch_vt2002P},
6030         { .id = 0x11060448, .name = "VT1812", .patch = patch_vt1812},
6031         { .id = 0x11060440, .name = "VT1818S",
6032           .patch = patch_vt1708S},
6033         {} /* terminator */
6034 };
6035
6036 MODULE_ALIAS("snd-hda-codec-id:1106*");
6037
6038 static struct hda_codec_preset_list via_list = {
6039         .preset = snd_hda_preset_via,
6040         .owner = THIS_MODULE,
6041 };
6042
6043 MODULE_LICENSE("GPL");
6044 MODULE_DESCRIPTION("VIA HD-audio codec");
6045
6046 static int __init patch_via_init(void)
6047 {
6048         return snd_hda_add_codec_preset(&via_list);
6049 }
6050
6051 static void __exit patch_via_exit(void)
6052 {
6053         snd_hda_delete_codec_preset(&via_list);
6054 }
6055
6056 module_init(patch_via_init)
6057 module_exit(patch_via_exit)