[ALSA] hda-codec - clean up patch_realtek.c
[firefly-linux-kernel-4.4.55.git] / sound / pci / hda / patch_realtek.c
1 /*
2  * Universal Interface for Intel High Definition Audio Codec
3  *
4  * HD audio interface patch for ALC 260/880/882 codecs
5  *
6  * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
7  *                    PeiSen Hou <pshou@realtek.com.tw>
8  *                    Takashi Iwai <tiwai@suse.de>
9  *                    Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
10  *
11  *  This driver is free software; you can redistribute it and/or modify
12  *  it under the terms of the GNU General Public License as published by
13  *  the Free Software Foundation; either version 2 of the License, or
14  *  (at your option) any later version.
15  *
16  *  This driver is distributed in the hope that it will be useful,
17  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
18  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  *  GNU General Public License for more details.
20  *
21  *  You should have received a copy of the GNU General Public License
22  *  along with this program; if not, write to the Free Software
23  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
24  */
25
26 #include <sound/driver.h>
27 #include <linux/init.h>
28 #include <linux/delay.h>
29 #include <linux/slab.h>
30 #include <linux/pci.h>
31 #include <sound/core.h>
32 #include "hda_codec.h"
33 #include "hda_local.h"
34
35 #define ALC880_FRONT_EVENT              0x01
36 #define ALC880_DCVOL_EVENT              0x02
37 #define ALC880_HP_EVENT                 0x04
38 #define ALC880_MIC_EVENT                0x08
39
40 /* ALC880 board config type */
41 enum {
42         ALC880_3ST,
43         ALC880_3ST_DIG,
44         ALC880_5ST,
45         ALC880_5ST_DIG,
46         ALC880_W810,
47         ALC880_Z71V,
48         ALC880_6ST,
49         ALC880_6ST_DIG,
50         ALC880_F1734,
51         ALC880_ASUS,
52         ALC880_ASUS_DIG,
53         ALC880_ASUS_W1V,
54         ALC880_ASUS_DIG2,
55         ALC880_FUJITSU,
56         ALC880_UNIWILL_DIG,
57         ALC880_UNIWILL,
58         ALC880_UNIWILL_P53,
59         ALC880_CLEVO,
60         ALC880_TCL_S700,
61         ALC880_LG,
62         ALC880_LG_LW,
63 #ifdef CONFIG_SND_DEBUG
64         ALC880_TEST,
65 #endif
66         ALC880_AUTO,
67         ALC880_MODEL_LAST /* last tag */
68 };
69
70 /* ALC260 models */
71 enum {
72         ALC260_BASIC,
73         ALC260_HP,
74         ALC260_HP_3013,
75         ALC260_FUJITSU_S702X,
76         ALC260_ACER,
77         ALC260_WILL,
78         ALC260_REPLACER_672V,
79 #ifdef CONFIG_SND_DEBUG
80         ALC260_TEST,
81 #endif
82         ALC260_AUTO,
83         ALC260_MODEL_LAST /* last tag */
84 };
85
86 /* ALC262 models */
87 enum {
88         ALC262_BASIC,
89         ALC262_HIPPO,
90         ALC262_HIPPO_1,
91         ALC262_FUJITSU,
92         ALC262_HP_BPC,
93         ALC262_HP_BPC_D7000_WL,
94         ALC262_HP_BPC_D7000_WF,
95         ALC262_BENQ_ED8,
96         ALC262_AUTO,
97         ALC262_MODEL_LAST /* last tag */
98 };
99
100 /* ALC861 models */
101 enum {
102         ALC861_3ST,
103         ALC660_3ST,
104         ALC861_3ST_DIG,
105         ALC861_6ST_DIG,
106         ALC861_UNIWILL_M31,
107         ALC861_TOSHIBA,
108         ALC861_ASUS,
109         ALC861_ASUS_LAPTOP,
110         ALC861_AUTO,
111         ALC861_MODEL_LAST,
112 };
113
114 /* ALC861-VD models */
115 enum {
116         ALC660VD_3ST,
117         ALC861VD_3ST,
118         ALC861VD_3ST_DIG,
119         ALC861VD_6ST_DIG,
120         ALC861VD_AUTO,
121         ALC861VD_MODEL_LAST,
122 };
123
124 /* ALC662 models */
125 enum {
126         ALC662_3ST_2ch_DIG,
127         ALC662_3ST_6ch_DIG,
128         ALC662_3ST_6ch,
129         ALC662_5ST_DIG,
130         ALC662_LENOVO_101E,
131         ALC662_AUTO,
132         ALC662_MODEL_LAST,
133 };
134
135 /* ALC882 models */
136 enum {
137         ALC882_3ST_DIG,
138         ALC882_6ST_DIG,
139         ALC882_ARIMA,
140         ALC882_AUTO,
141         ALC885_MACPRO,
142         ALC882_MODEL_LAST,
143 };
144
145 /* ALC883 models */
146 enum {
147         ALC883_3ST_2ch_DIG,
148         ALC883_3ST_6ch_DIG,
149         ALC883_3ST_6ch,
150         ALC883_6ST_DIG,
151         ALC883_TARGA_DIG,
152         ALC883_TARGA_2ch_DIG,
153         ALC888_DEMO_BOARD,
154         ALC883_ACER,
155         ALC883_MEDION,
156         ALC883_LAPTOP_EAPD,
157         ALC883_LENOVO_101E_2ch,
158         ALC883_AUTO,
159         ALC883_MODEL_LAST,
160 };
161
162 /* for GPIO Poll */
163 #define GPIO_MASK       0x03
164
165 struct alc_spec {
166         /* codec parameterization */
167         struct snd_kcontrol_new *mixers[5];     /* mixer arrays */
168         unsigned int num_mixers;
169
170         const struct hda_verb *init_verbs[5];   /* initialization verbs
171                                                  * don't forget NULL
172                                                  * termination!
173                                                  */
174         unsigned int num_init_verbs;
175
176         char *stream_name_analog;       /* analog PCM stream */
177         struct hda_pcm_stream *stream_analog_playback;
178         struct hda_pcm_stream *stream_analog_capture;
179
180         char *stream_name_digital;      /* digital PCM stream */
181         struct hda_pcm_stream *stream_digital_playback;
182         struct hda_pcm_stream *stream_digital_capture;
183
184         /* playback */
185         struct hda_multi_out multiout;  /* playback set-up
186                                          * max_channels, dacs must be set
187                                          * dig_out_nid and hp_nid are optional
188                                          */
189
190         /* capture */
191         unsigned int num_adc_nids;
192         hda_nid_t *adc_nids;
193         hda_nid_t dig_in_nid;           /* digital-in NID; optional */
194
195         /* capture source */
196         unsigned int num_mux_defs;
197         const struct hda_input_mux *input_mux;
198         unsigned int cur_mux[3];
199
200         /* channel model */
201         const struct hda_channel_mode *channel_mode;
202         int num_channel_mode;
203         int need_dac_fix;
204
205         /* PCM information */
206         struct hda_pcm pcm_rec[3];      /* used in alc_build_pcms() */
207
208         /* dynamic controls, init_verbs and input_mux */
209         struct auto_pin_cfg autocfg;
210         unsigned int num_kctl_alloc, num_kctl_used;
211         struct snd_kcontrol_new *kctl_alloc;
212         struct hda_input_mux private_imux;
213         hda_nid_t private_dac_nids[5];
214
215         /* hooks */
216         void (*init_hook)(struct hda_codec *codec);
217         void (*unsol_event)(struct hda_codec *codec, unsigned int res);
218
219         /* for pin sensing */
220         unsigned int sense_updated: 1;
221         unsigned int jack_present: 1;
222 };
223
224 /*
225  * configuration template - to be copied to the spec instance
226  */
227 struct alc_config_preset {
228         struct snd_kcontrol_new *mixers[5]; /* should be identical size
229                                              * with spec
230                                              */
231         const struct hda_verb *init_verbs[5];
232         unsigned int num_dacs;
233         hda_nid_t *dac_nids;
234         hda_nid_t dig_out_nid;          /* optional */
235         hda_nid_t hp_nid;               /* optional */
236         unsigned int num_adc_nids;
237         hda_nid_t *adc_nids;
238         hda_nid_t dig_in_nid;
239         unsigned int num_channel_mode;
240         const struct hda_channel_mode *channel_mode;
241         int need_dac_fix;
242         unsigned int num_mux_defs;
243         const struct hda_input_mux *input_mux;
244         void (*unsol_event)(struct hda_codec *, unsigned int);
245         void (*init_hook)(struct hda_codec *);
246 };
247
248
249 /*
250  * input MUX handling
251  */
252 static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
253                              struct snd_ctl_elem_info *uinfo)
254 {
255         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
256         struct alc_spec *spec = codec->spec;
257         unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
258         if (mux_idx >= spec->num_mux_defs)
259                 mux_idx = 0;
260         return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
261 }
262
263 static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
264                             struct snd_ctl_elem_value *ucontrol)
265 {
266         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
267         struct alc_spec *spec = codec->spec;
268         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
269
270         ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
271         return 0;
272 }
273
274 static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
275                             struct snd_ctl_elem_value *ucontrol)
276 {
277         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
278         struct alc_spec *spec = codec->spec;
279         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
280         unsigned int mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
281         return snd_hda_input_mux_put(codec, &spec->input_mux[mux_idx], ucontrol,
282                                      spec->adc_nids[adc_idx],
283                                      &spec->cur_mux[adc_idx]);
284 }
285
286
287 /*
288  * channel mode setting
289  */
290 static int alc_ch_mode_info(struct snd_kcontrol *kcontrol,
291                             struct snd_ctl_elem_info *uinfo)
292 {
293         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
294         struct alc_spec *spec = codec->spec;
295         return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
296                                     spec->num_channel_mode);
297 }
298
299 static int alc_ch_mode_get(struct snd_kcontrol *kcontrol,
300                            struct snd_ctl_elem_value *ucontrol)
301 {
302         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
303         struct alc_spec *spec = codec->spec;
304         return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
305                                    spec->num_channel_mode,
306                                    spec->multiout.max_channels);
307 }
308
309 static int alc_ch_mode_put(struct snd_kcontrol *kcontrol,
310                            struct snd_ctl_elem_value *ucontrol)
311 {
312         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
313         struct alc_spec *spec = codec->spec;
314         int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
315                                       spec->num_channel_mode,
316                                       &spec->multiout.max_channels);
317         if (err >= 0 && spec->need_dac_fix)
318                 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
319         return err;
320 }
321
322 /*
323  * Control the mode of pin widget settings via the mixer.  "pc" is used
324  * instead of "%" to avoid consequences of accidently treating the % as 
325  * being part of a format specifier.  Maximum allowed length of a value is
326  * 63 characters plus NULL terminator.
327  *
328  * Note: some retasking pin complexes seem to ignore requests for input
329  * states other than HiZ (eg: PIN_VREFxx) and revert to HiZ if any of these
330  * are requested.  Therefore order this list so that this behaviour will not
331  * cause problems when mixer clients move through the enum sequentially.
332  * NIDs 0x0f and 0x10 have been observed to have this behaviour as of
333  * March 2006.
334  */
335 static char *alc_pin_mode_names[] = {
336         "Mic 50pc bias", "Mic 80pc bias",
337         "Line in", "Line out", "Headphone out",
338 };
339 static unsigned char alc_pin_mode_values[] = {
340         PIN_VREF50, PIN_VREF80, PIN_IN, PIN_OUT, PIN_HP,
341 };
342 /* The control can present all 5 options, or it can limit the options based
343  * in the pin being assumed to be exclusively an input or an output pin.  In
344  * addition, "input" pins may or may not process the mic bias option
345  * depending on actual widget capability (NIDs 0x0f and 0x10 don't seem to
346  * accept requests for bias as of chip versions up to March 2006) and/or
347  * wiring in the computer.
348  */
349 #define ALC_PIN_DIR_IN              0x00
350 #define ALC_PIN_DIR_OUT             0x01
351 #define ALC_PIN_DIR_INOUT           0x02
352 #define ALC_PIN_DIR_IN_NOMICBIAS    0x03
353 #define ALC_PIN_DIR_INOUT_NOMICBIAS 0x04
354
355 /* Info about the pin modes supported by the different pin direction modes. 
356  * For each direction the minimum and maximum values are given.
357  */
358 static signed char alc_pin_mode_dir_info[5][2] = {
359         { 0, 2 },    /* ALC_PIN_DIR_IN */
360         { 3, 4 },    /* ALC_PIN_DIR_OUT */
361         { 0, 4 },    /* ALC_PIN_DIR_INOUT */
362         { 2, 2 },    /* ALC_PIN_DIR_IN_NOMICBIAS */
363         { 2, 4 },    /* ALC_PIN_DIR_INOUT_NOMICBIAS */
364 };
365 #define alc_pin_mode_min(_dir) (alc_pin_mode_dir_info[_dir][0])
366 #define alc_pin_mode_max(_dir) (alc_pin_mode_dir_info[_dir][1])
367 #define alc_pin_mode_n_items(_dir) \
368         (alc_pin_mode_max(_dir)-alc_pin_mode_min(_dir)+1)
369
370 static int alc_pin_mode_info(struct snd_kcontrol *kcontrol,
371                              struct snd_ctl_elem_info *uinfo)
372 {
373         unsigned int item_num = uinfo->value.enumerated.item;
374         unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
375
376         uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
377         uinfo->count = 1;
378         uinfo->value.enumerated.items = alc_pin_mode_n_items(dir);
379
380         if (item_num<alc_pin_mode_min(dir) || item_num>alc_pin_mode_max(dir))
381                 item_num = alc_pin_mode_min(dir);
382         strcpy(uinfo->value.enumerated.name, alc_pin_mode_names[item_num]);
383         return 0;
384 }
385
386 static int alc_pin_mode_get(struct snd_kcontrol *kcontrol,
387                             struct snd_ctl_elem_value *ucontrol)
388 {
389         unsigned int i;
390         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
391         hda_nid_t nid = kcontrol->private_value & 0xffff;
392         unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
393         long *valp = ucontrol->value.integer.value;
394         unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
395                                                  AC_VERB_GET_PIN_WIDGET_CONTROL,
396                                                  0x00);
397
398         /* Find enumerated value for current pinctl setting */
399         i = alc_pin_mode_min(dir);
400         while (alc_pin_mode_values[i] != pinctl && i <= alc_pin_mode_max(dir))
401                 i++;
402         *valp = i <= alc_pin_mode_max(dir) ? i: alc_pin_mode_min(dir);
403         return 0;
404 }
405
406 static int alc_pin_mode_put(struct snd_kcontrol *kcontrol,
407                             struct snd_ctl_elem_value *ucontrol)
408 {
409         signed int change;
410         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
411         hda_nid_t nid = kcontrol->private_value & 0xffff;
412         unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
413         long val = *ucontrol->value.integer.value;
414         unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
415                                                  AC_VERB_GET_PIN_WIDGET_CONTROL,
416                                                  0x00);
417
418         if (val < alc_pin_mode_min(dir) || val > alc_pin_mode_max(dir))
419                 val = alc_pin_mode_min(dir);
420
421         change = pinctl != alc_pin_mode_values[val];
422         if (change) {
423                 /* Set pin mode to that requested */
424                 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_PIN_WIDGET_CONTROL,
425                                     alc_pin_mode_values[val]);
426
427                 /* Also enable the retasking pin's input/output as required 
428                  * for the requested pin mode.  Enum values of 2 or less are
429                  * input modes.
430                  *
431                  * Dynamically switching the input/output buffers probably
432                  * reduces noise slightly (particularly on input) so we'll
433                  * do it.  However, having both input and output buffers
434                  * enabled simultaneously doesn't seem to be problematic if
435                  * this turns out to be necessary in the future.
436                  */
437                 if (val <= 2) {
438                         snd_hda_codec_write(codec, nid, 0,
439                                             AC_VERB_SET_AMP_GAIN_MUTE,
440                                             AMP_OUT_MUTE);
441                         snd_hda_codec_write(codec, nid, 0,
442                                             AC_VERB_SET_AMP_GAIN_MUTE,
443                                             AMP_IN_UNMUTE(0));
444                 } else {
445                         snd_hda_codec_write(codec, nid, 0,
446                                             AC_VERB_SET_AMP_GAIN_MUTE,
447                                             AMP_IN_MUTE(0));
448                         snd_hda_codec_write(codec, nid, 0,
449                                             AC_VERB_SET_AMP_GAIN_MUTE,
450                                             AMP_OUT_UNMUTE);
451                 }
452         }
453         return change;
454 }
455
456 #define ALC_PIN_MODE(xname, nid, dir) \
457         { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0,  \
458           .info = alc_pin_mode_info, \
459           .get = alc_pin_mode_get, \
460           .put = alc_pin_mode_put, \
461           .private_value = nid | (dir<<16) }
462
463 /* A switch control for ALC260 GPIO pins.  Multiple GPIOs can be ganged
464  * together using a mask with more than one bit set.  This control is
465  * currently used only by the ALC260 test model.  At this stage they are not
466  * needed for any "production" models.
467  */
468 #ifdef CONFIG_SND_DEBUG
469 static int alc_gpio_data_info(struct snd_kcontrol *kcontrol,
470                               struct snd_ctl_elem_info *uinfo)
471 {
472         uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
473         uinfo->count = 1;
474         uinfo->value.integer.min = 0;
475         uinfo->value.integer.max = 1;
476         return 0;
477 }
478
479 static int alc_gpio_data_get(struct snd_kcontrol *kcontrol,
480                              struct snd_ctl_elem_value *ucontrol)
481 {
482         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
483         hda_nid_t nid = kcontrol->private_value & 0xffff;
484         unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
485         long *valp = ucontrol->value.integer.value;
486         unsigned int val = snd_hda_codec_read(codec, nid, 0,
487                                               AC_VERB_GET_GPIO_DATA, 0x00);
488
489         *valp = (val & mask) != 0;
490         return 0;
491 }
492 static int alc_gpio_data_put(struct snd_kcontrol *kcontrol,
493                              struct snd_ctl_elem_value *ucontrol)
494 {
495         signed int change;
496         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
497         hda_nid_t nid = kcontrol->private_value & 0xffff;
498         unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
499         long val = *ucontrol->value.integer.value;
500         unsigned int gpio_data = snd_hda_codec_read(codec, nid, 0,
501                                                     AC_VERB_GET_GPIO_DATA,
502                                                     0x00);
503
504         /* Set/unset the masked GPIO bit(s) as needed */
505         change = (val == 0 ? 0 : mask) != (gpio_data & mask);
506         if (val == 0)
507                 gpio_data &= ~mask;
508         else
509                 gpio_data |= mask;
510         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_GPIO_DATA, gpio_data);
511
512         return change;
513 }
514 #define ALC_GPIO_DATA_SWITCH(xname, nid, mask) \
515         { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0,  \
516           .info = alc_gpio_data_info, \
517           .get = alc_gpio_data_get, \
518           .put = alc_gpio_data_put, \
519           .private_value = nid | (mask<<16) }
520 #endif   /* CONFIG_SND_DEBUG */
521
522 /* A switch control to allow the enabling of the digital IO pins on the
523  * ALC260.  This is incredibly simplistic; the intention of this control is
524  * to provide something in the test model allowing digital outputs to be
525  * identified if present.  If models are found which can utilise these
526  * outputs a more complete mixer control can be devised for those models if
527  * necessary.
528  */
529 #ifdef CONFIG_SND_DEBUG
530 static int alc_spdif_ctrl_info(struct snd_kcontrol *kcontrol,
531                                struct snd_ctl_elem_info *uinfo)
532 {
533         uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
534         uinfo->count = 1;
535         uinfo->value.integer.min = 0;
536         uinfo->value.integer.max = 1;
537         return 0;
538 }
539
540 static int alc_spdif_ctrl_get(struct snd_kcontrol *kcontrol,
541                               struct snd_ctl_elem_value *ucontrol)
542 {
543         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
544         hda_nid_t nid = kcontrol->private_value & 0xffff;
545         unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
546         long *valp = ucontrol->value.integer.value;
547         unsigned int val = snd_hda_codec_read(codec, nid, 0,
548                                               AC_VERB_GET_DIGI_CONVERT, 0x00);
549
550         *valp = (val & mask) != 0;
551         return 0;
552 }
553 static int alc_spdif_ctrl_put(struct snd_kcontrol *kcontrol,
554                               struct snd_ctl_elem_value *ucontrol)
555 {
556         signed int change;
557         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
558         hda_nid_t nid = kcontrol->private_value & 0xffff;
559         unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
560         long val = *ucontrol->value.integer.value;
561         unsigned int ctrl_data = snd_hda_codec_read(codec, nid, 0,
562                                                     AC_VERB_GET_DIGI_CONVERT,
563                                                     0x00);
564
565         /* Set/unset the masked control bit(s) as needed */
566         change = (val == 0 ? 0 : mask) != (ctrl_data & mask);
567         if (val==0)
568                 ctrl_data &= ~mask;
569         else
570                 ctrl_data |= mask;
571         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_DIGI_CONVERT_1,
572                             ctrl_data);
573
574         return change;
575 }
576 #define ALC_SPDIF_CTRL_SWITCH(xname, nid, mask) \
577         { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0,  \
578           .info = alc_spdif_ctrl_info, \
579           .get = alc_spdif_ctrl_get, \
580           .put = alc_spdif_ctrl_put, \
581           .private_value = nid | (mask<<16) }
582 #endif   /* CONFIG_SND_DEBUG */
583
584 /*
585  * set up from the preset table
586  */
587 static void setup_preset(struct alc_spec *spec,
588                          const struct alc_config_preset *preset)
589 {
590         int i;
591
592         for (i = 0; i < ARRAY_SIZE(preset->mixers) && preset->mixers[i]; i++)
593                 spec->mixers[spec->num_mixers++] = preset->mixers[i];
594         for (i = 0; i < ARRAY_SIZE(preset->init_verbs) && preset->init_verbs[i];
595              i++)
596                 spec->init_verbs[spec->num_init_verbs++] =
597                         preset->init_verbs[i];
598         
599         spec->channel_mode = preset->channel_mode;
600         spec->num_channel_mode = preset->num_channel_mode;
601         spec->need_dac_fix = preset->need_dac_fix;
602
603         spec->multiout.max_channels = spec->channel_mode[0].channels;
604
605         spec->multiout.num_dacs = preset->num_dacs;
606         spec->multiout.dac_nids = preset->dac_nids;
607         spec->multiout.dig_out_nid = preset->dig_out_nid;
608         spec->multiout.hp_nid = preset->hp_nid;
609         
610         spec->num_mux_defs = preset->num_mux_defs;
611         if (!spec->num_mux_defs)
612                 spec->num_mux_defs = 1;
613         spec->input_mux = preset->input_mux;
614
615         spec->num_adc_nids = preset->num_adc_nids;
616         spec->adc_nids = preset->adc_nids;
617         spec->dig_in_nid = preset->dig_in_nid;
618
619         spec->unsol_event = preset->unsol_event;
620         spec->init_hook = preset->init_hook;
621 }
622
623 /* Enable GPIO mask and set output */
624 static struct hda_verb alc_gpio1_init_verbs[] = {
625         {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
626         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
627         {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
628         { }
629 };
630
631 static struct hda_verb alc_gpio2_init_verbs[] = {
632         {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
633         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
634         {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
635         { }
636 };
637
638 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
639  *      31 ~ 16 :       Manufacture ID
640  *      15 ~ 8  :       SKU ID
641  *      7  ~ 0  :       Assembly ID
642  *      port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
643  */
644 static void alc_subsystem_id(struct hda_codec *codec,
645                              unsigned int porta, unsigned int porte,
646                              unsigned int portd)
647 {
648         unsigned int ass, tmp;
649
650         ass = codec->subsystem_id;
651         if (!(ass & 1))
652                 return;
653
654         /* Override */
655         tmp = (ass & 0x38) >> 3;        /* external Amp control */
656         switch (tmp) {
657         case 1:
658                 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
659                 break;
660         case 3:
661                 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
662                 break;
663         case 5:
664         case 6:
665                 if (ass & 4) {  /* bit 2 : 0 = Desktop, 1 = Laptop */
666                         hda_nid_t port = 0;
667                         tmp = (ass & 0x1800) >> 11;
668                         switch (tmp) {
669                         case 0: port = porta; break;
670                         case 1: port = porte; break;
671                         case 2: port = portd; break;
672                         }
673                         if (port)
674                                 snd_hda_codec_write(codec, port, 0,
675                                                     AC_VERB_SET_EAPD_BTLENABLE,
676                                                     2);
677                 }
678                 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
679                 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF,
680                                     (tmp == 5 ? 0x3040 : 0x3050));
681                 break;
682         }
683 }
684
685 /*
686  * ALC880 3-stack model
687  *
688  * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0e)
689  * Pin assignment: Front = 0x14, Line-In/Surr = 0x1a, Mic/CLFE = 0x18,
690  *                 F-Mic = 0x1b, HP = 0x19
691  */
692
693 static hda_nid_t alc880_dac_nids[4] = {
694         /* front, rear, clfe, rear_surr */
695         0x02, 0x05, 0x04, 0x03
696 };
697
698 static hda_nid_t alc880_adc_nids[3] = {
699         /* ADC0-2 */
700         0x07, 0x08, 0x09,
701 };
702
703 /* The datasheet says the node 0x07 is connected from inputs,
704  * but it shows zero connection in the real implementation on some devices.
705  * Note: this is a 915GAV bug, fixed on 915GLV
706  */
707 static hda_nid_t alc880_adc_nids_alt[2] = {
708         /* ADC1-2 */
709         0x08, 0x09,
710 };
711
712 #define ALC880_DIGOUT_NID       0x06
713 #define ALC880_DIGIN_NID        0x0a
714
715 static struct hda_input_mux alc880_capture_source = {
716         .num_items = 4,
717         .items = {
718                 { "Mic", 0x0 },
719                 { "Front Mic", 0x3 },
720                 { "Line", 0x2 },
721                 { "CD", 0x4 },
722         },
723 };
724
725 /* channel source setting (2/6 channel selection for 3-stack) */
726 /* 2ch mode */
727 static struct hda_verb alc880_threestack_ch2_init[] = {
728         /* set line-in to input, mute it */
729         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
730         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
731         /* set mic-in to input vref 80%, mute it */
732         { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
733         { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
734         { } /* end */
735 };
736
737 /* 6ch mode */
738 static struct hda_verb alc880_threestack_ch6_init[] = {
739         /* set line-in to output, unmute it */
740         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
741         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
742         /* set mic-in to output, unmute it */
743         { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
744         { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
745         { } /* end */
746 };
747
748 static struct hda_channel_mode alc880_threestack_modes[2] = {
749         { 2, alc880_threestack_ch2_init },
750         { 6, alc880_threestack_ch6_init },
751 };
752
753 static struct snd_kcontrol_new alc880_three_stack_mixer[] = {
754         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
755         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
756         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
757         HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
758         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
759         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
760         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
761         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
762         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
763         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
764         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
765         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
766         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
767         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
768         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x3, HDA_INPUT),
769         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x3, HDA_INPUT),
770         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
771         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
772         HDA_CODEC_MUTE("Headphone Playback Switch", 0x19, 0x0, HDA_OUTPUT),
773         {
774                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
775                 .name = "Channel Mode",
776                 .info = alc_ch_mode_info,
777                 .get = alc_ch_mode_get,
778                 .put = alc_ch_mode_put,
779         },
780         { } /* end */
781 };
782
783 /* capture mixer elements */
784 static struct snd_kcontrol_new alc880_capture_mixer[] = {
785         HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
786         HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
787         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
788         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
789         HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
790         HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
791         {
792                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
793                 /* The multiple "Capture Source" controls confuse alsamixer
794                  * So call somewhat different..
795                  * FIXME: the controls appear in the "playback" view!
796                  */
797                 /* .name = "Capture Source", */
798                 .name = "Input Source",
799                 .count = 3,
800                 .info = alc_mux_enum_info,
801                 .get = alc_mux_enum_get,
802                 .put = alc_mux_enum_put,
803         },
804         { } /* end */
805 };
806
807 /* capture mixer elements (in case NID 0x07 not available) */
808 static struct snd_kcontrol_new alc880_capture_alt_mixer[] = {
809         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
810         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
811         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
812         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
813         {
814                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
815                 /* The multiple "Capture Source" controls confuse alsamixer
816                  * So call somewhat different..
817                  * FIXME: the controls appear in the "playback" view!
818                  */
819                 /* .name = "Capture Source", */
820                 .name = "Input Source",
821                 .count = 2,
822                 .info = alc_mux_enum_info,
823                 .get = alc_mux_enum_get,
824                 .put = alc_mux_enum_put,
825         },
826         { } /* end */
827 };
828
829
830
831 /*
832  * ALC880 5-stack model
833  *
834  * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0d),
835  *      Side = 0x02 (0xd)
836  * Pin assignment: Front = 0x14, Surr = 0x17, CLFE = 0x16
837  *                 Line-In/Side = 0x1a, Mic = 0x18, F-Mic = 0x1b, HP = 0x19
838  */
839
840 /* additional mixers to alc880_three_stack_mixer */
841 static struct snd_kcontrol_new alc880_five_stack_mixer[] = {
842         HDA_CODEC_VOLUME("Side Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
843         HDA_BIND_MUTE("Side Playback Switch", 0x0d, 2, HDA_INPUT),
844         { } /* end */
845 };
846
847 /* channel source setting (6/8 channel selection for 5-stack) */
848 /* 6ch mode */
849 static struct hda_verb alc880_fivestack_ch6_init[] = {
850         /* set line-in to input, mute it */
851         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
852         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
853         { } /* end */
854 };
855
856 /* 8ch mode */
857 static struct hda_verb alc880_fivestack_ch8_init[] = {
858         /* set line-in to output, unmute it */
859         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
860         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
861         { } /* end */
862 };
863
864 static struct hda_channel_mode alc880_fivestack_modes[2] = {
865         { 6, alc880_fivestack_ch6_init },
866         { 8, alc880_fivestack_ch8_init },
867 };
868
869
870 /*
871  * ALC880 6-stack model
872  *
873  * DAC: Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e),
874  *      Side = 0x05 (0x0f)
875  * Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, Side = 0x17,
876  *   Mic = 0x18, F-Mic = 0x19, Line = 0x1a, HP = 0x1b
877  */
878
879 static hda_nid_t alc880_6st_dac_nids[4] = {
880         /* front, rear, clfe, rear_surr */
881         0x02, 0x03, 0x04, 0x05
882 };
883
884 static struct hda_input_mux alc880_6stack_capture_source = {
885         .num_items = 4,
886         .items = {
887                 { "Mic", 0x0 },
888                 { "Front Mic", 0x1 },
889                 { "Line", 0x2 },
890                 { "CD", 0x4 },
891         },
892 };
893
894 /* fixed 8-channels */
895 static struct hda_channel_mode alc880_sixstack_modes[1] = {
896         { 8, NULL },
897 };
898
899 static struct snd_kcontrol_new alc880_six_stack_mixer[] = {
900         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
901         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
902         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
903         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
904         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
905         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
906         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
907         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
908         HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
909         HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
910         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
911         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
912         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
913         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
914         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
915         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
916         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
917         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
918         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
919         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
920         {
921                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
922                 .name = "Channel Mode",
923                 .info = alc_ch_mode_info,
924                 .get = alc_ch_mode_get,
925                 .put = alc_ch_mode_put,
926         },
927         { } /* end */
928 };
929
930
931 /*
932  * ALC880 W810 model
933  *
934  * W810 has rear IO for:
935  * Front (DAC 02)
936  * Surround (DAC 03)
937  * Center/LFE (DAC 04)
938  * Digital out (06)
939  *
940  * The system also has a pair of internal speakers, and a headphone jack.
941  * These are both connected to Line2 on the codec, hence to DAC 02.
942  * 
943  * There is a variable resistor to control the speaker or headphone
944  * volume. This is a hardware-only device without a software API.
945  *
946  * Plugging headphones in will disable the internal speakers. This is
947  * implemented in hardware, not via the driver using jack sense. In
948  * a similar fashion, plugging into the rear socket marked "front" will
949  * disable both the speakers and headphones.
950  *
951  * For input, there's a microphone jack, and an "audio in" jack.
952  * These may not do anything useful with this driver yet, because I
953  * haven't setup any initialization verbs for these yet...
954  */
955
956 static hda_nid_t alc880_w810_dac_nids[3] = {
957         /* front, rear/surround, clfe */
958         0x02, 0x03, 0x04
959 };
960
961 /* fixed 6 channels */
962 static struct hda_channel_mode alc880_w810_modes[1] = {
963         { 6, NULL }
964 };
965
966 /* Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, HP = 0x1b */
967 static struct snd_kcontrol_new alc880_w810_base_mixer[] = {
968         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
969         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
970         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
971         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
972         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
973         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
974         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
975         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
976         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
977         { } /* end */
978 };
979
980
981 /*
982  * Z710V model
983  *
984  * DAC: Front = 0x02 (0x0c), HP = 0x03 (0x0d)
985  * Pin assignment: Front = 0x14, HP = 0x15, Mic = 0x18, Mic2 = 0x19(?),
986  *                 Line = 0x1a
987  */
988
989 static hda_nid_t alc880_z71v_dac_nids[1] = {
990         0x02
991 };
992 #define ALC880_Z71V_HP_DAC      0x03
993
994 /* fixed 2 channels */
995 static struct hda_channel_mode alc880_2_jack_modes[1] = {
996         { 2, NULL }
997 };
998
999 static struct snd_kcontrol_new alc880_z71v_mixer[] = {
1000         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1001         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1002         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1003         HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
1004         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1005         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1006         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1007         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1008         { } /* end */
1009 };
1010
1011
1012 /* FIXME! */
1013 /*
1014  * ALC880 F1734 model
1015  *
1016  * DAC: HP = 0x02 (0x0c), Front = 0x03 (0x0d)
1017  * Pin assignment: HP = 0x14, Front = 0x15, Mic = 0x18
1018  */
1019
1020 static hda_nid_t alc880_f1734_dac_nids[1] = {
1021         0x03
1022 };
1023 #define ALC880_F1734_HP_DAC     0x02
1024
1025 static struct snd_kcontrol_new alc880_f1734_mixer[] = {
1026         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1027         HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1028         HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1029         HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1030         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1031         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1032         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1033         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1034         { } /* end */
1035 };
1036
1037
1038 /* FIXME! */
1039 /*
1040  * ALC880 ASUS model
1041  *
1042  * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1043  * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1044  *  Mic = 0x18, Line = 0x1a
1045  */
1046
1047 #define alc880_asus_dac_nids    alc880_w810_dac_nids    /* identical with w810 */
1048 #define alc880_asus_modes       alc880_threestack_modes /* 2/6 channel mode */
1049
1050 static struct snd_kcontrol_new alc880_asus_mixer[] = {
1051         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1052         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1053         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1054         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1055         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1056         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1057         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1058         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1059         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1060         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1061         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1062         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1063         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1064         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1065         {
1066                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1067                 .name = "Channel Mode",
1068                 .info = alc_ch_mode_info,
1069                 .get = alc_ch_mode_get,
1070                 .put = alc_ch_mode_put,
1071         },
1072         { } /* end */
1073 };
1074
1075 /* FIXME! */
1076 /*
1077  * ALC880 ASUS W1V model
1078  *
1079  * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1080  * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1081  *  Mic = 0x18, Line = 0x1a, Line2 = 0x1b
1082  */
1083
1084 /* additional mixers to alc880_asus_mixer */
1085 static struct snd_kcontrol_new alc880_asus_w1v_mixer[] = {
1086         HDA_CODEC_VOLUME("Line2 Playback Volume", 0x0b, 0x03, HDA_INPUT),
1087         HDA_CODEC_MUTE("Line2 Playback Switch", 0x0b, 0x03, HDA_INPUT),
1088         { } /* end */
1089 };
1090
1091 /* additional mixers to alc880_asus_mixer */
1092 static struct snd_kcontrol_new alc880_pcbeep_mixer[] = {
1093         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1094         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1095         { } /* end */
1096 };
1097
1098 /* TCL S700 */
1099 static struct snd_kcontrol_new alc880_tcl_s700_mixer[] = {
1100         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1101         HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1102         HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
1103         HDA_CODEC_VOLUME("CD Playback Volume", 0x0B, 0x04, HDA_INPUT),
1104         HDA_CODEC_MUTE("CD Playback Switch", 0x0B, 0x04, HDA_INPUT),
1105         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0B, 0x0, HDA_INPUT),
1106         HDA_CODEC_MUTE("Mic Playback Switch", 0x0B, 0x0, HDA_INPUT),
1107         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
1108         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
1109         {
1110                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1111                 /* The multiple "Capture Source" controls confuse alsamixer
1112                  * So call somewhat different..
1113                  * FIXME: the controls appear in the "playback" view!
1114                  */
1115                 /* .name = "Capture Source", */
1116                 .name = "Input Source",
1117                 .count = 1,
1118                 .info = alc_mux_enum_info,
1119                 .get = alc_mux_enum_get,
1120                 .put = alc_mux_enum_put,
1121         },
1122         { } /* end */
1123 };
1124
1125 /* Uniwill */
1126 static struct snd_kcontrol_new alc880_uniwill_mixer[] = {
1127         HDA_CODEC_VOLUME("HPhone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1128         HDA_BIND_MUTE("HPhone Playback Switch", 0x0c, 2, HDA_INPUT),
1129         HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1130         HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
1131         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1132         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1133         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1134         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1135         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1136         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1137         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1138         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1139         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1140         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1141         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1142         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1143         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1144         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1145         {
1146                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1147                 .name = "Channel Mode",
1148                 .info = alc_ch_mode_info,
1149                 .get = alc_ch_mode_get,
1150                 .put = alc_ch_mode_put,
1151         },
1152         { } /* end */
1153 };
1154
1155 static struct snd_kcontrol_new alc880_fujitsu_mixer[] = {
1156         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1157         HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1158         HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1159         HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1160         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1161         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1162         HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1163         HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1164         HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1165         HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1166         { } /* end */
1167 };
1168
1169 static struct snd_kcontrol_new alc880_uniwill_p53_mixer[] = {
1170         HDA_CODEC_VOLUME("HPhone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1171         HDA_BIND_MUTE("HPhone Playback Switch", 0x0c, 2, HDA_INPUT),
1172         HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1173         HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
1174         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1175         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1176         { } /* end */
1177 };
1178
1179 /*
1180  * build control elements
1181  */
1182 static int alc_build_controls(struct hda_codec *codec)
1183 {
1184         struct alc_spec *spec = codec->spec;
1185         int err;
1186         int i;
1187
1188         for (i = 0; i < spec->num_mixers; i++) {
1189                 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1190                 if (err < 0)
1191                         return err;
1192         }
1193
1194         if (spec->multiout.dig_out_nid) {
1195                 err = snd_hda_create_spdif_out_ctls(codec,
1196                                                     spec->multiout.dig_out_nid);
1197                 if (err < 0)
1198                         return err;
1199         }
1200         if (spec->dig_in_nid) {
1201                 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1202                 if (err < 0)
1203                         return err;
1204         }
1205         return 0;
1206 }
1207
1208
1209 /*
1210  * initialize the codec volumes, etc
1211  */
1212
1213 /*
1214  * generic initialization of ADC, input mixers and output mixers
1215  */
1216 static struct hda_verb alc880_volume_init_verbs[] = {
1217         /*
1218          * Unmute ADC0-2 and set the default input to mic-in
1219          */
1220         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
1221         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1222         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
1223         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1224         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
1225         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1226
1227         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
1228          * mixer widget
1229          * Note: PASD motherboards uses the Line In 2 as the input for front
1230          * panel mic (mic 2)
1231          */
1232         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
1233         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1234         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1235         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
1236         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
1237         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
1238
1239         /*
1240          * Set up output mixers (0x0c - 0x0f)
1241          */
1242         /* set vol=0 to output mixers */
1243         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1244         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1245         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1246         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1247         /* set up input amps for analog loopback */
1248         /* Amp Indices: DAC = 0, mixer = 1 */
1249         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1250         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1251         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1252         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1253         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1254         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1255         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1256         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1257
1258         { }
1259 };
1260
1261 /*
1262  * 3-stack pin configuration:
1263  * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
1264  */
1265 static struct hda_verb alc880_pin_3stack_init_verbs[] = {
1266         /*
1267          * preset connection lists of input pins
1268          * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1269          */
1270         {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
1271         {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1272         {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
1273
1274         /*
1275          * Set pin mode and muting
1276          */
1277         /* set front pin widgets 0x14 for output */
1278         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1279         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1280         /* Mic1 (rear panel) pin widget for input and vref at 80% */
1281         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1282         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1283         /* Mic2 (as headphone out) for HP output */
1284         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1285         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1286         /* Line In pin widget for input */
1287         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1288         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1289         /* Line2 (as front mic) pin widget for input and vref at 80% */
1290         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1291         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1292         /* CD pin widget for input */
1293         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1294
1295         { }
1296 };
1297
1298 /*
1299  * 5-stack pin configuration:
1300  * front = 0x14, surround = 0x17, clfe = 0x16, mic = 0x18, HP = 0x19,
1301  * line-in/side = 0x1a, f-mic = 0x1b
1302  */
1303 static struct hda_verb alc880_pin_5stack_init_verbs[] = {
1304         /*
1305          * preset connection lists of input pins
1306          * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1307          */
1308         {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1309         {0x12, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/side */
1310
1311         /*
1312          * Set pin mode and muting
1313          */
1314         /* set pin widgets 0x14-0x17 for output */
1315         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1316         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1317         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1318         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1319         /* unmute pins for output (no gain on this amp) */
1320         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1321         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1322         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1323         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1324
1325         /* Mic1 (rear panel) pin widget for input and vref at 80% */
1326         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1327         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1328         /* Mic2 (as headphone out) for HP output */
1329         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1330         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1331         /* Line In pin widget for input */
1332         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1333         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1334         /* Line2 (as front mic) pin widget for input and vref at 80% */
1335         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1336         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1337         /* CD pin widget for input */
1338         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1339
1340         { }
1341 };
1342
1343 /*
1344  * W810 pin configuration:
1345  * front = 0x14, surround = 0x15, clfe = 0x16, HP = 0x1b
1346  */
1347 static struct hda_verb alc880_pin_w810_init_verbs[] = {
1348         /* hphone/speaker input selector: front DAC */
1349         {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
1350
1351         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1352         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1353         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1354         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1355         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1356         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1357
1358         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1359         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1360
1361         { }
1362 };
1363
1364 /*
1365  * Z71V pin configuration:
1366  * Speaker-out = 0x14, HP = 0x15, Mic = 0x18, Line-in = 0x1a, Mic2 = 0x1b (?)
1367  */
1368 static struct hda_verb alc880_pin_z71v_init_verbs[] = {
1369         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1370         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1371         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1372         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1373
1374         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1375         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1376         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1377         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1378
1379         { }
1380 };
1381
1382 /*
1383  * 6-stack pin configuration:
1384  * front = 0x14, surr = 0x15, clfe = 0x16, side = 0x17, mic = 0x18,
1385  * f-mic = 0x19, line = 0x1a, HP = 0x1b
1386  */
1387 static struct hda_verb alc880_pin_6stack_init_verbs[] = {
1388         {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1389
1390         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1391         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1392         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1393         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1394         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1395         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1396         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1397         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1398
1399         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1400         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1401         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1402         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1403         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1404         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1405         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1406         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1407         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1408         
1409         { }
1410 };
1411
1412 /*
1413  * Uniwill pin configuration:
1414  * HP = 0x14, InternalSpeaker = 0x15, mic = 0x18, internal mic = 0x19,
1415  * line = 0x1a
1416  */
1417 static struct hda_verb alc880_uniwill_init_verbs[] = {
1418         {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1419
1420         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1421         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1422         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1423         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1424         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1425         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1426         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1427         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1428         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1429         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1430         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1431         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1432         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1433         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1434
1435         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1436         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1437         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1438         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1439         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1440         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1441         /* {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, */
1442         /* {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, */
1443         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1444
1445         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1446         {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
1447
1448         { }
1449 };
1450
1451 /*
1452 * Uniwill P53
1453 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x19, 
1454  */
1455 static struct hda_verb alc880_uniwill_p53_init_verbs[] = {
1456         {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1457
1458         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1459         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1460         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1461         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1462         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1463         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1464         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1465         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1466         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1467         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1468         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1469         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1470
1471         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1472         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1473         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1474         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1475         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1476         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1477
1478         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1479         {0x21, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_DCVOL_EVENT},
1480
1481         { }
1482 };
1483
1484 static struct hda_verb alc880_beep_init_verbs[] = {
1485         { 0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5) },
1486         { }
1487 };
1488
1489 /* toggle speaker-output according to the hp-jack state */
1490 static void alc880_uniwill_automute(struct hda_codec *codec)
1491 {
1492         unsigned int present;
1493         unsigned char bits;
1494
1495         present = snd_hda_codec_read(codec, 0x14, 0,
1496                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1497         bits = present ? 0x80 : 0;
1498         snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
1499                                  0x80, bits);
1500         snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
1501                                  0x80, bits);
1502         snd_hda_codec_amp_update(codec, 0x16, 0, HDA_OUTPUT, 0,
1503                                  0x80, bits);
1504         snd_hda_codec_amp_update(codec, 0x16, 1, HDA_OUTPUT, 0,
1505                                  0x80, bits);
1506
1507         present = snd_hda_codec_read(codec, 0x18, 0,
1508                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1509         snd_hda_codec_write(codec, 0x0b, 0, AC_VERB_SET_AMP_GAIN_MUTE,
1510                             0x7000 | (0x01 << 8) | bits);
1511 }
1512
1513 static void alc880_uniwill_unsol_event(struct hda_codec *codec,
1514                                        unsigned int res)
1515 {
1516         /* Looks like the unsol event is incompatible with the standard
1517          * definition.  4bit tag is placed at 28 bit!
1518          */
1519         if ((res >> 28) == ALC880_HP_EVENT ||
1520             (res >> 28) == ALC880_MIC_EVENT)
1521                 alc880_uniwill_automute(codec);
1522 }
1523
1524 static void alc880_uniwill_p53_hp_automute(struct hda_codec *codec)
1525 {
1526         unsigned int present;
1527         unsigned char bits;
1528
1529         present = snd_hda_codec_read(codec, 0x14, 0,
1530                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1531         bits = present ? 0x80 : 0;
1532         snd_hda_codec_amp_update(codec, 0x15, 0, HDA_INPUT, 0,
1533                                  0x80, bits);
1534         snd_hda_codec_amp_update(codec, 0x15, 1, HDA_INPUT, 0,
1535                                  0x80, bits);
1536 }
1537
1538 static void alc880_uniwill_p53_dcvol_automute(struct hda_codec *codec)
1539 {
1540         unsigned int present;
1541         
1542         present = snd_hda_codec_read(codec, 0x21, 0,
1543                                      AC_VERB_GET_VOLUME_KNOB_CONTROL, 0) & 0x7f;
1544
1545         snd_hda_codec_amp_update(codec, 0x0c, 0, HDA_OUTPUT, 0,
1546                                  0x7f, present);
1547         snd_hda_codec_amp_update(codec, 0x0c, 1, HDA_OUTPUT, 0,
1548                                  0x7f,  present);
1549
1550         snd_hda_codec_amp_update(codec, 0x0d, 0, HDA_OUTPUT, 0,
1551                                  0x7f,  present);
1552         snd_hda_codec_amp_update(codec, 0x0d, 1, HDA_OUTPUT, 0,
1553                                  0x7f, present);
1554
1555 }
1556 static void alc880_uniwill_p53_unsol_event(struct hda_codec *codec,
1557                                            unsigned int res)
1558 {
1559         /* Looks like the unsol event is incompatible with the standard
1560          * definition.  4bit tag is placed at 28 bit!
1561          */
1562         if ((res >> 28) == ALC880_HP_EVENT)
1563                 alc880_uniwill_p53_hp_automute(codec);
1564         if ((res >> 28) == ALC880_DCVOL_EVENT)
1565                 alc880_uniwill_p53_dcvol_automute(codec);
1566 }
1567
1568 /* FIXME! */
1569 /*
1570  * F1734 pin configuration:
1571  * HP = 0x14, speaker-out = 0x15, mic = 0x18
1572  */
1573 static struct hda_verb alc880_pin_f1734_init_verbs[] = {
1574         {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1575         {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1576         {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1577         {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1578
1579         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1580         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1581         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1582         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1583
1584         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1585         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1586         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1587         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1588         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1589         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1590         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1591         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1592         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1593
1594         { }
1595 };
1596
1597 /* FIXME! */
1598 /*
1599  * ASUS pin configuration:
1600  * HP/front = 0x14, surr = 0x15, clfe = 0x16, mic = 0x18, line = 0x1a
1601  */
1602 static struct hda_verb alc880_pin_asus_init_verbs[] = {
1603         {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1604         {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1605         {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1606         {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1607
1608         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1609         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1610         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1611         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1612         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1613         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1614         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1615         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1616
1617         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1618         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1619         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1620         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1621         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1622         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1623         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1624         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1625         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1626         
1627         { }
1628 };
1629
1630 /* Enable GPIO mask and set output */
1631 #define alc880_gpio1_init_verbs alc_gpio1_init_verbs
1632 #define alc880_gpio2_init_verbs alc_gpio2_init_verbs
1633
1634 /* Clevo m520g init */
1635 static struct hda_verb alc880_pin_clevo_init_verbs[] = {
1636         /* headphone output */
1637         {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1638         /* line-out */
1639         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1640         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1641         /* Line-in */
1642         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1643         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1644         /* CD */
1645         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1646         {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1647         /* Mic1 (rear panel) */
1648         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1649         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1650         /* Mic2 (front panel) */
1651         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1652         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1653         /* headphone */
1654         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1655         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1656         /* change to EAPD mode */
1657         {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1658         {0x20, AC_VERB_SET_PROC_COEF,  0x3060},
1659
1660         { }
1661 };
1662
1663 static struct hda_verb alc880_pin_tcl_S700_init_verbs[] = {
1664         /* change to EAPD mode */
1665         {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1666         {0x20, AC_VERB_SET_PROC_COEF,  0x3060},
1667
1668         /* Headphone output */
1669         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1670         /* Front output*/
1671         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1672         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
1673
1674         /* Line In pin widget for input */
1675         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1676         /* CD pin widget for input */
1677         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1678         /* Mic1 (rear panel) pin widget for input and vref at 80% */
1679         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1680
1681         /* change to EAPD mode */
1682         {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1683         {0x20, AC_VERB_SET_PROC_COEF,  0x3070},
1684
1685         { }
1686 };
1687
1688 /*
1689  * LG m1 express dual
1690  *
1691  * Pin assignment:
1692  *   Rear Line-In/Out (blue): 0x14
1693  *   Build-in Mic-In: 0x15
1694  *   Speaker-out: 0x17
1695  *   HP-Out (green): 0x1b
1696  *   Mic-In/Out (red): 0x19
1697  *   SPDIF-Out: 0x1e
1698  */
1699
1700 /* To make 5.1 output working (green=Front, blue=Surr, red=CLFE) */
1701 static hda_nid_t alc880_lg_dac_nids[3] = {
1702         0x05, 0x02, 0x03
1703 };
1704
1705 /* seems analog CD is not working */
1706 static struct hda_input_mux alc880_lg_capture_source = {
1707         .num_items = 3,
1708         .items = {
1709                 { "Mic", 0x1 },
1710                 { "Line", 0x5 },
1711                 { "Internal Mic", 0x6 },
1712         },
1713 };
1714
1715 /* 2,4,6 channel modes */
1716 static struct hda_verb alc880_lg_ch2_init[] = {
1717         /* set line-in and mic-in to input */
1718         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1719         { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1720         { }
1721 };
1722
1723 static struct hda_verb alc880_lg_ch4_init[] = {
1724         /* set line-in to out and mic-in to input */
1725         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1726         { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1727         { }
1728 };
1729
1730 static struct hda_verb alc880_lg_ch6_init[] = {
1731         /* set line-in and mic-in to output */
1732         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1733         { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1734         { }
1735 };
1736
1737 static struct hda_channel_mode alc880_lg_ch_modes[3] = {
1738         { 2, alc880_lg_ch2_init },
1739         { 4, alc880_lg_ch4_init },
1740         { 6, alc880_lg_ch6_init },
1741 };
1742
1743 static struct snd_kcontrol_new alc880_lg_mixer[] = {
1744         /* FIXME: it's not really "master" but front channels */
1745         HDA_CODEC_VOLUME("Master Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1746         HDA_BIND_MUTE("Master Playback Switch", 0x0f, 2, HDA_INPUT),
1747         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1748         HDA_BIND_MUTE("Surround Playback Switch", 0x0c, 2, HDA_INPUT),
1749         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
1750         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
1751         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
1752         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
1753         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1754         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1755         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x06, HDA_INPUT),
1756         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x06, HDA_INPUT),
1757         HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x07, HDA_INPUT),
1758         HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x07, HDA_INPUT),
1759         {
1760                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1761                 .name = "Channel Mode",
1762                 .info = alc_ch_mode_info,
1763                 .get = alc_ch_mode_get,
1764                 .put = alc_ch_mode_put,
1765         },
1766         { } /* end */
1767 };
1768
1769 static struct hda_verb alc880_lg_init_verbs[] = {
1770         /* set capture source to mic-in */
1771         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1772         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1773         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1774         /* mute all amp mixer inputs */
1775         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
1776         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
1777         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(7)},
1778         /* line-in to input */
1779         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1780         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1781         /* built-in mic */
1782         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1783         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1784         /* speaker-out */
1785         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1786         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1787         /* mic-in to input */
1788         {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1789         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1790         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1791         /* HP-out */
1792         {0x13, AC_VERB_SET_CONNECT_SEL, 0x03},
1793         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1794         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1795         /* jack sense */
1796         {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1797         { }
1798 };
1799
1800 /* toggle speaker-output according to the hp-jack state */
1801 static void alc880_lg_automute(struct hda_codec *codec)
1802 {
1803         unsigned int present;
1804         unsigned char bits;
1805
1806         present = snd_hda_codec_read(codec, 0x1b, 0,
1807                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1808         bits = present ? 0x80 : 0;
1809         snd_hda_codec_amp_update(codec, 0x17, 0, HDA_OUTPUT, 0,
1810                                  0x80, bits);
1811         snd_hda_codec_amp_update(codec, 0x17, 1, HDA_OUTPUT, 0,
1812                                  0x80, bits);
1813 }
1814
1815 static void alc880_lg_unsol_event(struct hda_codec *codec, unsigned int res)
1816 {
1817         /* Looks like the unsol event is incompatible with the standard
1818          * definition.  4bit tag is placed at 28 bit!
1819          */
1820         if ((res >> 28) == 0x01)
1821                 alc880_lg_automute(codec);
1822 }
1823
1824 /*
1825  * LG LW20
1826  *
1827  * Pin assignment:
1828  *   Speaker-out: 0x14
1829  *   Mic-In: 0x18
1830  *   Built-in Mic-In: 0x19 (?)
1831  *   HP-Out: 0x1b
1832  *   SPDIF-Out: 0x1e
1833  */
1834
1835 /* seems analog CD is not working */
1836 static struct hda_input_mux alc880_lg_lw_capture_source = {
1837         .num_items = 2,
1838         .items = {
1839                 { "Mic", 0x0 },
1840                 { "Internal Mic", 0x1 },
1841         },
1842 };
1843
1844 static struct snd_kcontrol_new alc880_lg_lw_mixer[] = {
1845         HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1846         HDA_BIND_MUTE("Master Playback Switch", 0x0c, 2, HDA_INPUT),
1847         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1848         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1849         HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
1850         HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
1851         { } /* end */
1852 };
1853
1854 static struct hda_verb alc880_lg_lw_init_verbs[] = {
1855         /* set capture source to mic-in */
1856         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1857         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1858         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1859         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(7)},
1860         /* speaker-out */
1861         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1862         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1863         /* HP-out */
1864         {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1865         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1866         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1867         /* mic-in to input */
1868         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1869         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1870         /* built-in mic */
1871         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1872         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1873         /* jack sense */
1874         {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1875         { }
1876 };
1877
1878 /* toggle speaker-output according to the hp-jack state */
1879 static void alc880_lg_lw_automute(struct hda_codec *codec)
1880 {
1881         unsigned int present;
1882         unsigned char bits;
1883
1884         present = snd_hda_codec_read(codec, 0x1b, 0,
1885                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1886         bits = present ? 0x80 : 0;
1887         snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
1888                                  0x80, bits);
1889         snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
1890                                  0x80, bits);
1891 }
1892
1893 static void alc880_lg_lw_unsol_event(struct hda_codec *codec, unsigned int res)
1894 {
1895         /* Looks like the unsol event is incompatible with the standard
1896          * definition.  4bit tag is placed at 28 bit!
1897          */
1898         if ((res >> 28) == 0x01)
1899                 alc880_lg_lw_automute(codec);
1900 }
1901
1902 /*
1903  * Common callbacks
1904  */
1905
1906 static int alc_init(struct hda_codec *codec)
1907 {
1908         struct alc_spec *spec = codec->spec;
1909         unsigned int i;
1910
1911         for (i = 0; i < spec->num_init_verbs; i++)
1912                 snd_hda_sequence_write(codec, spec->init_verbs[i]);
1913
1914         if (spec->init_hook)
1915                 spec->init_hook(codec);
1916
1917         return 0;
1918 }
1919
1920 static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
1921 {
1922         struct alc_spec *spec = codec->spec;
1923
1924         if (spec->unsol_event)
1925                 spec->unsol_event(codec, res);
1926 }
1927
1928 #ifdef CONFIG_PM
1929 /*
1930  * resume
1931  */
1932 static int alc_resume(struct hda_codec *codec)
1933 {
1934         struct alc_spec *spec = codec->spec;
1935         int i;
1936
1937         alc_init(codec);
1938         for (i = 0; i < spec->num_mixers; i++)
1939                 snd_hda_resume_ctls(codec, spec->mixers[i]);
1940         if (spec->multiout.dig_out_nid)
1941                 snd_hda_resume_spdif_out(codec);
1942         if (spec->dig_in_nid)
1943                 snd_hda_resume_spdif_in(codec);
1944
1945         return 0;
1946 }
1947 #endif
1948
1949 /*
1950  * Analog playback callbacks
1951  */
1952 static int alc880_playback_pcm_open(struct hda_pcm_stream *hinfo,
1953                                     struct hda_codec *codec,
1954                                     struct snd_pcm_substream *substream)
1955 {
1956         struct alc_spec *spec = codec->spec;
1957         return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream);
1958 }
1959
1960 static int alc880_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1961                                        struct hda_codec *codec,
1962                                        unsigned int stream_tag,
1963                                        unsigned int format,
1964                                        struct snd_pcm_substream *substream)
1965 {
1966         struct alc_spec *spec = codec->spec;
1967         return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
1968                                                 stream_tag, format, substream);
1969 }
1970
1971 static int alc880_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
1972                                        struct hda_codec *codec,
1973                                        struct snd_pcm_substream *substream)
1974 {
1975         struct alc_spec *spec = codec->spec;
1976         return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
1977 }
1978
1979 /*
1980  * Digital out
1981  */
1982 static int alc880_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
1983                                         struct hda_codec *codec,
1984                                         struct snd_pcm_substream *substream)
1985 {
1986         struct alc_spec *spec = codec->spec;
1987         return snd_hda_multi_out_dig_open(codec, &spec->multiout);
1988 }
1989
1990 static int alc880_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1991                                            struct hda_codec *codec,
1992                                            unsigned int stream_tag,
1993                                            unsigned int format,
1994                                            struct snd_pcm_substream *substream)
1995 {
1996         struct alc_spec *spec = codec->spec;
1997         return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
1998                                              stream_tag, format, substream);
1999 }
2000
2001 static int alc880_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2002                                          struct hda_codec *codec,
2003                                          struct snd_pcm_substream *substream)
2004 {
2005         struct alc_spec *spec = codec->spec;
2006         return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2007 }
2008
2009 /*
2010  * Analog capture
2011  */
2012 static int alc880_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2013                                       struct hda_codec *codec,
2014                                       unsigned int stream_tag,
2015                                       unsigned int format,
2016                                       struct snd_pcm_substream *substream)
2017 {
2018         struct alc_spec *spec = codec->spec;
2019
2020         snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
2021                                    stream_tag, 0, format);
2022         return 0;
2023 }
2024
2025 static int alc880_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2026                                       struct hda_codec *codec,
2027                                       struct snd_pcm_substream *substream)
2028 {
2029         struct alc_spec *spec = codec->spec;
2030
2031         snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
2032                                    0, 0, 0);
2033         return 0;
2034 }
2035
2036
2037 /*
2038  */
2039 static struct hda_pcm_stream alc880_pcm_analog_playback = {
2040         .substreams = 1,
2041         .channels_min = 2,
2042         .channels_max = 8,
2043         /* NID is set in alc_build_pcms */
2044         .ops = {
2045                 .open = alc880_playback_pcm_open,
2046                 .prepare = alc880_playback_pcm_prepare,
2047                 .cleanup = alc880_playback_pcm_cleanup
2048         },
2049 };
2050
2051 static struct hda_pcm_stream alc880_pcm_analog_capture = {
2052         .substreams = 2,
2053         .channels_min = 2,
2054         .channels_max = 2,
2055         /* NID is set in alc_build_pcms */
2056         .ops = {
2057                 .prepare = alc880_capture_pcm_prepare,
2058                 .cleanup = alc880_capture_pcm_cleanup
2059         },
2060 };
2061
2062 static struct hda_pcm_stream alc880_pcm_digital_playback = {
2063         .substreams = 1,
2064         .channels_min = 2,
2065         .channels_max = 2,
2066         /* NID is set in alc_build_pcms */
2067         .ops = {
2068                 .open = alc880_dig_playback_pcm_open,
2069                 .close = alc880_dig_playback_pcm_close,
2070                 .prepare = alc880_dig_playback_pcm_prepare
2071         },
2072 };
2073
2074 static struct hda_pcm_stream alc880_pcm_digital_capture = {
2075         .substreams = 1,
2076         .channels_min = 2,
2077         .channels_max = 2,
2078         /* NID is set in alc_build_pcms */
2079 };
2080
2081 /* Used by alc_build_pcms to flag that a PCM has no playback stream */
2082 static struct hda_pcm_stream alc_pcm_null_playback = {
2083         .substreams = 0,
2084         .channels_min = 0,
2085         .channels_max = 0,
2086 };
2087
2088 static int alc_build_pcms(struct hda_codec *codec)
2089 {
2090         struct alc_spec *spec = codec->spec;
2091         struct hda_pcm *info = spec->pcm_rec;
2092         int i;
2093
2094         codec->num_pcms = 1;
2095         codec->pcm_info = info;
2096
2097         info->name = spec->stream_name_analog;
2098         if (spec->stream_analog_playback) {
2099                 snd_assert(spec->multiout.dac_nids, return -EINVAL);
2100                 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_analog_playback);
2101                 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
2102         }
2103         if (spec->stream_analog_capture) {
2104                 snd_assert(spec->adc_nids, return -EINVAL);
2105                 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
2106                 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2107         }
2108
2109         if (spec->channel_mode) {
2110                 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2111                 for (i = 0; i < spec->num_channel_mode; i++) {
2112                         if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2113                                 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2114                         }
2115                 }
2116         }
2117
2118         /* SPDIF for stream index #1 */
2119         if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2120                 codec->num_pcms = 2;
2121                 info = spec->pcm_rec + 1;
2122                 info->name = spec->stream_name_digital;
2123                 if (spec->multiout.dig_out_nid &&
2124                     spec->stream_digital_playback) {
2125                         info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_digital_playback);
2126                         info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2127                 }
2128                 if (spec->dig_in_nid &&
2129                     spec->stream_digital_capture) {
2130                         info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_digital_capture);
2131                         info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2132                 }
2133         }
2134
2135         /* If the use of more than one ADC is requested for the current
2136          * model, configure a second analog capture-only PCM.
2137          */
2138         /* Additional Analaog capture for index #2 */
2139         if (spec->num_adc_nids > 1 && spec->stream_analog_capture &&
2140             spec->adc_nids) {
2141                 codec->num_pcms = 3;
2142                 info = spec->pcm_rec + 2;
2143                 info->name = spec->stream_name_analog;
2144                 /* No playback stream for second PCM */
2145                 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = alc_pcm_null_playback;
2146                 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2147                 if (spec->stream_analog_capture) {
2148                         info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
2149                         info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[1];
2150                 }
2151         }
2152
2153         return 0;
2154 }
2155
2156 static void alc_free(struct hda_codec *codec)
2157 {
2158         struct alc_spec *spec = codec->spec;
2159         unsigned int i;
2160
2161         if (!spec)
2162                 return;
2163
2164         if (spec->kctl_alloc) {
2165                 for (i = 0; i < spec->num_kctl_used; i++)
2166                         kfree(spec->kctl_alloc[i].name);
2167                 kfree(spec->kctl_alloc);
2168         }
2169         kfree(spec);
2170 }
2171
2172 /*
2173  */
2174 static struct hda_codec_ops alc_patch_ops = {
2175         .build_controls = alc_build_controls,
2176         .build_pcms = alc_build_pcms,
2177         .init = alc_init,
2178         .free = alc_free,
2179         .unsol_event = alc_unsol_event,
2180 #ifdef CONFIG_PM
2181         .resume = alc_resume,
2182 #endif
2183 };
2184
2185
2186 /*
2187  * Test configuration for debugging
2188  *
2189  * Almost all inputs/outputs are enabled.  I/O pins can be configured via
2190  * enum controls.
2191  */
2192 #ifdef CONFIG_SND_DEBUG
2193 static hda_nid_t alc880_test_dac_nids[4] = {
2194         0x02, 0x03, 0x04, 0x05
2195 };
2196
2197 static struct hda_input_mux alc880_test_capture_source = {
2198         .num_items = 7,
2199         .items = {
2200                 { "In-1", 0x0 },
2201                 { "In-2", 0x1 },
2202                 { "In-3", 0x2 },
2203                 { "In-4", 0x3 },
2204                 { "CD", 0x4 },
2205                 { "Front", 0x5 },
2206                 { "Surround", 0x6 },
2207         },
2208 };
2209
2210 static struct hda_channel_mode alc880_test_modes[4] = {
2211         { 2, NULL },
2212         { 4, NULL },
2213         { 6, NULL },
2214         { 8, NULL },
2215 };
2216
2217 static int alc_test_pin_ctl_info(struct snd_kcontrol *kcontrol,
2218                                  struct snd_ctl_elem_info *uinfo)
2219 {
2220         static char *texts[] = {
2221                 "N/A", "Line Out", "HP Out",
2222                 "In Hi-Z", "In 50%", "In Grd", "In 80%", "In 100%"
2223         };
2224         uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2225         uinfo->count = 1;
2226         uinfo->value.enumerated.items = 8;
2227         if (uinfo->value.enumerated.item >= 8)
2228                 uinfo->value.enumerated.item = 7;
2229         strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2230         return 0;
2231 }
2232
2233 static int alc_test_pin_ctl_get(struct snd_kcontrol *kcontrol,
2234                                 struct snd_ctl_elem_value *ucontrol)
2235 {
2236         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2237         hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2238         unsigned int pin_ctl, item = 0;
2239
2240         pin_ctl = snd_hda_codec_read(codec, nid, 0,
2241                                      AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2242         if (pin_ctl & AC_PINCTL_OUT_EN) {
2243                 if (pin_ctl & AC_PINCTL_HP_EN)
2244                         item = 2;
2245                 else
2246                         item = 1;
2247         } else if (pin_ctl & AC_PINCTL_IN_EN) {
2248                 switch (pin_ctl & AC_PINCTL_VREFEN) {
2249                 case AC_PINCTL_VREF_HIZ: item = 3; break;
2250                 case AC_PINCTL_VREF_50:  item = 4; break;
2251                 case AC_PINCTL_VREF_GRD: item = 5; break;
2252                 case AC_PINCTL_VREF_80:  item = 6; break;
2253                 case AC_PINCTL_VREF_100: item = 7; break;
2254                 }
2255         }
2256         ucontrol->value.enumerated.item[0] = item;
2257         return 0;
2258 }
2259
2260 static int alc_test_pin_ctl_put(struct snd_kcontrol *kcontrol,
2261                                 struct snd_ctl_elem_value *ucontrol)
2262 {
2263         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2264         hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2265         static unsigned int ctls[] = {
2266                 0, AC_PINCTL_OUT_EN, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN,
2267                 AC_PINCTL_IN_EN | AC_PINCTL_VREF_HIZ,
2268                 AC_PINCTL_IN_EN | AC_PINCTL_VREF_50,
2269                 AC_PINCTL_IN_EN | AC_PINCTL_VREF_GRD,
2270                 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80,
2271                 AC_PINCTL_IN_EN | AC_PINCTL_VREF_100,
2272         };
2273         unsigned int old_ctl, new_ctl;
2274
2275         old_ctl = snd_hda_codec_read(codec, nid, 0,
2276                                      AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2277         new_ctl = ctls[ucontrol->value.enumerated.item[0]];
2278         if (old_ctl != new_ctl) {
2279                 snd_hda_codec_write(codec, nid, 0,
2280                                     AC_VERB_SET_PIN_WIDGET_CONTROL, new_ctl);
2281                 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
2282                                     (ucontrol->value.enumerated.item[0] >= 3 ?
2283                                      0xb080 : 0xb000));
2284                 return 1;
2285         }
2286         return 0;
2287 }
2288
2289 static int alc_test_pin_src_info(struct snd_kcontrol *kcontrol,
2290                                  struct snd_ctl_elem_info *uinfo)
2291 {
2292         static char *texts[] = {
2293                 "Front", "Surround", "CLFE", "Side"
2294         };
2295         uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2296         uinfo->count = 1;
2297         uinfo->value.enumerated.items = 4;
2298         if (uinfo->value.enumerated.item >= 4)
2299                 uinfo->value.enumerated.item = 3;
2300         strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2301         return 0;
2302 }
2303
2304 static int alc_test_pin_src_get(struct snd_kcontrol *kcontrol,
2305                                 struct snd_ctl_elem_value *ucontrol)
2306 {
2307         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2308         hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2309         unsigned int sel;
2310
2311         sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0);
2312         ucontrol->value.enumerated.item[0] = sel & 3;
2313         return 0;
2314 }
2315
2316 static int alc_test_pin_src_put(struct snd_kcontrol *kcontrol,
2317                                 struct snd_ctl_elem_value *ucontrol)
2318 {
2319         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2320         hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2321         unsigned int sel;
2322
2323         sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0) & 3;
2324         if (ucontrol->value.enumerated.item[0] != sel) {
2325                 sel = ucontrol->value.enumerated.item[0] & 3;
2326                 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, sel);
2327                 return 1;
2328         }
2329         return 0;
2330 }
2331
2332 #define PIN_CTL_TEST(xname,nid) {                       \
2333                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,    \
2334                         .name = xname,                 \
2335                         .info = alc_test_pin_ctl_info, \
2336                         .get = alc_test_pin_ctl_get,   \
2337                         .put = alc_test_pin_ctl_put,   \
2338                         .private_value = nid           \
2339                         }
2340
2341 #define PIN_SRC_TEST(xname,nid) {                       \
2342                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,    \
2343                         .name = xname,                 \
2344                         .info = alc_test_pin_src_info, \
2345                         .get = alc_test_pin_src_get,   \
2346                         .put = alc_test_pin_src_put,   \
2347                         .private_value = nid           \
2348                         }
2349
2350 static struct snd_kcontrol_new alc880_test_mixer[] = {
2351         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
2352         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
2353         HDA_CODEC_VOLUME("CLFE Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
2354         HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
2355         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
2356         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
2357         HDA_BIND_MUTE("CLFE Playback Switch", 0x0e, 2, HDA_INPUT),
2358         HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
2359         PIN_CTL_TEST("Front Pin Mode", 0x14),
2360         PIN_CTL_TEST("Surround Pin Mode", 0x15),
2361         PIN_CTL_TEST("CLFE Pin Mode", 0x16),
2362         PIN_CTL_TEST("Side Pin Mode", 0x17),
2363         PIN_CTL_TEST("In-1 Pin Mode", 0x18),
2364         PIN_CTL_TEST("In-2 Pin Mode", 0x19),
2365         PIN_CTL_TEST("In-3 Pin Mode", 0x1a),
2366         PIN_CTL_TEST("In-4 Pin Mode", 0x1b),
2367         PIN_SRC_TEST("In-1 Pin Source", 0x18),
2368         PIN_SRC_TEST("In-2 Pin Source", 0x19),
2369         PIN_SRC_TEST("In-3 Pin Source", 0x1a),
2370         PIN_SRC_TEST("In-4 Pin Source", 0x1b),
2371         HDA_CODEC_VOLUME("In-1 Playback Volume", 0x0b, 0x0, HDA_INPUT),
2372         HDA_CODEC_MUTE("In-1 Playback Switch", 0x0b, 0x0, HDA_INPUT),
2373         HDA_CODEC_VOLUME("In-2 Playback Volume", 0x0b, 0x1, HDA_INPUT),
2374         HDA_CODEC_MUTE("In-2 Playback Switch", 0x0b, 0x1, HDA_INPUT),
2375         HDA_CODEC_VOLUME("In-3 Playback Volume", 0x0b, 0x2, HDA_INPUT),
2376         HDA_CODEC_MUTE("In-3 Playback Switch", 0x0b, 0x2, HDA_INPUT),
2377         HDA_CODEC_VOLUME("In-4 Playback Volume", 0x0b, 0x3, HDA_INPUT),
2378         HDA_CODEC_MUTE("In-4 Playback Switch", 0x0b, 0x3, HDA_INPUT),
2379         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x4, HDA_INPUT),
2380         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x4, HDA_INPUT),
2381         {
2382                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2383                 .name = "Channel Mode",
2384                 .info = alc_ch_mode_info,
2385                 .get = alc_ch_mode_get,
2386                 .put = alc_ch_mode_put,
2387         },
2388         { } /* end */
2389 };
2390
2391 static struct hda_verb alc880_test_init_verbs[] = {
2392         /* Unmute inputs of 0x0c - 0x0f */
2393         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2394         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2395         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2396         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2397         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2398         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2399         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2400         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2401         /* Vol output for 0x0c-0x0f */
2402         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2403         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2404         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2405         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2406         /* Set output pins 0x14-0x17 */
2407         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2408         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2409         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2410         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2411         /* Unmute output pins 0x14-0x17 */
2412         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2413         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2414         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2415         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2416         /* Set input pins 0x18-0x1c */
2417         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2418         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2419         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2420         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2421         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2422         /* Mute input pins 0x18-0x1b */
2423         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2424         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2425         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2426         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2427         /* ADC set up */
2428         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2429         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
2430         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2431         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
2432         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2433         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
2434         /* Analog input/passthru */
2435         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2436         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2437         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2438         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2439         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2440         { }
2441 };
2442 #endif
2443
2444 /*
2445  */
2446
2447 static const char *alc880_models[ALC880_MODEL_LAST] = {
2448         [ALC880_3ST]            = "3stack",
2449         [ALC880_TCL_S700]       = "tcl",
2450         [ALC880_3ST_DIG]        = "3stack-digout",
2451         [ALC880_CLEVO]          = "clevo",
2452         [ALC880_5ST]            = "5stack",
2453         [ALC880_5ST_DIG]        = "5stack-digout",
2454         [ALC880_W810]           = "w810",
2455         [ALC880_Z71V]           = "z71v",
2456         [ALC880_6ST]            = "6stack",
2457         [ALC880_6ST_DIG]        = "6stack-digout",
2458         [ALC880_ASUS]           = "asus",
2459         [ALC880_ASUS_W1V]       = "asus-w1v",
2460         [ALC880_ASUS_DIG]       = "asus-dig",
2461         [ALC880_ASUS_DIG2]      = "asus-dig2",
2462         [ALC880_UNIWILL_DIG]    = "uniwill",
2463         [ALC880_UNIWILL_P53]    = "uniwill-p53",
2464         [ALC880_FUJITSU]        = "fujitsu",
2465         [ALC880_F1734]          = "F1734",
2466         [ALC880_LG]             = "lg",
2467         [ALC880_LG_LW]          = "lg-lw",
2468 #ifdef CONFIG_SND_DEBUG
2469         [ALC880_TEST]           = "test",
2470 #endif
2471         [ALC880_AUTO]           = "auto",
2472 };
2473
2474 static struct snd_pci_quirk alc880_cfg_tbl[] = {
2475         /* Broken BIOS configuration */
2476         SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_6ST_DIG),
2477         SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_6ST_DIG),
2478
2479         SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_5ST_DIG),
2480         SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_6ST),
2481         SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_W810),
2482         SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_3ST_DIG),
2483         SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_6ST_DIG),
2484         SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_6ST_DIG),
2485         SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_6ST_DIG),
2486         SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_3ST_DIG),
2487         SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_3ST),
2488
2489         SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_6ST_DIG),
2490         SND_PCI_QUIRK(0x103c, 0x2a09, "HP", ALC880_5ST),
2491
2492         SND_PCI_QUIRK(0x1043, 0x10b3, "ASUS W1V", ALC880_ASUS_W1V),
2493         SND_PCI_QUIRK(0x1043, 0x10c2, "ASUS W6A", ALC880_ASUS_DIG),
2494         SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS Wxx", ALC880_ASUS_DIG),
2495         SND_PCI_QUIRK(0x1043, 0x1113, "ASUS", ALC880_ASUS_DIG),
2496         SND_PCI_QUIRK(0x1043, 0x1123, "ASUS", ALC880_ASUS_DIG),
2497         SND_PCI_QUIRK(0x1043, 0x1173, "ASUS", ALC880_ASUS_DIG),
2498         SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_Z71V),
2499         /* SND_PCI_QUIRK(0x1043, 0x1964, "ASUS", ALC880_ASUS_DIG), */
2500         SND_PCI_QUIRK(0x1043, 0x1973, "ASUS", ALC880_ASUS_DIG),
2501         SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS", ALC880_ASUS_DIG),
2502         SND_PCI_QUIRK(0x1043, 0x814e, "ASUS", ALC880_ASUS),
2503         SND_PCI_QUIRK(0x1043, 0x8181, "ASUS P4GPL", ALC880_ASUS_DIG),
2504         SND_PCI_QUIRK(0x1043, 0x8196, "ASUS P5GD1", ALC880_6ST),
2505         SND_PCI_QUIRK(0x1043, 0x81b4, "ASUS", ALC880_6ST),
2506         SND_PCI_QUIRK(0x1043, 0, "ASUS", ALC880_ASUS),
2507
2508         SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_3ST),
2509         SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_3ST),
2510         SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_5ST),
2511         SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_5ST),
2512         SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_5ST),
2513         SND_PCI_QUIRK(0x1558, 0x0520, "Clevo m520G", ALC880_CLEVO),
2514         SND_PCI_QUIRK(0x1558, 0x0660, "Clevo m655n", ALC880_CLEVO),
2515         SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_5ST_DIG),
2516         SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_W810),
2517         SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_5ST_DIG),
2518         SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_TCL_S700),
2519         SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_5ST_DIG),
2520         SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_6ST_DIG),
2521         SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_6ST_DIG),
2522         SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_6ST_DIG),
2523         SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_6ST_DIG),
2524         SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_6ST_DIG),
2525         SND_PCI_QUIRK(0x1558, 0x5401, "ASUS", ALC880_ASUS_DIG2),
2526
2527         SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_UNIWILL_DIG),
2528         SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_UNIWILL),
2529         SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_UNIWILL_P53),
2530         SND_PCI_QUIRK(0x1584, 0x9054, "Uniwlll", ALC880_F1734),
2531
2532         SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_5ST_DIG),
2533         SND_PCI_QUIRK(0x1734, 0x10ac, "FSC", ALC880_UNIWILL),
2534         SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_F1734),
2535         SND_PCI_QUIRK(0x1734, 0x10b0, "Fujitsu", ALC880_FUJITSU),
2536
2537         SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_LG),
2538         SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_LG),
2539         SND_PCI_QUIRK(0x1854, 0x0018, "LG LW20", ALC880_LG_LW),
2540         SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_LG_LW),
2541
2542         SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_3ST_DIG),
2543         SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_3ST_DIG),
2544         SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_3ST_DIG),
2545         SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_5ST_DIG),
2546         SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_5ST_DIG),
2547         SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_5ST_DIG),
2548         SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_5ST_DIG),
2549         SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_5ST_DIG),
2550         SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_5ST_DIG),
2551         SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_5ST_DIG),
2552         SND_PCI_QUIRK(0x8086, 0, "Intel mobo", ALC880_3ST),
2553
2554         {}
2555 };
2556
2557 /*
2558  * ALC880 codec presets
2559  */
2560 static struct alc_config_preset alc880_presets[] = {
2561         [ALC880_3ST] = {
2562                 .mixers = { alc880_three_stack_mixer },
2563                 .init_verbs = { alc880_volume_init_verbs,
2564                                 alc880_pin_3stack_init_verbs },
2565                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2566                 .dac_nids = alc880_dac_nids,
2567                 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2568                 .channel_mode = alc880_threestack_modes,
2569                 .need_dac_fix = 1,
2570                 .input_mux = &alc880_capture_source,
2571         },
2572         [ALC880_3ST_DIG] = {
2573                 .mixers = { alc880_three_stack_mixer },
2574                 .init_verbs = { alc880_volume_init_verbs,
2575                                 alc880_pin_3stack_init_verbs },
2576                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2577                 .dac_nids = alc880_dac_nids,
2578                 .dig_out_nid = ALC880_DIGOUT_NID,
2579                 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2580                 .channel_mode = alc880_threestack_modes,
2581                 .need_dac_fix = 1,
2582                 .input_mux = &alc880_capture_source,
2583         },
2584         [ALC880_TCL_S700] = {
2585                 .mixers = { alc880_tcl_s700_mixer },
2586                 .init_verbs = { alc880_volume_init_verbs,
2587                                 alc880_pin_tcl_S700_init_verbs,
2588                                 alc880_gpio2_init_verbs },
2589                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2590                 .dac_nids = alc880_dac_nids,
2591                 .hp_nid = 0x03,
2592                 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2593                 .channel_mode = alc880_2_jack_modes,
2594                 .input_mux = &alc880_capture_source,
2595         },
2596         [ALC880_5ST] = {
2597                 .mixers = { alc880_three_stack_mixer,
2598                             alc880_five_stack_mixer},
2599                 .init_verbs = { alc880_volume_init_verbs,
2600                                 alc880_pin_5stack_init_verbs },
2601                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2602                 .dac_nids = alc880_dac_nids,
2603                 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2604                 .channel_mode = alc880_fivestack_modes,
2605                 .input_mux = &alc880_capture_source,
2606         },
2607         [ALC880_5ST_DIG] = {
2608                 .mixers = { alc880_three_stack_mixer,
2609                             alc880_five_stack_mixer },
2610                 .init_verbs = { alc880_volume_init_verbs,
2611                                 alc880_pin_5stack_init_verbs },
2612                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2613                 .dac_nids = alc880_dac_nids,
2614                 .dig_out_nid = ALC880_DIGOUT_NID,
2615                 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2616                 .channel_mode = alc880_fivestack_modes,
2617                 .input_mux = &alc880_capture_source,
2618         },
2619         [ALC880_6ST] = {
2620                 .mixers = { alc880_six_stack_mixer },
2621                 .init_verbs = { alc880_volume_init_verbs,
2622                                 alc880_pin_6stack_init_verbs },
2623                 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2624                 .dac_nids = alc880_6st_dac_nids,
2625                 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2626                 .channel_mode = alc880_sixstack_modes,
2627                 .input_mux = &alc880_6stack_capture_source,
2628         },
2629         [ALC880_6ST_DIG] = {
2630                 .mixers = { alc880_six_stack_mixer },
2631                 .init_verbs = { alc880_volume_init_verbs,
2632                                 alc880_pin_6stack_init_verbs },
2633                 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2634                 .dac_nids = alc880_6st_dac_nids,
2635                 .dig_out_nid = ALC880_DIGOUT_NID,
2636                 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2637                 .channel_mode = alc880_sixstack_modes,
2638                 .input_mux = &alc880_6stack_capture_source,
2639         },
2640         [ALC880_W810] = {
2641                 .mixers = { alc880_w810_base_mixer },
2642                 .init_verbs = { alc880_volume_init_verbs,
2643                                 alc880_pin_w810_init_verbs,
2644                                 alc880_gpio2_init_verbs },
2645                 .num_dacs = ARRAY_SIZE(alc880_w810_dac_nids),
2646                 .dac_nids = alc880_w810_dac_nids,
2647                 .dig_out_nid = ALC880_DIGOUT_NID,
2648                 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
2649                 .channel_mode = alc880_w810_modes,
2650                 .input_mux = &alc880_capture_source,
2651         },
2652         [ALC880_Z71V] = {
2653                 .mixers = { alc880_z71v_mixer },
2654                 .init_verbs = { alc880_volume_init_verbs,
2655                                 alc880_pin_z71v_init_verbs },
2656                 .num_dacs = ARRAY_SIZE(alc880_z71v_dac_nids),
2657                 .dac_nids = alc880_z71v_dac_nids,
2658                 .dig_out_nid = ALC880_DIGOUT_NID,
2659                 .hp_nid = 0x03,
2660                 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2661                 .channel_mode = alc880_2_jack_modes,
2662                 .input_mux = &alc880_capture_source,
2663         },
2664         [ALC880_F1734] = {
2665                 .mixers = { alc880_f1734_mixer },
2666                 .init_verbs = { alc880_volume_init_verbs,
2667                                 alc880_pin_f1734_init_verbs },
2668                 .num_dacs = ARRAY_SIZE(alc880_f1734_dac_nids),
2669                 .dac_nids = alc880_f1734_dac_nids,
2670                 .hp_nid = 0x02,
2671                 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2672                 .channel_mode = alc880_2_jack_modes,
2673                 .input_mux = &alc880_capture_source,
2674         },
2675         [ALC880_ASUS] = {
2676                 .mixers = { alc880_asus_mixer },
2677                 .init_verbs = { alc880_volume_init_verbs,
2678                                 alc880_pin_asus_init_verbs,
2679                                 alc880_gpio1_init_verbs },
2680                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2681                 .dac_nids = alc880_asus_dac_nids,
2682                 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2683                 .channel_mode = alc880_asus_modes,
2684                 .need_dac_fix = 1,
2685                 .input_mux = &alc880_capture_source,
2686         },
2687         [ALC880_ASUS_DIG] = {
2688                 .mixers = { alc880_asus_mixer },
2689                 .init_verbs = { alc880_volume_init_verbs,
2690                                 alc880_pin_asus_init_verbs,
2691                                 alc880_gpio1_init_verbs },
2692                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2693                 .dac_nids = alc880_asus_dac_nids,
2694                 .dig_out_nid = ALC880_DIGOUT_NID,
2695                 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2696                 .channel_mode = alc880_asus_modes,
2697                 .need_dac_fix = 1,
2698                 .input_mux = &alc880_capture_source,
2699         },
2700         [ALC880_ASUS_DIG2] = {
2701                 .mixers = { alc880_asus_mixer },
2702                 .init_verbs = { alc880_volume_init_verbs,
2703                                 alc880_pin_asus_init_verbs,
2704                                 alc880_gpio2_init_verbs }, /* use GPIO2 */
2705                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2706                 .dac_nids = alc880_asus_dac_nids,
2707                 .dig_out_nid = ALC880_DIGOUT_NID,
2708                 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2709                 .channel_mode = alc880_asus_modes,
2710                 .need_dac_fix = 1,
2711                 .input_mux = &alc880_capture_source,
2712         },
2713         [ALC880_ASUS_W1V] = {
2714                 .mixers = { alc880_asus_mixer, alc880_asus_w1v_mixer },
2715                 .init_verbs = { alc880_volume_init_verbs,
2716                                 alc880_pin_asus_init_verbs,
2717                                 alc880_gpio1_init_verbs },
2718                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2719                 .dac_nids = alc880_asus_dac_nids,
2720                 .dig_out_nid = ALC880_DIGOUT_NID,
2721                 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2722                 .channel_mode = alc880_asus_modes,
2723                 .need_dac_fix = 1,
2724                 .input_mux = &alc880_capture_source,
2725         },
2726         [ALC880_UNIWILL_DIG] = {
2727                 .mixers = { alc880_asus_mixer, alc880_pcbeep_mixer },
2728                 .init_verbs = { alc880_volume_init_verbs,
2729                                 alc880_pin_asus_init_verbs },
2730                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2731                 .dac_nids = alc880_asus_dac_nids,
2732                 .dig_out_nid = ALC880_DIGOUT_NID,
2733                 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2734                 .channel_mode = alc880_asus_modes,
2735                 .need_dac_fix = 1,
2736                 .input_mux = &alc880_capture_source,
2737         },
2738         [ALC880_UNIWILL] = {
2739                 .mixers = { alc880_uniwill_mixer },
2740                 .init_verbs = { alc880_volume_init_verbs,
2741                                 alc880_uniwill_init_verbs },
2742                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2743                 .dac_nids = alc880_asus_dac_nids,
2744                 .dig_out_nid = ALC880_DIGOUT_NID,
2745                 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2746                 .channel_mode = alc880_threestack_modes,
2747                 .need_dac_fix = 1,
2748                 .input_mux = &alc880_capture_source,
2749                 .unsol_event = alc880_uniwill_unsol_event,
2750                 .init_hook = alc880_uniwill_automute,
2751         },
2752         [ALC880_UNIWILL_P53] = {
2753                 .mixers = { alc880_uniwill_p53_mixer },
2754                 .init_verbs = { alc880_volume_init_verbs,
2755                                 alc880_uniwill_p53_init_verbs },
2756                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2757                 .dac_nids = alc880_asus_dac_nids,
2758                 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
2759                 .channel_mode = alc880_threestack_modes,
2760                 .input_mux = &alc880_capture_source,
2761                 .unsol_event = alc880_uniwill_p53_unsol_event,
2762                 .init_hook = alc880_uniwill_p53_hp_automute,
2763         },
2764         [ALC880_FUJITSU] = {
2765                 .mixers = { alc880_fujitsu_mixer,
2766                             alc880_pcbeep_mixer, },
2767                 .init_verbs = { alc880_volume_init_verbs,
2768                                 alc880_uniwill_p53_init_verbs,
2769                                 alc880_beep_init_verbs },
2770                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2771                 .dac_nids = alc880_dac_nids,
2772                 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2773                 .channel_mode = alc880_2_jack_modes,
2774                 .input_mux = &alc880_capture_source,
2775                 .unsol_event = alc880_uniwill_p53_unsol_event,
2776                 .init_hook = alc880_uniwill_p53_hp_automute,
2777         },
2778         [ALC880_CLEVO] = {
2779                 .mixers = { alc880_three_stack_mixer },
2780                 .init_verbs = { alc880_volume_init_verbs,
2781                                 alc880_pin_clevo_init_verbs },
2782                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2783                 .dac_nids = alc880_dac_nids,
2784                 .hp_nid = 0x03,
2785                 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2786                 .channel_mode = alc880_threestack_modes,
2787                 .need_dac_fix = 1,
2788                 .input_mux = &alc880_capture_source,
2789         },
2790         [ALC880_LG] = {
2791                 .mixers = { alc880_lg_mixer },
2792                 .init_verbs = { alc880_volume_init_verbs,
2793                                 alc880_lg_init_verbs },
2794                 .num_dacs = ARRAY_SIZE(alc880_lg_dac_nids),
2795                 .dac_nids = alc880_lg_dac_nids,
2796                 .dig_out_nid = ALC880_DIGOUT_NID,
2797                 .num_channel_mode = ARRAY_SIZE(alc880_lg_ch_modes),
2798                 .channel_mode = alc880_lg_ch_modes,
2799                 .need_dac_fix = 1,
2800                 .input_mux = &alc880_lg_capture_source,
2801                 .unsol_event = alc880_lg_unsol_event,
2802                 .init_hook = alc880_lg_automute,
2803         },
2804         [ALC880_LG_LW] = {
2805                 .mixers = { alc880_lg_lw_mixer },
2806                 .init_verbs = { alc880_volume_init_verbs,
2807                                 alc880_lg_lw_init_verbs },
2808                 .num_dacs = 1,
2809                 .dac_nids = alc880_dac_nids,
2810                 .dig_out_nid = ALC880_DIGOUT_NID,
2811                 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2812                 .channel_mode = alc880_2_jack_modes,
2813                 .input_mux = &alc880_lg_lw_capture_source,
2814                 .unsol_event = alc880_lg_lw_unsol_event,
2815                 .init_hook = alc880_lg_lw_automute,
2816         },
2817 #ifdef CONFIG_SND_DEBUG
2818         [ALC880_TEST] = {
2819                 .mixers = { alc880_test_mixer },
2820                 .init_verbs = { alc880_test_init_verbs },
2821                 .num_dacs = ARRAY_SIZE(alc880_test_dac_nids),
2822                 .dac_nids = alc880_test_dac_nids,
2823                 .dig_out_nid = ALC880_DIGOUT_NID,
2824                 .num_channel_mode = ARRAY_SIZE(alc880_test_modes),
2825                 .channel_mode = alc880_test_modes,
2826                 .input_mux = &alc880_test_capture_source,
2827         },
2828 #endif
2829 };
2830
2831 /*
2832  * Automatic parse of I/O pins from the BIOS configuration
2833  */
2834
2835 #define NUM_CONTROL_ALLOC       32
2836 #define NUM_VERB_ALLOC          32
2837
2838 enum {
2839         ALC_CTL_WIDGET_VOL,
2840         ALC_CTL_WIDGET_MUTE,
2841         ALC_CTL_BIND_MUTE,
2842 };
2843 static struct snd_kcontrol_new alc880_control_templates[] = {
2844         HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2845         HDA_CODEC_MUTE(NULL, 0, 0, 0),
2846         HDA_BIND_MUTE(NULL, 0, 0, 0),
2847 };
2848
2849 /* add dynamic controls */
2850 static int add_control(struct alc_spec *spec, int type, const char *name,
2851                        unsigned long val)
2852 {
2853         struct snd_kcontrol_new *knew;
2854
2855         if (spec->num_kctl_used >= spec->num_kctl_alloc) {
2856                 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
2857
2858                 /* array + terminator */
2859                 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL);
2860                 if (!knew)
2861                         return -ENOMEM;
2862                 if (spec->kctl_alloc) {
2863                         memcpy(knew, spec->kctl_alloc,
2864                                sizeof(*knew) * spec->num_kctl_alloc);
2865                         kfree(spec->kctl_alloc);
2866                 }
2867                 spec->kctl_alloc = knew;
2868                 spec->num_kctl_alloc = num;
2869         }
2870
2871         knew = &spec->kctl_alloc[spec->num_kctl_used];
2872         *knew = alc880_control_templates[type];
2873         knew->name = kstrdup(name, GFP_KERNEL);
2874         if (!knew->name)
2875                 return -ENOMEM;
2876         knew->private_value = val;
2877         spec->num_kctl_used++;
2878         return 0;
2879 }
2880
2881 #define alc880_is_fixed_pin(nid)        ((nid) >= 0x14 && (nid) <= 0x17)
2882 #define alc880_fixed_pin_idx(nid)       ((nid) - 0x14)
2883 #define alc880_is_multi_pin(nid)        ((nid) >= 0x18)
2884 #define alc880_multi_pin_idx(nid)       ((nid) - 0x18)
2885 #define alc880_is_input_pin(nid)        ((nid) >= 0x18)
2886 #define alc880_input_pin_idx(nid)       ((nid) - 0x18)
2887 #define alc880_idx_to_dac(nid)          ((nid) + 0x02)
2888 #define alc880_dac_to_idx(nid)          ((nid) - 0x02)
2889 #define alc880_idx_to_mixer(nid)        ((nid) + 0x0c)
2890 #define alc880_idx_to_selector(nid)     ((nid) + 0x10)
2891 #define ALC880_PIN_CD_NID               0x1c
2892
2893 /* fill in the dac_nids table from the parsed pin configuration */
2894 static int alc880_auto_fill_dac_nids(struct alc_spec *spec,
2895                                      const struct auto_pin_cfg *cfg)
2896 {
2897         hda_nid_t nid;
2898         int assigned[4];
2899         int i, j;
2900
2901         memset(assigned, 0, sizeof(assigned));
2902         spec->multiout.dac_nids = spec->private_dac_nids;
2903
2904         /* check the pins hardwired to audio widget */
2905         for (i = 0; i < cfg->line_outs; i++) {
2906                 nid = cfg->line_out_pins[i];
2907                 if (alc880_is_fixed_pin(nid)) {
2908                         int idx = alc880_fixed_pin_idx(nid);
2909                         spec->multiout.dac_nids[i] = alc880_idx_to_dac(idx);
2910                         assigned[idx] = 1;
2911                 }
2912         }
2913         /* left pins can be connect to any audio widget */
2914         for (i = 0; i < cfg->line_outs; i++) {
2915                 nid = cfg->line_out_pins[i];
2916                 if (alc880_is_fixed_pin(nid))
2917                         continue;
2918                 /* search for an empty channel */
2919                 for (j = 0; j < cfg->line_outs; j++) {
2920                         if (!assigned[j]) {
2921                                 spec->multiout.dac_nids[i] =
2922                                         alc880_idx_to_dac(j);
2923                                 assigned[j] = 1;
2924                                 break;
2925                         }
2926                 }
2927         }
2928         spec->multiout.num_dacs = cfg->line_outs;
2929         return 0;
2930 }
2931
2932 /* add playback controls from the parsed DAC table */
2933 static int alc880_auto_create_multi_out_ctls(struct alc_spec *spec,
2934                                              const struct auto_pin_cfg *cfg)
2935 {
2936         char name[32];
2937         static const char *chname[4] = {
2938                 "Front", "Surround", NULL /*CLFE*/, "Side"
2939         };
2940         hda_nid_t nid;
2941         int i, err;
2942
2943         for (i = 0; i < cfg->line_outs; i++) {
2944                 if (!spec->multiout.dac_nids[i])
2945                         continue;
2946                 nid = alc880_idx_to_mixer(alc880_dac_to_idx(spec->multiout.dac_nids[i]));
2947                 if (i == 2) {
2948                         /* Center/LFE */
2949                         err = add_control(spec, ALC_CTL_WIDGET_VOL,
2950                                           "Center Playback Volume",
2951                                           HDA_COMPOSE_AMP_VAL(nid, 1, 0,
2952                                                               HDA_OUTPUT));
2953                         if (err < 0)
2954                                 return err;
2955                         err = add_control(spec, ALC_CTL_WIDGET_VOL,
2956                                           "LFE Playback Volume",
2957                                           HDA_COMPOSE_AMP_VAL(nid, 2, 0,
2958                                                               HDA_OUTPUT));
2959                         if (err < 0)
2960                                 return err;
2961                         err = add_control(spec, ALC_CTL_BIND_MUTE,
2962                                           "Center Playback Switch",
2963                                           HDA_COMPOSE_AMP_VAL(nid, 1, 2,
2964                                                               HDA_INPUT));
2965                         if (err < 0)
2966                                 return err;
2967                         err = add_control(spec, ALC_CTL_BIND_MUTE,
2968                                           "LFE Playback Switch",
2969                                           HDA_COMPOSE_AMP_VAL(nid, 2, 2,
2970                                                               HDA_INPUT));
2971                         if (err < 0)
2972                                 return err;
2973                 } else {
2974                         sprintf(name, "%s Playback Volume", chname[i]);
2975                         err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
2976                                           HDA_COMPOSE_AMP_VAL(nid, 3, 0,
2977                                                               HDA_OUTPUT));
2978                         if (err < 0)
2979                                 return err;
2980                         sprintf(name, "%s Playback Switch", chname[i]);
2981                         err = add_control(spec, ALC_CTL_BIND_MUTE, name,
2982                                           HDA_COMPOSE_AMP_VAL(nid, 3, 2,
2983                                                               HDA_INPUT));
2984                         if (err < 0)
2985                                 return err;
2986                 }
2987         }
2988         return 0;
2989 }
2990
2991 /* add playback controls for speaker and HP outputs */
2992 static int alc880_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
2993                                         const char *pfx)
2994 {
2995         hda_nid_t nid;
2996         int err;
2997         char name[32];
2998
2999         if (!pin)
3000                 return 0;
3001
3002         if (alc880_is_fixed_pin(pin)) {
3003                 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
3004                 /* specify the DAC as the extra output */
3005                 if (!spec->multiout.hp_nid)
3006                         spec->multiout.hp_nid = nid;
3007                 else
3008                         spec->multiout.extra_out_nid[0] = nid;
3009                 /* control HP volume/switch on the output mixer amp */
3010                 nid = alc880_idx_to_mixer(alc880_fixed_pin_idx(pin));
3011                 sprintf(name, "%s Playback Volume", pfx);
3012                 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3013                                   HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
3014                 if (err < 0)
3015                         return err;
3016                 sprintf(name, "%s Playback Switch", pfx);
3017                 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
3018                                   HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
3019                 if (err < 0)
3020                         return err;
3021         } else if (alc880_is_multi_pin(pin)) {
3022                 /* set manual connection */
3023                 /* we have only a switch on HP-out PIN */
3024                 sprintf(name, "%s Playback Switch", pfx);
3025                 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
3026                                   HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3027                 if (err < 0)
3028                         return err;
3029         }
3030         return 0;
3031 }
3032
3033 /* create input playback/capture controls for the given pin */
3034 static int new_analog_input(struct alc_spec *spec, hda_nid_t pin,
3035                             const char *ctlname,
3036                             int idx, hda_nid_t mix_nid)
3037 {
3038         char name[32];
3039         int err;
3040
3041         sprintf(name, "%s Playback Volume", ctlname);
3042         err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3043                           HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
3044         if (err < 0)
3045                 return err;
3046         sprintf(name, "%s Playback Switch", ctlname);
3047         err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
3048                           HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
3049         if (err < 0)
3050                 return err;
3051         return 0;
3052 }
3053
3054 /* create playback/capture controls for input pins */
3055 static int alc880_auto_create_analog_input_ctls(struct alc_spec *spec,
3056                                                 const struct auto_pin_cfg *cfg)
3057 {
3058         struct hda_input_mux *imux = &spec->private_imux;
3059         int i, err, idx;
3060
3061         for (i = 0; i < AUTO_PIN_LAST; i++) {
3062                 if (alc880_is_input_pin(cfg->input_pins[i])) {
3063                         idx = alc880_input_pin_idx(cfg->input_pins[i]);
3064                         err = new_analog_input(spec, cfg->input_pins[i],
3065                                                auto_pin_cfg_labels[i],
3066                                                idx, 0x0b);
3067                         if (err < 0)
3068                                 return err;
3069                         imux->items[imux->num_items].label =
3070                                 auto_pin_cfg_labels[i];
3071                         imux->items[imux->num_items].index =
3072                                 alc880_input_pin_idx(cfg->input_pins[i]);
3073                         imux->num_items++;
3074                 }
3075         }
3076         return 0;
3077 }
3078
3079 static void alc880_auto_set_output_and_unmute(struct hda_codec *codec,
3080                                               hda_nid_t nid, int pin_type,
3081                                               int dac_idx)
3082 {
3083         /* set as output */
3084         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3085                             pin_type);
3086         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3087                             AMP_OUT_UNMUTE);
3088         /* need the manual connection? */
3089         if (alc880_is_multi_pin(nid)) {
3090                 struct alc_spec *spec = codec->spec;
3091                 int idx = alc880_multi_pin_idx(nid);
3092                 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
3093                                     AC_VERB_SET_CONNECT_SEL,
3094                                     alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
3095         }
3096 }
3097
3098 static void alc880_auto_init_multi_out(struct hda_codec *codec)
3099 {
3100         struct alc_spec *spec = codec->spec;
3101         int i;
3102         
3103         alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
3104         for (i = 0; i < spec->autocfg.line_outs; i++) {
3105                 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3106                 alc880_auto_set_output_and_unmute(codec, nid, PIN_OUT, i);
3107         }
3108 }
3109
3110 static void alc880_auto_init_extra_out(struct hda_codec *codec)
3111 {
3112         struct alc_spec *spec = codec->spec;
3113         hda_nid_t pin;
3114
3115         pin = spec->autocfg.speaker_pins[0];
3116         if (pin) /* connect to front */
3117                 alc880_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
3118         pin = spec->autocfg.hp_pins[0];
3119         if (pin) /* connect to front */
3120                 alc880_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
3121 }
3122
3123 static void alc880_auto_init_analog_input(struct hda_codec *codec)
3124 {
3125         struct alc_spec *spec = codec->spec;
3126         int i;
3127
3128         for (i = 0; i < AUTO_PIN_LAST; i++) {
3129                 hda_nid_t nid = spec->autocfg.input_pins[i];
3130                 if (alc880_is_input_pin(nid)) {
3131                         snd_hda_codec_write(codec, nid, 0,
3132                                             AC_VERB_SET_PIN_WIDGET_CONTROL,
3133                                             i <= AUTO_PIN_FRONT_MIC ?
3134                                             PIN_VREF80 : PIN_IN);
3135                         if (nid != ALC880_PIN_CD_NID)
3136                                 snd_hda_codec_write(codec, nid, 0,
3137                                                     AC_VERB_SET_AMP_GAIN_MUTE,
3138                                                     AMP_OUT_MUTE);
3139                 }
3140         }
3141 }
3142
3143 /* parse the BIOS configuration and set up the alc_spec */
3144 /* return 1 if successful, 0 if the proper config is not found,
3145  * or a negative error code
3146  */
3147 static int alc880_parse_auto_config(struct hda_codec *codec)
3148 {
3149         struct alc_spec *spec = codec->spec;
3150         int err;
3151         static hda_nid_t alc880_ignore[] = { 0x1d, 0 };
3152
3153         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
3154                                            alc880_ignore);
3155         if (err < 0)
3156                 return err;
3157         if (!spec->autocfg.line_outs)
3158                 return 0; /* can't find valid BIOS pin config */
3159
3160         err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
3161         if (err < 0)
3162                 return err;
3163         err = alc880_auto_create_multi_out_ctls(spec, &spec->autocfg);
3164         if (err < 0)
3165                 return err;
3166         err = alc880_auto_create_extra_out(spec,
3167                                            spec->autocfg.speaker_pins[0],
3168                                            "Speaker");
3169         if (err < 0)
3170                 return err;
3171         err = alc880_auto_create_extra_out(spec, spec->autocfg.hp_pins[0],
3172                                            "Headphone");
3173         if (err < 0)
3174                 return err;
3175         err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg);
3176         if (err < 0)
3177                 return err;
3178
3179         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3180
3181         if (spec->autocfg.dig_out_pin)
3182                 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
3183         if (spec->autocfg.dig_in_pin)
3184                 spec->dig_in_nid = ALC880_DIGIN_NID;
3185
3186         if (spec->kctl_alloc)
3187                 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
3188
3189         spec->init_verbs[spec->num_init_verbs++] = alc880_volume_init_verbs;
3190
3191         spec->num_mux_defs = 1;
3192         spec->input_mux = &spec->private_imux;
3193
3194         return 1;
3195 }
3196
3197 /* additional initialization for auto-configuration model */
3198 static void alc880_auto_init(struct hda_codec *codec)
3199 {
3200         alc880_auto_init_multi_out(codec);
3201         alc880_auto_init_extra_out(codec);
3202         alc880_auto_init_analog_input(codec);
3203 }
3204
3205 /*
3206  * OK, here we have finally the patch for ALC880
3207  */
3208
3209 static int patch_alc880(struct hda_codec *codec)
3210 {
3211         struct alc_spec *spec;
3212         int board_config;
3213         int err;
3214
3215         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3216         if (spec == NULL)
3217                 return -ENOMEM;
3218
3219         codec->spec = spec;
3220
3221         board_config = snd_hda_check_board_config(codec, ALC880_MODEL_LAST,
3222                                                   alc880_models,
3223                                                   alc880_cfg_tbl);
3224         if (board_config < 0) {
3225                 printk(KERN_INFO "hda_codec: Unknown model for ALC880, "
3226                        "trying auto-probe from BIOS...\n");
3227                 board_config = ALC880_AUTO;
3228         }
3229
3230         if (board_config == ALC880_AUTO) {
3231                 /* automatic parse from the BIOS config */
3232                 err = alc880_parse_auto_config(codec);
3233                 if (err < 0) {
3234                         alc_free(codec);
3235                         return err;
3236                 } else if (!err) {
3237                         printk(KERN_INFO
3238                                "hda_codec: Cannot set up configuration "
3239                                "from BIOS.  Using 3-stack mode...\n");
3240                         board_config = ALC880_3ST;
3241                 }
3242         }
3243
3244         if (board_config != ALC880_AUTO)
3245                 setup_preset(spec, &alc880_presets[board_config]);
3246
3247         spec->stream_name_analog = "ALC880 Analog";
3248         spec->stream_analog_playback = &alc880_pcm_analog_playback;
3249         spec->stream_analog_capture = &alc880_pcm_analog_capture;
3250
3251         spec->stream_name_digital = "ALC880 Digital";
3252         spec->stream_digital_playback = &alc880_pcm_digital_playback;
3253         spec->stream_digital_capture = &alc880_pcm_digital_capture;
3254
3255         if (!spec->adc_nids && spec->input_mux) {
3256                 /* check whether NID 0x07 is valid */
3257                 unsigned int wcap = get_wcaps(codec, alc880_adc_nids[0]);
3258                 /* get type */
3259                 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
3260                 if (wcap != AC_WID_AUD_IN) {
3261                         spec->adc_nids = alc880_adc_nids_alt;
3262                         spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids_alt);
3263                         spec->mixers[spec->num_mixers] =
3264                                 alc880_capture_alt_mixer;
3265                         spec->num_mixers++;
3266                 } else {
3267                         spec->adc_nids = alc880_adc_nids;
3268                         spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids);
3269                         spec->mixers[spec->num_mixers] = alc880_capture_mixer;
3270                         spec->num_mixers++;
3271                 }
3272         }
3273
3274         codec->patch_ops = alc_patch_ops;
3275         if (board_config == ALC880_AUTO)
3276                 spec->init_hook = alc880_auto_init;
3277
3278         return 0;
3279 }
3280
3281
3282 /*
3283  * ALC260 support
3284  */
3285
3286 static hda_nid_t alc260_dac_nids[1] = {
3287         /* front */
3288         0x02,
3289 };
3290
3291 static hda_nid_t alc260_adc_nids[1] = {
3292         /* ADC0 */
3293         0x04,
3294 };
3295
3296 static hda_nid_t alc260_adc_nids_alt[1] = {
3297         /* ADC1 */
3298         0x05,
3299 };
3300
3301 static hda_nid_t alc260_hp_adc_nids[2] = {
3302         /* ADC1, 0 */
3303         0x05, 0x04
3304 };
3305
3306 /* NIDs used when simultaneous access to both ADCs makes sense.  Note that
3307  * alc260_capture_mixer assumes ADC0 (nid 0x04) is the first ADC.
3308  */
3309 static hda_nid_t alc260_dual_adc_nids[2] = {
3310         /* ADC0, ADC1 */
3311         0x04, 0x05
3312 };
3313
3314 #define ALC260_DIGOUT_NID       0x03
3315 #define ALC260_DIGIN_NID        0x06
3316
3317 static struct hda_input_mux alc260_capture_source = {
3318         .num_items = 4,
3319         .items = {
3320                 { "Mic", 0x0 },
3321                 { "Front Mic", 0x1 },
3322                 { "Line", 0x2 },
3323                 { "CD", 0x4 },
3324         },
3325 };
3326
3327 /* On Fujitsu S702x laptops capture only makes sense from Mic/LineIn jack,
3328  * headphone jack and the internal CD lines since these are the only pins at
3329  * which audio can appear.  For flexibility, also allow the option of
3330  * recording the mixer output on the second ADC (ADC0 doesn't have a
3331  * connection to the mixer output).
3332  */
3333 static struct hda_input_mux alc260_fujitsu_capture_sources[2] = {
3334         {
3335                 .num_items = 3,
3336                 .items = {
3337                         { "Mic/Line", 0x0 },
3338                         { "CD", 0x4 },
3339                         { "Headphone", 0x2 },
3340                 },
3341         },
3342         {
3343                 .num_items = 4,
3344                 .items = {
3345                         { "Mic/Line", 0x0 },
3346                         { "CD", 0x4 },
3347                         { "Headphone", 0x2 },
3348                         { "Mixer", 0x5 },
3349                 },
3350         },
3351
3352 };
3353
3354 /* Acer TravelMate(/Extensa/Aspire) notebooks have similar configuration to
3355  * the Fujitsu S702x, but jacks are marked differently.
3356  */
3357 static struct hda_input_mux alc260_acer_capture_sources[2] = {
3358         {
3359                 .num_items = 4,
3360                 .items = {
3361                         { "Mic", 0x0 },
3362                         { "Line", 0x2 },
3363                         { "CD", 0x4 },
3364                         { "Headphone", 0x5 },
3365                 },
3366         },
3367         {
3368                 .num_items = 5,
3369                 .items = {
3370                         { "Mic", 0x0 },
3371                         { "Line", 0x2 },
3372                         { "CD", 0x4 },
3373                         { "Headphone", 0x6 },
3374                         { "Mixer", 0x5 },
3375                 },
3376         },
3377 };
3378 /*
3379  * This is just place-holder, so there's something for alc_build_pcms to look
3380  * at when it calculates the maximum number of channels. ALC260 has no mixer
3381  * element which allows changing the channel mode, so the verb list is
3382  * never used.
3383  */
3384 static struct hda_channel_mode alc260_modes[1] = {
3385         { 2, NULL },
3386 };
3387
3388
3389 /* Mixer combinations
3390  *
3391  * basic: base_output + input + pc_beep + capture
3392  * HP: base_output + input + capture_alt
3393  * HP_3013: hp_3013 + input + capture
3394  * fujitsu: fujitsu + capture
3395  * acer: acer + capture
3396  */
3397
3398 static struct snd_kcontrol_new alc260_base_output_mixer[] = {
3399         HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3400         HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT),
3401         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3402         HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT),
3403         HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3404         HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
3405         { } /* end */
3406 };
3407
3408 static struct snd_kcontrol_new alc260_input_mixer[] = {
3409         HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3410         HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3411         HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3412         HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3413         HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3414         HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3415         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x07, 0x01, HDA_INPUT),
3416         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x07, 0x01, HDA_INPUT),
3417         { } /* end */
3418 };
3419
3420 static struct snd_kcontrol_new alc260_pc_beep_mixer[] = {
3421         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x07, 0x05, HDA_INPUT),
3422         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x07, 0x05, HDA_INPUT),
3423         { } /* end */
3424 };
3425
3426 static struct snd_kcontrol_new alc260_hp_3013_mixer[] = {
3427         HDA_CODEC_VOLUME("Front Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3428         HDA_CODEC_MUTE("Front Playback Switch", 0x10, 0x0, HDA_OUTPUT),
3429         HDA_CODEC_VOLUME("Aux-In Playback Volume", 0x07, 0x06, HDA_INPUT),
3430         HDA_CODEC_MUTE("Aux-In Playback Switch", 0x07, 0x06, HDA_INPUT),
3431         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3432         HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
3433         HDA_CODEC_VOLUME_MONO("iSpeaker Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3434         HDA_CODEC_MUTE_MONO("iSpeaker Playback Switch", 0x11, 1, 0x0, HDA_OUTPUT),
3435         { } /* end */
3436 };
3437
3438 /* Fujitsu S702x series laptops.  ALC260 pin usage: Mic/Line jack = 0x12, 
3439  * HP jack = 0x14, CD audio =  0x16, internal speaker = 0x10.
3440  */
3441 static struct snd_kcontrol_new alc260_fujitsu_mixer[] = {
3442         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3443         HDA_BIND_MUTE("Headphone Playback Switch", 0x08, 2, HDA_INPUT),
3444         ALC_PIN_MODE("Headphone Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3445         HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3446         HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3447         HDA_CODEC_VOLUME("Mic/Line Playback Volume", 0x07, 0x0, HDA_INPUT),
3448         HDA_CODEC_MUTE("Mic/Line Playback Switch", 0x07, 0x0, HDA_INPUT),
3449         ALC_PIN_MODE("Mic/Line Jack Mode", 0x12, ALC_PIN_DIR_IN),
3450         HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3451         HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3452         HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3453         HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x09, 2, HDA_INPUT),
3454         { } /* end */
3455 };
3456
3457 /* Mixer for Acer TravelMate(/Extensa/Aspire) notebooks.  Note that current
3458  * versions of the ALC260 don't act on requests to enable mic bias from NID
3459  * 0x0f (used to drive the headphone jack in these laptops).  The ALC260
3460  * datasheet doesn't mention this restriction.  At this stage it's not clear
3461  * whether this behaviour is intentional or is a hardware bug in chip
3462  * revisions available in early 2006.  Therefore for now allow the
3463  * "Headphone Jack Mode" control to span all choices, but if it turns out
3464  * that the lack of mic bias for this NID is intentional we could change the
3465  * mode from ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
3466  *
3467  * In addition, Acer TravelMate(/Extensa/Aspire) notebooks in early 2006
3468  * don't appear to make the mic bias available from the "line" jack, even
3469  * though the NID used for this jack (0x14) can supply it.  The theory is
3470  * that perhaps Acer have included blocking capacitors between the ALC260
3471  * and the output jack.  If this turns out to be the case for all such
3472  * models the "Line Jack Mode" mode could be changed from ALC_PIN_DIR_INOUT
3473  * to ALC_PIN_DIR_INOUT_NOMICBIAS.
3474  *
3475  * The C20x Tablet series have a mono internal speaker which is controlled
3476  * via the chip's Mono sum widget and pin complex, so include the necessary
3477  * controls for such models.  On models without a "mono speaker" the control
3478  * won't do anything.
3479  */
3480 static struct snd_kcontrol_new alc260_acer_mixer[] = {
3481         HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3482         HDA_BIND_MUTE("Master Playback Switch", 0x08, 2, HDA_INPUT),
3483         ALC_PIN_MODE("Headphone Jack Mode", 0x0f, ALC_PIN_DIR_INOUT),
3484         HDA_CODEC_VOLUME_MONO("Mono Speaker Playback Volume", 0x0a, 1, 0x0,
3485                               HDA_OUTPUT),
3486         HDA_BIND_MUTE_MONO("Mono Speaker Playback Switch", 0x0a, 1, 2,
3487                            HDA_INPUT),
3488         HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3489         HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3490         HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3491         HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3492         ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3493         HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3494         HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3495         ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3496         HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3497         HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3498         { } /* end */
3499 };
3500
3501 /* Packard bell V7900  ALC260 pin usage: HP = 0x0f, Mic jack = 0x12,
3502  * Line In jack = 0x14, CD audio =  0x16, pc beep = 0x17.
3503  */
3504 static struct snd_kcontrol_new alc260_will_mixer[] = {
3505         HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3506         HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT),
3507         HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3508         HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3509         ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3510         HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3511         HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3512         ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3513         HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3514         HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3515         HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3516         HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3517         { } /* end */
3518 };
3519
3520 /* Replacer 672V ALC260 pin usage: Mic jack = 0x12,
3521  * Line In jack = 0x14, ATAPI Mic = 0x13, speaker = 0x0f.
3522  */
3523 static struct snd_kcontrol_new alc260_replacer_672v_mixer[] = {
3524         HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3525         HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT),
3526         HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3527         HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3528         ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3529         HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x07, 0x1, HDA_INPUT),
3530         HDA_CODEC_MUTE("ATATI Mic Playback Switch", 0x07, 0x1, HDA_INPUT),
3531         HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3532         HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3533         ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3534         { } /* end */
3535 };
3536
3537 /* capture mixer elements */
3538 static struct snd_kcontrol_new alc260_capture_mixer[] = {
3539         HDA_CODEC_VOLUME("Capture Volume", 0x04, 0x0, HDA_INPUT),
3540         HDA_CODEC_MUTE("Capture Switch", 0x04, 0x0, HDA_INPUT),
3541         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x05, 0x0, HDA_INPUT),
3542         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x05, 0x0, HDA_INPUT),
3543         {
3544                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3545                 /* The multiple "Capture Source" controls confuse alsamixer
3546                  * So call somewhat different..
3547                  * FIXME: the controls appear in the "playback" view!
3548                  */
3549                 /* .name = "Capture Source", */
3550                 .name = "Input Source",
3551                 .count = 2,
3552                 .info = alc_mux_enum_info,
3553                 .get = alc_mux_enum_get,
3554                 .put = alc_mux_enum_put,
3555         },
3556         { } /* end */
3557 };
3558
3559 static struct snd_kcontrol_new alc260_capture_alt_mixer[] = {
3560         HDA_CODEC_VOLUME("Capture Volume", 0x05, 0x0, HDA_INPUT),
3561         HDA_CODEC_MUTE("Capture Switch", 0x05, 0x0, HDA_INPUT),
3562         {
3563                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3564                 /* The multiple "Capture Source" controls confuse alsamixer
3565                  * So call somewhat different..
3566                  * FIXME: the controls appear in the "playback" view!
3567                  */
3568                 /* .name = "Capture Source", */
3569                 .name = "Input Source",
3570                 .count = 1,
3571                 .info = alc_mux_enum_info,
3572                 .get = alc_mux_enum_get,
3573                 .put = alc_mux_enum_put,
3574         },
3575         { } /* end */
3576 };
3577
3578 /*
3579  * initialization verbs
3580  */
3581 static struct hda_verb alc260_init_verbs[] = {
3582         /* Line In pin widget for input */
3583         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3584         /* CD pin widget for input */
3585         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3586         /* Mic1 (rear panel) pin widget for input and vref at 80% */
3587         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
3588         /* Mic2 (front panel) pin widget for input and vref at 80% */
3589         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
3590         /* LINE-2 is used for line-out in rear */
3591         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3592         /* select line-out */
3593         {0x0e, AC_VERB_SET_CONNECT_SEL, 0x00},
3594         /* LINE-OUT pin */
3595         {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3596         /* enable HP */
3597         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3598         /* enable Mono */
3599         {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3600         /* mute capture amp left and right */
3601         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3602         /* set connection select to line in (default select for this ADC) */
3603         {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3604         /* mute capture amp left and right */
3605         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3606         /* set connection select to line in (default select for this ADC) */
3607         {0x05, AC_VERB_SET_CONNECT_SEL, 0x02},
3608         /* set vol=0 Line-Out mixer amp left and right */
3609         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3610         /* unmute pin widget amp left and right (no gain on this amp) */
3611         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3612         /* set vol=0 HP mixer amp left and right */
3613         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3614         /* unmute pin widget amp left and right (no gain on this amp) */
3615         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3616         /* set vol=0 Mono mixer amp left and right */
3617         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3618         /* unmute pin widget amp left and right (no gain on this amp) */
3619         {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3620         /* unmute LINE-2 out pin */
3621         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3622         /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3623          * Line In 2 = 0x03
3624          */
3625         /* mute CD */
3626         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
3627         /* mute Line In */
3628         {0x07,  AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
3629         /* mute Mic */
3630         {0x07,  AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3631         /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3632         /* mute Front out path */
3633         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3634         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3635         /* mute Headphone out path */
3636         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3637         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3638         /* mute Mono out path */
3639         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3640         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3641         { }
3642 };
3643
3644 #if 0 /* should be identical with alc260_init_verbs? */
3645 static struct hda_verb alc260_hp_init_verbs[] = {
3646         /* Headphone and output */
3647         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
3648         /* mono output */
3649         {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3650         /* Mic1 (rear panel) pin widget for input and vref at 80% */
3651         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3652         /* Mic2 (front panel) pin widget for input and vref at 80% */
3653         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3654         /* Line In pin widget for input */
3655         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3656         /* Line-2 pin widget for output */
3657         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3658         /* CD pin widget for input */
3659         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3660         /* unmute amp left and right */
3661         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
3662         /* set connection select to line in (default select for this ADC) */
3663         {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3664         /* unmute Line-Out mixer amp left and right (volume = 0) */
3665         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3666         /* mute pin widget amp left and right (no gain on this amp) */
3667         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3668         /* unmute HP mixer amp left and right (volume = 0) */
3669         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3670         /* mute pin widget amp left and right (no gain on this amp) */
3671         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3672         /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3673          * Line In 2 = 0x03
3674          */
3675         /* unmute CD */
3676         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
3677         /* unmute Line In */
3678         {0x07,  AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
3679         /* unmute Mic */
3680         {0x07,  AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3681         /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3682         /* Unmute Front out path */
3683         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3684         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3685         /* Unmute Headphone out path */
3686         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3687         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3688         /* Unmute Mono out path */
3689         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3690         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3691         { }
3692 };
3693 #endif
3694
3695 static struct hda_verb alc260_hp_3013_init_verbs[] = {
3696         /* Line out and output */
3697         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3698         /* mono output */
3699         {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3700         /* Mic1 (rear panel) pin widget for input and vref at 80% */
3701         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3702         /* Mic2 (front panel) pin widget for input and vref at 80% */
3703         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3704         /* Line In pin widget for input */
3705         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3706         /* Headphone pin widget for output */
3707         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
3708         /* CD pin widget for input */
3709         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3710         /* unmute amp left and right */
3711         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
3712         /* set connection select to line in (default select for this ADC) */
3713         {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3714         /* unmute Line-Out mixer amp left and right (volume = 0) */
3715         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3716         /* mute pin widget amp left and right (no gain on this amp) */
3717         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3718         /* unmute HP mixer amp left and right (volume = 0) */
3719         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3720         /* mute pin widget amp left and right (no gain on this amp) */
3721         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3722         /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3723          * Line In 2 = 0x03
3724          */
3725         /* unmute CD */
3726         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
3727         /* unmute Line In */
3728         {0x07,  AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
3729         /* unmute Mic */
3730         {0x07,  AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3731         /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3732         /* Unmute Front out path */
3733         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3734         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3735         /* Unmute Headphone out path */
3736         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3737         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3738         /* Unmute Mono out path */
3739         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3740         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3741         { }
3742 };
3743
3744 /* Initialisation sequence for ALC260 as configured in Fujitsu S702x
3745  * laptops.  ALC260 pin usage: Mic/Line jack = 0x12, HP jack = 0x14, CD
3746  * audio = 0x16, internal speaker = 0x10.
3747  */
3748 static struct hda_verb alc260_fujitsu_init_verbs[] = {
3749         /* Disable all GPIOs */
3750         {0x01, AC_VERB_SET_GPIO_MASK, 0},
3751         /* Internal speaker is connected to headphone pin */
3752         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3753         /* Headphone/Line-out jack connects to Line1 pin; make it an output */
3754         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3755         /* Mic/Line-in jack is connected to mic1 pin, so make it an input */
3756         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3757         /* Ensure all other unused pins are disabled and muted. */
3758         {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3759         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3760         {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3761         {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3762         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3763         {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3764         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3765         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3766
3767         /* Disable digital (SPDIF) pins */
3768         {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3769         {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3770
3771         /* Ensure Line1 pin widget takes its input from the OUT1 sum bus 
3772          * when acting as an output.
3773          */
3774         {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3775
3776         /* Start with output sum widgets muted and their output gains at min */
3777         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3778         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3779         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3780         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3781         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3782         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3783         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3784         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3785         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3786
3787         /* Unmute HP pin widget amp left and right (no equiv mixer ctrl) */
3788         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3789         /* Unmute Line1 pin widget output buffer since it starts as an output.
3790          * If the pin mode is changed by the user the pin mode control will
3791          * take care of enabling the pin's input/output buffers as needed.
3792          * Therefore there's no need to enable the input buffer at this
3793          * stage.
3794          */
3795         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3796         /* Unmute input buffer of pin widget used for Line-in (no equiv 
3797          * mixer ctrl)
3798          */
3799         {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3800
3801         /* Mute capture amp left and right */
3802         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3803         /* Set ADC connection select to match default mixer setting - line 
3804          * in (on mic1 pin)
3805          */
3806         {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3807
3808         /* Do the same for the second ADC: mute capture input amp and
3809          * set ADC connection to line in (on mic1 pin)
3810          */
3811         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3812         {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
3813
3814         /* Mute all inputs to mixer widget (even unconnected ones) */
3815         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3816         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3817         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3818         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3819         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3820         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3821         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3822         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
3823
3824         { }
3825 };
3826
3827 /* Initialisation sequence for ALC260 as configured in Acer TravelMate and
3828  * similar laptops (adapted from Fujitsu init verbs).
3829  */
3830 static struct hda_verb alc260_acer_init_verbs[] = {
3831         /* On TravelMate laptops, GPIO 0 enables the internal speaker and
3832          * the headphone jack.  Turn this on and rely on the standard mute
3833          * methods whenever the user wants to turn these outputs off.
3834          */
3835         {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
3836         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
3837         {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
3838         /* Internal speaker/Headphone jack is connected to Line-out pin */
3839         {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3840         /* Internal microphone/Mic jack is connected to Mic1 pin */
3841         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
3842         /* Line In jack is connected to Line1 pin */
3843         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3844         /* Some Acers (eg: C20x Tablets) use Mono pin for internal speaker */
3845         {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3846         /* Ensure all other unused pins are disabled and muted. */
3847         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3848         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3849         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3850         {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3851         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3852         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3853         /* Disable digital (SPDIF) pins */
3854         {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3855         {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3856
3857         /* Ensure Mic1 and Line1 pin widgets take input from the OUT1 sum 
3858          * bus when acting as outputs.
3859          */
3860         {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
3861         {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3862
3863         /* Start with output sum widgets muted and their output gains at min */
3864         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3865         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3866         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3867         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3868         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3869         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3870         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3871         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3872         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3873
3874         /* Unmute Line-out pin widget amp left and right
3875          * (no equiv mixer ctrl)
3876          */
3877         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3878         /* Unmute mono pin widget amp output (no equiv mixer ctrl) */
3879         {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3880         /* Unmute Mic1 and Line1 pin widget input buffers since they start as
3881          * inputs. If the pin mode is changed by the user the pin mode control
3882          * will take care of enabling the pin's input/output buffers as needed.
3883          * Therefore there's no need to enable the input buffer at this
3884          * stage.
3885          */
3886         {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3887         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3888
3889         /* Mute capture amp left and right */
3890         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3891         /* Set ADC connection select to match default mixer setting - mic
3892          * (on mic1 pin)
3893          */
3894         {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3895
3896         /* Do similar with the second ADC: mute capture input amp and
3897          * set ADC connection to mic to match ALSA's default state.
3898          */
3899         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3900         {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
3901
3902         /* Mute all inputs to mixer widget (even unconnected ones) */
3903         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3904         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3905         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3906         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3907         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3908         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3909         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3910         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
3911
3912         { }
3913 };
3914
3915 static struct hda_verb alc260_will_verbs[] = {
3916         {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3917         {0x0b, AC_VERB_SET_CONNECT_SEL, 0x00},
3918         {0x0d, AC_VERB_SET_CONNECT_SEL, 0x00},
3919         {0x0f, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
3920         {0x1a, AC_VERB_SET_COEF_INDEX, 0x07},
3921         {0x1a, AC_VERB_SET_PROC_COEF, 0x3040},
3922         {}
3923 };
3924
3925 static struct hda_verb alc260_replacer_672v_verbs[] = {
3926         {0x0f, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
3927         {0x1a, AC_VERB_SET_COEF_INDEX, 0x07},
3928         {0x1a, AC_VERB_SET_PROC_COEF, 0x3050},
3929
3930         {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
3931         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
3932         {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
3933
3934         {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
3935         {}
3936 };
3937
3938 /* toggle speaker-output according to the hp-jack state */
3939 static void alc260_replacer_672v_automute(struct hda_codec *codec)
3940 {
3941         unsigned int present;
3942
3943         /* speaker --> GPIO Data 0, hp or spdif --> GPIO data 1 */
3944         present = snd_hda_codec_read(codec, 0x0f, 0,
3945                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
3946         if (present) {
3947                 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA, 1);
3948                 snd_hda_codec_write(codec, 0x0f, 0,
3949                                     AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
3950         } else {
3951                 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA, 0);
3952                 snd_hda_codec_write(codec, 0x0f, 0,
3953                                     AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3954         }
3955 }
3956
3957 static void alc260_replacer_672v_unsol_event(struct hda_codec *codec,
3958                                        unsigned int res)
3959 {
3960         if ((res >> 26) == ALC880_HP_EVENT)
3961                 alc260_replacer_672v_automute(codec);
3962 }
3963
3964 /* Test configuration for debugging, modelled after the ALC880 test
3965  * configuration.
3966  */
3967 #ifdef CONFIG_SND_DEBUG
3968 static hda_nid_t alc260_test_dac_nids[1] = {
3969         0x02,
3970 };
3971 static hda_nid_t alc260_test_adc_nids[2] = {
3972         0x04, 0x05,
3973 };
3974 /* For testing the ALC260, each input MUX needs its own definition since
3975  * the signal assignments are different.  This assumes that the first ADC 
3976  * is NID 0x04.
3977  */
3978 static struct hda_input_mux alc260_test_capture_sources[2] = {
3979         {
3980                 .num_items = 7,
3981                 .items = {
3982                         { "MIC1 pin", 0x0 },
3983                         { "MIC2 pin", 0x1 },
3984                         { "LINE1 pin", 0x2 },
3985                         { "LINE2 pin", 0x3 },
3986                         { "CD pin", 0x4 },
3987                         { "LINE-OUT pin", 0x5 },
3988                         { "HP-OUT pin", 0x6 },
3989                 },
3990         },
3991         {
3992                 .num_items = 8,
3993                 .items = {
3994                         { "MIC1 pin", 0x0 },
3995                         { "MIC2 pin", 0x1 },
3996                         { "LINE1 pin", 0x2 },
3997                         { "LINE2 pin", 0x3 },
3998                         { "CD pin", 0x4 },
3999                         { "Mixer", 0x5 },
4000                         { "LINE-OUT pin", 0x6 },
4001                         { "HP-OUT pin", 0x7 },
4002                 },
4003         },
4004 };
4005 static struct snd_kcontrol_new alc260_test_mixer[] = {
4006         /* Output driver widgets */
4007         HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
4008         HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
4009         HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x09, 0x0, HDA_OUTPUT),
4010         HDA_BIND_MUTE("LOUT2 Playback Switch", 0x09, 2, HDA_INPUT),
4011         HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x08, 0x0, HDA_OUTPUT),
4012         HDA_BIND_MUTE("LOUT1 Playback Switch", 0x08, 2, HDA_INPUT),
4013
4014         /* Modes for retasking pin widgets
4015          * Note: the ALC260 doesn't seem to act on requests to enable mic
4016          * bias from NIDs 0x0f and 0x10.  The ALC260 datasheet doesn't
4017          * mention this restriction.  At this stage it's not clear whether
4018          * this behaviour is intentional or is a hardware bug in chip
4019          * revisions available at least up until early 2006.  Therefore for
4020          * now allow the "HP-OUT" and "LINE-OUT" Mode controls to span all
4021          * choices, but if it turns out that the lack of mic bias for these
4022          * NIDs is intentional we could change their modes from
4023          * ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
4024          */
4025         ALC_PIN_MODE("HP-OUT pin mode", 0x10, ALC_PIN_DIR_INOUT),
4026         ALC_PIN_MODE("LINE-OUT pin mode", 0x0f, ALC_PIN_DIR_INOUT),
4027         ALC_PIN_MODE("LINE2 pin mode", 0x15, ALC_PIN_DIR_INOUT),
4028         ALC_PIN_MODE("LINE1 pin mode", 0x14, ALC_PIN_DIR_INOUT),
4029         ALC_PIN_MODE("MIC2 pin mode", 0x13, ALC_PIN_DIR_INOUT),
4030         ALC_PIN_MODE("MIC1 pin mode", 0x12, ALC_PIN_DIR_INOUT),
4031
4032         /* Loopback mixer controls */
4033         HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x07, 0x00, HDA_INPUT),
4034         HDA_CODEC_MUTE("MIC1 Playback Switch", 0x07, 0x00, HDA_INPUT),
4035         HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x07, 0x01, HDA_INPUT),
4036         HDA_CODEC_MUTE("MIC2 Playback Switch", 0x07, 0x01, HDA_INPUT),
4037         HDA_CODEC_VOLUME("LINE1 Playback Volume", 0x07, 0x02, HDA_INPUT),
4038         HDA_CODEC_MUTE("LINE1 Playback Switch", 0x07, 0x02, HDA_INPUT),
4039         HDA_CODEC_VOLUME("LINE2 Playback Volume", 0x07, 0x03, HDA_INPUT),
4040         HDA_CODEC_MUTE("LINE2 Playback Switch", 0x07, 0x03, HDA_INPUT),
4041         HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
4042         HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
4043         HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
4044         HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
4045         HDA_CODEC_VOLUME("LINE-OUT loopback Playback Volume", 0x07, 0x06, HDA_INPUT),
4046         HDA_CODEC_MUTE("LINE-OUT loopback Playback Switch", 0x07, 0x06, HDA_INPUT),
4047         HDA_CODEC_VOLUME("HP-OUT loopback Playback Volume", 0x07, 0x7, HDA_INPUT),
4048         HDA_CODEC_MUTE("HP-OUT loopback Playback Switch", 0x07, 0x7, HDA_INPUT),
4049
4050         /* Controls for GPIO pins, assuming they are configured as outputs */
4051         ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
4052         ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
4053         ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
4054         ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
4055
4056         /* Switches to allow the digital IO pins to be enabled.  The datasheet
4057          * is ambigious as to which NID is which; testing on laptops which
4058          * make this output available should provide clarification. 
4059          */
4060         ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x03, 0x01),
4061         ALC_SPDIF_CTRL_SWITCH("SPDIF Capture Switch", 0x06, 0x01),
4062
4063         { } /* end */
4064 };
4065 static struct hda_verb alc260_test_init_verbs[] = {
4066         /* Enable all GPIOs as outputs with an initial value of 0 */
4067         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x0f},
4068         {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4069         {0x01, AC_VERB_SET_GPIO_MASK, 0x0f},
4070
4071         /* Enable retasking pins as output, initially without power amp */
4072         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4073         {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4074         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4075         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4076         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4077         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4078
4079         /* Disable digital (SPDIF) pins initially, but users can enable
4080          * them via a mixer switch.  In the case of SPDIF-out, this initverb
4081          * payload also sets the generation to 0, output to be in "consumer"
4082          * PCM format, copyright asserted, no pre-emphasis and no validity
4083          * control.
4084          */
4085         {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
4086         {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
4087
4088         /* Ensure mic1, mic2, line1 and line2 pin widgets take input from the 
4089          * OUT1 sum bus when acting as an output.
4090          */
4091         {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
4092         {0x0c, AC_VERB_SET_CONNECT_SEL, 0},
4093         {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
4094         {0x0e, AC_VERB_SET_CONNECT_SEL, 0},
4095
4096         /* Start with output sum widgets muted and their output gains at min */
4097         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4098         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4099         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4100         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4101         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4102         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4103         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4104         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4105         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4106
4107         /* Unmute retasking pin widget output buffers since the default
4108          * state appears to be output.  As the pin mode is changed by the
4109          * user the pin mode control will take care of enabling the pin's
4110          * input/output buffers as needed.
4111          */
4112         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4113         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4114         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4115         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4116         {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4117         {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4118         /* Also unmute the mono-out pin widget */
4119         {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4120
4121         /* Mute capture amp left and right */
4122         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4123         /* Set ADC connection select to match default mixer setting (mic1
4124          * pin)
4125          */
4126         {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4127
4128         /* Do the same for the second ADC: mute capture input amp and
4129          * set ADC connection to mic1 pin
4130          */
4131         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4132         {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4133
4134         /* Mute all inputs to mixer widget (even unconnected ones) */
4135         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
4136         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
4137         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
4138         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
4139         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
4140         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
4141         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
4142         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
4143
4144         { }
4145 };
4146 #endif
4147
4148 static struct hda_pcm_stream alc260_pcm_analog_playback = {
4149         .substreams = 1,
4150         .channels_min = 2,
4151         .channels_max = 2,
4152 };
4153
4154 static struct hda_pcm_stream alc260_pcm_analog_capture = {
4155         .substreams = 1,
4156         .channels_min = 2,
4157         .channels_max = 2,
4158 };
4159
4160 #define alc260_pcm_digital_playback     alc880_pcm_digital_playback
4161 #define alc260_pcm_digital_capture      alc880_pcm_digital_capture
4162
4163 /*
4164  * for BIOS auto-configuration
4165  */
4166
4167 static int alc260_add_playback_controls(struct alc_spec *spec, hda_nid_t nid,
4168                                         const char *pfx)
4169 {
4170         hda_nid_t nid_vol;
4171         unsigned long vol_val, sw_val;
4172         char name[32];
4173         int err;
4174
4175         if (nid >= 0x0f && nid < 0x11) {
4176                 nid_vol = nid - 0x7;
4177                 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
4178                 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
4179         } else if (nid == 0x11) {
4180                 nid_vol = nid - 0x7;
4181                 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0, HDA_OUTPUT);
4182                 sw_val = HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT);
4183         } else if (nid >= 0x12 && nid <= 0x15) {
4184                 nid_vol = 0x08;
4185                 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
4186                 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
4187         } else
4188                 return 0; /* N/A */
4189         
4190         snprintf(name, sizeof(name), "%s Playback Volume", pfx);
4191         err = add_control(spec, ALC_CTL_WIDGET_VOL, name, vol_val);
4192         if (err < 0)
4193                 return err;
4194         snprintf(name, sizeof(name), "%s Playback Switch", pfx);
4195         err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, sw_val);
4196         if (err < 0)
4197                 return err;
4198         return 1;
4199 }
4200
4201 /* add playback controls from the parsed DAC table */
4202 static int alc260_auto_create_multi_out_ctls(struct alc_spec *spec,
4203                                              const struct auto_pin_cfg *cfg)
4204 {
4205         hda_nid_t nid;
4206         int err;
4207
4208         spec->multiout.num_dacs = 1;
4209         spec->multiout.dac_nids = spec->private_dac_nids;
4210         spec->multiout.dac_nids[0] = 0x02;
4211
4212         nid = cfg->line_out_pins[0];
4213         if (nid) {
4214                 err = alc260_add_playback_controls(spec, nid, "Front");
4215                 if (err < 0)
4216                         return err;
4217         }
4218
4219         nid = cfg->speaker_pins[0];
4220         if (nid) {
4221                 err = alc260_add_playback_controls(spec, nid, "Speaker");
4222                 if (err < 0)
4223                         return err;
4224         }
4225
4226         nid = cfg->hp_pins[0];
4227         if (nid) {
4228                 err = alc260_add_playback_controls(spec, nid, "Headphone");
4229                 if (err < 0)
4230                         return err;
4231         }
4232         return 0;
4233 }
4234
4235 /* create playback/capture controls for input pins */
4236 static int alc260_auto_create_analog_input_ctls(struct alc_spec *spec,
4237                                                 const struct auto_pin_cfg *cfg)
4238 {
4239         struct hda_input_mux *imux = &spec->private_imux;
4240         int i, err, idx;
4241
4242         for (i = 0; i < AUTO_PIN_LAST; i++) {
4243                 if (cfg->input_pins[i] >= 0x12) {
4244                         idx = cfg->input_pins[i] - 0x12;
4245                         err = new_analog_input(spec, cfg->input_pins[i],
4246                                                auto_pin_cfg_labels[i], idx,
4247                                                0x07);
4248                         if (err < 0)
4249                                 return err;
4250                         imux->items[imux->num_items].label =
4251                                 auto_pin_cfg_labels[i];
4252                         imux->items[imux->num_items].index = idx;
4253                         imux->num_items++;
4254                 }
4255                 if (cfg->input_pins[i] >= 0x0f && cfg->input_pins[i] <= 0x10){
4256                         idx = cfg->input_pins[i] - 0x09;
4257                         err = new_analog_input(spec, cfg->input_pins[i],
4258                                                auto_pin_cfg_labels[i], idx,
4259                                                0x07);
4260                         if (err < 0)
4261                                 return err;
4262                         imux->items[imux->num_items].label =
4263                                 auto_pin_cfg_labels[i];
4264                         imux->items[imux->num_items].index = idx;
4265                         imux->num_items++;
4266                 }
4267         }
4268         return 0;
4269 }
4270
4271 static void alc260_auto_set_output_and_unmute(struct hda_codec *codec,
4272                                               hda_nid_t nid, int pin_type,
4273                                               int sel_idx)
4274 {
4275         /* set as output */
4276         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4277                             pin_type);
4278         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4279                             AMP_OUT_UNMUTE);
4280         /* need the manual connection? */
4281         if (nid >= 0x12) {
4282                 int idx = nid - 0x12;
4283                 snd_hda_codec_write(codec, idx + 0x0b, 0,
4284                                     AC_VERB_SET_CONNECT_SEL, sel_idx);
4285         }
4286 }
4287
4288 static void alc260_auto_init_multi_out(struct hda_codec *codec)
4289 {
4290         struct alc_spec *spec = codec->spec;
4291         hda_nid_t nid;
4292
4293         alc_subsystem_id(codec, 0x10, 0x15, 0x0f);
4294         nid = spec->autocfg.line_out_pins[0];
4295         if (nid)
4296                 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
4297         
4298         nid = spec->autocfg.speaker_pins[0];
4299         if (nid)
4300                 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
4301
4302         nid = spec->autocfg.hp_pins[0];
4303         if (nid)
4304                 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
4305 }
4306
4307 #define ALC260_PIN_CD_NID               0x16
4308 static void alc260_auto_init_analog_input(struct hda_codec *codec)
4309 {
4310         struct alc_spec *spec = codec->spec;
4311         int i;
4312
4313         for (i = 0; i < AUTO_PIN_LAST; i++) {
4314                 hda_nid_t nid = spec->autocfg.input_pins[i];
4315                 if (nid >= 0x12) {
4316                         snd_hda_codec_write(codec, nid, 0,
4317                                             AC_VERB_SET_PIN_WIDGET_CONTROL,
4318                                             i <= AUTO_PIN_FRONT_MIC ?
4319                                             PIN_VREF80 : PIN_IN);
4320                         if (nid != ALC260_PIN_CD_NID)
4321                                 snd_hda_codec_write(codec, nid, 0,
4322                                                     AC_VERB_SET_AMP_GAIN_MUTE,
4323                                                     AMP_OUT_MUTE);
4324                 }
4325         }
4326 }
4327
4328 /*
4329  * generic initialization of ADC, input mixers and output mixers
4330  */
4331 static struct hda_verb alc260_volume_init_verbs[] = {
4332         /*
4333          * Unmute ADC0-1 and set the default input to mic-in
4334          */
4335         {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4336         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4337         {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4338         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4339         
4340         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4341          * mixer widget
4342          * Note: PASD motherboards uses the Line In 2 as the input for
4343          * front panel mic (mic 2)
4344          */
4345         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4346         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4347         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4348         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
4349         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
4350         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
4351
4352         /*
4353          * Set up output mixers (0x08 - 0x0a)
4354          */
4355         /* set vol=0 to output mixers */
4356         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4357         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4358         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4359         /* set up input amps for analog loopback */
4360         /* Amp Indices: DAC = 0, mixer = 1 */
4361         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4362         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4363         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4364         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4365         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4366         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4367         
4368         { }
4369 };
4370
4371 static int alc260_parse_auto_config(struct hda_codec *codec)
4372 {
4373         struct alc_spec *spec = codec->spec;
4374         unsigned int wcap;
4375         int err;
4376         static hda_nid_t alc260_ignore[] = { 0x17, 0 };
4377
4378         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
4379                                            alc260_ignore);
4380         if (err < 0)
4381                 return err;
4382         err = alc260_auto_create_multi_out_ctls(spec, &spec->autocfg);
4383         if (err < 0)
4384                 return err;
4385         if (!spec->kctl_alloc)
4386                 return 0; /* can't find valid BIOS pin config */
4387         err = alc260_auto_create_analog_input_ctls(spec, &spec->autocfg);
4388         if (err < 0)
4389                 return err;
4390
4391         spec->multiout.max_channels = 2;
4392
4393         if (spec->autocfg.dig_out_pin)
4394                 spec->multiout.dig_out_nid = ALC260_DIGOUT_NID;
4395         if (spec->kctl_alloc)
4396                 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
4397
4398         spec->init_verbs[spec->num_init_verbs++] = alc260_volume_init_verbs;
4399
4400         spec->num_mux_defs = 1;
4401         spec->input_mux = &spec->private_imux;
4402
4403         /* check whether NID 0x04 is valid */
4404         wcap = get_wcaps(codec, 0x04);
4405         wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
4406         if (wcap != AC_WID_AUD_IN) {
4407                 spec->adc_nids = alc260_adc_nids_alt;
4408                 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids_alt);
4409                 spec->mixers[spec->num_mixers] = alc260_capture_alt_mixer;
4410         } else {
4411                 spec->adc_nids = alc260_adc_nids;
4412                 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids);
4413                 spec->mixers[spec->num_mixers] = alc260_capture_mixer;
4414         }
4415         spec->num_mixers++;
4416
4417         return 1;
4418 }
4419
4420 /* additional initialization for auto-configuration model */
4421 static void alc260_auto_init(struct hda_codec *codec)
4422 {
4423         alc260_auto_init_multi_out(codec);
4424         alc260_auto_init_analog_input(codec);
4425 }
4426
4427 /*
4428  * ALC260 configurations
4429  */
4430 static const char *alc260_models[ALC260_MODEL_LAST] = {
4431         [ALC260_BASIC]          = "basic",
4432         [ALC260_HP]             = "hp",
4433         [ALC260_HP_3013]        = "hp-3013",
4434         [ALC260_FUJITSU_S702X]  = "fujitsu",
4435         [ALC260_ACER]           = "acer",
4436         [ALC260_WILL]           = "will",
4437         [ALC260_REPLACER_672V]  = "replacer",
4438 #ifdef CONFIG_SND_DEBUG
4439         [ALC260_TEST]           = "test",
4440 #endif
4441         [ALC260_AUTO]           = "auto",
4442 };
4443
4444 static struct snd_pci_quirk alc260_cfg_tbl[] = {
4445         SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_ACER),
4446         SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_ACER),
4447         SND_PCI_QUIRK(0x103c, 0x2808, "HP d5700", ALC260_HP_3013),
4448         SND_PCI_QUIRK(0x103c, 0x280a, "HP d5750", ALC260_HP_3013),
4449         SND_PCI_QUIRK(0x103c, 0x3010, "HP", ALC260_HP_3013),
4450         SND_PCI_QUIRK(0x103c, 0x3011, "HP", ALC260_HP),
4451         SND_PCI_QUIRK(0x103c, 0x3012, "HP", ALC260_HP_3013),
4452         SND_PCI_QUIRK(0x103c, 0x3013, "HP", ALC260_HP_3013),
4453         SND_PCI_QUIRK(0x103c, 0x3014, "HP", ALC260_HP),
4454         SND_PCI_QUIRK(0x103c, 0x3015, "HP", ALC260_HP),
4455         SND_PCI_QUIRK(0x103c, 0x3016, "HP", ALC260_HP),
4456         SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_BASIC),
4457         SND_PCI_QUIRK(0x104d, 0x81cc, "Sony VAIO", ALC260_BASIC),
4458         SND_PCI_QUIRK(0x104d, 0x81cd, "Sony VAIO", ALC260_BASIC),
4459         SND_PCI_QUIRK(0x10cf, 0x1326, "Fujitsu S702X", ALC260_FUJITSU_S702X),
4460         SND_PCI_QUIRK(0x152d, 0x0729, "CTL U553W", ALC260_BASIC),
4461         SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_WILL),
4462         SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_REPLACER_672V),
4463         {}
4464 };
4465
4466 static struct alc_config_preset alc260_presets[] = {
4467         [ALC260_BASIC] = {
4468                 .mixers = { alc260_base_output_mixer,
4469                             alc260_input_mixer,
4470                             alc260_pc_beep_mixer,
4471                             alc260_capture_mixer },
4472                 .init_verbs = { alc260_init_verbs },
4473                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4474                 .dac_nids = alc260_dac_nids,
4475                 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4476                 .adc_nids = alc260_adc_nids,
4477                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4478                 .channel_mode = alc260_modes,
4479                 .input_mux = &alc260_capture_source,
4480         },
4481         [ALC260_HP] = {
4482                 .mixers = { alc260_base_output_mixer,
4483                             alc260_input_mixer,
4484                             alc260_capture_alt_mixer },
4485                 .init_verbs = { alc260_init_verbs },
4486                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4487                 .dac_nids = alc260_dac_nids,
4488                 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
4489                 .adc_nids = alc260_hp_adc_nids,
4490                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4491                 .channel_mode = alc260_modes,
4492                 .input_mux = &alc260_capture_source,
4493         },
4494         [ALC260_HP_3013] = {
4495                 .mixers = { alc260_hp_3013_mixer,
4496                             alc260_input_mixer,
4497                             alc260_capture_alt_mixer },
4498                 .init_verbs = { alc260_hp_3013_init_verbs },
4499                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4500                 .dac_nids = alc260_dac_nids,
4501                 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
4502                 .adc_nids = alc260_hp_adc_nids,
4503                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4504                 .channel_mode = alc260_modes,
4505                 .input_mux = &alc260_capture_source,
4506         },
4507         [ALC260_FUJITSU_S702X] = {
4508                 .mixers = { alc260_fujitsu_mixer,
4509                             alc260_capture_mixer },
4510                 .init_verbs = { alc260_fujitsu_init_verbs },
4511                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4512                 .dac_nids = alc260_dac_nids,
4513                 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
4514                 .adc_nids = alc260_dual_adc_nids,
4515                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4516                 .channel_mode = alc260_modes,
4517                 .num_mux_defs = ARRAY_SIZE(alc260_fujitsu_capture_sources),
4518                 .input_mux = alc260_fujitsu_capture_sources,
4519         },
4520         [ALC260_ACER] = {
4521                 .mixers = { alc260_acer_mixer,
4522                             alc260_capture_mixer },
4523                 .init_verbs = { alc260_acer_init_verbs },
4524                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4525                 .dac_nids = alc260_dac_nids,
4526                 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
4527                 .adc_nids = alc260_dual_adc_nids,
4528                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4529                 .channel_mode = alc260_modes,
4530                 .num_mux_defs = ARRAY_SIZE(alc260_acer_capture_sources),
4531                 .input_mux = alc260_acer_capture_sources,
4532         },
4533         [ALC260_WILL] = {
4534                 .mixers = { alc260_will_mixer,
4535                             alc260_capture_mixer },
4536                 .init_verbs = { alc260_init_verbs, alc260_will_verbs },
4537                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4538                 .dac_nids = alc260_dac_nids,
4539                 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4540                 .adc_nids = alc260_adc_nids,
4541                 .dig_out_nid = ALC260_DIGOUT_NID,
4542                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4543                 .channel_mode = alc260_modes,
4544                 .input_mux = &alc260_capture_source,
4545         },
4546         [ALC260_REPLACER_672V] = {
4547                 .mixers = { alc260_replacer_672v_mixer,
4548                             alc260_capture_mixer },
4549                 .init_verbs = { alc260_init_verbs, alc260_replacer_672v_verbs },
4550                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4551                 .dac_nids = alc260_dac_nids,
4552                 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4553                 .adc_nids = alc260_adc_nids,
4554                 .dig_out_nid = ALC260_DIGOUT_NID,
4555                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4556                 .channel_mode = alc260_modes,
4557                 .input_mux = &alc260_capture_source,
4558                 .unsol_event = alc260_replacer_672v_unsol_event,
4559                 .init_hook = alc260_replacer_672v_automute,
4560         },
4561 #ifdef CONFIG_SND_DEBUG
4562         [ALC260_TEST] = {
4563                 .mixers = { alc260_test_mixer,
4564                             alc260_capture_mixer },
4565                 .init_verbs = { alc260_test_init_verbs },
4566                 .num_dacs = ARRAY_SIZE(alc260_test_dac_nids),
4567                 .dac_nids = alc260_test_dac_nids,
4568                 .num_adc_nids = ARRAY_SIZE(alc260_test_adc_nids),
4569                 .adc_nids = alc260_test_adc_nids,
4570                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4571                 .channel_mode = alc260_modes,
4572                 .num_mux_defs = ARRAY_SIZE(alc260_test_capture_sources),
4573                 .input_mux = alc260_test_capture_sources,
4574         },
4575 #endif
4576 };
4577
4578 static int patch_alc260(struct hda_codec *codec)
4579 {
4580         struct alc_spec *spec;
4581         int err, board_config;
4582
4583         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4584         if (spec == NULL)
4585                 return -ENOMEM;
4586
4587         codec->spec = spec;
4588
4589         board_config = snd_hda_check_board_config(codec, ALC260_MODEL_LAST,
4590                                                   alc260_models,
4591                                                   alc260_cfg_tbl);
4592         if (board_config < 0) {
4593                 snd_printd(KERN_INFO "hda_codec: Unknown model for ALC260, "
4594                            "trying auto-probe from BIOS...\n");
4595                 board_config = ALC260_AUTO;
4596         }
4597
4598         if (board_config == ALC260_AUTO) {
4599                 /* automatic parse from the BIOS config */
4600                 err = alc260_parse_auto_config(codec);
4601                 if (err < 0) {
4602                         alc_free(codec);
4603                         return err;
4604                 } else if (!err) {
4605                         printk(KERN_INFO
4606                                "hda_codec: Cannot set up configuration "
4607                                "from BIOS.  Using base mode...\n");
4608                         board_config = ALC260_BASIC;
4609                 }
4610         }
4611
4612         if (board_config != ALC260_AUTO)
4613                 setup_preset(spec, &alc260_presets[board_config]);
4614
4615         spec->stream_name_analog = "ALC260 Analog";
4616         spec->stream_analog_playback = &alc260_pcm_analog_playback;
4617         spec->stream_analog_capture = &alc260_pcm_analog_capture;
4618
4619         spec->stream_name_digital = "ALC260 Digital";
4620         spec->stream_digital_playback = &alc260_pcm_digital_playback;
4621         spec->stream_digital_capture = &alc260_pcm_digital_capture;
4622
4623         codec->patch_ops = alc_patch_ops;
4624         if (board_config == ALC260_AUTO)
4625                 spec->init_hook = alc260_auto_init;
4626
4627         return 0;
4628 }
4629
4630
4631 /*
4632  * ALC882 support
4633  *
4634  * ALC882 is almost identical with ALC880 but has cleaner and more flexible
4635  * configuration.  Each pin widget can choose any input DACs and a mixer.
4636  * Each ADC is connected from a mixer of all inputs.  This makes possible
4637  * 6-channel independent captures.
4638  *
4639  * In addition, an independent DAC for the multi-playback (not used in this
4640  * driver yet).
4641  */
4642 #define ALC882_DIGOUT_NID       0x06
4643 #define ALC882_DIGIN_NID        0x0a
4644
4645 static struct hda_channel_mode alc882_ch_modes[1] = {
4646         { 8, NULL }
4647 };
4648
4649 static hda_nid_t alc882_dac_nids[4] = {
4650         /* front, rear, clfe, rear_surr */
4651         0x02, 0x03, 0x04, 0x05
4652 };
4653
4654 /* identical with ALC880 */
4655 #define alc882_adc_nids         alc880_adc_nids
4656 #define alc882_adc_nids_alt     alc880_adc_nids_alt
4657
4658 /* input MUX */
4659 /* FIXME: should be a matrix-type input source selection */
4660
4661 static struct hda_input_mux alc882_capture_source = {
4662         .num_items = 4,
4663         .items = {
4664                 { "Mic", 0x0 },
4665                 { "Front Mic", 0x1 },
4666                 { "Line", 0x2 },
4667                 { "CD", 0x4 },
4668         },
4669 };
4670 #define alc882_mux_enum_info alc_mux_enum_info
4671 #define alc882_mux_enum_get alc_mux_enum_get
4672
4673 static int alc882_mux_enum_put(struct snd_kcontrol *kcontrol,
4674                                struct snd_ctl_elem_value *ucontrol)
4675 {
4676         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4677         struct alc_spec *spec = codec->spec;
4678         const struct hda_input_mux *imux = spec->input_mux;
4679         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
4680         static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
4681         hda_nid_t nid = capture_mixers[adc_idx];
4682         unsigned int *cur_val = &spec->cur_mux[adc_idx];
4683         unsigned int i, idx;
4684
4685         idx = ucontrol->value.enumerated.item[0];
4686         if (idx >= imux->num_items)
4687                 idx = imux->num_items - 1;
4688         if (*cur_val == idx && !codec->in_resume)
4689                 return 0;
4690         for (i = 0; i < imux->num_items; i++) {
4691                 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
4692                 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4693                                     v | (imux->items[i].index << 8));
4694         }
4695         *cur_val = idx;
4696         return 1;
4697 }
4698
4699 /*
4700  * 6ch mode
4701  */
4702 static struct hda_verb alc882_sixstack_ch6_init[] = {
4703         { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
4704         { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4705         { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4706         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4707         { } /* end */
4708 };
4709
4710 /*
4711  * 8ch mode
4712  */
4713 static struct hda_verb alc882_sixstack_ch8_init[] = {
4714         { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4715         { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4716         { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4717         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4718         { } /* end */
4719 };
4720
4721 static struct hda_channel_mode alc882_sixstack_modes[2] = {
4722         { 6, alc882_sixstack_ch6_init },
4723         { 8, alc882_sixstack_ch8_init },
4724 };
4725
4726 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
4727  *                 Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
4728  */
4729 static struct snd_kcontrol_new alc882_base_mixer[] = {
4730         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4731         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4732         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
4733         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
4734         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
4735         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
4736         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
4737         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
4738         HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
4739         HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
4740         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
4741         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4742         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4743         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4744         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4745         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4746         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
4747         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4748         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
4749         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
4750         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
4751         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
4752         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
4753         { } /* end */
4754 };
4755
4756 static struct snd_kcontrol_new alc882_chmode_mixer[] = {
4757         {
4758                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4759                 .name = "Channel Mode",
4760                 .info = alc_ch_mode_info,
4761                 .get = alc_ch_mode_get,
4762                 .put = alc_ch_mode_put,
4763         },
4764         { } /* end */
4765 };
4766
4767 static struct hda_verb alc882_init_verbs[] = {
4768         /* Front mixer: unmute input/output amp left and right (volume = 0) */
4769         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4770         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4771         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4772         /* Rear mixer */
4773         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4774         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4775         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4776         /* CLFE mixer */
4777         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4778         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4779         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4780         /* Side mixer */
4781         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4782         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4783         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4784
4785         /* Front Pin: output 0 (0x0c) */
4786         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4787         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4788         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
4789         /* Rear Pin: output 1 (0x0d) */
4790         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4791         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4792         {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
4793         /* CLFE Pin: output 2 (0x0e) */
4794         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4795         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4796         {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
4797         /* Side Pin: output 3 (0x0f) */
4798         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4799         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4800         {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
4801         /* Mic (rear) pin: input vref at 80% */
4802         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
4803         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
4804         /* Front Mic pin: input vref at 80% */
4805         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
4806         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
4807         /* Line In pin: input */
4808         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
4809         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
4810         /* Line-2 In: Headphone output (output 0 - 0x0c) */
4811         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4812         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4813         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
4814         /* CD pin widget for input */
4815         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
4816
4817         /* FIXME: use matrix-type input source selection */
4818         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
4819         /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
4820         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4821         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4822         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4823         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4824         /* Input mixer2 */
4825         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4826         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4827         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4828         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4829         /* Input mixer3 */
4830         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4831         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4832         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4833         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4834         /* ADC1: mute amp left and right */
4835         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4836         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
4837         /* ADC2: mute amp left and right */
4838         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4839         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
4840         /* ADC3: mute amp left and right */
4841         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4842         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
4843
4844         { }
4845 };
4846
4847 static struct hda_verb alc882_eapd_verbs[] = {
4848         /* change to EAPD mode */
4849         {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
4850         {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
4851         { }
4852 };
4853
4854 /* Mac Pro test */
4855 static struct snd_kcontrol_new alc882_macpro_mixer[] = {
4856         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4857         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4858         HDA_CODEC_MUTE("Headphone Playback Switch", 0x18, 0x0, HDA_OUTPUT),
4859         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
4860         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
4861         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x02, HDA_INPUT),
4862         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x02, HDA_INPUT),
4863         { } /* end */
4864 };
4865
4866 static struct hda_verb alc882_macpro_init_verbs[] = {
4867         /* Front mixer: unmute input/output amp left and right (volume = 0) */
4868         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4869         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4870         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4871         /* Front Pin: output 0 (0x0c) */
4872         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4873         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4874         {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
4875         /* Front Mic pin: input vref at 80% */
4876         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
4877         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
4878         /* Speaker:  output */
4879         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4880         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4881         {0x1a, AC_VERB_SET_CONNECT_SEL, 0x04},
4882         /* Headphone output (output 0 - 0x0c) */
4883         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4884         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4885         {0x18, AC_VERB_SET_CONNECT_SEL, 0x00},
4886
4887         /* FIXME: use matrix-type input source selection */
4888         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
4889         /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
4890         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4891         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4892         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4893         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4894         /* Input mixer2 */
4895         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4896         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4897         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4898         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4899         /* Input mixer3 */
4900         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4901         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4902         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4903         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4904         /* ADC1: mute amp left and right */
4905         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4906         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
4907         /* ADC2: mute amp left and right */
4908         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4909         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
4910         /* ADC3: mute amp left and right */
4911         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4912         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
4913
4914         { }
4915 };
4916
4917 static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
4918 {
4919         unsigned int gpiostate, gpiomask, gpiodir;
4920
4921         gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
4922                                        AC_VERB_GET_GPIO_DATA, 0);
4923
4924         if (!muted)
4925                 gpiostate |= (1 << pin);
4926         else
4927                 gpiostate &= ~(1 << pin);
4928
4929         gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
4930                                       AC_VERB_GET_GPIO_MASK, 0);
4931         gpiomask |= (1 << pin);
4932
4933         gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
4934                                      AC_VERB_GET_GPIO_DIRECTION, 0);
4935         gpiodir |= (1 << pin);
4936
4937
4938         snd_hda_codec_write(codec, codec->afg, 0,
4939                             AC_VERB_SET_GPIO_MASK, gpiomask);
4940         snd_hda_codec_write(codec, codec->afg, 0,
4941                             AC_VERB_SET_GPIO_DIRECTION, gpiodir);
4942
4943         msleep(1);
4944
4945         snd_hda_codec_write(codec, codec->afg, 0,
4946                             AC_VERB_SET_GPIO_DATA, gpiostate);
4947 }
4948
4949 /*
4950  * generic initialization of ADC, input mixers and output mixers
4951  */
4952 static struct hda_verb alc882_auto_init_verbs[] = {
4953         /*
4954          * Unmute ADC0-2 and set the default input to mic-in
4955          */
4956         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
4957         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4958         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
4959         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4960         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
4961         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4962
4963         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4964          * mixer widget
4965          * Note: PASD motherboards uses the Line In 2 as the input for
4966          * front panel mic (mic 2)
4967          */
4968         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4969         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4970         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4971         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
4972         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
4973         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
4974
4975         /*
4976          * Set up output mixers (0x0c - 0x0f)
4977          */
4978         /* set vol=0 to output mixers */
4979         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4980         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4981         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4982         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4983         /* set up input amps for analog loopback */
4984         /* Amp Indices: DAC = 0, mixer = 1 */
4985         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4986         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4987         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4988         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4989         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4990         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4991         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4992         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4993         {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4994         {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4995
4996         /* FIXME: use matrix-type input source selection */
4997         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
4998         /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
4999         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5000         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5001         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5002         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5003         /* Input mixer2 */
5004         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5005         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5006         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5007         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5008         /* Input mixer3 */
5009         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5010         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5011         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5012         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5013
5014         { }
5015 };
5016
5017 /* capture mixer elements */
5018 static struct snd_kcontrol_new alc882_capture_alt_mixer[] = {
5019         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5020         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5021         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5022         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5023         {
5024                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5025                 /* The multiple "Capture Source" controls confuse alsamixer
5026                  * So call somewhat different..
5027                  * FIXME: the controls appear in the "playback" view!
5028                  */
5029                 /* .name = "Capture Source", */
5030                 .name = "Input Source",
5031                 .count = 2,
5032                 .info = alc882_mux_enum_info,
5033                 .get = alc882_mux_enum_get,
5034                 .put = alc882_mux_enum_put,
5035         },
5036         { } /* end */
5037 };
5038
5039 static struct snd_kcontrol_new alc882_capture_mixer[] = {
5040         HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
5041         HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
5042         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
5043         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
5044         HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
5045         HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
5046         {
5047                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5048                 /* The multiple "Capture Source" controls confuse alsamixer
5049                  * So call somewhat different..
5050                  * FIXME: the controls appear in the "playback" view!
5051                  */
5052                 /* .name = "Capture Source", */
5053                 .name = "Input Source",
5054                 .count = 3,
5055                 .info = alc882_mux_enum_info,
5056                 .get = alc882_mux_enum_get,
5057                 .put = alc882_mux_enum_put,
5058         },
5059         { } /* end */
5060 };
5061
5062 /* pcm configuration: identiacal with ALC880 */
5063 #define alc882_pcm_analog_playback      alc880_pcm_analog_playback
5064 #define alc882_pcm_analog_capture       alc880_pcm_analog_capture
5065 #define alc882_pcm_digital_playback     alc880_pcm_digital_playback
5066 #define alc882_pcm_digital_capture      alc880_pcm_digital_capture
5067
5068 /*
5069  * configuration and preset
5070  */
5071 static const char *alc882_models[ALC882_MODEL_LAST] = {
5072         [ALC882_3ST_DIG]        = "3stack-dig",
5073         [ALC882_6ST_DIG]        = "6stack-dig",
5074         [ALC882_ARIMA]          = "arima",
5075         [ALC885_MACPRO]         = "macpro",
5076         [ALC882_AUTO]           = "auto",
5077 };
5078
5079 static struct snd_pci_quirk alc882_cfg_tbl[] = {
5080         SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC882_6ST_DIG),
5081         SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC882_6ST_DIG),
5082         SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC882_6ST_DIG),
5083         SND_PCI_QUIRK(0x161f, 0x2054, "Arima W820", ALC882_ARIMA),
5084         SND_PCI_QUIRK(0x1043, 0x81d8, "Asus P5WD", ALC882_6ST_DIG),
5085         {}
5086 };
5087
5088 static struct alc_config_preset alc882_presets[] = {
5089         [ALC882_3ST_DIG] = {
5090                 .mixers = { alc882_base_mixer },
5091                 .init_verbs = { alc882_init_verbs },
5092                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5093                 .dac_nids = alc882_dac_nids,
5094                 .dig_out_nid = ALC882_DIGOUT_NID,
5095                 .dig_in_nid = ALC882_DIGIN_NID,
5096                 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
5097                 .channel_mode = alc882_ch_modes,
5098                 .need_dac_fix = 1,
5099                 .input_mux = &alc882_capture_source,
5100         },
5101         [ALC882_6ST_DIG] = {
5102                 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
5103                 .init_verbs = { alc882_init_verbs },
5104                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5105                 .dac_nids = alc882_dac_nids,
5106                 .dig_out_nid = ALC882_DIGOUT_NID,
5107                 .dig_in_nid = ALC882_DIGIN_NID,
5108                 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
5109                 .channel_mode = alc882_sixstack_modes,
5110                 .input_mux = &alc882_capture_source,
5111         },
5112         [ALC882_ARIMA] = {
5113                 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
5114                 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs },
5115                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5116                 .dac_nids = alc882_dac_nids,
5117                 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
5118                 .channel_mode = alc882_sixstack_modes,
5119                 .input_mux = &alc882_capture_source,
5120         },
5121         [ALC885_MACPRO] = {
5122                 .mixers = { alc882_macpro_mixer },
5123                 .init_verbs = { alc882_macpro_init_verbs },
5124                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5125                 .dac_nids = alc882_dac_nids,
5126                 .dig_out_nid = ALC882_DIGOUT_NID,
5127                 .dig_in_nid = ALC882_DIGIN_NID,
5128                 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
5129                 .channel_mode = alc882_ch_modes,
5130                 .input_mux = &alc882_capture_source,
5131         },
5132 };
5133
5134
5135 /*
5136  * BIOS auto configuration
5137  */
5138 static void alc882_auto_set_output_and_unmute(struct hda_codec *codec,
5139                                               hda_nid_t nid, int pin_type,
5140                                               int dac_idx)
5141 {
5142         /* set as output */
5143         struct alc_spec *spec = codec->spec;
5144         int idx;
5145
5146         if (spec->multiout.dac_nids[dac_idx] == 0x25)
5147                 idx = 4;
5148         else
5149                 idx = spec->multiout.dac_nids[dac_idx] - 2;
5150
5151         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
5152                             pin_type);
5153         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
5154                             AMP_OUT_UNMUTE);
5155         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
5156
5157 }
5158
5159 static void alc882_auto_init_multi_out(struct hda_codec *codec)
5160 {
5161         struct alc_spec *spec = codec->spec;
5162         int i;
5163
5164         alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
5165         for (i = 0; i <= HDA_SIDE; i++) {
5166                 hda_nid_t nid = spec->autocfg.line_out_pins[i];
5167                 if (nid)
5168                         alc882_auto_set_output_and_unmute(codec, nid, PIN_OUT,
5169                                                           i);
5170         }
5171 }
5172
5173 static void alc882_auto_init_hp_out(struct hda_codec *codec)
5174 {
5175         struct alc_spec *spec = codec->spec;
5176         hda_nid_t pin;
5177
5178         pin = spec->autocfg.hp_pins[0];
5179         if (pin) /* connect to front */
5180                 /* use dac 0 */
5181                 alc882_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
5182 }
5183
5184 #define alc882_is_input_pin(nid)        alc880_is_input_pin(nid)
5185 #define ALC882_PIN_CD_NID               ALC880_PIN_CD_NID
5186
5187 static void alc882_auto_init_analog_input(struct hda_codec *codec)
5188 {
5189         struct alc_spec *spec = codec->spec;
5190         int i;
5191
5192         for (i = 0; i < AUTO_PIN_LAST; i++) {
5193                 hda_nid_t nid = spec->autocfg.input_pins[i];
5194                 if (alc882_is_input_pin(nid)) {
5195                         snd_hda_codec_write(codec, nid, 0,
5196                                             AC_VERB_SET_PIN_WIDGET_CONTROL,
5197                                             i <= AUTO_PIN_FRONT_MIC ?
5198                                             PIN_VREF80 : PIN_IN);
5199                         if (nid != ALC882_PIN_CD_NID)
5200                                 snd_hda_codec_write(codec, nid, 0,
5201                                                     AC_VERB_SET_AMP_GAIN_MUTE,
5202                                                     AMP_OUT_MUTE);
5203                 }
5204         }
5205 }
5206
5207 /* almost identical with ALC880 parser... */
5208 static int alc882_parse_auto_config(struct hda_codec *codec)
5209 {
5210         struct alc_spec *spec = codec->spec;
5211         int err = alc880_parse_auto_config(codec);
5212
5213         if (err < 0)
5214                 return err;
5215         else if (err > 0)
5216                 /* hack - override the init verbs */
5217                 spec->init_verbs[0] = alc882_auto_init_verbs;
5218         return err;
5219 }
5220
5221 /* additional initialization for auto-configuration model */
5222 static void alc882_auto_init(struct hda_codec *codec)
5223 {
5224         alc882_auto_init_multi_out(codec);
5225         alc882_auto_init_hp_out(codec);
5226         alc882_auto_init_analog_input(codec);
5227 }
5228
5229 static int patch_alc882(struct hda_codec *codec)
5230 {
5231         struct alc_spec *spec;
5232         int err, board_config;
5233
5234         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5235         if (spec == NULL)
5236                 return -ENOMEM;
5237
5238         codec->spec = spec;
5239
5240         board_config = snd_hda_check_board_config(codec, ALC882_MODEL_LAST,
5241                                                   alc882_models,
5242                                                   alc882_cfg_tbl);
5243
5244         if (board_config < 0 || board_config >= ALC882_MODEL_LAST) {
5245                 /* Pick up systems that don't supply PCI SSID */
5246                 switch (codec->subsystem_id) {
5247                 case 0x106b0c00: /* Mac Pro */
5248                         board_config = ALC885_MACPRO;
5249                         break;
5250                 default:
5251                         printk(KERN_INFO "hda_codec: Unknown model for ALC882, "
5252                                          "trying auto-probe from BIOS...\n");
5253                         board_config = ALC882_AUTO;
5254                 }
5255         }
5256
5257         if (board_config == ALC882_AUTO) {
5258                 /* automatic parse from the BIOS config */
5259                 err = alc882_parse_auto_config(codec);
5260                 if (err < 0) {
5261                         alc_free(codec);
5262                         return err;
5263                 } else if (!err) {
5264                         printk(KERN_INFO
5265                                "hda_codec: Cannot set up configuration "
5266                                "from BIOS.  Using base mode...\n");
5267                         board_config = ALC882_3ST_DIG;
5268                 }
5269         }
5270
5271         if (board_config != ALC882_AUTO)
5272                 setup_preset(spec, &alc882_presets[board_config]);
5273
5274         if (board_config == ALC885_MACPRO) {
5275                 alc882_gpio_mute(codec, 0, 0);
5276                 alc882_gpio_mute(codec, 1, 0);
5277         }
5278
5279         spec->stream_name_analog = "ALC882 Analog";
5280         spec->stream_analog_playback = &alc882_pcm_analog_playback;
5281         spec->stream_analog_capture = &alc882_pcm_analog_capture;
5282
5283         spec->stream_name_digital = "ALC882 Digital";
5284         spec->stream_digital_playback = &alc882_pcm_digital_playback;
5285         spec->stream_digital_capture = &alc882_pcm_digital_capture;
5286
5287         if (!spec->adc_nids && spec->input_mux) {
5288                 /* check whether NID 0x07 is valid */
5289                 unsigned int wcap = get_wcaps(codec, 0x07);
5290                 /* get type */
5291                 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
5292                 if (wcap != AC_WID_AUD_IN) {
5293                         spec->adc_nids = alc882_adc_nids_alt;
5294                         spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids_alt);
5295                         spec->mixers[spec->num_mixers] =
5296                                 alc882_capture_alt_mixer;
5297                         spec->num_mixers++;
5298                 } else {
5299                         spec->adc_nids = alc882_adc_nids;
5300                         spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids);
5301                         spec->mixers[spec->num_mixers] = alc882_capture_mixer;
5302                         spec->num_mixers++;
5303                 }
5304         }
5305
5306         codec->patch_ops = alc_patch_ops;
5307         if (board_config == ALC882_AUTO)
5308                 spec->init_hook = alc882_auto_init;
5309
5310         return 0;
5311 }
5312
5313 /*
5314  * ALC883 support
5315  *
5316  * ALC883 is almost identical with ALC880 but has cleaner and more flexible
5317  * configuration.  Each pin widget can choose any input DACs and a mixer.
5318  * Each ADC is connected from a mixer of all inputs.  This makes possible
5319  * 6-channel independent captures.
5320  *
5321  * In addition, an independent DAC for the multi-playback (not used in this
5322  * driver yet).
5323  */
5324 #define ALC883_DIGOUT_NID       0x06
5325 #define ALC883_DIGIN_NID        0x0a
5326
5327 static hda_nid_t alc883_dac_nids[4] = {
5328         /* front, rear, clfe, rear_surr */
5329         0x02, 0x04, 0x03, 0x05
5330 };
5331
5332 static hda_nid_t alc883_adc_nids[2] = {
5333         /* ADC1-2 */
5334         0x08, 0x09,
5335 };
5336
5337 /* input MUX */
5338 /* FIXME: should be a matrix-type input source selection */
5339
5340 static struct hda_input_mux alc883_capture_source = {
5341         .num_items = 4,
5342         .items = {
5343                 { "Mic", 0x0 },
5344                 { "Front Mic", 0x1 },
5345                 { "Line", 0x2 },
5346                 { "CD", 0x4 },
5347         },
5348 };
5349
5350 static struct hda_input_mux alc883_lenovo_101e_capture_source = {
5351         .num_items = 2,
5352         .items = {
5353                 { "Mic", 0x1 },
5354                 { "Line", 0x2 },
5355         },
5356 };
5357
5358 #define alc883_mux_enum_info alc_mux_enum_info
5359 #define alc883_mux_enum_get alc_mux_enum_get
5360
5361 static int alc883_mux_enum_put(struct snd_kcontrol *kcontrol,
5362                                struct snd_ctl_elem_value *ucontrol)
5363 {
5364         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5365         struct alc_spec *spec = codec->spec;
5366         const struct hda_input_mux *imux = spec->input_mux;
5367         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
5368         static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
5369         hda_nid_t nid = capture_mixers[adc_idx];
5370         unsigned int *cur_val = &spec->cur_mux[adc_idx];
5371         unsigned int i, idx;
5372
5373         idx = ucontrol->value.enumerated.item[0];
5374         if (idx >= imux->num_items)
5375                 idx = imux->num_items - 1;
5376         if (*cur_val == idx && !codec->in_resume)
5377                 return 0;
5378         for (i = 0; i < imux->num_items; i++) {
5379                 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
5380                 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
5381                                     v | (imux->items[i].index << 8));
5382         }
5383         *cur_val = idx;
5384         return 1;
5385 }
5386
5387 /*
5388  * 2ch mode
5389  */
5390 static struct hda_channel_mode alc883_3ST_2ch_modes[1] = {
5391         { 2, NULL }
5392 };
5393
5394 /*
5395  * 2ch mode
5396  */
5397 static struct hda_verb alc883_3ST_ch2_init[] = {
5398         { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
5399         { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
5400         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
5401         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
5402         { } /* end */
5403 };
5404
5405 /*
5406  * 6ch mode
5407  */
5408 static struct hda_verb alc883_3ST_ch6_init[] = {
5409         { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5410         { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
5411         { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
5412         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5413         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
5414         { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
5415         { } /* end */
5416 };
5417
5418 static struct hda_channel_mode alc883_3ST_6ch_modes[2] = {
5419         { 2, alc883_3ST_ch2_init },
5420         { 6, alc883_3ST_ch6_init },
5421 };
5422
5423 /*
5424  * 6ch mode
5425  */
5426 static struct hda_verb alc883_sixstack_ch6_init[] = {
5427         { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
5428         { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5429         { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5430         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5431         { } /* end */
5432 };
5433
5434 /*
5435  * 8ch mode
5436  */
5437 static struct hda_verb alc883_sixstack_ch8_init[] = {
5438         { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5439         { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5440         { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5441         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5442         { } /* end */
5443 };
5444
5445 static struct hda_channel_mode alc883_sixstack_modes[2] = {
5446         { 6, alc883_sixstack_ch6_init },
5447         { 8, alc883_sixstack_ch8_init },
5448 };
5449
5450 static struct hda_verb alc883_medion_eapd_verbs[] = {
5451         /* eanable EAPD on medion laptop */
5452         {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
5453         {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
5454         { }
5455 };
5456
5457 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
5458  *                 Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
5459  */
5460
5461 static struct snd_kcontrol_new alc883_base_mixer[] = {
5462         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5463         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5464         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5465         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
5466         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5467         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5468         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
5469         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
5470         HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
5471         HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
5472         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5473         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5474         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5475         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5476         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5477         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5478         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5479         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5480         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5481         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5482         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5483         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5484         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5485         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5486         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5487         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5488         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5489         {
5490                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5491                 /* .name = "Capture Source", */
5492                 .name = "Input Source",
5493                 .count = 2,
5494                 .info = alc883_mux_enum_info,
5495                 .get = alc883_mux_enum_get,
5496                 .put = alc883_mux_enum_put,
5497         },
5498         { } /* end */
5499 };
5500
5501 static struct snd_kcontrol_new alc883_3ST_2ch_mixer[] = {
5502         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5503         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5504         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5505         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5506         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5507         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5508         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5509         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5510         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5511         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5512         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5513         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5514         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5515         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5516         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5517         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5518         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5519         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5520         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5521         {
5522                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5523                 /* .name = "Capture Source", */
5524                 .name = "Input Source",
5525                 .count = 2,
5526                 .info = alc883_mux_enum_info,
5527                 .get = alc883_mux_enum_get,
5528                 .put = alc883_mux_enum_put,
5529         },
5530         { } /* end */
5531 };
5532
5533 static struct snd_kcontrol_new alc883_3ST_6ch_mixer[] = {
5534         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5535         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5536         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5537         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
5538         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5539         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5540         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
5541         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
5542         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5543         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5544         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5545         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5546         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5547         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5548         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5549         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5550         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5551         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5552         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5553         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5554         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5555         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5556         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5557         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5558         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5559         {
5560                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5561                 /* .name = "Capture Source", */
5562                 .name = "Input Source",
5563                 .count = 2,
5564                 .info = alc883_mux_enum_info,
5565                 .get = alc883_mux_enum_get,
5566                 .put = alc883_mux_enum_put,
5567         },
5568         { } /* end */
5569 };
5570
5571 static struct snd_kcontrol_new alc883_fivestack_mixer[] = {
5572         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5573         HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5574         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5575         HDA_CODEC_MUTE("Surround Playback Switch", 0x15, 0x0, HDA_OUTPUT),
5576         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5577         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5578         HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x16, 1, 0x0, HDA_OUTPUT),
5579         HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
5580         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5581         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5582         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5583         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5584         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5585         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5586         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5587         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5588         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5589         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5590         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5591         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5592         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5593         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5594         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5595
5596         {
5597                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5598                 /* .name = "Capture Source", */
5599                 .name = "Input Source",
5600                 .count = 1,
5601                 .info = alc883_mux_enum_info,
5602                 .get = alc883_mux_enum_get,
5603                 .put = alc883_mux_enum_put,
5604         },
5605         { } /* end */
5606 };
5607
5608 static struct snd_kcontrol_new alc883_tagra_mixer[] = {
5609         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5610         HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5611         HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5612         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5613         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
5614         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5615         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5616         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
5617         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
5618         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5619         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5620         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5621         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5622         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5623         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5624         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5625         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5626         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5627         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5628         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5629         {
5630                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5631                 /* .name = "Capture Source", */
5632                 .name = "Input Source",
5633                 .count = 2,
5634                 .info = alc883_mux_enum_info,
5635                 .get = alc883_mux_enum_get,
5636                 .put = alc883_mux_enum_put,
5637         },
5638         { } /* end */
5639 };
5640
5641 static struct snd_kcontrol_new alc883_tagra_2ch_mixer[] = {
5642         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5643         HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5644         HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5645         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5646         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5647         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5648         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5649         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5650         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5651         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5652         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5653         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5654         {
5655                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5656                 /* .name = "Capture Source", */
5657                 .name = "Input Source",
5658                 .count = 2,
5659                 .info = alc883_mux_enum_info,
5660                 .get = alc883_mux_enum_get,
5661                 .put = alc883_mux_enum_put,
5662         },
5663         { } /* end */
5664 };
5665
5666 static struct snd_kcontrol_new alc883_lenovo_101e_2ch_mixer[] = {
5667         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5668         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5669         HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5670         HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
5671         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5672         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5673         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5674         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5675         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5676         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5677         {
5678                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5679                 /* .name = "Capture Source", */
5680                 .name = "Input Source",
5681                 .count = 1,
5682                 .info = alc883_mux_enum_info,
5683                 .get = alc883_mux_enum_get,
5684                 .put = alc883_mux_enum_put,
5685         },
5686         { } /* end */
5687 };
5688
5689 static struct snd_kcontrol_new alc883_chmode_mixer[] = {
5690         {
5691                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5692                 .name = "Channel Mode",
5693                 .info = alc_ch_mode_info,
5694                 .get = alc_ch_mode_get,
5695                 .put = alc_ch_mode_put,
5696         },
5697         { } /* end */
5698 };
5699
5700 static struct hda_verb alc883_init_verbs[] = {
5701         /* ADC1: mute amp left and right */
5702         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5703         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5704         /* ADC2: mute amp left and right */
5705         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5706         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5707         /* Front mixer: unmute input/output amp left and right (volume = 0) */
5708         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5709         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5710         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5711         /* Rear mixer */
5712         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5713         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5714         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5715         /* CLFE mixer */
5716         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5717         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5718         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5719         /* Side mixer */
5720         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5721         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5722         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5723
5724         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5725         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5726         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5727         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
5728         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
5729
5730         /* Front Pin: output 0 (0x0c) */
5731         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5732         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5733         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
5734         /* Rear Pin: output 1 (0x0d) */
5735         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5736         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5737         {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
5738         /* CLFE Pin: output 2 (0x0e) */
5739         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5740         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5741         {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
5742         /* Side Pin: output 3 (0x0f) */
5743         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5744         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5745         {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
5746         /* Mic (rear) pin: input vref at 80% */
5747         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5748         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5749         /* Front Mic pin: input vref at 80% */
5750         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5751         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5752         /* Line In pin: input */
5753         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5754         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5755         /* Line-2 In: Headphone output (output 0 - 0x0c) */
5756         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5757         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5758         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
5759         /* CD pin widget for input */
5760         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5761
5762         /* FIXME: use matrix-type input source selection */
5763         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5764         /* Input mixer2 */
5765         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5766         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5767         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5768         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
5769         /* Input mixer3 */
5770         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5771         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5772         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5773         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
5774         { }
5775 };
5776
5777 static struct hda_verb alc883_tagra_verbs[] = {
5778         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5779         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5780
5781         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5782         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5783         
5784         {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
5785         {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
5786         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5787
5788         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
5789         {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
5790         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
5791         {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
5792
5793         { } /* end */
5794 };
5795
5796 static struct hda_verb alc883_lenovo_101e_verbs[] = {
5797         {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
5798         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_FRONT_EVENT|AC_USRSP_EN},
5799         {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT|AC_USRSP_EN},
5800         { } /* end */
5801 };
5802
5803 /* toggle speaker-output according to the hp-jack state */
5804 static void alc883_tagra_automute(struct hda_codec *codec)
5805 {
5806         unsigned int present;
5807         unsigned char bits;
5808
5809         present = snd_hda_codec_read(codec, 0x14, 0,
5810                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5811         bits = present ? 0x80 : 0;
5812         snd_hda_codec_amp_update(codec, 0x1b, 0, HDA_OUTPUT, 0,
5813                                  0x80, bits);
5814         snd_hda_codec_amp_update(codec, 0x1b, 1, HDA_OUTPUT, 0,
5815                                  0x80, bits);
5816         snd_hda_codec_write(codec, 1, 0, AC_VERB_SET_GPIO_DATA,
5817                             present ? 1 : 3);
5818 }
5819
5820 static void alc883_tagra_unsol_event(struct hda_codec *codec, unsigned int res)
5821 {
5822         if ((res >> 26) == ALC880_HP_EVENT)
5823                 alc883_tagra_automute(codec);
5824 }
5825
5826 static void alc883_lenovo_101e_ispeaker_automute(struct hda_codec *codec)
5827 {
5828         unsigned int present;
5829         unsigned char bits;
5830
5831         present = snd_hda_codec_read(codec, 0x14, 0,
5832                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5833         bits = present ? 0x80 : 0;
5834         snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
5835                                  0x80, bits);
5836         snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
5837                                  0x80, bits);
5838 }
5839
5840 static void alc883_lenovo_101e_all_automute(struct hda_codec *codec)
5841 {
5842         unsigned int present;
5843         unsigned char bits;
5844
5845         present = snd_hda_codec_read(codec, 0x1b, 0,
5846                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5847         bits = present ? 0x80 : 0;
5848         snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
5849                                  0x80, bits);
5850         snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
5851                                  0x80, bits);
5852         snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
5853                                  0x80, bits);
5854         snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
5855                                  0x80, bits);
5856 }
5857
5858 static void alc883_lenovo_101e_unsol_event(struct hda_codec *codec,
5859                                            unsigned int res)
5860 {
5861         if ((res >> 26) == ALC880_HP_EVENT)
5862                 alc883_lenovo_101e_all_automute(codec);
5863         if ((res >> 26) == ALC880_FRONT_EVENT)
5864                 alc883_lenovo_101e_ispeaker_automute(codec);
5865 }
5866
5867 /*
5868  * generic initialization of ADC, input mixers and output mixers
5869  */
5870 static struct hda_verb alc883_auto_init_verbs[] = {
5871         /*
5872          * Unmute ADC0-2 and set the default input to mic-in
5873          */
5874         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5875         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5876         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5877         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5878
5879         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
5880          * mixer widget
5881          * Note: PASD motherboards uses the Line In 2 as the input for
5882          * front panel mic (mic 2)
5883          */
5884         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
5885         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5886         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5887         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5888         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
5889         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
5890
5891         /*
5892          * Set up output mixers (0x0c - 0x0f)
5893          */
5894         /* set vol=0 to output mixers */
5895         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5896         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5897         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5898         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5899         /* set up input amps for analog loopback */
5900         /* Amp Indices: DAC = 0, mixer = 1 */
5901         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5902         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5903         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5904         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5905         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5906         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5907         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5908         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5909         {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5910         {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5911
5912         /* FIXME: use matrix-type input source selection */
5913         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5914         /* Input mixer1 */
5915         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5916         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5917         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5918         /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, */
5919         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
5920         /* Input mixer2 */
5921         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5922         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5923         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5924         /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, */
5925         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
5926
5927         { }
5928 };
5929
5930 /* capture mixer elements */
5931 static struct snd_kcontrol_new alc883_capture_mixer[] = {
5932         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5933         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5934         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5935         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5936         {
5937                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5938                 /* The multiple "Capture Source" controls confuse alsamixer
5939                  * So call somewhat different..
5940                  * FIXME: the controls appear in the "playback" view!
5941                  */
5942                 /* .name = "Capture Source", */
5943                 .name = "Input Source",
5944                 .count = 2,
5945                 .info = alc882_mux_enum_info,
5946                 .get = alc882_mux_enum_get,
5947                 .put = alc882_mux_enum_put,
5948         },
5949         { } /* end */
5950 };
5951
5952 /* pcm configuration: identiacal with ALC880 */
5953 #define alc883_pcm_analog_playback      alc880_pcm_analog_playback
5954 #define alc883_pcm_analog_capture       alc880_pcm_analog_capture
5955 #define alc883_pcm_digital_playback     alc880_pcm_digital_playback
5956 #define alc883_pcm_digital_capture      alc880_pcm_digital_capture
5957
5958 /*
5959  * configuration and preset
5960  */
5961 static const char *alc883_models[ALC883_MODEL_LAST] = {
5962         [ALC883_3ST_2ch_DIG]    = "3stack-dig",
5963         [ALC883_3ST_6ch_DIG]    = "3stack-6ch-dig",
5964         [ALC883_3ST_6ch]        = "3stack-6ch",
5965         [ALC883_6ST_DIG]        = "6stack-dig",
5966         [ALC883_TARGA_DIG]      = "targa-dig",
5967         [ALC883_TARGA_2ch_DIG]  = "targa-2ch-dig",
5968         [ALC888_DEMO_BOARD]     = "6stack-dig-demo",
5969         [ALC883_ACER]           = "acer",
5970         [ALC883_MEDION]         = "medion",
5971         [ALC883_LAPTOP_EAPD]    = "laptop-eapd",
5972         [ALC883_LENOVO_101E_2ch] = "lenovo-101e",
5973         [ALC883_AUTO]           = "auto",
5974 };
5975
5976 static struct snd_pci_quirk alc883_cfg_tbl[] = {
5977         SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC883_3ST_6ch_DIG),
5978         SND_PCI_QUIRK(0x108e, 0x534d, NULL, ALC883_3ST_6ch),
5979         SND_PCI_QUIRK(0x1558, 0, "Clevo laptop", ALC883_LAPTOP_EAPD),
5980         SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC883_6ST_DIG),
5981         SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC883_6ST_DIG),
5982         SND_PCI_QUIRK(0x1462, 0x7187, "MSI", ALC883_6ST_DIG),
5983         SND_PCI_QUIRK(0x1462, 0x7280, "MSI", ALC883_6ST_DIG),
5984         SND_PCI_QUIRK(0x1462, 0x0579, "MSI", ALC883_TARGA_2ch_DIG),
5985         SND_PCI_QUIRK(0x1462, 0x3ef9, "MSI", ALC883_TARGA_DIG),
5986         SND_PCI_QUIRK(0x1462, 0x3b7f, "MSI", ALC883_TARGA_2ch_DIG),
5987         SND_PCI_QUIRK(0x1462, 0x3fcc, "MSI", ALC883_TARGA_DIG),
5988         SND_PCI_QUIRK(0x1462, 0x3fc1, "MSI", ALC883_TARGA_DIG),
5989         SND_PCI_QUIRK(0x1462, 0x3fc3, "MSI", ALC883_TARGA_DIG),
5990         SND_PCI_QUIRK(0x1462, 0x4314, "MSI", ALC883_TARGA_DIG),
5991         SND_PCI_QUIRK(0x1462, 0x4319, "MSI", ALC883_TARGA_DIG),
5992         SND_PCI_QUIRK(0x1462, 0x4324, "MSI", ALC883_TARGA_DIG),
5993         SND_PCI_QUIRK(0x1462, 0xa422, "MSI", ALC883_TARGA_2ch_DIG),
5994         SND_PCI_QUIRK(0x1025, 0, "Acer laptop", ALC883_ACER),
5995         SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_MEDION),
5996         SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC883_LAPTOP_EAPD),
5997         SND_PCI_QUIRK(0x8086, 0xd601, "D102GGC", ALC883_3ST_6ch),
5998         SND_PCI_QUIRK(0x17aa, 0x101e, "lenovo 101e", ALC883_LENOVO_101E_2ch),
5999         {}
6000 };
6001
6002 static struct alc_config_preset alc883_presets[] = {
6003         [ALC883_3ST_2ch_DIG] = {
6004                 .mixers = { alc883_3ST_2ch_mixer },
6005                 .init_verbs = { alc883_init_verbs },
6006                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6007                 .dac_nids = alc883_dac_nids,
6008                 .dig_out_nid = ALC883_DIGOUT_NID,
6009                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6010                 .adc_nids = alc883_adc_nids,
6011                 .dig_in_nid = ALC883_DIGIN_NID,
6012                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6013                 .channel_mode = alc883_3ST_2ch_modes,
6014                 .input_mux = &alc883_capture_source,
6015         },
6016         [ALC883_3ST_6ch_DIG] = {
6017                 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
6018                 .init_verbs = { alc883_init_verbs },
6019                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6020                 .dac_nids = alc883_dac_nids,
6021                 .dig_out_nid = ALC883_DIGOUT_NID,
6022                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6023                 .adc_nids = alc883_adc_nids,
6024                 .dig_in_nid = ALC883_DIGIN_NID,
6025                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
6026                 .channel_mode = alc883_3ST_6ch_modes,
6027                 .need_dac_fix = 1,
6028                 .input_mux = &alc883_capture_source,
6029         },
6030         [ALC883_3ST_6ch] = {
6031                 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
6032                 .init_verbs = { alc883_init_verbs },
6033                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6034                 .dac_nids = alc883_dac_nids,
6035                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6036                 .adc_nids = alc883_adc_nids,
6037                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
6038                 .channel_mode = alc883_3ST_6ch_modes,
6039                 .need_dac_fix = 1,
6040                 .input_mux = &alc883_capture_source,
6041         },
6042         [ALC883_6ST_DIG] = {
6043                 .mixers = { alc883_base_mixer, alc883_chmode_mixer },
6044                 .init_verbs = { alc883_init_verbs },
6045                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6046                 .dac_nids = alc883_dac_nids,
6047                 .dig_out_nid = ALC883_DIGOUT_NID,
6048                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6049                 .adc_nids = alc883_adc_nids,
6050                 .dig_in_nid = ALC883_DIGIN_NID,
6051                 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
6052                 .channel_mode = alc883_sixstack_modes,
6053                 .input_mux = &alc883_capture_source,
6054         },
6055         [ALC883_TARGA_DIG] = {
6056                 .mixers = { alc883_tagra_mixer, alc883_chmode_mixer },
6057                 .init_verbs = { alc883_init_verbs, alc883_tagra_verbs},
6058                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6059                 .dac_nids = alc883_dac_nids,
6060                 .dig_out_nid = ALC883_DIGOUT_NID,
6061                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6062                 .adc_nids = alc883_adc_nids,
6063                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
6064                 .channel_mode = alc883_3ST_6ch_modes,
6065                 .need_dac_fix = 1,
6066                 .input_mux = &alc883_capture_source,
6067                 .unsol_event = alc883_tagra_unsol_event,
6068                 .init_hook = alc883_tagra_automute,
6069         },
6070         [ALC883_TARGA_2ch_DIG] = {
6071                 .mixers = { alc883_tagra_2ch_mixer},
6072                 .init_verbs = { alc883_init_verbs, alc883_tagra_verbs},
6073                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6074                 .dac_nids = alc883_dac_nids,
6075                 .dig_out_nid = ALC883_DIGOUT_NID,
6076                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6077                 .adc_nids = alc883_adc_nids,
6078                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6079                 .channel_mode = alc883_3ST_2ch_modes,
6080                 .input_mux = &alc883_capture_source,
6081                 .unsol_event = alc883_tagra_unsol_event,
6082                 .init_hook = alc883_tagra_automute,
6083         },
6084         [ALC888_DEMO_BOARD] = {
6085                 .mixers = { alc883_base_mixer, alc883_chmode_mixer },
6086                 .init_verbs = { alc883_init_verbs },
6087                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6088                 .dac_nids = alc883_dac_nids,
6089                 .dig_out_nid = ALC883_DIGOUT_NID,
6090                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6091                 .adc_nids = alc883_adc_nids,
6092                 .dig_in_nid = ALC883_DIGIN_NID,
6093                 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
6094                 .channel_mode = alc883_sixstack_modes,
6095                 .input_mux = &alc883_capture_source,
6096         },
6097         [ALC883_ACER] = {
6098                 .mixers = { alc883_base_mixer,
6099                             alc883_chmode_mixer },
6100                 /* On TravelMate laptops, GPIO 0 enables the internal speaker
6101                  * and the headphone jack.  Turn this on and rely on the
6102                  * standard mute methods whenever the user wants to turn
6103                  * these outputs off.
6104                  */
6105                 .init_verbs = { alc883_init_verbs, alc880_gpio1_init_verbs },
6106                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6107                 .dac_nids = alc883_dac_nids,
6108                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6109                 .adc_nids = alc883_adc_nids,
6110                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6111                 .channel_mode = alc883_3ST_2ch_modes,
6112                 .input_mux = &alc883_capture_source,
6113         },
6114         [ALC883_MEDION] = {
6115                 .mixers = { alc883_fivestack_mixer,
6116                             alc883_chmode_mixer },
6117                 .init_verbs = { alc883_init_verbs,
6118                                 alc883_medion_eapd_verbs },
6119                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6120                 .dac_nids = alc883_dac_nids,
6121                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6122                 .adc_nids = alc883_adc_nids,
6123                 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
6124                 .channel_mode = alc883_sixstack_modes,
6125                 .input_mux = &alc883_capture_source,
6126         },
6127         [ALC883_LAPTOP_EAPD] = {
6128                 .mixers = { alc883_base_mixer,
6129                             alc883_chmode_mixer },
6130                 .init_verbs = { alc883_init_verbs, alc882_eapd_verbs },
6131                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6132                 .dac_nids = alc883_dac_nids,
6133                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6134                 .adc_nids = alc883_adc_nids,
6135                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6136                 .channel_mode = alc883_3ST_2ch_modes,
6137                 .input_mux = &alc883_capture_source,
6138         },
6139         [ALC883_LENOVO_101E_2ch] = {
6140                 .mixers = { alc883_lenovo_101e_2ch_mixer},
6141                 .init_verbs = { alc883_init_verbs, alc883_lenovo_101e_verbs},
6142                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6143                 .dac_nids = alc883_dac_nids,
6144                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6145                 .adc_nids = alc883_adc_nids,
6146                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6147                 .channel_mode = alc883_3ST_2ch_modes,
6148                 .input_mux = &alc883_lenovo_101e_capture_source,
6149                 .unsol_event = alc883_lenovo_101e_unsol_event,
6150                 .init_hook = alc883_lenovo_101e_all_automute,
6151         },
6152 };
6153
6154
6155 /*
6156  * BIOS auto configuration
6157  */
6158 static void alc883_auto_set_output_and_unmute(struct hda_codec *codec,
6159                                               hda_nid_t nid, int pin_type,
6160                                               int dac_idx)
6161 {
6162         /* set as output */
6163         struct alc_spec *spec = codec->spec;
6164         int idx;
6165
6166         if (spec->multiout.dac_nids[dac_idx] == 0x25)
6167                 idx = 4;
6168         else
6169                 idx = spec->multiout.dac_nids[dac_idx] - 2;
6170
6171         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
6172                             pin_type);
6173         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
6174                             AMP_OUT_UNMUTE);
6175         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
6176
6177 }
6178
6179 static void alc883_auto_init_multi_out(struct hda_codec *codec)
6180 {
6181         struct alc_spec *spec = codec->spec;
6182         int i;
6183
6184         alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
6185         for (i = 0; i <= HDA_SIDE; i++) {
6186                 hda_nid_t nid = spec->autocfg.line_out_pins[i];
6187                 if (nid)
6188                         alc883_auto_set_output_and_unmute(codec, nid, PIN_OUT,
6189                                                           i);
6190         }
6191 }
6192
6193 static void alc883_auto_init_hp_out(struct hda_codec *codec)
6194 {
6195         struct alc_spec *spec = codec->spec;
6196         hda_nid_t pin;
6197
6198         pin = spec->autocfg.hp_pins[0];
6199         if (pin) /* connect to front */
6200                 /* use dac 0 */
6201                 alc883_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
6202 }
6203
6204 #define alc883_is_input_pin(nid)        alc880_is_input_pin(nid)
6205 #define ALC883_PIN_CD_NID               ALC880_PIN_CD_NID
6206
6207 static void alc883_auto_init_analog_input(struct hda_codec *codec)
6208 {
6209         struct alc_spec *spec = codec->spec;
6210         int i;
6211
6212         for (i = 0; i < AUTO_PIN_LAST; i++) {
6213                 hda_nid_t nid = spec->autocfg.input_pins[i];
6214                 if (alc883_is_input_pin(nid)) {
6215                         snd_hda_codec_write(codec, nid, 0,
6216                                             AC_VERB_SET_PIN_WIDGET_CONTROL,
6217                                             (i <= AUTO_PIN_FRONT_MIC ?
6218                                              PIN_VREF80 : PIN_IN));
6219                         if (nid != ALC883_PIN_CD_NID)
6220                                 snd_hda_codec_write(codec, nid, 0,
6221                                                     AC_VERB_SET_AMP_GAIN_MUTE,
6222                                                     AMP_OUT_MUTE);
6223                 }
6224         }
6225 }
6226
6227 /* almost identical with ALC880 parser... */
6228 static int alc883_parse_auto_config(struct hda_codec *codec)
6229 {
6230         struct alc_spec *spec = codec->spec;
6231         int err = alc880_parse_auto_config(codec);
6232
6233         if (err < 0)
6234                 return err;
6235         else if (err > 0)
6236                 /* hack - override the init verbs */
6237                 spec->init_verbs[0] = alc883_auto_init_verbs;
6238         spec->mixers[spec->num_mixers] = alc883_capture_mixer;
6239         spec->num_mixers++;
6240         return err;
6241 }
6242
6243 /* additional initialization for auto-configuration model */
6244 static void alc883_auto_init(struct hda_codec *codec)
6245 {
6246         alc883_auto_init_multi_out(codec);
6247         alc883_auto_init_hp_out(codec);
6248         alc883_auto_init_analog_input(codec);
6249 }
6250
6251 static int patch_alc883(struct hda_codec *codec)
6252 {
6253         struct alc_spec *spec;
6254         int err, board_config;
6255
6256         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6257         if (spec == NULL)
6258                 return -ENOMEM;
6259
6260         codec->spec = spec;
6261
6262         board_config = snd_hda_check_board_config(codec, ALC883_MODEL_LAST,
6263                                                   alc883_models,
6264                                                   alc883_cfg_tbl);
6265         if (board_config < 0) {
6266                 printk(KERN_INFO "hda_codec: Unknown model for ALC883, "
6267                        "trying auto-probe from BIOS...\n");
6268                 board_config = ALC883_AUTO;
6269         }
6270
6271         if (board_config == ALC883_AUTO) {
6272                 /* automatic parse from the BIOS config */
6273                 err = alc883_parse_auto_config(codec);
6274                 if (err < 0) {
6275                         alc_free(codec);
6276                         return err;
6277                 } else if (!err) {
6278                         printk(KERN_INFO
6279                                "hda_codec: Cannot set up configuration "
6280                                "from BIOS.  Using base mode...\n");
6281                         board_config = ALC883_3ST_2ch_DIG;
6282                 }
6283         }
6284
6285         if (board_config != ALC883_AUTO)
6286                 setup_preset(spec, &alc883_presets[board_config]);
6287
6288         spec->stream_name_analog = "ALC883 Analog";
6289         spec->stream_analog_playback = &alc883_pcm_analog_playback;
6290         spec->stream_analog_capture = &alc883_pcm_analog_capture;
6291
6292         spec->stream_name_digital = "ALC883 Digital";
6293         spec->stream_digital_playback = &alc883_pcm_digital_playback;
6294         spec->stream_digital_capture = &alc883_pcm_digital_capture;
6295
6296         if (!spec->adc_nids && spec->input_mux) {
6297                 spec->adc_nids = alc883_adc_nids;
6298                 spec->num_adc_nids = ARRAY_SIZE(alc883_adc_nids);
6299         }
6300
6301         codec->patch_ops = alc_patch_ops;
6302         if (board_config == ALC883_AUTO)
6303                 spec->init_hook = alc883_auto_init;
6304
6305         return 0;
6306 }
6307
6308 /*
6309  * ALC262 support
6310  */
6311
6312 #define ALC262_DIGOUT_NID       ALC880_DIGOUT_NID
6313 #define ALC262_DIGIN_NID        ALC880_DIGIN_NID
6314
6315 #define alc262_dac_nids         alc260_dac_nids
6316 #define alc262_adc_nids         alc882_adc_nids
6317 #define alc262_adc_nids_alt     alc882_adc_nids_alt
6318
6319 #define alc262_modes            alc260_modes
6320 #define alc262_capture_source   alc882_capture_source
6321
6322 static struct snd_kcontrol_new alc262_base_mixer[] = {
6323         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6324         HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6325         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6326         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6327         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6328         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6329         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6330         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6331         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6332         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
6333         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
6334         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6335         /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
6336            HDA_CODEC_MUTE("PC Beelp Playback Switch", 0x0b, 0x05, HDA_INPUT), */
6337         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),
6338         HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
6339         HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6340         HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
6341         { } /* end */
6342 };
6343
6344 static struct snd_kcontrol_new alc262_hippo1_mixer[] = {
6345         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6346         HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6347         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6348         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6349         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6350         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6351         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6352         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6353         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6354         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
6355         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
6356         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6357         /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
6358            HDA_CODEC_MUTE("PC Beelp Playback Switch", 0x0b, 0x05, HDA_INPUT), */
6359         /*HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),*/
6360         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6361         { } /* end */
6362 };
6363
6364 static struct snd_kcontrol_new alc262_HP_BPC_mixer[] = {
6365         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6366         HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT),
6367         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6368         HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6369         HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
6370
6371         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6372         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6373         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6374         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
6375         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
6376         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6377         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6378         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6379         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6380         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6381         HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
6382         HDA_CODEC_MUTE("PC Beep Playback Switch", 0x0b, 0x05, HDA_INPUT),
6383         HDA_CODEC_VOLUME("AUX IN Playback Volume", 0x0b, 0x06, HDA_INPUT),
6384         HDA_CODEC_MUTE("AUX IN Playback Switch", 0x0b, 0x06, HDA_INPUT),
6385         { } /* end */
6386 };
6387
6388 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_mixer[] = {
6389         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6390         HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6391         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
6392         HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
6393         HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6394         HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
6395         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x02, HDA_INPUT),
6396         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x02, HDA_INPUT),
6397         HDA_CODEC_VOLUME("Front Mic Boost", 0x1a, 0, HDA_INPUT),
6398         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
6399         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
6400         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6401         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6402         HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
6403         HDA_CODEC_MUTE("PC Beep Playback Switch", 0x0b, 0x05, HDA_INPUT),
6404         { } /* end */
6405 };
6406
6407 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_option_mixer[] = {
6408         HDA_CODEC_VOLUME("Rear Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6409         HDA_CODEC_MUTE("Rear Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6410         HDA_CODEC_VOLUME("Rear Mic Boost", 0x18, 0, HDA_INPUT),
6411         { } /* end */
6412 };
6413
6414 #define alc262_capture_mixer            alc882_capture_mixer
6415 #define alc262_capture_alt_mixer        alc882_capture_alt_mixer
6416
6417 /*
6418  * generic initialization of ADC, input mixers and output mixers
6419  */
6420 static struct hda_verb alc262_init_verbs[] = {
6421         /*
6422          * Unmute ADC0-2 and set the default input to mic-in
6423          */
6424         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
6425         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6426         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6427         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6428         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6429         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6430
6431         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
6432          * mixer widget
6433          * Note: PASD motherboards uses the Line In 2 as the input for
6434          * front panel mic (mic 2)
6435          */
6436         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
6437         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6438         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6439         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6440         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
6441         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6442
6443         /*
6444          * Set up output mixers (0x0c - 0x0e)
6445          */
6446         /* set vol=0 to output mixers */
6447         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6448         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6449         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6450         /* set up input amps for analog loopback */
6451         /* Amp Indices: DAC = 0, mixer = 1 */
6452         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6453         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6454         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6455         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6456         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6457         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6458
6459         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
6460         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
6461         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
6462         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
6463         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
6464         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
6465
6466         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6467         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6468         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6469         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6470         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6471         
6472         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
6473         {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
6474         
6475         /* FIXME: use matrix-type input source selection */
6476         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6477         /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
6478         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6479         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6480         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6481         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6482         /* Input mixer2 */
6483         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6484         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6485         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6486         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6487         /* Input mixer3 */
6488         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6489         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6490         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6491         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6492
6493         { }
6494 };
6495
6496 static struct hda_verb alc262_hippo_unsol_verbs[] = {
6497         {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
6498         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6499         {}
6500 };
6501
6502 static struct hda_verb alc262_hippo1_unsol_verbs[] = {
6503         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
6504         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
6505         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6506
6507         {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
6508         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6509         {}
6510 };
6511
6512 /* mute/unmute internal speaker according to the hp jack and mute state */
6513 static void alc262_hippo_automute(struct hda_codec *codec, int force)
6514 {
6515         struct alc_spec *spec = codec->spec;
6516         unsigned int mute;
6517
6518         if (force || !spec->sense_updated) {
6519                 unsigned int present;
6520                 /* need to execute and sync at first */
6521                 snd_hda_codec_read(codec, 0x15, 0, AC_VERB_SET_PIN_SENSE, 0);
6522                 present = snd_hda_codec_read(codec, 0x15, 0,
6523                                          AC_VERB_GET_PIN_SENSE, 0);
6524                 spec->jack_present = (present & 0x80000000) != 0;
6525                 spec->sense_updated = 1;
6526         }
6527         if (spec->jack_present) {
6528                 /* mute internal speaker */
6529                 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
6530                                          0x80, 0x80);
6531                 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
6532                                          0x80, 0x80);
6533         } else {
6534                 /* unmute internal speaker if necessary */
6535                 mute = snd_hda_codec_amp_read(codec, 0x15, 0, HDA_OUTPUT, 0);
6536                 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
6537                                          0x80, mute & 0x80);
6538                 mute = snd_hda_codec_amp_read(codec, 0x15, 1, HDA_OUTPUT, 0);
6539                 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
6540                                          0x80, mute & 0x80);
6541         }
6542 }
6543
6544 /* unsolicited event for HP jack sensing */
6545 static void alc262_hippo_unsol_event(struct hda_codec *codec,
6546                                        unsigned int res)
6547 {
6548         if ((res >> 26) != ALC880_HP_EVENT)
6549                 return;
6550         alc262_hippo_automute(codec, 1);
6551 }
6552
6553 static void alc262_hippo1_automute(struct hda_codec *codec, int force)
6554 {
6555         struct alc_spec *spec = codec->spec;
6556         unsigned int mute;
6557
6558         if (force || !spec->sense_updated) {
6559                 unsigned int present;
6560                 /* need to execute and sync at first */
6561                 snd_hda_codec_read(codec, 0x1b, 0, AC_VERB_SET_PIN_SENSE, 0);
6562                 present = snd_hda_codec_read(codec, 0x1b, 0,
6563                                          AC_VERB_GET_PIN_SENSE, 0);
6564                 spec->jack_present = (present & 0x80000000) != 0;
6565                 spec->sense_updated = 1;
6566         }
6567         if (spec->jack_present) {
6568                 /* mute internal speaker */
6569                 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
6570                                          0x80, 0x80);
6571                 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
6572                                          0x80, 0x80);
6573         } else {
6574                 /* unmute internal speaker if necessary */
6575                 mute = snd_hda_codec_amp_read(codec, 0x1b, 0, HDA_OUTPUT, 0);
6576                 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
6577                                          0x80, mute & 0x80);
6578                 mute = snd_hda_codec_amp_read(codec, 0x1b, 1, HDA_OUTPUT, 0);
6579                 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
6580                                          0x80, mute & 0x80);
6581         }
6582 }
6583
6584 /* unsolicited event for HP jack sensing */
6585 static void alc262_hippo1_unsol_event(struct hda_codec *codec,
6586                                        unsigned int res)
6587 {
6588         if ((res >> 26) != ALC880_HP_EVENT)
6589                 return;
6590         alc262_hippo1_automute(codec, 1);
6591 }
6592
6593 /*
6594  * fujitsu model
6595  *  0x14 = headphone/spdif-out, 0x15 = internal speaker
6596  */
6597
6598 #define ALC_HP_EVENT    0x37
6599
6600 static struct hda_verb alc262_fujitsu_unsol_verbs[] = {
6601         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC_HP_EVENT},
6602         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6603         {}
6604 };
6605
6606 static struct hda_input_mux alc262_fujitsu_capture_source = {
6607         .num_items = 2,
6608         .items = {
6609                 { "Mic", 0x0 },
6610                 { "CD", 0x4 },
6611         },
6612 };
6613
6614 static struct hda_input_mux alc262_HP_capture_source = {
6615         .num_items = 5,
6616         .items = {
6617                 { "Mic", 0x0 },
6618                 { "Front Mic", 0x3 },
6619                 { "Line", 0x2 },
6620                 { "CD", 0x4 },
6621                 { "AUX IN", 0x6 },
6622         },
6623 };
6624
6625 /* mute/unmute internal speaker according to the hp jack and mute state */
6626 static void alc262_fujitsu_automute(struct hda_codec *codec, int force)
6627 {
6628         struct alc_spec *spec = codec->spec;
6629         unsigned int mute;
6630
6631         if (force || !spec->sense_updated) {
6632                 unsigned int present;
6633                 /* need to execute and sync at first */
6634                 snd_hda_codec_read(codec, 0x14, 0, AC_VERB_SET_PIN_SENSE, 0);
6635                 present = snd_hda_codec_read(codec, 0x14, 0,
6636                                          AC_VERB_GET_PIN_SENSE, 0);
6637                 spec->jack_present = (present & 0x80000000) != 0;
6638                 spec->sense_updated = 1;
6639         }
6640         if (spec->jack_present) {
6641                 /* mute internal speaker */
6642                 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
6643                                          0x80, 0x80);
6644                 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
6645                                          0x80, 0x80);
6646         } else {
6647                 /* unmute internal speaker if necessary */
6648                 mute = snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0);
6649                 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
6650                                          0x80, mute & 0x80);
6651                 mute = snd_hda_codec_amp_read(codec, 0x14, 1, HDA_OUTPUT, 0);
6652                 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
6653                                          0x80, mute & 0x80);
6654         }
6655 }
6656
6657 /* unsolicited event for HP jack sensing */
6658 static void alc262_fujitsu_unsol_event(struct hda_codec *codec,
6659                                        unsigned int res)
6660 {
6661         if ((res >> 26) != ALC_HP_EVENT)
6662                 return;
6663         alc262_fujitsu_automute(codec, 1);
6664 }
6665
6666 /* bind volumes of both NID 0x0c and 0x0d */
6667 static int alc262_fujitsu_master_vol_put(struct snd_kcontrol *kcontrol,
6668                                          struct snd_ctl_elem_value *ucontrol)
6669 {
6670         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
6671         long *valp = ucontrol->value.integer.value;
6672         int change;
6673
6674         change = snd_hda_codec_amp_update(codec, 0x0c, 0, HDA_OUTPUT, 0,
6675                                           0x7f, valp[0] & 0x7f);
6676         change |= snd_hda_codec_amp_update(codec, 0x0c, 1, HDA_OUTPUT, 0,
6677                                            0x7f, valp[1] & 0x7f);
6678         snd_hda_codec_amp_update(codec, 0x0d, 0, HDA_OUTPUT, 0,
6679                                  0x7f, valp[0] & 0x7f);
6680         snd_hda_codec_amp_update(codec, 0x0d, 1, HDA_OUTPUT, 0,
6681                                  0x7f, valp[1] & 0x7f);
6682         return change;
6683 }
6684
6685 /* bind hp and internal speaker mute (with plug check) */
6686 static int alc262_fujitsu_master_sw_put(struct snd_kcontrol *kcontrol,
6687                                          struct snd_ctl_elem_value *ucontrol)
6688 {
6689         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
6690         long *valp = ucontrol->value.integer.value;
6691         int change;
6692
6693         change = snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
6694                                           0x80, valp[0] ? 0 : 0x80);
6695         change |= snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
6696                                            0x80, valp[1] ? 0 : 0x80);
6697         if (change || codec->in_resume)
6698                 alc262_fujitsu_automute(codec, codec->in_resume);
6699         return change;
6700 }
6701
6702 static struct snd_kcontrol_new alc262_fujitsu_mixer[] = {
6703         {
6704                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6705                 .name = "Master Playback Volume",
6706                 .info = snd_hda_mixer_amp_volume_info,
6707                 .get = snd_hda_mixer_amp_volume_get,
6708                 .put = alc262_fujitsu_master_vol_put,
6709                 .tlv = { .c = snd_hda_mixer_amp_tlv },
6710                 .private_value = HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT),
6711         },
6712         {
6713                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6714                 .name = "Master Playback Switch",
6715                 .info = snd_hda_mixer_amp_switch_info,
6716                 .get = snd_hda_mixer_amp_switch_get,
6717                 .put = alc262_fujitsu_master_sw_put,
6718                 .private_value = HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
6719         },
6720         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6721         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6722         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6723         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6724         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6725         { } /* end */
6726 };
6727
6728 /* additional init verbs for Benq laptops */
6729 static struct hda_verb alc262_EAPD_verbs[] = {
6730         {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
6731         {0x20, AC_VERB_SET_PROC_COEF,  0x3070},
6732         {}
6733 };
6734
6735 /* add playback controls from the parsed DAC table */
6736 static int alc262_auto_create_multi_out_ctls(struct alc_spec *spec,
6737                                              const struct auto_pin_cfg *cfg)
6738 {
6739         hda_nid_t nid;
6740         int err;
6741
6742         spec->multiout.num_dacs = 1;    /* only use one dac */
6743         spec->multiout.dac_nids = spec->private_dac_nids;
6744         spec->multiout.dac_nids[0] = 2;
6745
6746         nid = cfg->line_out_pins[0];
6747         if (nid) {
6748                 err = add_control(spec, ALC_CTL_WIDGET_VOL,
6749                                   "Front Playback Volume",
6750                                   HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT));
6751                 if (err < 0)
6752                         return err;
6753                 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
6754                                   "Front Playback Switch",
6755                                   HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
6756                 if (err < 0)
6757                         return err;
6758         }
6759
6760         nid = cfg->speaker_pins[0];
6761         if (nid) {
6762                 if (nid == 0x16) {
6763                         err = add_control(spec, ALC_CTL_WIDGET_VOL,
6764                                           "Speaker Playback Volume",
6765                                           HDA_COMPOSE_AMP_VAL(0x0e, 2, 0,
6766                                                               HDA_OUTPUT));
6767                         if (err < 0)
6768                                 return err;
6769                         err = add_control(spec, ALC_CTL_WIDGET_MUTE,
6770                                           "Speaker Playback Switch",
6771                                           HDA_COMPOSE_AMP_VAL(nid, 2, 0,
6772                                                               HDA_OUTPUT));
6773                         if (err < 0)
6774                                 return err;
6775                 } else {
6776                         err = add_control(spec, ALC_CTL_WIDGET_MUTE,
6777                                           "Speaker Playback Switch",
6778                                           HDA_COMPOSE_AMP_VAL(nid, 3, 0,
6779                                                               HDA_OUTPUT));
6780                         if (err < 0)
6781                                 return err;
6782                 }
6783         }
6784         nid = cfg->hp_pins[0];
6785         if (nid) {
6786                 /* spec->multiout.hp_nid = 2; */
6787                 if (nid == 0x16) {
6788                         err = add_control(spec, ALC_CTL_WIDGET_VOL,
6789                                           "Headphone Playback Volume",
6790                                           HDA_COMPOSE_AMP_VAL(0x0e, 2, 0,
6791                                                               HDA_OUTPUT));
6792                         if (err < 0)
6793                                 return err;
6794                         err = add_control(spec, ALC_CTL_WIDGET_MUTE,
6795                                           "Headphone Playback Switch",
6796                                           HDA_COMPOSE_AMP_VAL(nid, 2, 0,
6797                                                               HDA_OUTPUT));
6798                         if (err < 0)
6799                                 return err;
6800                 } else {
6801                         err = add_control(spec, ALC_CTL_WIDGET_MUTE,
6802                                           "Headphone Playback Switch",
6803                                           HDA_COMPOSE_AMP_VAL(nid, 3, 0,
6804                                                               HDA_OUTPUT));
6805                         if (err < 0)
6806                                 return err;
6807                 }
6808         }
6809         return 0;
6810 }
6811
6812 /* identical with ALC880 */
6813 #define alc262_auto_create_analog_input_ctls \
6814         alc880_auto_create_analog_input_ctls
6815
6816 /*
6817  * generic initialization of ADC, input mixers and output mixers
6818  */
6819 static struct hda_verb alc262_volume_init_verbs[] = {
6820         /*
6821          * Unmute ADC0-2 and set the default input to mic-in
6822          */
6823         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
6824         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6825         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6826         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6827         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6828         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6829
6830         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
6831          * mixer widget
6832          * Note: PASD motherboards uses the Line In 2 as the input for
6833          * front panel mic (mic 2)
6834          */
6835         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
6836         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6837         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6838         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6839         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
6840         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6841
6842         /*
6843          * Set up output mixers (0x0c - 0x0f)
6844          */
6845         /* set vol=0 to output mixers */
6846         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6847         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6848         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6849         
6850         /* set up input amps for analog loopback */
6851         /* Amp Indices: DAC = 0, mixer = 1 */
6852         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6853         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6854         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6855         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6856         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6857         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6858
6859         /* FIXME: use matrix-type input source selection */
6860         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6861         /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
6862         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6863         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6864         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6865         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6866         /* Input mixer2 */
6867         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6868         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6869         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6870         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6871         /* Input mixer3 */
6872         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6873         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6874         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6875         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6876
6877         { }
6878 };
6879
6880 static struct hda_verb alc262_HP_BPC_init_verbs[] = {
6881         /*
6882          * Unmute ADC0-2 and set the default input to mic-in
6883          */
6884         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
6885         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6886         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6887         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6888         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6889         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6890
6891         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
6892          * mixer widget
6893          * Note: PASD motherboards uses the Line In 2 as the input for
6894          * front panel mic (mic 2)
6895          */
6896         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
6897         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6898         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6899         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6900         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
6901         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6902         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
6903         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
6904         
6905         /*
6906          * Set up output mixers (0x0c - 0x0e)
6907          */
6908         /* set vol=0 to output mixers */
6909         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6910         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6911         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6912
6913         /* set up input amps for analog loopback */
6914         /* Amp Indices: DAC = 0, mixer = 1 */
6915         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6916         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6917         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6918         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6919         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6920         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6921
6922         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
6923         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6924         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6925
6926         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6927         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6928
6929         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
6930         {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6931
6932         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
6933         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
6934         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
6935         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
6936         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
6937
6938         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
6939         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
6940         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
6941         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
6942         {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
6943         {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
6944
6945
6946         /* FIXME: use matrix-type input source selection */
6947         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6948         /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
6949         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6950         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
6951         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
6952         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
6953         /* Input mixer2 */
6954         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6955         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
6956         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
6957         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
6958         /* Input mixer3 */
6959         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6960         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
6961         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
6962         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
6963
6964         { }
6965 };
6966
6967 static struct hda_verb alc262_HP_BPC_WildWest_init_verbs[] = {
6968         /*
6969          * Unmute ADC0-2 and set the default input to mic-in
6970          */
6971         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
6972         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6973         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6974         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6975         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6976         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6977
6978         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
6979          * mixer widget
6980          * Note: PASD motherboards uses the Line In 2 as the input for front
6981          * panel mic (mic 2)
6982          */
6983         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
6984         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6985         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6986         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6987         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
6988         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6989         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
6990         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
6991         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(7)},
6992         /*
6993          * Set up output mixers (0x0c - 0x0e)
6994          */
6995         /* set vol=0 to output mixers */
6996         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6997         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6998         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6999
7000         /* set up input amps for analog loopback */
7001         /* Amp Indices: DAC = 0, mixer = 1 */
7002         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7003         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7004         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7005         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7006         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7007         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7008
7009
7010         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },        /* HP */
7011         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },       /* Mono */
7012         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },    /* rear MIC */
7013         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },        /* Line in */
7014         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },    /* Front MIC */
7015         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },       /* Line out */
7016         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },        /* CD in */
7017
7018         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7019         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7020
7021         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
7022         {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
7023
7024         /* {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 }, */
7025         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7026         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7027         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
7028         {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7029         {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7030
7031         /* FIXME: use matrix-type input source selection */
7032         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
7033         /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
7034         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))}, /*rear MIC*/
7035         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))}, /*Line in*/
7036         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))}, /*F MIC*/
7037         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))}, /*Front*/
7038         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))}, /*CD*/
7039         /* {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))},  */
7040         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))}, /*HP*/
7041         /* Input mixer2 */
7042         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7043         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
7044         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
7045         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
7046         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
7047         /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
7048         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))},
7049         /* Input mixer3 */
7050         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7051         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
7052         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
7053         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
7054         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
7055         /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
7056         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))},
7057
7058         { }
7059 };
7060
7061 /* pcm configuration: identiacal with ALC880 */
7062 #define alc262_pcm_analog_playback      alc880_pcm_analog_playback
7063 #define alc262_pcm_analog_capture       alc880_pcm_analog_capture
7064 #define alc262_pcm_digital_playback     alc880_pcm_digital_playback
7065 #define alc262_pcm_digital_capture      alc880_pcm_digital_capture
7066
7067 /*
7068  * BIOS auto configuration
7069  */
7070 static int alc262_parse_auto_config(struct hda_codec *codec)
7071 {
7072         struct alc_spec *spec = codec->spec;
7073         int err;
7074         static hda_nid_t alc262_ignore[] = { 0x1d, 0 };
7075
7076         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
7077                                            alc262_ignore);
7078         if (err < 0)
7079                 return err;
7080         if (!spec->autocfg.line_outs)
7081                 return 0; /* can't find valid BIOS pin config */
7082         err = alc262_auto_create_multi_out_ctls(spec, &spec->autocfg);
7083         if (err < 0)
7084                 return err;
7085         err = alc262_auto_create_analog_input_ctls(spec, &spec->autocfg);
7086         if (err < 0)
7087                 return err;
7088
7089         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
7090
7091         if (spec->autocfg.dig_out_pin)
7092                 spec->multiout.dig_out_nid = ALC262_DIGOUT_NID;
7093         if (spec->autocfg.dig_in_pin)
7094                 spec->dig_in_nid = ALC262_DIGIN_NID;
7095
7096         if (spec->kctl_alloc)
7097                 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
7098
7099         spec->init_verbs[spec->num_init_verbs++] = alc262_volume_init_verbs;
7100         spec->num_mux_defs = 1;
7101         spec->input_mux = &spec->private_imux;
7102
7103         return 1;
7104 }
7105
7106 #define alc262_auto_init_multi_out      alc882_auto_init_multi_out
7107 #define alc262_auto_init_hp_out         alc882_auto_init_hp_out
7108 #define alc262_auto_init_analog_input   alc882_auto_init_analog_input
7109
7110
7111 /* init callback for auto-configuration model -- overriding the default init */
7112 static void alc262_auto_init(struct hda_codec *codec)
7113 {
7114         alc262_auto_init_multi_out(codec);
7115         alc262_auto_init_hp_out(codec);
7116         alc262_auto_init_analog_input(codec);
7117 }
7118
7119 /*
7120  * configuration and preset
7121  */
7122 static const char *alc262_models[ALC262_MODEL_LAST] = {
7123         [ALC262_BASIC]          = "basic",
7124         [ALC262_HIPPO]          = "hippo",
7125         [ALC262_HIPPO_1]        = "hippo_1",
7126         [ALC262_FUJITSU]        = "fujitsu",
7127         [ALC262_HP_BPC]         = "hp-bpc",
7128         [ALC262_HP_BPC_D7000_WL]= "hp-bpc-d7000",
7129         [ALC262_BENQ_ED8]       = "benq",
7130         [ALC262_AUTO]           = "auto",
7131 };
7132
7133 static struct snd_pci_quirk alc262_cfg_tbl[] = {
7134         SND_PCI_QUIRK(0x1002, 0x437b, "Hippo", ALC262_HIPPO),
7135         SND_PCI_QUIRK(0x103c, 0x12fe, "HP xw9400", ALC262_HP_BPC),
7136         SND_PCI_QUIRK(0x103c, 0x280c, "HP xw4400", ALC262_HP_BPC),
7137         SND_PCI_QUIRK(0x103c, 0x3014, "HP xw6400", ALC262_HP_BPC),
7138         SND_PCI_QUIRK(0x103c, 0x3015, "HP xw8400", ALC262_HP_BPC),
7139         SND_PCI_QUIRK(0x103c, 0x2800, "HP D7000", ALC262_HP_BPC_D7000_WL),
7140         SND_PCI_QUIRK(0x103c, 0x2802, "HP D7000", ALC262_HP_BPC_D7000_WL),
7141         SND_PCI_QUIRK(0x103c, 0x2804, "HP D7000", ALC262_HP_BPC_D7000_WL),
7142         SND_PCI_QUIRK(0x103c, 0x2806, "HP D7000", ALC262_HP_BPC_D7000_WL),
7143         SND_PCI_QUIRK(0x103c, 0x2801, "HP D7000", ALC262_HP_BPC_D7000_WF),
7144         SND_PCI_QUIRK(0x103c, 0x2803, "HP D7000", ALC262_HP_BPC_D7000_WF),
7145         SND_PCI_QUIRK(0x103c, 0x2805, "HP D7000", ALC262_HP_BPC_D7000_WF),
7146         SND_PCI_QUIRK(0x103c, 0x2807, "HP D7000", ALC262_HP_BPC_D7000_WF),
7147         SND_PCI_QUIRK(0x104d, 0x8203, "Sony UX-90", ALC262_HIPPO),
7148         SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FUJITSU),
7149         SND_PCI_QUIRK(0x17ff, 0x058f, "Benq Hippo", ALC262_HIPPO_1),
7150         SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_BENQ_ED8),
7151         {}
7152 };
7153
7154 static struct alc_config_preset alc262_presets[] = {
7155         [ALC262_BASIC] = {
7156                 .mixers = { alc262_base_mixer },
7157                 .init_verbs = { alc262_init_verbs },
7158                 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7159                 .dac_nids = alc262_dac_nids,
7160                 .hp_nid = 0x03,
7161                 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7162                 .channel_mode = alc262_modes,
7163                 .input_mux = &alc262_capture_source,
7164         },
7165         [ALC262_HIPPO] = {
7166                 .mixers = { alc262_base_mixer },
7167                 .init_verbs = { alc262_init_verbs, alc262_hippo_unsol_verbs},
7168                 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7169                 .dac_nids = alc262_dac_nids,
7170                 .hp_nid = 0x03,
7171                 .dig_out_nid = ALC262_DIGOUT_NID,
7172                 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7173                 .channel_mode = alc262_modes,
7174                 .input_mux = &alc262_capture_source,
7175                 .unsol_event = alc262_hippo_unsol_event,
7176         },
7177         [ALC262_HIPPO_1] = {
7178                 .mixers = { alc262_hippo1_mixer },
7179                 .init_verbs = { alc262_init_verbs, alc262_hippo1_unsol_verbs},
7180                 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7181                 .dac_nids = alc262_dac_nids,
7182                 .hp_nid = 0x02,
7183                 .dig_out_nid = ALC262_DIGOUT_NID,
7184                 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7185                 .channel_mode = alc262_modes,
7186                 .input_mux = &alc262_capture_source,
7187                 .unsol_event = alc262_hippo1_unsol_event,
7188         },
7189         [ALC262_FUJITSU] = {
7190                 .mixers = { alc262_fujitsu_mixer },
7191                 .init_verbs = { alc262_init_verbs, alc262_fujitsu_unsol_verbs },
7192                 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7193                 .dac_nids = alc262_dac_nids,
7194                 .hp_nid = 0x03,
7195                 .dig_out_nid = ALC262_DIGOUT_NID,
7196                 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7197                 .channel_mode = alc262_modes,
7198                 .input_mux = &alc262_fujitsu_capture_source,
7199                 .unsol_event = alc262_fujitsu_unsol_event,
7200         },
7201         [ALC262_HP_BPC] = {
7202                 .mixers = { alc262_HP_BPC_mixer },
7203                 .init_verbs = { alc262_HP_BPC_init_verbs },
7204                 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7205                 .dac_nids = alc262_dac_nids,
7206                 .hp_nid = 0x03,
7207                 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7208                 .channel_mode = alc262_modes,
7209                 .input_mux = &alc262_HP_capture_source,
7210         },
7211         [ALC262_HP_BPC_D7000_WF] = {
7212                 .mixers = { alc262_HP_BPC_WildWest_mixer },
7213                 .init_verbs = { alc262_HP_BPC_WildWest_init_verbs },
7214                 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7215                 .dac_nids = alc262_dac_nids,
7216                 .hp_nid = 0x03,
7217                 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7218                 .channel_mode = alc262_modes,
7219                 .input_mux = &alc262_HP_capture_source,
7220         },
7221         [ALC262_HP_BPC_D7000_WL] = {
7222                 .mixers = { alc262_HP_BPC_WildWest_mixer,
7223                             alc262_HP_BPC_WildWest_option_mixer },
7224                 .init_verbs = { alc262_HP_BPC_WildWest_init_verbs },
7225                 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7226                 .dac_nids = alc262_dac_nids,
7227                 .hp_nid = 0x03,
7228                 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7229                 .channel_mode = alc262_modes,
7230                 .input_mux = &alc262_HP_capture_source,
7231         },
7232         [ALC262_BENQ_ED8] = {
7233                 .mixers = { alc262_base_mixer },
7234                 .init_verbs = { alc262_init_verbs, alc262_EAPD_verbs },
7235                 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7236                 .dac_nids = alc262_dac_nids,
7237                 .hp_nid = 0x03,
7238                 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7239                 .channel_mode = alc262_modes,
7240                 .input_mux = &alc262_capture_source,
7241         },
7242 };
7243
7244 static int patch_alc262(struct hda_codec *codec)
7245 {
7246         struct alc_spec *spec;
7247         int board_config;
7248         int err;
7249
7250         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
7251         if (spec == NULL)
7252                 return -ENOMEM;
7253
7254         codec->spec = spec;
7255 #if 0
7256         /* pshou 07/11/05  set a zero PCM sample to DAC when FIFO is
7257          * under-run
7258          */
7259         {
7260         int tmp;
7261         snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
7262         tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
7263         snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
7264         snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
7265         }
7266 #endif
7267
7268         board_config = snd_hda_check_board_config(codec, ALC262_MODEL_LAST,
7269                                                   alc262_models,
7270                                                   alc262_cfg_tbl);
7271
7272         if (board_config < 0) {
7273                 printk(KERN_INFO "hda_codec: Unknown model for ALC262, "
7274                        "trying auto-probe from BIOS...\n");
7275                 board_config = ALC262_AUTO;
7276         }
7277
7278         if (board_config == ALC262_AUTO) {
7279                 /* automatic parse from the BIOS config */
7280                 err = alc262_parse_auto_config(codec);
7281                 if (err < 0) {
7282                         alc_free(codec);
7283                         return err;
7284                 } else if (!err) {
7285                         printk(KERN_INFO
7286                                "hda_codec: Cannot set up configuration "
7287                                "from BIOS.  Using base mode...\n");
7288                         board_config = ALC262_BASIC;
7289                 }
7290         }
7291
7292         if (board_config != ALC262_AUTO)
7293                 setup_preset(spec, &alc262_presets[board_config]);
7294
7295         spec->stream_name_analog = "ALC262 Analog";
7296         spec->stream_analog_playback = &alc262_pcm_analog_playback;
7297         spec->stream_analog_capture = &alc262_pcm_analog_capture;
7298                 
7299         spec->stream_name_digital = "ALC262 Digital";
7300         spec->stream_digital_playback = &alc262_pcm_digital_playback;
7301         spec->stream_digital_capture = &alc262_pcm_digital_capture;
7302
7303         if (!spec->adc_nids && spec->input_mux) {
7304                 /* check whether NID 0x07 is valid */
7305                 unsigned int wcap = get_wcaps(codec, 0x07);
7306
7307                 /* get type */
7308                 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
7309                 if (wcap != AC_WID_AUD_IN) {
7310                         spec->adc_nids = alc262_adc_nids_alt;
7311                         spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids_alt);
7312                         spec->mixers[spec->num_mixers] =
7313                                 alc262_capture_alt_mixer;
7314                         spec->num_mixers++;
7315                 } else {
7316                         spec->adc_nids = alc262_adc_nids;
7317                         spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids);
7318                         spec->mixers[spec->num_mixers] = alc262_capture_mixer;
7319                         spec->num_mixers++;
7320                 }
7321         }
7322
7323         codec->patch_ops = alc_patch_ops;
7324         if (board_config == ALC262_AUTO)
7325                 spec->init_hook = alc262_auto_init;
7326                 
7327         return 0;
7328 }
7329
7330 /*
7331  *  ALC861 channel source setting (2/6 channel selection for 3-stack)
7332  */
7333
7334 /*
7335  * set the path ways for 2 channel output
7336  * need to set the codec line out and mic 1 pin widgets to inputs
7337  */
7338 static struct hda_verb alc861_threestack_ch2_init[] = {
7339         /* set pin widget 1Ah (line in) for input */
7340         { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7341         /* set pin widget 18h (mic1/2) for input, for mic also enable
7342          * the vref
7343          */
7344         { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7345
7346         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
7347 #if 0
7348         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
7349         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, /*line-in*/
7350 #endif
7351         { } /* end */
7352 };
7353 /*
7354  * 6ch mode
7355  * need to set the codec line out and mic 1 pin widgets to outputs
7356  */
7357 static struct hda_verb alc861_threestack_ch6_init[] = {
7358         /* set pin widget 1Ah (line in) for output (Back Surround)*/
7359         { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7360         /* set pin widget 18h (mic1) for output (CLFE)*/
7361         { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7362
7363         { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
7364         { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
7365
7366         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
7367 #if 0
7368         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
7369         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, /*line in*/
7370 #endif
7371         { } /* end */
7372 };
7373
7374 static struct hda_channel_mode alc861_threestack_modes[2] = {
7375         { 2, alc861_threestack_ch2_init },
7376         { 6, alc861_threestack_ch6_init },
7377 };
7378 /* Set mic1 as input and unmute the mixer */
7379 static struct hda_verb alc861_uniwill_m31_ch2_init[] = {
7380         { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7381         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
7382         { } /* end */
7383 };
7384 /* Set mic1 as output and mute mixer */
7385 static struct hda_verb alc861_uniwill_m31_ch4_init[] = {
7386         { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7387         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
7388         { } /* end */
7389 };
7390
7391 static struct hda_channel_mode alc861_uniwill_m31_modes[2] = {
7392         { 2, alc861_uniwill_m31_ch2_init },
7393         { 4, alc861_uniwill_m31_ch4_init },
7394 };
7395
7396 /* Set mic1 and line-in as input and unmute the mixer */
7397 static struct hda_verb alc861_asus_ch2_init[] = {
7398         /* set pin widget 1Ah (line in) for input */
7399         { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7400         /* set pin widget 18h (mic1/2) for input, for mic also enable
7401          * the vref
7402          */
7403         { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7404
7405         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
7406 #if 0
7407         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
7408         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, /*line-in*/
7409 #endif
7410         { } /* end */
7411 };
7412 /* Set mic1 nad line-in as output and mute mixer */
7413 static struct hda_verb alc861_asus_ch6_init[] = {
7414         /* set pin widget 1Ah (line in) for output (Back Surround)*/
7415         { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7416         /* { 0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
7417         /* set pin widget 18h (mic1) for output (CLFE)*/
7418         { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7419         /* { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
7420         { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
7421         { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
7422
7423         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
7424 #if 0
7425         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
7426         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, /*line in*/
7427 #endif
7428         { } /* end */
7429 };
7430
7431 static struct hda_channel_mode alc861_asus_modes[2] = {
7432         { 2, alc861_asus_ch2_init },
7433         { 6, alc861_asus_ch6_init },
7434 };
7435
7436 /* patch-ALC861 */
7437
7438 static struct snd_kcontrol_new alc861_base_mixer[] = {
7439         /* output mixer control */
7440         HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
7441         HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
7442         HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
7443         HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
7444         HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
7445
7446         /*Input mixer control */
7447         /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
7448            HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
7449         HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
7450         HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
7451         HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
7452         HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
7453         HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
7454         HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
7455         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
7456         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
7457
7458         /* Capture mixer control */
7459         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7460         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7461         {
7462                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7463                 .name = "Capture Source",
7464                 .count = 1,
7465                 .info = alc_mux_enum_info,
7466                 .get = alc_mux_enum_get,
7467                 .put = alc_mux_enum_put,
7468         },
7469         { } /* end */
7470 };
7471
7472 static struct snd_kcontrol_new alc861_3ST_mixer[] = {
7473         /* output mixer control */
7474         HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
7475         HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
7476         HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
7477         HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
7478         /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
7479
7480         /* Input mixer control */
7481         /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
7482            HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
7483         HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
7484         HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
7485         HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
7486         HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
7487         HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
7488         HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
7489         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
7490         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
7491
7492         /* Capture mixer control */
7493         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7494         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7495         {
7496                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7497                 .name = "Capture Source",
7498                 .count = 1,
7499                 .info = alc_mux_enum_info,
7500                 .get = alc_mux_enum_get,
7501                 .put = alc_mux_enum_put,
7502         },
7503         {
7504                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7505                 .name = "Channel Mode",
7506                 .info = alc_ch_mode_info,
7507                 .get = alc_ch_mode_get,
7508                 .put = alc_ch_mode_put,
7509                 .private_value = ARRAY_SIZE(alc861_threestack_modes),
7510         },
7511         { } /* end */
7512 };
7513
7514 static struct snd_kcontrol_new alc861_toshiba_mixer[] = {
7515         /* output mixer control */
7516         HDA_CODEC_MUTE("Master Playback Switch", 0x03, 0x0, HDA_OUTPUT),
7517         HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
7518         HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
7519         
7520         /*Capture mixer control */
7521         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7522         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7523         {
7524                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7525                 .name = "Capture Source",
7526                 .count = 1,
7527                 .info = alc_mux_enum_info,
7528                 .get = alc_mux_enum_get,
7529                 .put = alc_mux_enum_put,
7530         },
7531
7532         { } /* end */
7533 };
7534
7535 static struct snd_kcontrol_new alc861_uniwill_m31_mixer[] = {
7536         /* output mixer control */
7537         HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
7538         HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
7539         HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
7540         HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
7541         /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
7542
7543         /* Input mixer control */
7544         /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
7545            HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
7546         HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
7547         HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
7548         HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
7549         HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
7550         HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
7551         HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
7552         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
7553         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
7554
7555         /* Capture mixer control */
7556         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7557         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7558         {
7559                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7560                 .name = "Capture Source",
7561                 .count = 1,
7562                 .info = alc_mux_enum_info,
7563                 .get = alc_mux_enum_get,
7564                 .put = alc_mux_enum_put,
7565         },
7566         {
7567                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7568                 .name = "Channel Mode",
7569                 .info = alc_ch_mode_info,
7570                 .get = alc_ch_mode_get,
7571                 .put = alc_ch_mode_put,
7572                 .private_value = ARRAY_SIZE(alc861_uniwill_m31_modes),
7573         },
7574         { } /* end */
7575 };
7576
7577 static struct snd_kcontrol_new alc861_asus_mixer[] = {
7578         /* output mixer control */
7579         HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
7580         HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
7581         HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
7582         HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
7583         HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
7584
7585         /* Input mixer control */
7586         HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
7587         HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7588         HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
7589         HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
7590         HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
7591         HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
7592         HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
7593         HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
7594         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
7595         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_OUTPUT),
7596
7597         /* Capture mixer control */
7598         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7599         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7600         {
7601                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7602                 .name = "Capture Source",
7603                 .count = 1,
7604                 .info = alc_mux_enum_info,
7605                 .get = alc_mux_enum_get,
7606                 .put = alc_mux_enum_put,
7607         },
7608         {
7609                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7610                 .name = "Channel Mode",
7611                 .info = alc_ch_mode_info,
7612                 .get = alc_ch_mode_get,
7613                 .put = alc_ch_mode_put,
7614                 .private_value = ARRAY_SIZE(alc861_asus_modes),
7615         },
7616         { }
7617 };
7618
7619 /* additional mixer */
7620 static struct snd_kcontrol_new alc861_asus_laptop_mixer[] = {
7621         HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
7622         HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
7623         HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x23, 0x0, HDA_OUTPUT),
7624         HDA_CODEC_MUTE("PC Beep Playback Switch", 0x23, 0x0, HDA_OUTPUT),
7625         { }
7626 };
7627
7628 /*
7629  * generic initialization of ADC, input mixers and output mixers
7630  */
7631 static struct hda_verb alc861_base_init_verbs[] = {
7632         /*
7633          * Unmute ADC0 and set the default input to mic-in
7634          */
7635         /* port-A for surround (rear panel) */
7636         { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7637         { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x00 },
7638         /* port-B for mic-in (rear panel) with vref */
7639         { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7640         /* port-C for line-in (rear panel) */
7641         { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7642         /* port-D for Front */
7643         { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7644         { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
7645         /* port-E for HP out (front panel) */
7646         { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
7647         /* route front PCM to HP */
7648         { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
7649         /* port-F for mic-in (front panel) with vref */
7650         { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7651         /* port-G for CLFE (rear panel) */
7652         { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7653         { 0x1f, AC_VERB_SET_CONNECT_SEL, 0x00 },
7654         /* port-H for side (rear panel) */
7655         { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7656         { 0x20, AC_VERB_SET_CONNECT_SEL, 0x00 },
7657         /* CD-in */
7658         { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7659         /* route front mic to ADC1*/
7660         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7661         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7662         
7663         /* Unmute DAC0~3 & spdif out*/
7664         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7665         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7666         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7667         {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7668         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7669         
7670         /* Unmute Mixer 14 (mic) 1c (Line in)*/
7671         {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7672         {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7673         {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7674         {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7675         
7676         /* Unmute Stereo Mixer 15 */
7677         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7678         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7679         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7680         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
7681
7682         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7683         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7684         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7685         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7686         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7687         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7688         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7689         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7690         /* hp used DAC 3 (Front) */
7691         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7692         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7693
7694         { }
7695 };
7696
7697 static struct hda_verb alc861_threestack_init_verbs[] = {
7698         /*
7699          * Unmute ADC0 and set the default input to mic-in
7700          */
7701         /* port-A for surround (rear panel) */
7702         { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
7703         /* port-B for mic-in (rear panel) with vref */
7704         { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7705         /* port-C for line-in (rear panel) */
7706         { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7707         /* port-D for Front */
7708         { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7709         { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
7710         /* port-E for HP out (front panel) */
7711         { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
7712         /* route front PCM to HP */
7713         { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
7714         /* port-F for mic-in (front panel) with vref */
7715         { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7716         /* port-G for CLFE (rear panel) */
7717         { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
7718         /* port-H for side (rear panel) */
7719         { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
7720         /* CD-in */
7721         { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7722         /* route front mic to ADC1*/
7723         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7724         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7725         /* Unmute DAC0~3 & spdif out*/
7726         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7727         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7728         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7729         {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7730         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7731         
7732         /* Unmute Mixer 14 (mic) 1c (Line in)*/
7733         {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7734         {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7735         {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7736         {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7737         
7738         /* Unmute Stereo Mixer 15 */
7739         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7740         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7741         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7742         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
7743
7744         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7745         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7746         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7747         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7748         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7749         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7750         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7751         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7752         /* hp used DAC 3 (Front) */
7753         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7754         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7755         { }
7756 };
7757
7758 static struct hda_verb alc861_uniwill_m31_init_verbs[] = {
7759         /*
7760          * Unmute ADC0 and set the default input to mic-in
7761          */
7762         /* port-A for surround (rear panel) */
7763         { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
7764         /* port-B for mic-in (rear panel) with vref */
7765         { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7766         /* port-C for line-in (rear panel) */
7767         { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7768         /* port-D for Front */
7769         { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7770         { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
7771         /* port-E for HP out (front panel) */
7772         /* this has to be set to VREF80 */
7773         { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7774         /* route front PCM to HP */
7775         { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
7776         /* port-F for mic-in (front panel) with vref */
7777         { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7778         /* port-G for CLFE (rear panel) */
7779         { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
7780         /* port-H for side (rear panel) */
7781         { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
7782         /* CD-in */
7783         { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7784         /* route front mic to ADC1*/
7785         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7786         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7787         /* Unmute DAC0~3 & spdif out*/
7788         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7789         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7790         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7791         {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7792         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7793         
7794         /* Unmute Mixer 14 (mic) 1c (Line in)*/
7795         {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7796         {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7797         {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7798         {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7799         
7800         /* Unmute Stereo Mixer 15 */
7801         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7802         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7803         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7804         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
7805
7806         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7807         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7808         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7809         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7810         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7811         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7812         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7813         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7814         /* hp used DAC 3 (Front) */
7815         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7816         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7817         { }
7818 };
7819
7820 static struct hda_verb alc861_asus_init_verbs[] = {
7821         /*
7822          * Unmute ADC0 and set the default input to mic-in
7823          */
7824         /* port-A for surround (rear panel)
7825          * according to codec#0 this is the HP jack
7826          */
7827         { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 }, /* was 0x00 */
7828         /* route front PCM to HP */
7829         { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x01 },
7830         /* port-B for mic-in (rear panel) with vref */
7831         { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7832         /* port-C for line-in (rear panel) */
7833         { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7834         /* port-D for Front */
7835         { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7836         { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
7837         /* port-E for HP out (front panel) */
7838         /* this has to be set to VREF80 */
7839         { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7840         /* route front PCM to HP */
7841         { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
7842         /* port-F for mic-in (front panel) with vref */
7843         { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7844         /* port-G for CLFE (rear panel) */
7845         { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7846         /* port-H for side (rear panel) */
7847         { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7848         /* CD-in */
7849         { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7850         /* route front mic to ADC1*/
7851         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7852         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7853         /* Unmute DAC0~3 & spdif out*/
7854         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7855         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7856         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7857         {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7858         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7859         /* Unmute Mixer 14 (mic) 1c (Line in)*/
7860         {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7861         {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7862         {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7863         {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7864         
7865         /* Unmute Stereo Mixer 15 */
7866         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7867         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7868         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7869         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
7870
7871         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7872         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7873         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7874         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7875         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7876         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7877         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7878         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7879         /* hp used DAC 3 (Front) */
7880         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7881         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7882         { }
7883 };
7884
7885 /* additional init verbs for ASUS laptops */
7886 static struct hda_verb alc861_asus_laptop_init_verbs[] = {
7887         { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x45 }, /* HP-out */
7888         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2) }, /* mute line-in */
7889         { }
7890 };
7891
7892 /*
7893  * generic initialization of ADC, input mixers and output mixers
7894  */
7895 static struct hda_verb alc861_auto_init_verbs[] = {
7896         /*
7897          * Unmute ADC0 and set the default input to mic-in
7898          */
7899         /* {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, */
7900         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7901         
7902         /* Unmute DAC0~3 & spdif out*/
7903         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7904         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7905         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7906         {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7907         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7908         
7909         /* Unmute Mixer 14 (mic) 1c (Line in)*/
7910         {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7911         {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7912         {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7913         {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7914         
7915         /* Unmute Stereo Mixer 15 */
7916         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7917         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7918         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7919         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c},
7920
7921         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7922         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7923         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7924         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7925         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7926         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7927         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7928         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7929
7930         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
7931         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7932         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7933         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7934         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
7935         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7936         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7937         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7938
7939         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},  /* set Mic 1 */
7940
7941         { }
7942 };
7943
7944 static struct hda_verb alc861_toshiba_init_verbs[] = {
7945         {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
7946
7947         { }
7948 };
7949
7950 /* toggle speaker-output according to the hp-jack state */
7951 static void alc861_toshiba_automute(struct hda_codec *codec)
7952 {
7953         unsigned int present;
7954
7955         present = snd_hda_codec_read(codec, 0x0f, 0,
7956                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
7957         snd_hda_codec_amp_update(codec, 0x16, 0, HDA_INPUT, 0,
7958                                  0x80, present ? 0x80 : 0);
7959         snd_hda_codec_amp_update(codec, 0x16, 1, HDA_INPUT, 0,
7960                                  0x80, present ? 0x80 : 0);
7961         snd_hda_codec_amp_update(codec, 0x1a, 0, HDA_INPUT, 3,
7962                                  0x80, present ? 0 : 0x80);
7963         snd_hda_codec_amp_update(codec, 0x1a, 1, HDA_INPUT, 3,
7964                                  0x80, present ? 0 : 0x80);
7965 }
7966
7967 static void alc861_toshiba_unsol_event(struct hda_codec *codec,
7968                                        unsigned int res)
7969 {
7970         if ((res >> 26) == ALC880_HP_EVENT)
7971                 alc861_toshiba_automute(codec);
7972 }
7973
7974 /* pcm configuration: identiacal with ALC880 */
7975 #define alc861_pcm_analog_playback      alc880_pcm_analog_playback
7976 #define alc861_pcm_analog_capture       alc880_pcm_analog_capture
7977 #define alc861_pcm_digital_playback     alc880_pcm_digital_playback
7978 #define alc861_pcm_digital_capture      alc880_pcm_digital_capture
7979
7980
7981 #define ALC861_DIGOUT_NID       0x07
7982
7983 static struct hda_channel_mode alc861_8ch_modes[1] = {
7984         { 8, NULL }
7985 };
7986
7987 static hda_nid_t alc861_dac_nids[4] = {
7988         /* front, surround, clfe, side */
7989         0x03, 0x06, 0x05, 0x04
7990 };
7991
7992 static hda_nid_t alc660_dac_nids[3] = {
7993         /* front, clfe, surround */
7994         0x03, 0x05, 0x06
7995 };
7996
7997 static hda_nid_t alc861_adc_nids[1] = {
7998         /* ADC0-2 */
7999         0x08,
8000 };
8001
8002 static struct hda_input_mux alc861_capture_source = {
8003         .num_items = 5,
8004         .items = {
8005                 { "Mic", 0x0 },
8006                 { "Front Mic", 0x3 },
8007                 { "Line", 0x1 },
8008                 { "CD", 0x4 },
8009                 { "Mixer", 0x5 },
8010         },
8011 };
8012
8013 /* fill in the dac_nids table from the parsed pin configuration */
8014 static int alc861_auto_fill_dac_nids(struct alc_spec *spec,
8015                                      const struct auto_pin_cfg *cfg)
8016 {
8017         int i;
8018         hda_nid_t nid;
8019
8020         spec->multiout.dac_nids = spec->private_dac_nids;
8021         for (i = 0; i < cfg->line_outs; i++) {
8022                 nid = cfg->line_out_pins[i];
8023                 if (nid) {
8024                         if (i >= ARRAY_SIZE(alc861_dac_nids))
8025                                 continue;
8026                         spec->multiout.dac_nids[i] = alc861_dac_nids[i];
8027                 }
8028         }
8029         spec->multiout.num_dacs = cfg->line_outs;
8030         return 0;
8031 }
8032
8033 /* add playback controls from the parsed DAC table */
8034 static int alc861_auto_create_multi_out_ctls(struct alc_spec *spec,
8035                                              const struct auto_pin_cfg *cfg)
8036 {
8037         char name[32];
8038         static const char *chname[4] = {
8039                 "Front", "Surround", NULL /*CLFE*/, "Side"
8040         };
8041         hda_nid_t nid;
8042         int i, idx, err;
8043
8044         for (i = 0; i < cfg->line_outs; i++) {
8045                 nid = spec->multiout.dac_nids[i];
8046                 if (!nid)
8047                         continue;
8048                 if (nid == 0x05) {
8049                         /* Center/LFE */
8050                         err = add_control(spec, ALC_CTL_BIND_MUTE,
8051                                           "Center Playback Switch",
8052                                           HDA_COMPOSE_AMP_VAL(nid, 1, 0,
8053                                                               HDA_OUTPUT));
8054                         if (err < 0)
8055                                 return err;
8056                         err = add_control(spec, ALC_CTL_BIND_MUTE,
8057                                           "LFE Playback Switch",
8058                                           HDA_COMPOSE_AMP_VAL(nid, 2, 0,
8059                                                               HDA_OUTPUT));
8060                         if (err < 0)
8061                                 return err;
8062                 } else {
8063                         for (idx = 0; idx < ARRAY_SIZE(alc861_dac_nids) - 1;
8064                              idx++)
8065                                 if (nid == alc861_dac_nids[idx])
8066                                         break;
8067                         sprintf(name, "%s Playback Switch", chname[idx]);
8068                         err = add_control(spec, ALC_CTL_BIND_MUTE, name,
8069                                           HDA_COMPOSE_AMP_VAL(nid, 3, 0,
8070                                                               HDA_OUTPUT));
8071                         if (err < 0)
8072                                 return err;
8073                 }
8074         }
8075         return 0;
8076 }
8077
8078 static int alc861_auto_create_hp_ctls(struct alc_spec *spec, hda_nid_t pin)
8079 {
8080         int err;
8081         hda_nid_t nid;
8082
8083         if (!pin)
8084                 return 0;
8085
8086         if ((pin >= 0x0b && pin <= 0x10) || pin == 0x1f || pin == 0x20) {
8087                 nid = 0x03;
8088                 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
8089                                   "Headphone Playback Switch",
8090                                   HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
8091                 if (err < 0)
8092                         return err;
8093                 spec->multiout.hp_nid = nid;
8094         }
8095         return 0;
8096 }
8097
8098 /* create playback/capture controls for input pins */
8099 static int alc861_auto_create_analog_input_ctls(struct alc_spec *spec,
8100                                                 const struct auto_pin_cfg *cfg)
8101 {
8102         struct hda_input_mux *imux = &spec->private_imux;
8103         int i, err, idx, idx1;
8104
8105         for (i = 0; i < AUTO_PIN_LAST; i++) {
8106                 switch (cfg->input_pins[i]) {
8107                 case 0x0c:
8108                         idx1 = 1;
8109                         idx = 2;        /* Line In */
8110                         break;
8111                 case 0x0f:
8112                         idx1 = 2;
8113                         idx = 2;        /* Line In */
8114                         break;
8115                 case 0x0d:
8116                         idx1 = 0;
8117                         idx = 1;        /* Mic In */
8118                         break;
8119                 case 0x10:
8120                         idx1 = 3;
8121                         idx = 1;        /* Mic In */
8122                         break;
8123                 case 0x11:
8124                         idx1 = 4;
8125                         idx = 0;        /* CD */
8126                         break;
8127                 default:
8128                         continue;
8129                 }
8130
8131                 err = new_analog_input(spec, cfg->input_pins[i],
8132                                        auto_pin_cfg_labels[i], idx, 0x15);
8133                 if (err < 0)
8134                         return err;
8135
8136                 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
8137                 imux->items[imux->num_items].index = idx1;
8138                 imux->num_items++;
8139         }
8140         return 0;
8141 }
8142
8143 static struct snd_kcontrol_new alc861_capture_mixer[] = {
8144         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
8145         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
8146
8147         {
8148                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8149                 /* The multiple "Capture Source" controls confuse alsamixer
8150                  * So call somewhat different..
8151                  *FIXME: the controls appear in the "playback" view!
8152                  */
8153                 /* .name = "Capture Source", */
8154                 .name = "Input Source",
8155                 .count = 1,
8156                 .info = alc_mux_enum_info,
8157                 .get = alc_mux_enum_get,
8158                 .put = alc_mux_enum_put,
8159         },
8160         { } /* end */
8161 };
8162
8163 static void alc861_auto_set_output_and_unmute(struct hda_codec *codec,
8164                                               hda_nid_t nid,
8165                                               int pin_type, int dac_idx)
8166 {
8167         /* set as output */
8168
8169         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
8170                             pin_type);
8171         snd_hda_codec_write(codec, dac_idx, 0, AC_VERB_SET_AMP_GAIN_MUTE,
8172                             AMP_OUT_UNMUTE);
8173
8174 }
8175
8176 static void alc861_auto_init_multi_out(struct hda_codec *codec)
8177 {
8178         struct alc_spec *spec = codec->spec;
8179         int i;
8180
8181         alc_subsystem_id(codec, 0x0e, 0x0f, 0x0b);
8182         for (i = 0; i < spec->autocfg.line_outs; i++) {
8183                 hda_nid_t nid = spec->autocfg.line_out_pins[i];
8184                 if (nid)
8185                         alc861_auto_set_output_and_unmute(codec, nid, PIN_OUT,
8186                                                           spec->multiout.dac_nids[i]);
8187         }
8188 }
8189
8190 static void alc861_auto_init_hp_out(struct hda_codec *codec)
8191 {
8192         struct alc_spec *spec = codec->spec;
8193         hda_nid_t pin;
8194
8195         pin = spec->autocfg.hp_pins[0];
8196         if (pin) /* connect to front */
8197                 alc861_auto_set_output_and_unmute(codec, pin, PIN_HP,
8198                                                   spec->multiout.dac_nids[0]);
8199 }
8200
8201 static void alc861_auto_init_analog_input(struct hda_codec *codec)
8202 {
8203         struct alc_spec *spec = codec->spec;
8204         int i;
8205
8206         for (i = 0; i < AUTO_PIN_LAST; i++) {
8207                 hda_nid_t nid = spec->autocfg.input_pins[i];
8208                 if (nid >= 0x0c && nid <= 0x11) {
8209                         snd_hda_codec_write(codec, nid, 0,
8210                                             AC_VERB_SET_PIN_WIDGET_CONTROL,
8211                                             i <= AUTO_PIN_FRONT_MIC ?
8212                                             PIN_VREF80 : PIN_IN);
8213                 }
8214         }
8215 }
8216
8217 /* parse the BIOS configuration and set up the alc_spec */
8218 /* return 1 if successful, 0 if the proper config is not found,
8219  * or a negative error code
8220  */
8221 static int alc861_parse_auto_config(struct hda_codec *codec)
8222 {
8223         struct alc_spec *spec = codec->spec;
8224         int err;
8225         static hda_nid_t alc861_ignore[] = { 0x1d, 0 };
8226
8227         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
8228                                            alc861_ignore);
8229         if (err < 0)
8230                 return err;
8231         if (!spec->autocfg.line_outs)
8232                 return 0; /* can't find valid BIOS pin config */
8233
8234         err = alc861_auto_fill_dac_nids(spec, &spec->autocfg);
8235         if (err < 0)
8236                 return err;
8237         err = alc861_auto_create_multi_out_ctls(spec, &spec->autocfg);
8238         if (err < 0)
8239                 return err;
8240         err = alc861_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
8241         if (err < 0)
8242                 return err;
8243         err = alc861_auto_create_analog_input_ctls(spec, &spec->autocfg);
8244         if (err < 0)
8245                 return err;
8246
8247         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
8248
8249         if (spec->autocfg.dig_out_pin)
8250                 spec->multiout.dig_out_nid = ALC861_DIGOUT_NID;
8251
8252         if (spec->kctl_alloc)
8253                 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
8254
8255         spec->init_verbs[spec->num_init_verbs++] = alc861_auto_init_verbs;
8256
8257         spec->num_mux_defs = 1;
8258         spec->input_mux = &spec->private_imux;
8259
8260         spec->adc_nids = alc861_adc_nids;
8261         spec->num_adc_nids = ARRAY_SIZE(alc861_adc_nids);
8262         spec->mixers[spec->num_mixers] = alc861_capture_mixer;
8263         spec->num_mixers++;
8264
8265         return 1;
8266 }
8267
8268 /* additional initialization for auto-configuration model */
8269 static void alc861_auto_init(struct hda_codec *codec)
8270 {
8271         alc861_auto_init_multi_out(codec);
8272         alc861_auto_init_hp_out(codec);
8273         alc861_auto_init_analog_input(codec);
8274 }
8275
8276
8277 /*
8278  * configuration and preset
8279  */
8280 static const char *alc861_models[ALC861_MODEL_LAST] = {
8281         [ALC861_3ST]            = "3stack",
8282         [ALC660_3ST]            = "3stack-660",
8283         [ALC861_3ST_DIG]        = "3stack-dig",
8284         [ALC861_6ST_DIG]        = "6stack-dig",
8285         [ALC861_UNIWILL_M31]    = "uniwill-m31",
8286         [ALC861_TOSHIBA]        = "toshiba",
8287         [ALC861_ASUS]           = "asus",
8288         [ALC861_ASUS_LAPTOP]    = "asus-laptop",
8289         [ALC861_AUTO]           = "auto",
8290 };
8291
8292 static struct snd_pci_quirk alc861_cfg_tbl[] = {
8293         SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC861_3ST),
8294         SND_PCI_QUIRK(0x1043, 0x1335, "ASUS F2/3", ALC861_ASUS_LAPTOP),
8295         SND_PCI_QUIRK(0x1043, 0x1338, "ASUS F2/3", ALC861_ASUS_LAPTOP),
8296         SND_PCI_QUIRK(0x1043, 0x1393, "ASUS", ALC861_ASUS),
8297         SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS", ALC660_3ST),
8298         SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba", ALC861_TOSHIBA),
8299         SND_PCI_QUIRK(0x1179, 0xff10, "Toshiba", ALC861_TOSHIBA),
8300         SND_PCI_QUIRK(0x1584, 0x9072, "Uniwill m31", ALC861_UNIWILL_M31),
8301         SND_PCI_QUIRK(0x1584, 0x2b01, "Uniwill X40AIx", ALC861_UNIWILL_M31),
8302         SND_PCI_QUIRK(0x1849, 0x0660, "Asrock 939SLI32", ALC660_3ST),
8303         SND_PCI_QUIRK(0x8086, 0xd600, "Intel", ALC861_3ST),
8304         {}
8305 };
8306
8307 static struct alc_config_preset alc861_presets[] = {
8308         [ALC861_3ST] = {
8309                 .mixers = { alc861_3ST_mixer },
8310                 .init_verbs = { alc861_threestack_init_verbs },
8311                 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
8312                 .dac_nids = alc861_dac_nids,
8313                 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
8314                 .channel_mode = alc861_threestack_modes,
8315                 .need_dac_fix = 1,
8316                 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
8317                 .adc_nids = alc861_adc_nids,
8318                 .input_mux = &alc861_capture_source,
8319         },
8320         [ALC861_3ST_DIG] = {
8321                 .mixers = { alc861_base_mixer },
8322                 .init_verbs = { alc861_threestack_init_verbs },
8323                 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
8324                 .dac_nids = alc861_dac_nids,
8325                 .dig_out_nid = ALC861_DIGOUT_NID,
8326                 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
8327                 .channel_mode = alc861_threestack_modes,
8328                 .need_dac_fix = 1,
8329                 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
8330                 .adc_nids = alc861_adc_nids,
8331                 .input_mux = &alc861_capture_source,
8332         },
8333         [ALC861_6ST_DIG] = {
8334                 .mixers = { alc861_base_mixer },
8335                 .init_verbs = { alc861_base_init_verbs },
8336                 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
8337                 .dac_nids = alc861_dac_nids,
8338                 .dig_out_nid = ALC861_DIGOUT_NID,
8339                 .num_channel_mode = ARRAY_SIZE(alc861_8ch_modes),
8340                 .channel_mode = alc861_8ch_modes,
8341                 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
8342                 .adc_nids = alc861_adc_nids,
8343                 .input_mux = &alc861_capture_source,
8344         },
8345         [ALC660_3ST] = {
8346                 .mixers = { alc861_3ST_mixer },
8347                 .init_verbs = { alc861_threestack_init_verbs },
8348                 .num_dacs = ARRAY_SIZE(alc660_dac_nids),
8349                 .dac_nids = alc660_dac_nids,
8350                 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
8351                 .channel_mode = alc861_threestack_modes,
8352                 .need_dac_fix = 1,
8353                 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
8354                 .adc_nids = alc861_adc_nids,
8355                 .input_mux = &alc861_capture_source,
8356         },
8357         [ALC861_UNIWILL_M31] = {
8358                 .mixers = { alc861_uniwill_m31_mixer },
8359                 .init_verbs = { alc861_uniwill_m31_init_verbs },
8360                 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
8361                 .dac_nids = alc861_dac_nids,
8362                 .dig_out_nid = ALC861_DIGOUT_NID,
8363                 .num_channel_mode = ARRAY_SIZE(alc861_uniwill_m31_modes),
8364                 .channel_mode = alc861_uniwill_m31_modes,
8365                 .need_dac_fix = 1,
8366                 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
8367                 .adc_nids = alc861_adc_nids,
8368                 .input_mux = &alc861_capture_source,
8369         },
8370         [ALC861_TOSHIBA] = {
8371                 .mixers = { alc861_toshiba_mixer },
8372                 .init_verbs = { alc861_base_init_verbs,
8373                                 alc861_toshiba_init_verbs },
8374                 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
8375                 .dac_nids = alc861_dac_nids,
8376                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
8377                 .channel_mode = alc883_3ST_2ch_modes,
8378                 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
8379                 .adc_nids = alc861_adc_nids,
8380                 .input_mux = &alc861_capture_source,
8381                 .unsol_event = alc861_toshiba_unsol_event,
8382                 .init_hook = alc861_toshiba_automute,
8383         },
8384         [ALC861_ASUS] = {
8385                 .mixers = { alc861_asus_mixer },
8386                 .init_verbs = { alc861_asus_init_verbs },
8387                 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
8388                 .dac_nids = alc861_dac_nids,
8389                 .dig_out_nid = ALC861_DIGOUT_NID,
8390                 .num_channel_mode = ARRAY_SIZE(alc861_asus_modes),
8391                 .channel_mode = alc861_asus_modes,
8392                 .need_dac_fix = 1,
8393                 .hp_nid = 0x06,
8394                 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
8395                 .adc_nids = alc861_adc_nids,
8396                 .input_mux = &alc861_capture_source,
8397         },
8398         [ALC861_ASUS_LAPTOP] = {
8399                 .mixers = { alc861_toshiba_mixer, alc861_asus_laptop_mixer },
8400                 .init_verbs = { alc861_asus_init_verbs,
8401                                 alc861_asus_laptop_init_verbs },
8402                 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
8403                 .dac_nids = alc861_dac_nids,
8404                 .dig_out_nid = ALC861_DIGOUT_NID,
8405                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
8406                 .channel_mode = alc883_3ST_2ch_modes,
8407                 .need_dac_fix = 1,
8408                 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
8409                 .adc_nids = alc861_adc_nids,
8410                 .input_mux = &alc861_capture_source,
8411         },
8412 };
8413
8414
8415 static int patch_alc861(struct hda_codec *codec)
8416 {
8417         struct alc_spec *spec;
8418         int board_config;
8419         int err;
8420
8421         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
8422         if (spec == NULL)
8423                 return -ENOMEM;
8424
8425         codec->spec = spec;
8426
8427         board_config = snd_hda_check_board_config(codec, ALC861_MODEL_LAST,
8428                                                   alc861_models,
8429                                                   alc861_cfg_tbl);
8430
8431         if (board_config < 0) {
8432                 printk(KERN_INFO "hda_codec: Unknown model for ALC861, "
8433                        "trying auto-probe from BIOS...\n");
8434                 board_config = ALC861_AUTO;
8435         }
8436
8437         if (board_config == ALC861_AUTO) {
8438                 /* automatic parse from the BIOS config */
8439                 err = alc861_parse_auto_config(codec);
8440                 if (err < 0) {
8441                         alc_free(codec);
8442                         return err;
8443                 } else if (!err) {
8444                         printk(KERN_INFO
8445                                "hda_codec: Cannot set up configuration "
8446                                "from BIOS.  Using base mode...\n");
8447                    board_config = ALC861_3ST_DIG;
8448                 }
8449         }
8450
8451         if (board_config != ALC861_AUTO)
8452                 setup_preset(spec, &alc861_presets[board_config]);
8453
8454         spec->stream_name_analog = "ALC861 Analog";
8455         spec->stream_analog_playback = &alc861_pcm_analog_playback;
8456         spec->stream_analog_capture = &alc861_pcm_analog_capture;
8457
8458         spec->stream_name_digital = "ALC861 Digital";
8459         spec->stream_digital_playback = &alc861_pcm_digital_playback;
8460         spec->stream_digital_capture = &alc861_pcm_digital_capture;
8461
8462         codec->patch_ops = alc_patch_ops;
8463         if (board_config == ALC861_AUTO)
8464                 spec->init_hook = alc861_auto_init;
8465                 
8466         return 0;
8467 }
8468
8469 /*
8470  * ALC861-VD support
8471  *
8472  * Based on ALC882
8473  *
8474  * In addition, an independent DAC
8475  */
8476 #define ALC861VD_DIGOUT_NID     0x06
8477
8478 static hda_nid_t alc861vd_dac_nids[4] = {
8479         /* front, surr, clfe, side surr */
8480         0x02, 0x03, 0x04, 0x05
8481 };
8482
8483 /* dac_nids for ALC660vd are in a different order - according to
8484  * Realtek's driver.
8485  * This should probably tesult in a different mixer for 6stack models
8486  * of ALC660vd codecs, but for now there is only 3stack mixer
8487  * - and it is the same as in 861vd.
8488  * adc_nids in ALC660vd are (is) the same as in 861vd
8489  */
8490 static hda_nid_t alc660vd_dac_nids[3] = {
8491         /* front, rear, clfe, rear_surr */
8492         0x02, 0x04, 0x03
8493 };
8494
8495 static hda_nid_t alc861vd_adc_nids[1] = {
8496         /* ADC0 */
8497         0x09,
8498 };
8499
8500 /* input MUX */
8501 /* FIXME: should be a matrix-type input source selection */
8502 static struct hda_input_mux alc861vd_capture_source = {
8503         .num_items = 4,
8504         .items = {
8505                 { "Mic", 0x0 },
8506                 { "Front Mic", 0x1 },
8507                 { "Line", 0x2 },
8508                 { "CD", 0x4 },
8509         },
8510 };
8511
8512 #define alc861vd_mux_enum_info alc_mux_enum_info
8513 #define alc861vd_mux_enum_get alc_mux_enum_get
8514
8515 static int alc861vd_mux_enum_put(struct snd_kcontrol *kcontrol,
8516                                 struct snd_ctl_elem_value *ucontrol)
8517 {
8518         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
8519         struct alc_spec *spec = codec->spec;
8520         const struct hda_input_mux *imux = spec->input_mux;
8521         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
8522         static hda_nid_t capture_mixers[1] = { 0x22 };
8523         hda_nid_t nid = capture_mixers[adc_idx];
8524         unsigned int *cur_val = &spec->cur_mux[adc_idx];
8525         unsigned int i, idx;
8526
8527         idx = ucontrol->value.enumerated.item[0];
8528         if (idx >= imux->num_items)
8529                 idx = imux->num_items - 1;
8530         if (*cur_val == idx && !codec->in_resume)
8531                 return 0;
8532         for (i = 0; i < imux->num_items; i++) {
8533                 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
8534                 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
8535                                     v | (imux->items[i].index << 8));
8536         }
8537         *cur_val = idx;
8538         return 1;
8539 }
8540
8541 /*
8542  * 2ch mode
8543  */
8544 static struct hda_channel_mode alc861vd_3stack_2ch_modes[1] = {
8545         { 2, NULL }
8546 };
8547
8548 /*
8549  * 6ch mode
8550  */
8551 static struct hda_verb alc861vd_6stack_ch6_init[] = {
8552         { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
8553         { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8554         { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8555         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8556         { } /* end */
8557 };
8558
8559 /*
8560  * 8ch mode
8561  */
8562 static struct hda_verb alc861vd_6stack_ch8_init[] = {
8563         { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8564         { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8565         { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8566         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8567         { } /* end */
8568 };
8569
8570 static struct hda_channel_mode alc861vd_6stack_modes[2] = {
8571         { 6, alc861vd_6stack_ch6_init },
8572         { 8, alc861vd_6stack_ch8_init },
8573 };
8574
8575 static struct snd_kcontrol_new alc861vd_chmode_mixer[] = {
8576         {
8577                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8578                 .name = "Channel Mode",
8579                 .info = alc_ch_mode_info,
8580                 .get = alc_ch_mode_get,
8581                 .put = alc_ch_mode_put,
8582         },
8583         { } /* end */
8584 };
8585
8586 static struct snd_kcontrol_new alc861vd_capture_mixer[] = {
8587         HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
8588         HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
8589
8590         {
8591                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8592                 /* The multiple "Capture Source" controls confuse alsamixer
8593                  * So call somewhat different..
8594                  *FIXME: the controls appear in the "playback" view!
8595                  */
8596                 /* .name = "Capture Source", */
8597                 .name = "Input Source",
8598                 .count = 1,
8599                 .info = alc861vd_mux_enum_info,
8600                 .get = alc861vd_mux_enum_get,
8601                 .put = alc861vd_mux_enum_put,
8602         },
8603         { } /* end */
8604 };
8605
8606 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
8607  *                 Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
8608  */
8609 static struct snd_kcontrol_new alc861vd_6st_mixer[] = {
8610         HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
8611         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
8612
8613         HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT),
8614         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
8615
8616         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0,
8617                                 HDA_OUTPUT),
8618         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0,
8619                                 HDA_OUTPUT),
8620         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
8621         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
8622
8623         HDA_CODEC_VOLUME("Side Playback Volume", 0x05, 0x0, HDA_OUTPUT),
8624         HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
8625
8626         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
8627
8628         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
8629         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
8630         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
8631
8632         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
8633         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
8634         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
8635
8636         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
8637         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
8638
8639         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
8640         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
8641
8642         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
8643         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
8644
8645         { } /* end */
8646 };
8647
8648 static struct snd_kcontrol_new alc861vd_3st_mixer[] = {
8649         HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
8650         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
8651
8652         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
8653
8654         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
8655         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
8656         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
8657
8658         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
8659         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
8660         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
8661
8662         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
8663         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
8664
8665         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
8666         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
8667
8668         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
8669         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
8670
8671         { } /* end */
8672 };
8673
8674 /*
8675  * generic initialization of ADC, input mixers and output mixers
8676  */
8677 static struct hda_verb alc861vd_volume_init_verbs[] = {
8678         /*
8679          * Unmute ADC0 and set the default input to mic-in
8680          */
8681         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
8682         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8683
8684         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of
8685          * the analog-loopback mixer widget
8686          */
8687         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
8688         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8689         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8690         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
8691         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
8692         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
8693
8694         /* Capture mixer: unmute Mic, F-Mic, Line, CD inputs */
8695         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
8696         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
8697         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
8698         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(8)},
8699
8700         /*
8701          * Set up output mixers (0x02 - 0x05)
8702          */
8703         /* set vol=0 to output mixers */
8704         {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8705         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8706         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8707         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8708
8709         /* set up input amps for analog loopback */
8710         /* Amp Indices: DAC = 0, mixer = 1 */
8711         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8712         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
8713         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8714         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
8715         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8716         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
8717         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8718         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
8719
8720         { }
8721 };
8722
8723 /*
8724  * 3-stack pin configuration:
8725  * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
8726  */
8727 static struct hda_verb alc861vd_3stack_init_verbs[] = {
8728         /*
8729          * Set pin mode and muting
8730          */
8731         /* set front pin widgets 0x14 for output */
8732         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8733         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8734         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
8735
8736         /* Mic (rear) pin: input vref at 80% */
8737         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
8738         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8739         /* Front Mic pin: input vref at 80% */
8740         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
8741         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8742         /* Line In pin: input */
8743         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
8744         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8745         /* Line-2 In: Headphone output (output 0 - 0x0c) */
8746         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
8747         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8748         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
8749         /* CD pin widget for input */
8750         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
8751
8752         { }
8753 };
8754
8755 /*
8756  * 6-stack pin configuration:
8757  */
8758 static struct hda_verb alc861vd_6stack_init_verbs[] = {
8759         /*
8760          * Set pin mode and muting
8761          */
8762         /* set front pin widgets 0x14 for output */
8763         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8764         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8765         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
8766
8767         /* Rear Pin: output 1 (0x0d) */
8768         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8769         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8770         {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
8771         /* CLFE Pin: output 2 (0x0e) */
8772         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8773         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8774         {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
8775         /* Side Pin: output 3 (0x0f) */
8776         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8777         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8778         {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
8779
8780         /* Mic (rear) pin: input vref at 80% */
8781         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
8782         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8783         /* Front Mic pin: input vref at 80% */
8784         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
8785         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8786         /* Line In pin: input */
8787         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
8788         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8789         /* Line-2 In: Headphone output (output 0 - 0x0c) */
8790         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
8791         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8792         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
8793         /* CD pin widget for input */
8794         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
8795
8796         { }
8797 };
8798
8799 /* pcm configuration: identiacal with ALC880 */
8800 #define alc861vd_pcm_analog_playback    alc880_pcm_analog_playback
8801 #define alc861vd_pcm_analog_capture     alc880_pcm_analog_capture
8802 #define alc861vd_pcm_digital_playback   alc880_pcm_digital_playback
8803 #define alc861vd_pcm_digital_capture    alc880_pcm_digital_capture
8804
8805 /*
8806  * configuration and preset
8807  */
8808 static const char *alc861vd_models[ALC861VD_MODEL_LAST] = {
8809         [ALC660VD_3ST]          = "3stack-660",
8810         [ALC861VD_3ST]          = "3stack",
8811         [ALC861VD_3ST_DIG]      = "3stack-digout",
8812         [ALC861VD_6ST_DIG]      = "6stack-digout",
8813         [ALC861VD_AUTO]         = "auto",
8814 };
8815
8816 static struct snd_pci_quirk alc861vd_cfg_tbl[] = {
8817         SND_PCI_QUIRK(0x1043, 0x12e2, "Asus z35m", ALC660VD_3ST),
8818         SND_PCI_QUIRK(0x1043, 0x1339, "Asus G1", ALC660VD_3ST),
8819         SND_PCI_QUIRK(0x10de, 0x03f0, "Realtek ALC660 demo", ALC660VD_3ST),
8820         SND_PCI_QUIRK(0x1019, 0xa88d, "Realtek ALC660 demo", ALC660VD_3ST),
8821
8822         SND_PCI_QUIRK(0x17aa, 0x3802, "Lenovo 3000 C200", ALC861VD_3ST),
8823         {}
8824 };
8825
8826 static struct alc_config_preset alc861vd_presets[] = {
8827         [ALC660VD_3ST] = {
8828                 .mixers = { alc861vd_3st_mixer },
8829                 .init_verbs = { alc861vd_volume_init_verbs,
8830                                  alc861vd_3stack_init_verbs },
8831                 .num_dacs = ARRAY_SIZE(alc660vd_dac_nids),
8832                 .dac_nids = alc660vd_dac_nids,
8833                 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
8834                 .adc_nids = alc861vd_adc_nids,
8835                 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
8836                 .channel_mode = alc861vd_3stack_2ch_modes,
8837                 .input_mux = &alc861vd_capture_source,
8838         },
8839         [ALC861VD_3ST] = {
8840                 .mixers = { alc861vd_3st_mixer },
8841                 .init_verbs = { alc861vd_volume_init_verbs,
8842                                  alc861vd_3stack_init_verbs },
8843                 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
8844                 .dac_nids = alc861vd_dac_nids,
8845                 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
8846                 .channel_mode = alc861vd_3stack_2ch_modes,
8847                 .input_mux = &alc861vd_capture_source,
8848         },
8849         [ALC861VD_3ST_DIG] = {
8850                 .mixers = { alc861vd_3st_mixer },
8851                 .init_verbs = { alc861vd_volume_init_verbs,
8852                                  alc861vd_3stack_init_verbs },
8853                 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
8854                 .dac_nids = alc861vd_dac_nids,
8855                 .dig_out_nid = ALC861VD_DIGOUT_NID,
8856                 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
8857                 .channel_mode = alc861vd_3stack_2ch_modes,
8858                 .input_mux = &alc861vd_capture_source,
8859         },
8860         [ALC861VD_6ST_DIG] = {
8861                 .mixers = { alc861vd_6st_mixer, alc861vd_chmode_mixer },
8862                 .init_verbs = { alc861vd_volume_init_verbs,
8863                                 alc861vd_6stack_init_verbs },
8864                 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
8865                 .dac_nids = alc861vd_dac_nids,
8866                 .dig_out_nid = ALC861VD_DIGOUT_NID,
8867                 .num_channel_mode = ARRAY_SIZE(alc861vd_6stack_modes),
8868                 .channel_mode = alc861vd_6stack_modes,
8869                 .input_mux = &alc861vd_capture_source,
8870         },
8871 };
8872
8873 /*
8874  * BIOS auto configuration
8875  */
8876 static void alc861vd_auto_set_output_and_unmute(struct hda_codec *codec,
8877                                 hda_nid_t nid, int pin_type, int dac_idx)
8878 {
8879         /* set as output */
8880         snd_hda_codec_write(codec, nid, 0,
8881                                 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
8882         snd_hda_codec_write(codec, nid, 0,
8883                                 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
8884 }
8885
8886 static void alc861vd_auto_init_multi_out(struct hda_codec *codec)
8887 {
8888         struct alc_spec *spec = codec->spec;
8889         int i;
8890
8891         alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
8892         for (i = 0; i <= HDA_SIDE; i++) {
8893                 hda_nid_t nid = spec->autocfg.line_out_pins[i];
8894                 if (nid)
8895                         alc861vd_auto_set_output_and_unmute(codec, nid,
8896                                                                 PIN_OUT, i);
8897         }
8898 }
8899
8900
8901 static void alc861vd_auto_init_hp_out(struct hda_codec *codec)
8902 {
8903         struct alc_spec *spec = codec->spec;
8904         hda_nid_t pin;
8905
8906         pin = spec->autocfg.hp_pins[0];
8907         if (pin) /* connect to front and  use dac 0 */
8908                 alc861vd_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
8909 }
8910
8911 #define alc861vd_is_input_pin(nid)      alc880_is_input_pin(nid)
8912 #define ALC861VD_PIN_CD_NID             ALC880_PIN_CD_NID
8913
8914 static void alc861vd_auto_init_analog_input(struct hda_codec *codec)
8915 {
8916         struct alc_spec *spec = codec->spec;
8917         int i;
8918
8919         for (i = 0; i < AUTO_PIN_LAST; i++) {
8920                 hda_nid_t nid = spec->autocfg.input_pins[i];
8921                 if (alc861vd_is_input_pin(nid)) {
8922                         snd_hda_codec_write(codec, nid, 0,
8923                                         AC_VERB_SET_PIN_WIDGET_CONTROL,
8924                                         i <= AUTO_PIN_FRONT_MIC ?
8925                                                         PIN_VREF80 : PIN_IN);
8926                         if (nid != ALC861VD_PIN_CD_NID)
8927                                 snd_hda_codec_write(codec, nid, 0,
8928                                                 AC_VERB_SET_AMP_GAIN_MUTE,
8929                                                 AMP_OUT_MUTE);
8930                 }
8931         }
8932 }
8933
8934 #define alc861vd_idx_to_mixer_vol(nid)          ((nid) + 0x02)
8935 #define alc861vd_idx_to_mixer_switch(nid)       ((nid) + 0x0c)
8936
8937 /* add playback controls from the parsed DAC table */
8938 /* Based on ALC880 version. But ALC861VD has separate,
8939  * different NIDs for mute/unmute switch and volume control */
8940 static int alc861vd_auto_create_multi_out_ctls(struct alc_spec *spec,
8941                                              const struct auto_pin_cfg *cfg)
8942 {
8943         char name[32];
8944         static const char *chname[4] = {"Front", "Surround", "CLFE", "Side"};
8945         hda_nid_t nid_v, nid_s;
8946         int i, err;
8947
8948         for (i = 0; i < cfg->line_outs; i++) {
8949                 if (!spec->multiout.dac_nids[i])
8950                         continue;
8951                 nid_v = alc861vd_idx_to_mixer_vol(
8952                                 alc880_dac_to_idx(
8953                                         spec->multiout.dac_nids[i]));
8954                 nid_s = alc861vd_idx_to_mixer_switch(
8955                                 alc880_dac_to_idx(
8956                                         spec->multiout.dac_nids[i]));
8957
8958                 if (i == 2) {
8959                         /* Center/LFE */
8960                         err = add_control(spec, ALC_CTL_WIDGET_VOL,
8961                                           "Center Playback Volume",
8962                                           HDA_COMPOSE_AMP_VAL(nid_v, 1, 0,
8963                                                               HDA_OUTPUT));
8964                         if (err < 0)
8965                                 return err;
8966                         err = add_control(spec, ALC_CTL_WIDGET_VOL,
8967                                           "LFE Playback Volume",
8968                                           HDA_COMPOSE_AMP_VAL(nid_v, 2, 0,
8969                                                               HDA_OUTPUT));
8970                         if (err < 0)
8971                                 return err;
8972                         err = add_control(spec, ALC_CTL_BIND_MUTE,
8973                                           "Center Playback Switch",
8974                                           HDA_COMPOSE_AMP_VAL(nid_s, 1, 2,
8975                                                               HDA_INPUT));
8976                         if (err < 0)
8977                                 return err;
8978                         err = add_control(spec, ALC_CTL_BIND_MUTE,
8979                                           "LFE Playback Switch",
8980                                           HDA_COMPOSE_AMP_VAL(nid_s, 2, 2,
8981                                                               HDA_INPUT));
8982                         if (err < 0)
8983                                 return err;
8984                 } else {
8985                         sprintf(name, "%s Playback Volume", chname[i]);
8986                         err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
8987                                           HDA_COMPOSE_AMP_VAL(nid_v, 3, 0,
8988                                                               HDA_OUTPUT));
8989                         if (err < 0)
8990                                 return err;
8991                         sprintf(name, "%s Playback Switch", chname[i]);
8992                         err = add_control(spec, ALC_CTL_BIND_MUTE, name,
8993                                           HDA_COMPOSE_AMP_VAL(nid_v, 3, 2,
8994                                                               HDA_INPUT));
8995                         if (err < 0)
8996                                 return err;
8997                 }
8998         }
8999         return 0;
9000 }
9001
9002 /* add playback controls for speaker and HP outputs */
9003 /* Based on ALC880 version. But ALC861VD has separate,
9004  * different NIDs for mute/unmute switch and volume control */
9005 static int alc861vd_auto_create_extra_out(struct alc_spec *spec,
9006                                         hda_nid_t pin, const char *pfx)
9007 {
9008         hda_nid_t nid_v, nid_s;
9009         int err;
9010         char name[32];
9011
9012         if (!pin)
9013                 return 0;
9014
9015         if (alc880_is_fixed_pin(pin)) {
9016                 nid_v = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
9017                 /* specify the DAC as the extra output */
9018                 if (!spec->multiout.hp_nid)
9019                         spec->multiout.hp_nid = nid_v;
9020                 else
9021                         spec->multiout.extra_out_nid[0] = nid_v;
9022                 /* control HP volume/switch on the output mixer amp */
9023                 nid_v = alc861vd_idx_to_mixer_vol(
9024                                 alc880_fixed_pin_idx(pin));
9025                 nid_s = alc861vd_idx_to_mixer_switch(
9026                                 alc880_fixed_pin_idx(pin));
9027
9028                 sprintf(name, "%s Playback Volume", pfx);
9029                 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
9030                                   HDA_COMPOSE_AMP_VAL(nid_v, 3, 0, HDA_OUTPUT));
9031                 if (err < 0)
9032                         return err;
9033                 sprintf(name, "%s Playback Switch", pfx);
9034                 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
9035                                   HDA_COMPOSE_AMP_VAL(nid_s, 3, 2, HDA_INPUT));
9036                 if (err < 0)
9037                         return err;
9038         } else if (alc880_is_multi_pin(pin)) {
9039                 /* set manual connection */
9040                 /* we have only a switch on HP-out PIN */
9041                 sprintf(name, "%s Playback Switch", pfx);
9042                 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
9043                                   HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
9044                 if (err < 0)
9045                         return err;
9046         }
9047         return 0;
9048 }
9049
9050 /* parse the BIOS configuration and set up the alc_spec
9051  * return 1 if successful, 0 if the proper config is not found,
9052  * or a negative error code
9053  * Based on ALC880 version - had to change it to override
9054  * alc880_auto_create_extra_out and alc880_auto_create_multi_out_ctls */
9055 static int alc861vd_parse_auto_config(struct hda_codec *codec)
9056 {
9057         struct alc_spec *spec = codec->spec;
9058         int err;
9059         static hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
9060
9061         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
9062                                            alc861vd_ignore);
9063         if (err < 0)
9064                 return err;
9065         if (!spec->autocfg.line_outs)
9066                 return 0; /* can't find valid BIOS pin config */
9067
9068         err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
9069         if (err < 0)
9070                 return err;
9071         err = alc861vd_auto_create_multi_out_ctls(spec, &spec->autocfg);
9072         if (err < 0)
9073                 return err;
9074         err = alc861vd_auto_create_extra_out(spec,
9075                                              spec->autocfg.speaker_pins[0],
9076                                              "Speaker");
9077         if (err < 0)
9078                 return err;
9079         err = alc861vd_auto_create_extra_out(spec,
9080                                              spec->autocfg.hp_pins[0],
9081                                              "Headphone");
9082         if (err < 0)
9083                 return err;
9084         err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg);
9085         if (err < 0)
9086                 return err;
9087
9088         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
9089
9090         if (spec->autocfg.dig_out_pin)
9091                 spec->multiout.dig_out_nid = ALC861VD_DIGOUT_NID;
9092
9093         if (spec->kctl_alloc)
9094                 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
9095
9096         spec->init_verbs[spec->num_init_verbs++]
9097                 = alc861vd_volume_init_verbs;
9098
9099         spec->num_mux_defs = 1;
9100         spec->input_mux = &spec->private_imux;
9101
9102         return 1;
9103 }
9104
9105 /* additional initialization for auto-configuration model */
9106 static void alc861vd_auto_init(struct hda_codec *codec)
9107 {
9108         alc861vd_auto_init_multi_out(codec);
9109         alc861vd_auto_init_hp_out(codec);
9110         alc861vd_auto_init_analog_input(codec);
9111 }
9112
9113 static int patch_alc861vd(struct hda_codec *codec)
9114 {
9115         struct alc_spec *spec;
9116         int err, board_config;
9117
9118         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
9119         if (spec == NULL)
9120                 return -ENOMEM;
9121
9122         codec->spec = spec;
9123
9124         board_config = snd_hda_check_board_config(codec, ALC861VD_MODEL_LAST,
9125                                                   alc861vd_models,
9126                                                   alc861vd_cfg_tbl);
9127
9128         if (board_config < 0 || board_config >= ALC861VD_MODEL_LAST) {
9129                 printk(KERN_INFO "hda_codec: Unknown model for ALC660VD/"
9130                         "ALC861VD, trying auto-probe from BIOS...\n");
9131                 board_config = ALC861VD_AUTO;
9132         }
9133
9134         if (board_config == ALC861VD_AUTO) {
9135                 /* automatic parse from the BIOS config */
9136                 err = alc861vd_parse_auto_config(codec);
9137                 if (err < 0) {
9138                         alc_free(codec);
9139                         return err;
9140                 } else if (!err) {
9141                         printk(KERN_INFO
9142                                "hda_codec: Cannot set up configuration "
9143                                "from BIOS.  Using base mode...\n");
9144                         board_config = ALC861VD_3ST;
9145                 }
9146         }
9147
9148         if (board_config != ALC861VD_AUTO)
9149                 setup_preset(spec, &alc861vd_presets[board_config]);
9150
9151         spec->stream_name_analog = "ALC861VD Analog";
9152         spec->stream_analog_playback = &alc861vd_pcm_analog_playback;
9153         spec->stream_analog_capture = &alc861vd_pcm_analog_capture;
9154
9155         spec->stream_name_digital = "ALC861VD Digital";
9156         spec->stream_digital_playback = &alc861vd_pcm_digital_playback;
9157         spec->stream_digital_capture = &alc861vd_pcm_digital_capture;
9158
9159         spec->adc_nids = alc861vd_adc_nids;
9160         spec->num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids);
9161
9162         spec->mixers[spec->num_mixers] = alc861vd_capture_mixer;
9163         spec->num_mixers++;
9164
9165         codec->patch_ops = alc_patch_ops;
9166
9167         if (board_config == ALC861VD_AUTO)
9168                 spec->init_hook = alc861vd_auto_init;
9169
9170         return 0;
9171 }
9172
9173 /*
9174  * ALC662 support
9175  *
9176  * ALC662 is almost identical with ALC880 but has cleaner and more flexible
9177  * configuration.  Each pin widget can choose any input DACs and a mixer.
9178  * Each ADC is connected from a mixer of all inputs.  This makes possible
9179  * 6-channel independent captures.
9180  *
9181  * In addition, an independent DAC for the multi-playback (not used in this
9182  * driver yet).
9183  */
9184 #define ALC662_DIGOUT_NID       0x06
9185 #define ALC662_DIGIN_NID        0x0a
9186
9187 static hda_nid_t alc662_dac_nids[4] = {
9188         /* front, rear, clfe, rear_surr */
9189         0x02, 0x03, 0x04
9190 };
9191
9192 static hda_nid_t alc662_adc_nids[1] = {
9193         /* ADC1-2 */
9194         0x09,
9195 };
9196 /* input MUX */
9197 /* FIXME: should be a matrix-type input source selection */
9198
9199 static struct hda_input_mux alc662_capture_source = {
9200         .num_items = 4,
9201         .items = {
9202                 { "Mic", 0x0 },
9203                 { "Front Mic", 0x1 },
9204                 { "Line", 0x2 },
9205                 { "CD", 0x4 },
9206         },
9207 };
9208
9209 static struct hda_input_mux alc662_lenovo_101e_capture_source = {
9210         .num_items = 2,
9211         .items = {
9212                 { "Mic", 0x1 },
9213                 { "Line", 0x2 },
9214         },
9215 };
9216 #define alc662_mux_enum_info alc_mux_enum_info
9217 #define alc662_mux_enum_get alc_mux_enum_get
9218
9219 static int alc662_mux_enum_put(struct snd_kcontrol *kcontrol,
9220                                struct snd_ctl_elem_value *ucontrol)
9221 {
9222         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
9223         struct alc_spec *spec = codec->spec;
9224         const struct hda_input_mux *imux = spec->input_mux;
9225         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
9226         static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
9227         hda_nid_t nid = capture_mixers[adc_idx];
9228         unsigned int *cur_val = &spec->cur_mux[adc_idx];
9229         unsigned int i, idx;
9230
9231         idx = ucontrol->value.enumerated.item[0];
9232         if (idx >= imux->num_items)
9233                 idx = imux->num_items - 1;
9234         if (*cur_val == idx && !codec->in_resume)
9235                 return 0;
9236         for (i = 0; i < imux->num_items; i++) {
9237                 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
9238                 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
9239                                     v | (imux->items[i].index << 8));
9240         }
9241         *cur_val = idx;
9242         return 1;
9243 }
9244 /*
9245  * 2ch mode
9246  */
9247 static struct hda_channel_mode alc662_3ST_2ch_modes[1] = {
9248         { 2, NULL }
9249 };
9250
9251 /*
9252  * 2ch mode
9253  */
9254 static struct hda_verb alc662_3ST_ch2_init[] = {
9255         { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
9256         { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
9257         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
9258         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
9259         { } /* end */
9260 };
9261
9262 /*
9263  * 6ch mode
9264  */
9265 static struct hda_verb alc662_3ST_ch6_init[] = {
9266         { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9267         { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
9268         { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
9269         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9270         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
9271         { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
9272         { } /* end */
9273 };
9274
9275 static struct hda_channel_mode alc662_3ST_6ch_modes[2] = {
9276         { 2, alc662_3ST_ch2_init },
9277         { 6, alc662_3ST_ch6_init },
9278 };
9279
9280 /*
9281  * 2ch mode
9282  */
9283 static struct hda_verb alc662_sixstack_ch6_init[] = {
9284         { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9285         { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9286         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9287         { } /* end */
9288 };
9289
9290 /*
9291  * 6ch mode
9292  */
9293 static struct hda_verb alc662_sixstack_ch8_init[] = {
9294         { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9295         { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9296         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9297         { } /* end */
9298 };
9299
9300 static struct hda_channel_mode alc662_5stack_modes[2] = {
9301         { 2, alc662_sixstack_ch6_init },
9302         { 6, alc662_sixstack_ch8_init },
9303 };
9304
9305 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
9306  *                 Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
9307  */
9308
9309 static struct snd_kcontrol_new alc662_base_mixer[] = {
9310         /* output mixer control */
9311         HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT),
9312         HDA_CODEC_MUTE("Front Playback Switch", 0x02, 0x0, HDA_OUTPUT),
9313         HDA_CODEC_VOLUME("Surround Playback Volume", 0x3, 0x0, HDA_OUTPUT),
9314         HDA_CODEC_MUTE("Surround Playback Switch", 0x03, 0x0, HDA_OUTPUT),
9315         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT),
9316         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT),
9317         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x04, 1, 2, HDA_INPUT),
9318         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x04, 2, 2, HDA_INPUT),
9319         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
9320
9321         /*Input mixer control */
9322         HDA_CODEC_VOLUME("CD Playback Volume", 0xb, 0x4, HDA_INPUT),
9323         HDA_CODEC_MUTE("CD Playback Switch", 0xb, 0x4, HDA_INPUT),
9324         HDA_CODEC_VOLUME("Line Playback Volume", 0xb, 0x02, HDA_INPUT),
9325         HDA_CODEC_MUTE("Line Playback Switch", 0xb, 0x02, HDA_INPUT),
9326         HDA_CODEC_VOLUME("Mic Playback Volume", 0xb, 0x0, HDA_INPUT),
9327         HDA_CODEC_MUTE("Mic Playback Switch", 0xb, 0x0, HDA_INPUT),
9328         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0xb, 0x01, HDA_INPUT),
9329         HDA_CODEC_MUTE("Front Mic Playback Switch", 0xb, 0x01, HDA_INPUT),
9330
9331         /* Capture mixer control */
9332         HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
9333         HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
9334         {
9335                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9336                 .name = "Capture Source",
9337                 .count = 1,
9338                 .info = alc_mux_enum_info,
9339                 .get = alc_mux_enum_get,
9340                 .put = alc_mux_enum_put,
9341         },
9342         { } /* end */
9343 };
9344
9345 static struct snd_kcontrol_new alc662_3ST_2ch_mixer[] = {
9346         HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
9347         HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
9348         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
9349         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
9350         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
9351         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
9352         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
9353         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9354         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9355         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
9356         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
9357         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
9358         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
9359         HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
9360         HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
9361         {
9362                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9363                 /* .name = "Capture Source", */
9364                 .name = "Input Source",
9365                 .count = 1,
9366                 .info = alc662_mux_enum_info,
9367                 .get = alc662_mux_enum_get,
9368                 .put = alc662_mux_enum_put,
9369         },
9370         { } /* end */
9371 };
9372
9373 static struct snd_kcontrol_new alc662_3ST_6ch_mixer[] = {
9374         HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
9375         HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
9376         HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT),
9377         HDA_BIND_MUTE("Surround Playback Switch", 0x03, 2, HDA_INPUT),
9378         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT),
9379         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT),
9380         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x04, 1, 2, HDA_INPUT),
9381         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x04, 2, 2, HDA_INPUT),
9382         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
9383         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
9384         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
9385         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
9386         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
9387         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9388         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9389         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
9390         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
9391         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
9392         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
9393         HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
9394         HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
9395         {
9396                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9397                 /* .name = "Capture Source", */
9398                 .name = "Input Source",
9399                 .count = 1,
9400                 .info = alc662_mux_enum_info,
9401                 .get = alc662_mux_enum_get,
9402                 .put = alc662_mux_enum_put,
9403         },
9404         { } /* end */
9405 };
9406
9407 static struct snd_kcontrol_new alc662_lenovo_101e_mixer[] = {
9408         HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
9409         HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
9410         HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x03, 0x0, HDA_OUTPUT),
9411         HDA_BIND_MUTE("iSpeaker Playback Switch", 0x03, 2, HDA_INPUT),
9412         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
9413         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
9414         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
9415         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
9416         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
9417         HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
9418         HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
9419         {
9420                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9421                 /* .name = "Capture Source", */
9422                 .name = "Input Source",
9423                 .count = 1,
9424                 .info = alc662_mux_enum_info,
9425                 .get = alc662_mux_enum_get,
9426                 .put = alc662_mux_enum_put,
9427         },
9428         { } /* end */
9429 };
9430
9431 static struct snd_kcontrol_new alc662_chmode_mixer[] = {
9432         {
9433                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9434                 .name = "Channel Mode",
9435                 .info = alc_ch_mode_info,
9436                 .get = alc_ch_mode_get,
9437                 .put = alc_ch_mode_put,
9438         },
9439         { } /* end */
9440 };
9441
9442 static struct hda_verb alc662_init_verbs[] = {
9443         /* ADC: mute amp left and right */
9444         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9445         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
9446         /* Front mixer: unmute input/output amp left and right (volume = 0) */
9447
9448         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9449         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9450         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9451         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9452         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
9453
9454         {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9455         {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9456         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9457         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9458         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9459         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9460
9461         /* Front Pin: output 0 (0x0c) */
9462         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9463         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9464
9465         /* Rear Pin: output 1 (0x0d) */
9466         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9467         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9468
9469         /* CLFE Pin: output 2 (0x0e) */
9470         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9471         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9472
9473         /* Mic (rear) pin: input vref at 80% */
9474         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
9475         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9476         /* Front Mic pin: input vref at 80% */
9477         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
9478         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9479         /* Line In pin: input */
9480         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
9481         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9482         /* Line-2 In: Headphone output (output 0 - 0x0c) */
9483         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
9484         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9485         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
9486         /* CD pin widget for input */
9487         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
9488
9489         /* FIXME: use matrix-type input source selection */
9490         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
9491         /* Input mixer */
9492         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9493         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9494         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9495         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
9496         { }
9497 };
9498
9499 static struct hda_verb alc662_sue_init_verbs[] = {
9500         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_FRONT_EVENT},
9501         {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_HP_EVENT},
9502         {}
9503 };
9504
9505 /*
9506  * generic initialization of ADC, input mixers and output mixers
9507  */
9508 static struct hda_verb alc662_auto_init_verbs[] = {
9509         /*
9510          * Unmute ADC and set the default input to mic-in
9511          */
9512         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
9513         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9514
9515         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
9516          * mixer widget
9517          * Note: PASD motherboards uses the Line In 2 as the input for front
9518          * panel mic (mic 2)
9519          */
9520         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
9521         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9522         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9523         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9524         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9525         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
9526
9527         /*
9528          * Set up output mixers (0x0c - 0x0f)
9529          */
9530         /* set vol=0 to output mixers */
9531         {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
9532         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
9533         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
9534
9535         /* set up input amps for analog loopback */
9536         /* Amp Indices: DAC = 0, mixer = 1 */
9537         {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9538         {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9539         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9540         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9541         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9542         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9543
9544
9545         /* FIXME: use matrix-type input source selection */
9546         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
9547         /* Input mixer */
9548         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9549         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9550         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9551         /*{0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},*/
9552         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
9553
9554         { }
9555 };
9556
9557 /* capture mixer elements */
9558 static struct snd_kcontrol_new alc662_capture_mixer[] = {
9559         HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
9560         HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
9561         {
9562                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9563                 /* The multiple "Capture Source" controls confuse alsamixer
9564                  * So call somewhat different..
9565                  * FIXME: the controls appear in the "playback" view!
9566                  */
9567                 /* .name = "Capture Source", */
9568                 .name = "Input Source",
9569                 .count = 1,
9570                 .info = alc882_mux_enum_info,
9571                 .get = alc882_mux_enum_get,
9572                 .put = alc882_mux_enum_put,
9573         },
9574         { } /* end */
9575 };
9576
9577 static void alc662_lenovo_101e_ispeaker_automute(struct hda_codec *codec)
9578 {
9579         unsigned int present;
9580         unsigned char bits;
9581
9582         present = snd_hda_codec_read(codec, 0x14, 0,
9583                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
9584         bits = present ? 0x80 : 0;
9585         snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
9586                                  0x80, bits);
9587         snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
9588                                  0x80, bits);
9589 }
9590
9591 static void alc662_lenovo_101e_all_automute(struct hda_codec *codec)
9592 {
9593         unsigned int present;
9594         unsigned char bits;
9595
9596         present = snd_hda_codec_read(codec, 0x1b, 0,
9597                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
9598         bits = present ? 0x80 : 0;
9599         snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
9600                                  0x80, bits);
9601         snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
9602                                  0x80, bits);
9603         snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
9604                                  0x80, bits);
9605         snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
9606                                  0x80, bits);
9607 }
9608
9609 static void alc662_lenovo_101e_unsol_event(struct hda_codec *codec,
9610                                            unsigned int res)
9611 {
9612         if ((res >> 26) == ALC880_HP_EVENT)
9613                 alc662_lenovo_101e_all_automute(codec);
9614         if ((res >> 26) == ALC880_FRONT_EVENT)
9615                 alc662_lenovo_101e_ispeaker_automute(codec);
9616 }
9617
9618
9619 /* pcm configuration: identiacal with ALC880 */
9620 #define alc662_pcm_analog_playback      alc880_pcm_analog_playback
9621 #define alc662_pcm_analog_capture       alc880_pcm_analog_capture
9622 #define alc662_pcm_digital_playback     alc880_pcm_digital_playback
9623 #define alc662_pcm_digital_capture      alc880_pcm_digital_capture
9624
9625 /*
9626  * configuration and preset
9627  */
9628 static const char *alc662_models[ALC662_MODEL_LAST] = {
9629         [ALC662_3ST_2ch_DIG]    = "3stack-dig",
9630         [ALC662_3ST_6ch_DIG]    = "3stack-6ch-dig",
9631         [ALC662_3ST_6ch]        = "3stack-6ch",
9632         [ALC662_5ST_DIG]        = "6stack-dig",
9633         [ALC662_LENOVO_101E]    = "lenovo-101e",
9634         [ALC662_AUTO]           = "auto",
9635 };
9636
9637 static struct snd_pci_quirk alc662_cfg_tbl[] = {
9638         SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo", ALC662_LENOVO_101E),
9639         {}
9640 };
9641
9642 static struct alc_config_preset alc662_presets[] = {
9643         [ALC662_3ST_2ch_DIG] = {
9644                 .mixers = { alc662_3ST_2ch_mixer },
9645                 .init_verbs = { alc662_init_verbs },
9646                 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
9647                 .dac_nids = alc662_dac_nids,
9648                 .dig_out_nid = ALC662_DIGOUT_NID,
9649                 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
9650                 .adc_nids = alc662_adc_nids,
9651                 .dig_in_nid = ALC662_DIGIN_NID,
9652                 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
9653                 .channel_mode = alc662_3ST_2ch_modes,
9654                 .input_mux = &alc662_capture_source,
9655         },
9656         [ALC662_3ST_6ch_DIG] = {
9657                 .mixers = { alc662_3ST_6ch_mixer, alc662_chmode_mixer },
9658                 .init_verbs = { alc662_init_verbs },
9659                 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
9660                 .dac_nids = alc662_dac_nids,
9661                 .dig_out_nid = ALC662_DIGOUT_NID,
9662                 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
9663                 .adc_nids = alc662_adc_nids,
9664                 .dig_in_nid = ALC662_DIGIN_NID,
9665                 .num_channel_mode = ARRAY_SIZE(alc662_3ST_6ch_modes),
9666                 .channel_mode = alc662_3ST_6ch_modes,
9667                 .need_dac_fix = 1,
9668                 .input_mux = &alc662_capture_source,
9669         },
9670         [ALC662_3ST_6ch] = {
9671                 .mixers = { alc662_3ST_6ch_mixer, alc662_chmode_mixer },
9672                 .init_verbs = { alc662_init_verbs },
9673                 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
9674                 .dac_nids = alc662_dac_nids,
9675                 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
9676                 .adc_nids = alc662_adc_nids,
9677                 .num_channel_mode = ARRAY_SIZE(alc662_3ST_6ch_modes),
9678                 .channel_mode = alc662_3ST_6ch_modes,
9679                 .need_dac_fix = 1,
9680                 .input_mux = &alc662_capture_source,
9681         },
9682         [ALC662_5ST_DIG] = {
9683                 .mixers = { alc662_base_mixer, alc662_chmode_mixer },
9684                 .init_verbs = { alc662_init_verbs },
9685                 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
9686                 .dac_nids = alc662_dac_nids,
9687                 .dig_out_nid = ALC662_DIGOUT_NID,
9688                 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
9689                 .adc_nids = alc662_adc_nids,
9690                 .dig_in_nid = ALC662_DIGIN_NID,
9691                 .num_channel_mode = ARRAY_SIZE(alc662_5stack_modes),
9692                 .channel_mode = alc662_5stack_modes,
9693                 .input_mux = &alc662_capture_source,
9694         },
9695         [ALC662_LENOVO_101E] = {
9696                 .mixers = { alc662_lenovo_101e_mixer },
9697                 .init_verbs = { alc662_init_verbs, alc662_sue_init_verbs },
9698                 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
9699                 .dac_nids = alc662_dac_nids,
9700                 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
9701                 .adc_nids = alc662_adc_nids,
9702                 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
9703                 .channel_mode = alc662_3ST_2ch_modes,
9704                 .input_mux = &alc662_lenovo_101e_capture_source,
9705                 .unsol_event = alc662_lenovo_101e_unsol_event,
9706                 .init_hook = alc662_lenovo_101e_all_automute,
9707         },
9708
9709 };
9710
9711
9712 /*
9713  * BIOS auto configuration
9714  */
9715
9716 /* add playback controls from the parsed DAC table */
9717 static int alc662_auto_create_multi_out_ctls(struct alc_spec *spec,
9718                                              const struct auto_pin_cfg *cfg)
9719 {
9720         char name[32];
9721         static const char *chname[4] = {
9722                 "Front", "Surround", NULL /*CLFE*/, "Side"
9723         };
9724         hda_nid_t nid;
9725         int i, err;
9726
9727         for (i = 0; i < cfg->line_outs; i++) {
9728                 if (!spec->multiout.dac_nids[i])
9729                         continue;
9730                 nid = alc880_idx_to_dac(i);
9731                 if (i == 2) {
9732                         /* Center/LFE */
9733                         err = add_control(spec, ALC_CTL_WIDGET_VOL,
9734                                           "Center Playback Volume",
9735                                           HDA_COMPOSE_AMP_VAL(nid, 1, 0,
9736                                                               HDA_OUTPUT));
9737                         if (err < 0)
9738                                 return err;
9739                         err = add_control(spec, ALC_CTL_WIDGET_VOL,
9740                                           "LFE Playback Volume",
9741                                           HDA_COMPOSE_AMP_VAL(nid, 2, 0,
9742                                                               HDA_OUTPUT));
9743                         if (err < 0)
9744                                 return err;
9745                         err = add_control(spec, ALC_CTL_BIND_MUTE,
9746                                           "Center Playback Switch",
9747                                           HDA_COMPOSE_AMP_VAL(nid, 1, 2,
9748                                                               HDA_INPUT));
9749                         if (err < 0)
9750                                 return err;
9751                         err = add_control(spec, ALC_CTL_BIND_MUTE,
9752                                           "LFE Playback Switch",
9753                                           HDA_COMPOSE_AMP_VAL(nid, 2, 2,
9754                                                               HDA_INPUT));
9755                         if (err < 0)
9756                                 return err;
9757                 } else {
9758                         sprintf(name, "%s Playback Volume", chname[i]);
9759                         err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
9760                                           HDA_COMPOSE_AMP_VAL(nid, 3, 0,
9761                                                               HDA_OUTPUT));
9762                         if (err < 0)
9763                                 return err;
9764                         sprintf(name, "%s Playback Switch", chname[i]);
9765                         err = add_control(spec, ALC_CTL_BIND_MUTE, name,
9766                                           HDA_COMPOSE_AMP_VAL(nid, 3, 2,
9767                                                               HDA_INPUT));
9768                         if (err < 0)
9769                                 return err;
9770                 }
9771         }
9772         return 0;
9773 }
9774
9775 /* add playback controls for speaker and HP outputs */
9776 static int alc662_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
9777                                         const char *pfx)
9778 {
9779         hda_nid_t nid;
9780         int err;
9781         char name[32];
9782
9783         if (!pin)
9784                 return 0;
9785
9786         if (alc880_is_fixed_pin(pin)) {
9787                 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
9788                 /* printk("DAC nid=%x\n",nid); */
9789                 /* specify the DAC as the extra output */
9790                 if (!spec->multiout.hp_nid)
9791                         spec->multiout.hp_nid = nid;
9792                 else
9793                         spec->multiout.extra_out_nid[0] = nid;
9794                 /* control HP volume/switch on the output mixer amp */
9795                 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
9796                 sprintf(name, "%s Playback Volume", pfx);
9797                 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
9798                                   HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
9799                 if (err < 0)
9800                         return err;
9801                 sprintf(name, "%s Playback Switch", pfx);
9802                 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
9803                                   HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
9804                 if (err < 0)
9805                         return err;
9806         } else if (alc880_is_multi_pin(pin)) {
9807                 /* set manual connection */
9808                 /* we have only a switch on HP-out PIN */
9809                 sprintf(name, "%s Playback Switch", pfx);
9810                 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
9811                                   HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
9812                 if (err < 0)
9813                         return err;
9814         }
9815         return 0;
9816 }
9817
9818 /* create playback/capture controls for input pins */
9819 static int alc662_auto_create_analog_input_ctls(struct alc_spec *spec,
9820                                                 const struct auto_pin_cfg *cfg)
9821 {
9822         struct hda_input_mux *imux = &spec->private_imux;
9823         int i, err, idx;
9824
9825         for (i = 0; i < AUTO_PIN_LAST; i++) {
9826                 if (alc880_is_input_pin(cfg->input_pins[i])) {
9827                         idx = alc880_input_pin_idx(cfg->input_pins[i]);
9828                         err = new_analog_input(spec, cfg->input_pins[i],
9829                                                auto_pin_cfg_labels[i],
9830                                                idx, 0x0b);
9831                         if (err < 0)
9832                                 return err;
9833                         imux->items[imux->num_items].label =
9834                                 auto_pin_cfg_labels[i];
9835                         imux->items[imux->num_items].index =
9836                                 alc880_input_pin_idx(cfg->input_pins[i]);
9837                         imux->num_items++;
9838                 }
9839         }
9840         return 0;
9841 }
9842
9843 static void alc662_auto_set_output_and_unmute(struct hda_codec *codec,
9844                                               hda_nid_t nid, int pin_type,
9845                                               int dac_idx)
9846 {
9847         /* set as output */
9848         snd_hda_codec_write(codec, nid, 0,
9849                             AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
9850         snd_hda_codec_write(codec, nid, 0,
9851                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
9852         /* need the manual connection? */
9853         if (alc880_is_multi_pin(nid)) {
9854                 struct alc_spec *spec = codec->spec;
9855                 int idx = alc880_multi_pin_idx(nid);
9856                 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
9857                                     AC_VERB_SET_CONNECT_SEL,
9858                                     alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
9859         }
9860 }
9861
9862 static void alc662_auto_init_multi_out(struct hda_codec *codec)
9863 {
9864         struct alc_spec *spec = codec->spec;
9865         int i;
9866
9867         for (i = 0; i <= HDA_SIDE; i++) {
9868                 hda_nid_t nid = spec->autocfg.line_out_pins[i];
9869                 if (nid)
9870                         alc662_auto_set_output_and_unmute(codec, nid, PIN_OUT,
9871                                                           i);
9872         }
9873 }
9874
9875 static void alc662_auto_init_hp_out(struct hda_codec *codec)
9876 {
9877         struct alc_spec *spec = codec->spec;
9878         hda_nid_t pin;
9879
9880         pin = spec->autocfg.hp_pins[0];
9881         if (pin) /* connect to front */
9882                 /* use dac 0 */
9883                 alc662_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
9884 }
9885
9886 #define alc662_is_input_pin(nid)        alc880_is_input_pin(nid)
9887 #define ALC662_PIN_CD_NID               ALC880_PIN_CD_NID
9888
9889 static void alc662_auto_init_analog_input(struct hda_codec *codec)
9890 {
9891         struct alc_spec *spec = codec->spec;
9892         int i;
9893
9894         for (i = 0; i < AUTO_PIN_LAST; i++) {
9895                 hda_nid_t nid = spec->autocfg.input_pins[i];
9896                 if (alc662_is_input_pin(nid)) {
9897                         snd_hda_codec_write(codec, nid, 0,
9898                                             AC_VERB_SET_PIN_WIDGET_CONTROL,
9899                                             (i <= AUTO_PIN_FRONT_MIC ?
9900                                              PIN_VREF80 : PIN_IN));
9901                         if (nid != ALC662_PIN_CD_NID)
9902                                 snd_hda_codec_write(codec, nid, 0,
9903                                                     AC_VERB_SET_AMP_GAIN_MUTE,
9904                                                     AMP_OUT_MUTE);
9905                 }
9906         }
9907 }
9908
9909 static int alc662_parse_auto_config(struct hda_codec *codec)
9910 {
9911         struct alc_spec *spec = codec->spec;
9912         int err;
9913         static hda_nid_t alc662_ignore[] = { 0x1d, 0 };
9914
9915         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
9916                                            alc662_ignore);
9917         if (err < 0)
9918                 return err;
9919         if (!spec->autocfg.line_outs)
9920                 return 0; /* can't find valid BIOS pin config */
9921
9922         err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
9923         if (err < 0)
9924                 return err;
9925         err = alc662_auto_create_multi_out_ctls(spec, &spec->autocfg);
9926         if (err < 0)
9927                 return err;
9928         err = alc662_auto_create_extra_out(spec,
9929                                            spec->autocfg.speaker_pins[0],
9930                                            "Speaker");
9931         if (err < 0)
9932                 return err;
9933         err = alc662_auto_create_extra_out(spec, spec->autocfg.hp_pins[0],
9934                                            "Headphone");
9935         if (err < 0)
9936                 return err;
9937         err = alc662_auto_create_analog_input_ctls(spec, &spec->autocfg);
9938         if (err < 0)
9939                 return err;
9940
9941         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
9942
9943         if (spec->autocfg.dig_out_pin)
9944                 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
9945
9946         if (spec->kctl_alloc)
9947                 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
9948
9949         spec->num_mux_defs = 1;
9950         spec->input_mux = &spec->private_imux;
9951         
9952         if (err < 0)
9953                 return err;
9954         else if (err > 0)
9955                 /* hack - override the init verbs */
9956                 spec->init_verbs[0] = alc662_auto_init_verbs;
9957         spec->mixers[spec->num_mixers] = alc662_capture_mixer;
9958         spec->num_mixers++;
9959         return err;
9960 }
9961
9962 /* additional initialization for auto-configuration model */
9963 static void alc662_auto_init(struct hda_codec *codec)
9964 {
9965         alc662_auto_init_multi_out(codec);
9966         alc662_auto_init_hp_out(codec);
9967         alc662_auto_init_analog_input(codec);
9968 }
9969
9970 static int patch_alc662(struct hda_codec *codec)
9971 {
9972         struct alc_spec *spec;
9973         int err, board_config;
9974
9975         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
9976         if (!spec)
9977                 return -ENOMEM;
9978
9979         codec->spec = spec;
9980
9981         board_config = snd_hda_check_board_config(codec, ALC662_MODEL_LAST,
9982                                                   alc662_models,
9983                                                   alc662_cfg_tbl);
9984         if (board_config < 0) {
9985                 printk(KERN_INFO "hda_codec: Unknown model for ALC662, "
9986                        "trying auto-probe from BIOS...\n");
9987                 board_config = ALC662_AUTO;
9988         }
9989
9990         if (board_config == ALC662_AUTO) {
9991                 /* automatic parse from the BIOS config */
9992                 err = alc662_parse_auto_config(codec);
9993                 if (err < 0) {
9994                         alc_free(codec);
9995                         return err;
9996                 } else if (err) {
9997                         printk(KERN_INFO
9998                                "hda_codec: Cannot set up configuration "
9999                                "from BIOS.  Using base mode...\n");
10000                         board_config = ALC662_3ST_2ch_DIG;
10001                 }
10002         }
10003
10004         if (board_config != ALC662_AUTO)
10005                 setup_preset(spec, &alc662_presets[board_config]);
10006
10007         spec->stream_name_analog = "ALC662 Analog";
10008         spec->stream_analog_playback = &alc662_pcm_analog_playback;
10009         spec->stream_analog_capture = &alc662_pcm_analog_capture;
10010
10011         spec->stream_name_digital = "ALC662 Digital";
10012         spec->stream_digital_playback = &alc662_pcm_digital_playback;
10013         spec->stream_digital_capture = &alc662_pcm_digital_capture;
10014
10015         if (!spec->adc_nids && spec->input_mux) {
10016                 spec->adc_nids = alc662_adc_nids;
10017                 spec->num_adc_nids = ARRAY_SIZE(alc662_adc_nids);
10018         }
10019
10020         codec->patch_ops = alc_patch_ops;
10021         if (board_config == ALC662_AUTO)
10022                 spec->init_hook = alc662_auto_init;
10023
10024         return 0;
10025 }
10026
10027 /*
10028  * patch entries
10029  */
10030 struct hda_codec_preset snd_hda_preset_realtek[] = {
10031         { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
10032         { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
10033         { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
10034           .patch = patch_alc861 },
10035         { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
10036         { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
10037         { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
10038         { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
10039           .patch = patch_alc883 },
10040         { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
10041           .patch = patch_alc662 },
10042         { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
10043         { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
10044         { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc883 },
10045         { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
10046         { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc883 },
10047         {} /* terminator */
10048 };